Trang thông tin tổng hợp
Trang thông tin tổng hợp
  • Ẩm Thực
  • Công Nghệ
  • Kinh Nghiệm Sống
  • Du Lịch
  • Hình Ảnh Đẹp
  • Làm Đẹp
  • Phòng Thủy
  • Xe Đẹp
  • Du Học
Ẩm Thực Công Nghệ Kinh Nghiệm Sống Du Lịch Hình Ảnh Đẹp Làm Đẹp Phòng Thủy Xe Đẹp Du Học
  1. Trang chủ
  2. Thể thao
Mục Lục

How I'm able to take notes in mathematics lectures using LaTeX and Vim

avatar
kangta
19:56 02/02/2025

Mục Lục

I started using LaTeX to write lecture notes in the second semester of my bachelor in mathematics, and I’ve been using it ever since, which makes for a total of more than 1700 pages of notes. To give you an idea of what those notes look like, here are some examples:

ca1 ca2

These lecture notes — including figures — are made while attending the lecture and have not been edited afterwards. To make note taking using LaTeX viable, I had four goals in mind:

  • Writing text and mathematical formulas in LaTeX should be as fast as the lecturer writing on a blackboard: no delay is acceptable.
  • Drawing figures should be almost as fast as the lecturer.
  • Managing notes, i.e. adding a note, compiling all my notes, compiling the last two lectures, searching in notes, etc. should be easy and quick.
  • Annotating pdf documents using LaTeX should be possible for when I want to write notes alongside a pdf document.

This blog post will focus on the first item: writing LaTeX.

Vim and LaTeX

For writing text and mathematical formulas in LaTeX, I use Vim. Vim is a powerful general purpose text editor that’s very extensible. I use it for writing code, LaTeX, markdown, … basically everything that’s text-based. It has a fairly steep learning curve, but once you’ve got the basics down, it’s hard to get back to an editor without Vim keybindings. Here’s what my screen looks like when I’m editing LaTeX:

Vim and Zathura

On the left you see Vim and on the right my pdf viewer, Zathura, which also has Vim-like keybindings. I’m using Ubuntu with bspwm as my window manager. The LaTeX plugin I’m using in Vim is vimtex. It provides syntax highlighting, table of contents view, synctex, etc. Using vim-plug, I configured it as follows:

The last two lines configure the concealment. This is a feature where LaTeX code is replaced or made invisible when your cursor is not on that line. By making [, ], $ invisible, they’re less obtrusive which gives you a better overview of the document. This feature also replaces bigcap by by ∩, in by ∈ etc. The following animation should make that clear.

conceal

With this set up, I come to the crux of this blog post: writing LaTeX as fast as the lecturer can write on the blackboard. This is where snippets come into play.

Snippets

What’s a snippet?

A snippet is a short reusable piece of text that can be triggered by some other text. For example, when I type sign and press Tab, the word sign will be expanded to a signature:

Snippets can also be dynamic: when I type today and press Tab, the word today will be replaced by the current date, and box Tab becomes a box that automatically grows in size.

today

box

You can even use one snippet inside another:

Using UltiSnips to create snippets

I use the plugin UltiSnips to manage my snippets. My configuration is

The code for the sign snippet is the following:

For dynamic snippets, you can put code between backticks `` which will be run when the snippet is expanded. Here, I’ve used bash to format the current date: date + %F.

You can also use Python inside a `!p ... ` block. Have a look at the code for the box snippet:

These Python code blocks will be replaced by the value of the variable snip.rv. Inside these blocks, you have access to the current state of the snippet, e.g. t[1] contains the first tab stop, fn the current filename, …

LaTeX snippets

Using snippets, writing LaTeX is a lot faster than writing it by hand. Especially some of the more complex snippets can save you a lot of time and frustration. Let’s begin with some simple snippets.

Environments

To insert an environment, all I have to do is type beg at the beginning of a line. Then I type the name of the environment, which is mirrored in the end{} command. Pressing Tab places the cursor inside the newly created environment.

beginend

The code for this snippet is the following.

