File: nomencl.tex

package info (click to toggle)
latex-mk 2.1-1.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 2,884 kB
  • sloc: sh: 4,252; makefile: 165
file content (33 lines) | stat: -rw-r--r-- 576 bytes parent folder | download | duplicates (7)
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}