My favorite LaTeX Tricks to save time

  Рет қаралды 72,016

Dr. Trefor Bazett

Dr. Trefor Bazett

Күн бұрын

Пікірлер: 91
@DrTrefor
@DrTrefor Жыл бұрын
What tricks to you all like for writing in LaTeX?
@PrakashKumar-wt9jk
@PrakashKumar-wt9jk Жыл бұрын
Sir how to write list of figure , list of table and list of content in centre?
@kevins407
@kevins407 Жыл бұрын
AutoHotKey is my winner. I have my preamble modularized and stored as AHK commands. So every time I have a project, I can quickly pick and choose which packages are helpful and can load them with a few quick keystrokes. I also have common commands (including graphics, enumerations, etc.) stored as AHK commands.
@FelipeBalbi
@FelipeBalbi Жыл бұрын
To make my life easier, I have setup a bunch of custom emacs snippets to expand to common blocks I use all the time. I also have a preamble.tex with all my favorite packages and custom tikz colors and styles. I just \input it on whatever new document. Maybe I should convert it into a style sheet
@marcoszukunft7104
@marcoszukunft7104 Жыл бұрын
Really good tricks. I always love the new command to save life. Specially for parentheses: \left( #1 ight)
@richgold5503
@richgold5503 Жыл бұрын
Very succinct expo. Could you make a video on chemical structure and professional referencing like the Royal Society of Chemistry, please.
@jamesknapp64
@jamesknapp64 Жыл бұрын
As a math teacher at a small community college these have been a massive blessing. I've only ever been self taught with LaTex so this series has help make the notes look a LOT better.
@DrTrefor
@DrTrefor Жыл бұрын
Thanks for sharing!
@MyStuffWH
@MyStuffWH Жыл бұрын
I commented on an earlier video that the overly positive tone on Overleaf functionalities was a bit tiring (especially if you are already an Overleaf user!). This video really struck a perfect balance between information and sponsorship, for a product that I really believe in. I really love your content. Keep up the good work!
@DrTrefor
@DrTrefor Жыл бұрын
Thanks for sharing, it is a balance with paid partnerships for sure!
@10xai
@10xai 4 ай бұрын
Idk. I use vscode with latex and it has pretty much all of main overleaf features and much more for free. I do appreciate the content but the overleaf over enthusiasm is baaa
@martinopinto6323
@martinopinto6323 Жыл бұрын
Oh yes, a new LaTeX video ❤❤ So happy that Overleaf is supporting this!
@mathsupgrade
@mathsupgrade Жыл бұрын
This came at such the right time! I've been learning latex thanks to your videos for the last few weeks. It's really fun and addictive!
@DrTrefor
@DrTrefor Жыл бұрын
Great to hear!
@potterlover96
@potterlover96 Жыл бұрын
This is amazing! I used LaTeX for my Uni dissertation 5 years ago but barely used it since and I'm trying to get back into it, this has been a massive help!
@fran9426
@fran9426 Жыл бұрын
Been using LaTeX for many years but this video was still very informative!!
@wjrasmussen666
@wjrasmussen666 Жыл бұрын
More LaTeX!!! Keep them coming.
@keira04
@keira04 Жыл бұрын
Agreed!!
@lucienkalmogo3448
@lucienkalmogo3448 Жыл бұрын
Really this is the best tutoriel about learning LateX on youtube. Thank you very much
@akashbanerjee8554
@akashbanerjee8554 Жыл бұрын
Great tricks, never knew we can use Latex in such clever ways. THANK YOU
@DrTrefor
@DrTrefor Жыл бұрын
Happy to help!
@2funky4u88
@2funky4u88 Жыл бұрын
this is really helpful, i just started writing my homework in latex this semester (third semester) and it really improved my overall style and made for better and much nicer looking solutions
@keira04
@keira04 Жыл бұрын
Thank you again! I've written about 10 homework assignments in LaTeX thanks to you, and I'm still learning and growing! :)
@arshadjaveed7877
@arshadjaveed7877 Жыл бұрын
Newcommand and cref are my favourites. Thanks for sharing
@file4318
@file4318 Жыл бұрын
These tricks + vim + snippets = faster than by hand
@JustinInBlack
@JustinInBlack Жыл бұрын
When I need it the most, you made a video about it!!! you are amazing sir!
@DrTrefor
@DrTrefor Жыл бұрын
Glad I could help!
@FelipeBalbi
@FelipeBalbi Жыл бұрын
Cleveref seems to be super cool. I’ll start using it! If you’re looking for video ideas, I suggest a video focused on tikz graph drawing, perhaps also the fit library and tikz layers. To be honest, tikz is such a great package. It keeps impressing me over and over again even though I’ve used it for years 😅
@DrTrefor
@DrTrefor Жыл бұрын
Great ideas! I've done a whole video on tikz, but truly that package is enormous with so many cool things.
@VitruvianSasquatch
@VitruvianSasquatch Жыл бұрын
Might seem odd, but I find the \qty command from the physics package a much cleaner way to do auto-sizing braces than the traditional \left( ight). Also comes with handy calculus commands.
@niuniujunwashere
@niuniujunwashere Жыл бұрын
indeed, \qty() would be a nice shorthand \left( and ight)! i would like to address one subtle detail about SPACING which might one day catch you by surprise (as it did me)... \qty creates an Ord atom (judging from the package source code) while \left ... ight creates an Inner atom, so in some cases you wouldn't get spaces for \qty where you normally would for \left ... ight. (for example, with "(2) \left(3 ight)" you get a thin space between (2) and (3), but with "(2) \qty(3)" you have the two numbers glued together. same thing goes for \left(2 ight) \left(3 ight) and \qty(2) \qty(3). this EXTRA space is sometimes also undesirable-namely as the argument of a function-but i'll get into that shortly) likewise, \qty with a fixed size (like \qty\bigg) also creates an Ord atom (as it seems), unlike pairs like \biggl and \biggr which produce Open and Close atoms respectively (their definitions are essentially \mathopen\bigg and \mathclose\bigg). compare \gcd\qty\big(a, b) and \gcd\bigl(a, b\bigr) for instance (i intentionally picked an operator that is not overridden by physics). you'll see that a spurious thin space is added between \gcd and the parentheses produced by \qty, since TeX adds a thin space between Op and Ord atoms but doesn't between Op and Open atoms. (on a positive note, although \sin\qty(3) doesn't give the right spacing, \sin(3) does get the spacing right! though you would still need \bigl ...\bigr and the like for manual sizing since \sin simply doesn't see \bigl or (3) when you write \sin\bigl(3)...) i personally either use \bigl ...\bigr for a fixed-size argument or \mleft ...\mright defined by the mleftright package for a variable-size argument. in addition, as an alternative i STRONGLY recommend using \DeclarePairedDelimiter from the mathtools package since it takes care of spacing very VERY well. (i just learned while writing this that it ACTUALLY expands to \mathopen and \mathclose!! the implementation is hella complicated tho....) in this case you can write \DeclarePairedDelimiter\paren\lparen paren and replace \qty(...) with \paren*{...}, \qty\big(...) with \paren[\big]{...}, all while not getting ANY spurious space when writing stuff like \sin\paren{3} (even when a punctuation follows it!) spacing nuances are one of the reasons i don't use physics anymore, but whether or not you are going use it is completely up to you!
@VitruvianSasquatch
@VitruvianSasquatch Жыл бұрын
@@niuniujunwashere That's actually really good to know, thank you. I'll play with defining my own delimiters a bit.
@laufert7100
@laufert7100 11 ай бұрын
Only problem is that I use the siunitx package that overwrites \qty. Is there a way to use both?
@RSLT
@RSLT Жыл бұрын
Wow, great and time saver, Tricks.
@DrTrefor
@DrTrefor Жыл бұрын
Glad you liked it
@putrawahyudi4825
@putrawahyudi4825 Жыл бұрын
Thank you, Sir. This video really help me out.
@DrTrefor
@DrTrefor Жыл бұрын
Glad it helped!
@yash1152
@yash1152 Жыл бұрын
10:47 thanks a lot for showing concrete example for textit vs emph commands. nice :)
@DrTrefor
@DrTrefor Жыл бұрын
You are welcome!
@canal_interpolo
@canal_interpolo Жыл бұрын
Trefor, could you make a video showing how to incorporate Matlab code on LaTeX documents?
@harvey_dent_1
@harvey_dent_1 6 ай бұрын
Thank you soooo much for your awesome tutorial ... it was so helpful.
@jorgebecerril2361
@jorgebecerril2361 Жыл бұрын
WOW! Thanks for all the tips they are really awesome!
@MarcusWagnerBMW
@MarcusWagnerBMW Жыл бұрын
Amazing content, kep doing this, youre helping me so much
@hgfuhgvg
@hgfuhgvg Жыл бұрын
Overleaf is awesome
@2003z440
@2003z440 Жыл бұрын
If you haven't heard of it, I highly recommend the "exam" document class. It allows you to hide the solutions and format the blank spaces where students can answer.
@matheusjahnke8643
@matheusjahnke8643 Жыл бұрын
Another comment about the "be semantic" topic: sometimes you don't have freedom to format. Sections must be centralized, enumerated with roman numerals, with specific size and all.... If you were doing this "manually", It'd be quite the job. If you are lucky, the required format is available as a style or a class... so you just \section{stuff} and don't worry about it. (Frankly if you are doing it manually, just use a What-You See-Is-What-You-Get tool, there might even be a template with the format available).
@JesseSlaten
@JesseSlaten Жыл бұрын
Cleveref is worth is weight in gold thank you!
@gevillgar
@gevillgar Жыл бұрын
The \includeonly command was sooo useful to me while I was writing mi thesis
@davidvrba9
@davidvrba9 Жыл бұрын
Nice video, very helpful! While watching video question came up to my mind, can you ref. to equations in different .tex files that are included?
@DrTrefor
@DrTrefor Жыл бұрын
Yup!
@GeoffryGifari
@GeoffryGifari Жыл бұрын
Lol i wished i knew about all this when i first started writing in LaTeX. The kind of environment i'm in just let people dive in directly and learn on our own so inefficient writing is kind of normal, but i guess so far that's the best way to do it. Btw, on the "Be Semantic" section, it seems like there are these special commands that "understand" the intention of the writer (\emph, ewtheorem, etc) what other commands are there? do you happen to know a reference/keyword to search for this? and are there commands to be used outside the context of pure math (like physics)? Thanks!
@kin_1997
@kin_1997 Жыл бұрын
oka you have got me hooked on LaTeX
@Adowrath
@Adowrath 7 ай бұрын
Did you ever work with standalone, so the individual files can also be generated into a PDF on their own, not just as part of the whole document? Especially with subimport, I've found it quite useful to write multi-part documents/my thesis documentations.
@bungaIowbill
@bungaIowbill Жыл бұрын
This is a great video. I have used LaTeX for over ten years now and actually didn't know about Cleveref, and while I knew about conditional formatting, I actually never bothered to learn how it works... And the fact that you don't need brackets around the name of ewcommands? My life has been a lie! Regarding Cleveref: my preference is to capitalize the cross-reference names, which can be done with \usepackage[capitalize]{cleveref}. However, I would also like it to behave as \eqref when referring to equations, i.e., not write out the word "equation" at all, but just its number in parentheses. Does anyone happen to know of a quick way to get this behavior?
@DrTrefor
@DrTrefor Жыл бұрын
Ha! Probably better practice to include { ame} to be honest, but no you don't technically need it for a single parameter thing. Nice note about cleverref. I do believe it can be customized as you suggested but don't know exactly how off the top of my head.
@xrenynthemusicmage6422
@xrenynthemusicmage6422 Жыл бұрын
doesn't the autoref command from the hyperref package do the exact same thing as cleveref?
@markaustin3858
@markaustin3858 Жыл бұрын
Love the hoodie!! Where can I get one?
@DrTrefor
@DrTrefor Жыл бұрын
I love that one too:D Beautifulequation.com!
@PerEng2405
@PerEng2405 Жыл бұрын
Brilliant tips.Thx.
@peterflom6878
@peterflom6878 Жыл бұрын
Very useful tips
@dominicellis1867
@dominicellis1867 Жыл бұрын
Do you have an intro video on latex, I’m a math teacher but I’ve never used it. I make all my assignments on paper or drawing apps and copy them. Apparently it takes for ever.
@noob_techie2475
@noob_techie2475 Жыл бұрын
Off topic but can you please recomment a good book to get a refresher learn more on euclidean geometry, and basic of all common shapes like ellipse, parabola etc.
@matheusjahnke8643
@matheusjahnke8643 Жыл бұрын
About Cleveref... does it has an option to "link" to the equation? The ef{stuff} (the one not from Cleveref) makes the number clickable, if you do that, you can go to the equation, does Cleveref has something like that?
@prabhjeetsingharora
@prabhjeetsingharora Жыл бұрын
Hello sir. If I want to use Eq. instead of eq. in my document using cleverref. Can you please shed help in this regard? Thank you for creating such videos.
@mikawatzel3272
@mikawatzel3272 Жыл бұрын
Hello Sir, thank you for these Tipps. Unfortunately cleveref doesn't load .... it promts me with "package not found". I've already tried different LaTex IED with the same error... Do you know something about that? Thank you very much.
@bymagix8923
@bymagix8923 4 ай бұрын
Is overleaf really the best solution? I feel like webbased means: -compiling is delayed -many shortcuts are shadowed by the browser -every file (eg an exported graph/table/...) must be manually uploaded -... is it possible to just have your code spit out a confusion matrix/regression table/... which automatically pops up in the 'tables' folder of your latex editor?
@captainchicky3744
@captainchicky3744 Жыл бұрын
ngl exporting custum definitions to a .sty was a nice tip thanks lol
@xdevilwarrior
@xdevilwarrior Жыл бұрын
I can't wait for AI to finally erradicate Latex from the phase of the earth... but this is video is cool :3
@wjrasmussen666
@wjrasmussen666 Жыл бұрын
Dr Trefor Bazett have you deleted some playlists? I thought you had many more playlists....
@peterflom6878
@peterflom6878 Жыл бұрын
Is there a transcript available?
@realunderachiever
@realunderachiever Жыл бұрын
Question. Can you include a video file in your latex presentation, let's say that presentation is made using beamer? I' ve tried a lot of different stuff and it doesn't work.
@DrTrefor
@DrTrefor Жыл бұрын
Not directly. The output traditionally is a pdf and video isn't part of the .pdf format. A beamer presentation is just a pdf. However, there are some things like I think one is called ximera that use latex to make say an html page that can include video.
@amolrupakheti7828
@amolrupakheti7828 Жыл бұрын
Is there some way to import a table from one .tex file to another .tex file
@Mr.AIFella
@Mr.AIFella Жыл бұрын
One thing I couldn't make it perfect, even with the help of ChatGPT. I was trying to have two figures (flowcharts) next to each other and the table set next to them. I spent whole night but I gave up😢. I did it easily in word by making the figures to set inside tables.
@ademusmeal9058
@ademusmeal9058 Жыл бұрын
How to get latex format? dr.
@roberttelarket4934
@roberttelarket4934 Жыл бұрын
I love your sweat shirt with EAT SLEEP MVTH REPEAT
@lutherlessor4029
@lutherlessor4029 Жыл бұрын
"Squiggly Brackets">"Braces"
@DrTrefor
@DrTrefor Жыл бұрын
haha, I intellectually know people call them braces but refuse to do so:D
@airman122469
@airman122469 Жыл бұрын
Anyone else here not like Overleaf? I personally like having my files local, and not on someone else’s machine. I also like being able to craft my own LaTex environment. Am I alone in this?
@DrTrefor
@DrTrefor Жыл бұрын
I think this is also totally fine. I did my entire PhD locally, for instance. Especially if you are using things like GitHub for versioning/collaboration, but it depends a bit of personal preference and ease of doing things imo:/
@Argletrough
@Argletrough Жыл бұрын
you can omit the brackets in the first trick: \pd z x
@YousafAli-ge9ip
@YousafAli-ge9ip Жыл бұрын
😂😂😂
@gateronblackinksv2173
@gateronblackinksv2173 Жыл бұрын
If you want to do it even faster, you have to switch away from overleaf to something like vim. Vim snippets are so nice and they save so so so much time
@floppy8568
@floppy8568 Жыл бұрын
mforallth
How I Make  Presentations Using LaTeX & Beamer
22:13
Dr. Trefor Bazett
Рет қаралды 218 М.
LaTeX -  Conditional
2:55
Chiu Yu Ko
Рет қаралды 2,4 М.
The evil clown plays a prank on the angel
00:39
超人夫妇
Рет қаралды 53 МЛН
Try this prank with your friends 😂 @karina-kola
00:18
Andrey Grechka
Рет қаралды 9 МЛН
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.
Why LaTeX?
9:44
Eitan Lees
Рет қаралды 222 М.
My favorite LaTeX packages for writing beautiful math documents
28:48
Dr. Trefor Bazett
Рет қаралды 210 М.
Learning LaTeX just got WAY easier.
16:10
Dr. Trefor Bazett
Рет қаралды 47 М.
Reducing compile time in LaTex Overleaf if you're using many plots
5:45
PACA - Ingenieurskunst
Рет қаралды 68
How to write a thesis using LaTeX  **full tutorial**
30:58
Dr. Trefor Bazett
Рет қаралды 784 М.
How I make beautiful GRAPHS and PLOTS using LaTeX
28:46
Dr. Trefor Bazett
Рет қаралды 481 М.
Math News: The Fish Bone Conjecture has been deboned!!
23:06
Dr. Trefor Bazett
Рет қаралды 173 М.
LaTeX for Students - A Simple Quickstart Guide
13:51
Jake B
Рет қаралды 210 М.
The longest mathematical proof ever
19:30
Dr. Trefor Bazett
Рет қаралды 89 М.
The evil clown plays a prank on the angel
00:39
超人夫妇
Рет қаралды 53 МЛН