The b means that this snippet will only be expanded at the beginning of a line and A stands for auto expand, which means I do not have to press Tab to expand the snippet. Tab stops — i.e. places you can jump to by pressing Tab and Shift+Tab — are represented by $1, $2, … and the last one with $0.

Inline and display math

Two of my most frequently used snippets are mk and dm. They’re the snippets responsible for starting math mode. The first one is a snippet for inline math, the second one for displayed math.

mkdm

The snippet for inline math is ‘smart’: it knows when to insert a space after the dollar sign. When I start typing a word directly behind the closing $, it adds a space. However, when I type a non-word character, it does not add a space, which would be preferred for example in the case of $p$-value.

The code for this snippet is the following.

The w at the end of the first line means that this snippet will expand at word boundaries, so e.g. hellomk won’t expand, but hello mk will.

The snippet for displayed math is more simple, but it also is quite handy; it makes me never forget ending equations with a period.

dm

Sub- and superscripts

Another useful snippet is one for subscripts. It changes changes a1 to a_1 and a_12 to a_{12}.

subscripts

The code for this snippet uses a regular expression for its trigger. It expands the snippet when you type a character followed by a digit, which encoded by [A-Za-z]d, or a character followed by _ and two digits: [A-Za-z]_dd.

When you wrap parts of a regular expression in a group using parenthesis, e.g. (dd), you can use them in the expansion of the snippet via match.group(i) in Python.

As for superscripts, I use td, which becomes ^{}. However, for squared, cubed, complement and a handful of other common ones, I use dedicated snippets such as sr, cb and comp.

superscripts

Fractions

One of my most convenient snippets is one for fractions. This makes the following expansions:

// → frac{}{} 3/ → frac{3}{} 4pi^2/ → frac{4pi^2}{} (1 + 2 + 3)/ → frac{1 + 2 + 3}{} (1+(2+3)/) → (1 + frac{2+3}{}) (1 + (2+3))/ → frac{1 + (2+3)}{}

frac

The code for the first one is easy:

The second and third examples are made possible using regular expressions to match for expressions like 3/, 4ac/, 6pi^2/, a_2/, etc.

As you can see, regular expressions can become quite overwhelming, but here’s a diagram that should explain it:

Diagram of the regular expression

In the fourth and fifth cases, it tries to find the matching parenthesis. As this isn’t possible using the regular expression engine of UltiSnips, I resorted to using Python:

The last snippet concerning fractions I’d like to share is one that uses your selection to make a fraction. You can use it by first selecting some text, then pressing Tab, typing / and pressing Tab again.

visualfrac

The code makes use of the ${VISUAL} variable that represents your selection.

Sympy and Mathematica

Another cool — but less used — snippet is one that uses sympy to evaluate mathematical expressions. For example: sympy Tab expands to sympy | sympy, and sympy 1 + 1 sympy Tab expands to 2.

sympy

For the Mathematica users out there, you can do something similar:

mathematica

Postfix snippets

Some other snippets I find worth sharing are postfix snippets. Examples of such snippets are phat → hat{p} and zbar → overline{z}. A similar snippet is a postfix vector, for example v,. → vec{v} and v., → vec{v}. The order of , and . doesn’t matter, so I can press them both at the same time. These snippets are a real time-saver, because you can type in the same order the lecturer writes on the blackboard.

barhatvec

Note that I can still use bar and hat prefix too, as I’ve added them with a lower priority. The code for those snippets is:

Other snippets

I have about 100 other commonly used snippets. They are available here. Most of them are quite simple. For example, !> becomes mapsto, -> becomes to, etc.

complex5

fun becomes f: R to R :, !> → mapsto, -> → to, cc → subset.

fun3

lim becomes lim_{n to infty}, sum → sum_{n = 1}^{infty}, ooo → infty

sum4

bazel2

Course specific snippets

Beside my commonly used snippets, I also have course specific snippets. These are loaded by adding the following to my .vimrc:

