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 32 33
|
% $Id: nomencl.tex,v 1.1 2007/02/02 01:26:02 dan Exp $
%
\documentclass[11pt]{article}
\usepackage{nomencl}
\title{Example Document With a Nomenclature List}
\author{Dan}
\date{\today}
\usepackage{fancyhdr}
\pagestyle{fancy}
\rhead{Doc with Nomenclatures}
\usepackage{hyperref}
\makenomenclature
\begin{document}
\maketitle
\section{Introduction}
Here is an example equation with nomenclatures:
\begin{equation}
E = m\:.\:c^2
\end{equation}
\nomenclature{$E$}{Energy}%
\nomenclature{$m$}{Mass}%
\nomenclature{$c$}{Speed of light}%
\printnomenclature
\end{document}
|