File: test-math.tex

package info (click to toggle)
vim-vimtex 2.17-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,844 kB
  • sloc: makefile: 360; python: 103
file content (31 lines) | stat: -rw-r--r-- 676 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
\documentclass[]{article}

\begin{document}

Test file for math motion.

\begin{equation}          % [n[n or 2[n
  1 + 1 = 2
\end{equation}            % [N[N or 2[N

\( 1 + 1 = 2 \)           % Opening: [n, Closing: [N

\begin{enumerate}
  \item 1
  \item 2
  \item 3
  \item 4
\end{enumerate}
                          % CURSOR
\[                        % ]n
  1 + 1 = 2
\]                        % ]N

\begin{itemize}
    \item $1 + 1 = 2$.    % Opening: ]n]n or 2]n, Closing: ]N]N or 2]N
\end{itemize}

$1 + 1 = 2$               % Opening: ]n]n]n or 3]n, Closing: ]N]N]N or 3]N
$$1 + 1 = 2$$             % Opening: ]n]n]n]n or 4]n, Closing: ]N]N]N]N or 4]N

\end{document}