What do you think is the most intimidating thing about learning LaTeX? :O
@j.adrianriosa.41632 жыл бұрын
For me, to put things together in a proper way. Like, one can put together a kludge that looks ok in the pdf, but is a total mess in the source code.
@soswriting2 жыл бұрын
@@j.adrianriosa.4163 That's a great point! That's why I use \include{} so much, it's like the LaTeX equivalent of tidying your room by stuffing all the mess under your bed. If you can't see it, it doesn't exist right? :D
@Simpsonsfanable2 жыл бұрын
I just read and helped formatting my girlfriends Bachelor thesis in Word. It was horrible. Now I’m watching this video to reminisce on those sweet past memories of writing my Master thesis in LaTeX. So beautiful
@soswriting2 жыл бұрын
Ooof, I don't envy you having to do that 😂 I hope you managed to get it done though!
@j.adrianriosa.41632 жыл бұрын
That was beautifully clear!
@soswriting2 жыл бұрын
Thank you for saying so! And thanks for watching :D
@apaksoy2 жыл бұрын
Great video and a start. Wish it were available in 1080p resolution. A bit difficult to read the writings in the video with 720p even in full screen. Letters still readable but look slightly fuzzy. (13" 2019 MacBook Pro).
@soswriting2 жыл бұрын
Thanks for the feedback, that's really helpful for me to know. I'll see what I can do about it, I might have to re-render and upload it again. Since this video, I've been trying a couple of different ways of making the writing more visible because I thought the text was a bit small. I'm now using a combination of capturing only the part of the screen I'm typing in (Overleaf), and using Canva to create the text deliberately so I can more easily highlight the bits I want to. It takes a lot longer to produce videos that way than how I made this first one but I think it's visually clearer. I'd be curious to know if you find it helps or not :)
@FiruNazgulio2 жыл бұрын
Great video. I avoided learning LaTeX during my bachelor's in physics because I was sure I was gonna end up getting a job at some private sector business. Now I have said job and it turns out they want to use LaTeX for project documentation lol. Btw I had no issues with reading the text on the screen.
@soswriting2 жыл бұрын
Thanks for the feedback! I'm glad you managed to get the job you were looking for! You can probably get around not knowing LaTeX in the short term if you use Sphinx + Markdown (pandoc will allow you to convert md to LaTeX), but if you can invest the time to learn LaTeX it will allow you get a lot more out of Sphinx in the longer term. At least they're not making you use any expensive proprietary software!
@CaptZenPetabyte8 ай бұрын
Its a shame my university (at Masters level) doesnt accept PDFs and still requires DOCx, and Pandoc *still* cant output a decent Word file for the tutors to use or for assessment submission, otherwise I *would* have been using LaTeX even in my under grad
@soswriting4 ай бұрын
That's unfortunate :/ I can sympathise completely, my own experiments with Pandoc have left me feeling quite disappointed. I'd love to be able to suggest an alternative like Markdown + Google Doc but honestly without MyST support it's not worth the extra effort you'll have to go to for more advanced features.
@s.h.i25533 жыл бұрын
Exciting!!!👍👍
@soswriting3 жыл бұрын
Thanks for watching :D
@rysan32622 жыл бұрын
I really loved the video and the way you explain it. Its the first time I hear about LaTeX and I'm considering to use it for my academic stuff. Hoping to see a tutorial of how to customize the commands output; like in "\tableofcontents", that I want another name for the table in the pdf
@soswriting2 жыл бұрын
The beauty of LaTeX is that literally everything can be customised. The problem is that there are multiple ways to do most of this customisation lol. But, for changing the name of the table of contents, you can use the command enewcommand{\contentsname}{I want to call my TOC something else}. Renewcommand is a very versatile command that will allow you to apply new rules to the formatting of the whole document. \contentsname tells the compiler to change the name of the table of contents, and in the second squiggly bracket, you put whatever you want to replace "Table of contents" with. If it's because you're writing the document in a language other than English though, you might want to look into the "babel" package which, if I remember right, will automatically translate a lot of the output into whatever language you set (which is more useful if you want to change more than just the TOC display name). I hope this helps! Thanks for watching :D
@rysan32622 жыл бұрын
Thanks a lot! It sure helps :) And, yeah, I'm writing in another language xD
@soswriting2 жыл бұрын
@@rysan3262 This is where you can find the documentation about Babel www.ctan.org/pkg/babel But if you get stuck or run out of time then the first option I mentioned will also work :) good luck!
@Vicarra3 жыл бұрын
Nice one 🙂 i like the fact that it's short, i find it really hard to pay attention in long classes
@soswriting3 жыл бұрын
Thanks, I'm glad you liked it! :D I used to find that was the case for most of my students. I'm going to try and keep future videos shorter than this one
@marujadelpopolo Жыл бұрын
My supervisors don't use LaTeX and that is a big issue! I want to use LaTeX, but they need to use it as well
@soswriting Жыл бұрын
Yeah it's a big problem! The best thing to do is to sit them down and show them how Overleaf works, so they can at least collaborate on the same documents as you (without them providing their comments in word and making you convert them all the time!)
@theGerry0002 жыл бұрын
Hotpink is not an option 😞I'm sure management will be glad thanks for these.
@soswriting2 жыл бұрын
Ah, but it is! They just call it "magenta" for some reason
@theGerry0002 жыл бұрын
@@soswriting oooo Thank you 🙂
@soswriting2 жыл бұрын
No problem! And if you want even more colour options, you can always use the xcolor package (www.ctan.org/pkg/xcolor) which will let you mix your own custom colours, or use even more presets (via the optional arguments dvipsnames, svgnames, or x11names). The documentation is very good, but if you get stuck let me know :)