How I'm able to take notes in mathematics lectures using LaTeX and Vim
21–30 of 223 posts
Re: How I'm able to take notes in mathematics lectures using LaTeX and Vim
#22Earlier quoted context omitted.
That's fine amd dandy from a US perspective, but many European universities are different. I don't know about this guy's exact class, but some (many?) undergrad classes are 500 people in a lecture hall with the professor orating, no textbook, and the content on the exam is pretty much whatever was covered during the lectures. So accurate note taking is very important because those notes essentially are your textbook.…
At that point smuggling an audio recorder to the class might lead a better reproduction of the material.
Re: How I'm able to take notes in mathematics lectures using LaTeX and Vim
#23Earlier quoted context omitted.
That's fine amd dandy from a US perspective, but many European universities are different. I don't know about this guy's exact class, but some (many?) undergrad classes are 500 people in a lecture hall with the professor orating, no textbook, and the content on the exam is pretty much whatever was covered during the lectures. So accurate note taking is very important because those notes essentially are your textbook.…
At that point smuggling an audio recorder to the class might lead a better reproduction of the material.
Re: How I'm able to take notes in mathematics lectures using LaTeX and Vim
#24As a feat in itself this is definitely very impressive, but I wonder if it's really worth anyone's time to spend precious lecture time with your mind fully occupied in the mechanical task of taking notes rather than actually absorbing and engaging with the content. Especially for an extremely content-dense subject like Mathematics, where you need all your concentration just to process what you are reading and follow…
The mechanical task of taking notes is one of the most important parts of actually absorbing the material. It is not an either-or. Hearing/seeing the information, processing it in a way that makes sense to you individually, and then mechanically writing it down in a legible manner is one of the main methods that your brain learns. It's one of the primary reasons that taking notes is important in the first place. This is referred to as the "encoding hypothesis" [1].
There are actually even studies [2] that show that tools that assist in more efficient note taking, such as taking notes via typing rather than by hand, are actually detrimental to absorbing information, as it makes it easier for you to effectively pass the information directly from your ears to your computer without actually doing the processing that is required when writing notes by hand. This is why many universities prefer (or even require) notes to be taken by hand, and disallow laptops in class.
1: https://www.sciencedirect.com/science/article/pii/0361476X78...
2: https://www.npr.org/2016/04/17/474525392/attention-students-...
Re: How I'm able to take notes in mathematics lectures using LaTeX and Vim
#25* You coded since you where 15 years old, wrote your own game engine, wanted to cure cancer and save the world, and now your job is to copy text from one document to another.
Re: How I'm able to take notes in mathematics lectures using LaTeX and Vim
#26Re: How I'm able to take notes in mathematics lectures using LaTeX and Vim
#27I wonder if there was any meaningful improvement on this approach. Even just adding a nice UI to fix errors would've made it really useful.
Re: How I'm able to take notes in mathematics lectures using LaTeX and Vim
#28As a feat in itself this is definitely very impressive, but I wonder if it's really worth anyone's time to spend precious lecture time with your mind fully occupied in the mechanical task of taking notes rather than actually absorbing and engaging with the content. Especially for an extremely content-dense subject like Mathematics, where you need all your concentration just to process what you are reading and follow…
Re: How I'm able to take notes in mathematics lectures using LaTeX and Vim
#29Re: How I'm able to take notes in mathematics lectures using LaTeX and Vim
#30I used to do this, but I switched to just using a Jupyter Notebook. It’s nice to be able to move between multiple computers, with no need to set up a LaTeX install. A couple of things I love about this setup: I can write in Markdown and drop to LaTeX when I need to forumalate any equations. For homework, I can implement a quick Python script inline to build intuition behind a topic. I can use Sympy to simplify and so…