This series reduced my thesis anxiety so much. Life saving playlist, thank you!
@MichelleKrummel4 жыл бұрын
I'm happy I could help :)
@Edgawliet4 жыл бұрын
A little help here: The time stamp for the video 0:00 Intro 0:10 Topics to explain 0:20 Saving the file 0:49 Packages 11:18 Macros 19:40 Graphics
@baruchba75034 жыл бұрын
Great tutorial...nicely paced and easy to understand. All the best to you and your students in the upcoming school year.
@MichelleKrummel4 жыл бұрын
Thank you very much!
@minaxisharma76302 жыл бұрын
Kindly upload more videos. Your style of explanation is too good
@LupinoArts2 жыл бұрын
Hello Michelle, one piece of nitpicking here regarding your definition at 13:00 : macros defined in LaTeX's preamble can only have letters in their name, that is [a-z] and/or [A-Z]. Numbers and any other characters are not allowed (except @ when you say "\makeatletter" before, which literally means "make '@' into a 'letter'"). What you are actually doing there, is to define a macro named "\eq", which has the hard-coded requirement to be followed by the character "1". If you type "\eq" after "\begin{document}" you will get an "Use of \eq doesn't match its definition." error instead of "Undefined control sequece", since LaTeX is expecting the 1. However, if you type in "\eq 1", the code will compile without any errors, since all spaces after a control sequence are ignored by LaTeX and therefore the call fulfills the "must be followed by a '1'" requriement. Your whole code will fail if you try to define another macro "\eq2" in the same way: then you re-define "\eq, which must be followed by the number 1" to "\eq, which must be followed by the number 2" and every call to "\eq1" will lead to the "Use of \eq doesn't match its definition." error, since it is not followed by "2". The only way to define a macro that is genuinly called "eq1" is to use \csname and \endcsname: \expandafter\def\csname eq1\endcsname{...}. However, be aware that calls to those macros also require that csname "shell": \csname eq1\endcsname. That way you can create makros with the name "eq2", "eq3", and so on. The etoolbox package provides an abbreviation of that with the \csdef and \csuse macros: \csdef{eq1}{...} defines a macro "eq1", and \csuse{eq1} calls that macro.
@MichelleKrummel2 жыл бұрын
Thank you for the clarification :)
@breadwithavocado4 жыл бұрын
Nice tutorial and good explication! I'm really learning a lot with these tutorials.
@MichelleKrummel4 жыл бұрын
That's great to hear. Thank you!
@angelomarcone82214 жыл бұрын
Nice and clear tutorial. Thank you Michelle.
@MichelleKrummel4 жыл бұрын
Thanks for watching!
@asaradhi4 жыл бұрын
She is the undisputed Queen of latex tutorials ! Amazing, fantastic , simple yet deeply effective !
@imadnm14 жыл бұрын
Thank you for sharing this. Very useful!
@minaxisharma76302 жыл бұрын
Very well explained. Thanks so much
@ellenw15974 жыл бұрын
This is very useful and helps me a lot with my assignment. Thank you, Michelle!
@antonioavilix4 жыл бұрын
latex in vscode kzbin.info/www/bejne/bJbZcqZ5qbGmn9U
@adadbarkho29773 жыл бұрын
Thank you very much for providing such great quality tutorials for free
@MichelleKrummel3 жыл бұрын
You're very welcome!
@shutupimlearning3 жыл бұрын
great video! You make learning LaTeX a breeze
@MichelleKrummel3 жыл бұрын
Glad to hear that!
@vwij17362 жыл бұрын
Much appreciated, Michelle!
@iitmaths47573 жыл бұрын
Thanks you so much Michelle mam!!! For this most useful video
@joseantoniobarreranunez99493 жыл бұрын
Good afternoon Michelle; I have finished tutorial 6. It's being very entertaining in a new year's eve. I have a question about the instruction ew command: once it is created where must be filed so it can be invoked and put it in the actual file? Thank you. I can wait for your answer until next year.
@douglasmangini87444 жыл бұрын
Great, Michelle. Thank you!
@anishasahu8302 жыл бұрын
Could you please share the tex file containing all the packages and macros you were using in Tutorial 6?
@nikhilmanikpuri1076 Жыл бұрын
How did you formed those new commands?? I count understand also these command s are not working if I just used the package
@bhartikumari41793 жыл бұрын
Can you tell me from where to download different packages??
@MrVoocGaming3 жыл бұрын
Thanks mam for this helpful tutorial. Why you stopped making videos 🙁??
@jimchang23223 жыл бұрын
I followed your code and use \calculator command and it returns an error message. I’ve checked repeatedly on overleaf for typos to it’s full correctness and has no clue of the error. It is truly a great tutorial!
@wesjredd14 жыл бұрын
Thank you for your tutorials. Suppose that I want the item numbers to be bold. Is there a way to do that?
@MichelleKrummel4 жыл бұрын
\documentclass{article} \usepackage{enumitem} \setlist[enumerate,1]{label=\textbf{\arabic*}.} \begin{document} \begin{enumerate} \item One \item Two \item Three \end{enumerate} \end{document}
@wesjredd14 жыл бұрын
Thank you!
@adhishpv63152 жыл бұрын
Could you share your LaTeX doc with all other packages and Macros, It would really help, because everything is at one place
@leonardodrago8934 жыл бұрын
@michelle I have a problem: I insert images, then I need to write a test under that image (not the caption, a full paragraph) but on the pdf, the images and the paragraphs don't result in the order I call. Please help I don't understand why is that...
@MichelleKrummel4 жыл бұрын
If you use \begin{figure}...\end{figure} you will have more control over the placement of the image. This may help: www.overleaf.com/learn/latex/Positioning_of_Figures
@leonardodrago8934 жыл бұрын
@@MichelleKrummel Solved! Wow thanks a lot really!!! yes, I always used \begin{figure},... but the trick was to add [H]. Thank you so much and wish you a good year!!!
@johanneschristopherstahle33952 жыл бұрын
@@leonardodrago893 If you use a floating environment (for example figure or table) LaTeX will put it somewhere into the document where LaTeX will find enough space. Usually somewhere directly on the top or bottom of a page or as a single object on a page. In the text you should then refer to the figure or table. This is standard in scientific articles/books. If you want the picture to be exactly where you put the \includegraphics command just don't use the figure environment and it will always appear exactly where you want it to be. You can't use a caption, though (as long as you don't use a package that allows you to create captions outside of floating environments). There has been put quite a lot of thought into the behavior how LaTeX chooses the position of floating objects. So maybe you just want to get used to it. If you don't and you don't need a caption, just don't use the figure environment. The option H should really be used with care. Why need a floating environment if you don't want it to float. If you want to make sure that floats appear after being referenced in the text, use the package flafter. If you want the flat to stay within the same section, use placeins with the option [section].
@alishaheedmuhamad3 жыл бұрын
Great video Michel Krummer, but what if I want to build my own class of document ? Any material you could suggest me, by chance.
@johanneschristopherstahle33952 жыл бұрын
Then ask yourself if you really need it. Usually there will already be a package that will give you all you need. Tweak it to your taste and put all of your tweaks into a separate tex-file. You can then use \input{mytemplate.tex} to load it into new documents. So you don't need put all this code into every new document and still have all your tweaks. If you change this external file, it will automatically change the output of all documents that load (input) this file once you recompile them.
@alishaheedmuhamad2 жыл бұрын
@@johanneschristopherstahle3395 Thanks a lot ! That is still a very good option and quicker to get things done
@richardwalters92493 жыл бұрын
I am new to LaTeX … but I still have questions I would like to know how to use one font, such as cinzel, for the title, and the main body of text with Bakersfield, and sections that use background color that spans a full line with something like Avenir. Switching fonts in a document does not look easy to me. Any recommendations for where to learn about switching fonts in a single document ? I would also like to know about book vs article for class options
@johanneschristopherstahle33952 жыл бұрын
First of all it's unusual to switch fonts within a document. Usually you do have three different fonts you can use: Serif, Non-Serif, Typewriter. The Serif font is usually used for your main text, tables and so on. The Non-Serif font is often used for headings. Typewriter fonts are used for code snippets and similar things where you need a font with a fixed letter width. There are some effect fonts (handwriting, glyphs for example) that can be used at different places inside a document using specific commands. But generally it is not easily possible to switch the main fonts. But that's for good reason: LaTeX is designed to give you the tools to craft good looking papers from the viewpoint of typesetting. If you are more into fancy design, LaTeX is probably not the tool for you. Of course, there are ways to make LaTeX to do a lot of things, it originally was not designed to do, but it might be easier to use other tools for those cases. For the second part of your question: article: small documents without chapters and parts report: larger documents that do need chapters, but are usually set one-sided (margins usually the same on all pages) book: Whole Books that are typeset as such. Usually two-sided (margins and page numbers are swapped between left and right pages, chapters begin on right pages, you can use front matter, main matter and back matter commands... Articles and reports allow you to use an abstract, books don't. In many cases the differences between book and report won't be drastic, because you can still change a lot of the options anyways. Plus you can use other document classes than the standard ones. Memoir for example is great for creating books with more exciting designs for your headings and title pages for example. In Germany the KOMA Script classes have become kind of the new standard classes. If you write an article for a paper or a chapter for a book you will most likely have to use a specific class made by the publisher... Hope my answer is helpful
@bendibhafed16874 жыл бұрын
great job, perfect!!
@antonioavilix4 жыл бұрын
i recommend you tha video kzbin.info/www/bejne/bJbZcqZ5qbGmn9U
@joseantoniobarreranunez99493 жыл бұрын
Thank you Michell,
@sukranochani57643 жыл бұрын
ThankYou Mam
@moinulhoque21604 жыл бұрын
Really helpful video. I have one question, sometimes or most of the times it shows file not found. Where should I found?
@antonioavilix4 жыл бұрын
latex in vscode kzbin.info/www/bejne/bJbZcqZ5qbGmn9U
@haraldurkarlsson11472 жыл бұрын
Overleaf used to have a free option. That is now gone (bound to happen after the took over ShareLateX).
@oriabnu14 жыл бұрын
, "try" to be concealed in a cover file. After encoding, the message is "5S " and the enciphered message "ğð:." how write encipher message in latex