blob: 0d806fd18ec8577b6129acc1b9bc975c9e65f53f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
\documentclass{article}
\usepackage[cfg=sample04.cfg]{nomencl}
\usepackage{siunitx}
\makenomenclature
\begin{document}
\section*{Main equations}
\begin{equation}
a=\frac{N}{A}
\end{equation}%
\nomenclature{$a$}{The number of angels per unit
area\nomunit{\per\square\meter}}%
\nomenclature{$N$}{The number of angels per needle point}%
\nomenclature{$A$}{The area of the needle
point\nomunit{\square\meter}}%
The equation $\sigma = m a$%
\nomenclature{$\sigma$}{The total mass of angels per unit
area\nomunit{\kilogram\per\square\meter}}%
\nomenclature{$m$}{The mass of one angel\nomunit{\kilogram}}
follows easily.
\printnomenclature
\end{document}
|