where current_course is a symlink to my currently activated course (more about that in another blog post). In that folder, I have a file ~/current_course/UltiSnips/tex.snippets in which I include course specific snippets. For example, for quantum mechanics, I have snippets for bra/ket notation.

<a| → bra{a} <q| → bra{psi} |a> → ket{a} |q> → ket{psi} <a|b> → braket{a}{b}

As psi is used a lot in quantum mechanics, I replace all instances of q in a braket with psi when expanded.

braket

Context

One thing to consider when writing these snippets is, ‘will these snippets collide with usual text?’ For example, according to my dictionary, there are about 72 words in English and 2000 words in Dutch that contain sr, which means that while I’m typing the word disregard, the sr would expand to ^2, giving me di^2egard.

The solution to this problem is adding a context to snippets. Using the syntax highlighting of Vim, it can be determined whether or not UltiSnips should expand the snippet depending if you’re in math or text. Add the following to the top of your snippets file:

Now you can add context "math()" to the snippets you’d only want to expand in a mathematical context.

Note that a ‘mathematical context’ is a subtle thing. Sometimes you add some text inside a math environment by using text{...}. In that case, you do not want snippets to expand. However, in the following case: [ text{$...$} ], they should expand. The following animation illustrates these subtleties.

syntaxtree

Similarly, you can add context "env('itemize')" to snippets that only should expand in an itemize environment or context "comment()" for snippets in comments.

This section was edited on 2020-12-24. The new version of vimtex makes the code for detecting the context a lot simpler. Click to see old version

Correcting spelling mistakes on the fly

While inserting mathematics is an important part of my note-taking setup, most of the time I’m typing English. At about 80 words per minute, my typing skills are not bad, but I still make a lot of typos. This is why I added a keybinding to Vim that corrects the spelling mistakes, without interrupting my flow. When I press Ctrl+L while I’m typing, the previous spelling mistake is corrected. It looks like this:

spellcheck

My configuration for spell check is the following:

It basically jumps to the previous spelling mistake [s, then picks the first suggestion 1z=, and then jumps back `]a. The <c-g>u in the middle make it possible to undo the spelling correction quickly.

In conclusion

Using snippets in Vim, writing LaTeX is no longer an annoyance, but rather a pleasure. In combination with spell check on the fly, it allows for a comfortable mathematical note-taking setup. A few pieces are missing though, for example drawing figures digitally and embedding them in a LaTeX document. This is a topic I’d like to tackle in a future blog post.

Liked this blog post? Consider buying me a coffee!

0 Thích
Chia sẻ
  • Chia sẻ Facebook
  • Chia sẻ Twitter
  • Chia sẻ Zalo
  • Chia sẻ Pinterest
In
  • Điều khoản sử dụng
  • Chính sách bảo mật
  • Cookies
  • RSS
  • Điều khoản sử dụng
  • Chính sách bảo mật
  • Cookies
  • RSS

Trang thông tin tổng hợp tcqtsaigon

Website tcqtsaigon là blog chia sẻ vui về đời sống ở nhiều chủ đề khác nhau giúp cho mọi người dễ dàng cập nhật kiến thức. Đặc biệt có tiêu điểm quan trọng cho các bạn trẻ hiện nay.

© 2025 - tcquoctesaigon

Kết nối với tcquoctesaigon

vntre
vntre
vntre
vntre
vntre
thời tiết đà nẵng trang chủ MB66 Mb66 https://mb66.bz/ HB88 com NOHU SHBET F168 SHBET Jun88 vuaclub go666 https://kuwinvef.me/ v9bet MB66 NOHU https://king88.international/ https://fun88.social/ c54 MB66 69VN qq88 Hitclub u888 Hitclub SHBET
Trang thông tin tổng hợp
  • Trang chủ
  • Ẩm Thực
  • Công Nghệ
  • Kinh Nghiệm Sống
  • Du Lịch
  • Hình Ảnh Đẹp
  • Làm Đẹp
  • Phòng Thủy
  • Xe Đẹp
  • Du Học
Đăng ký / Đăng nhập
Quên mật khẩu?
Chưa có tài khoản? Đăng ký