File: test_manual_labels.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 (30 lines) | stat: -rw-r--r-- 515 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
\documentclass{article}
\usepackage{autonum}
\usepackage{amsmath}

\begin{document}

\section{Introduction}
\label{sec:intro}

This is some text.

\begin{equation}
  \label{eq:simple}
  x = y + z
\end{equation}

\begin{equation}
  \label{eq:complex}
  \int_0^\infty e^{-x} dx = 1
\end{equation}

% This equation won't show up in aux with autonum since it's not referenced
\begin{equation}
  \label{eq:orphan}
  a^2 + b^2 = c^2
\end{equation}

We reference \eqref{eq:simple} here, but not the others.

\end{document}