blob: d65b46f0f3a4e54be35f8c0ab681f3972fb409a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
% If you want to use arara, you need the following directives:
% arara: pdflatex: { synctex: on }
% arara: makeglossaries
% arara: pdflatex: { synctex: on }
\documentclass{article}
\usepackage{siunitx}
\usepackage[style=long4col]{glossaries}
\makeglossaries
\newglossaryentry{ohm}{%
name=ohm,
symbol={\si{\ohm}},
description=unit of electrical resistance%
}
\begin{document}
\glsaddallunused
\printglossaries
\end{document}
|