diff options
author | Karl Berry <karl@freefriends.org> | 2006-01-09 00:49:07 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-01-09 00:49:07 +0000 |
commit | 007f67a693e4d031fd3d792df8e4d5f43e2cb2e7 (patch) | |
tree | 90d17e00e572ecb1e24764b6f29c80e098b08d29 /Master/texmf-dist/doc/latex/nomentbl | |
parent | 950209b26f70aa87ed07c54f82a95b6f03b7c3a0 (diff) |
doc/latex
git-svn-id: svn://tug.org/texlive/trunk@84 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/nomentbl')
-rw-r--r-- | Master/texmf-dist/doc/latex/nomentbl/nomentbl.pdf | bin | 0 -> 42223 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/nomentbl/nomentbl.tex | 65 |
2 files changed, 65 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/nomentbl/nomentbl.pdf b/Master/texmf-dist/doc/latex/nomentbl/nomentbl.pdf Binary files differnew file mode 100644 index 00000000000..812c0c4947a --- /dev/null +++ b/Master/texmf-dist/doc/latex/nomentbl/nomentbl.pdf diff --git a/Master/texmf-dist/doc/latex/nomentbl/nomentbl.tex b/Master/texmf-dist/doc/latex/nomentbl/nomentbl.tex new file mode 100644 index 00000000000..8adefea3423 --- /dev/null +++ b/Master/texmf-dist/doc/latex/nomentbl/nomentbl.tex @@ -0,0 +1,65 @@ +\documentclass[12pt,a4paper,twoside]{report} + +\usepackage{nomentbl} + +\makeglossary + +\title{Nomenclature with longtable} +\author{Brian Elmegaard} + + +\begin{document} +\maketitle +\printglossary + +\chapter{Introduction} +This file gives a very limited introduction to the use of longtable +together with the nomencl package for writing nomenclatures. + +It requires nomencl to be present on your system. + +The way to go is: Install \texttt{nomenltb.sty} where latex can find it, and +\texttt{nomenltb.ist} where makeindex can find that. +\begin{itemize} +\item Run latex. This generates the glossary input file + \texttt{foo.glo}. +\item Run makeindex with \texttt{makeindex -s nomenltb.ist -o foo.gls + foo.glo } +\item Run latex again. +\end{itemize} + +An equation is needed for the current setup: +\begin{equation} + \label{eq:1} + \mathbf{J}_i\cdot\Delta\underline{x}_{i+1}=-\underline{f}_i +\end{equation} +%Here follows the nomenclature entries. +\nomenclature[aJ]{$J$}{Jacobian Matrix}{} +\nomenclature[Zi]{$i$}{Variable number}{} +\nomenclature[ax]{$\Delta x$}{Variable displacement vector}{} +\nomenclature[af]{$f$}{Residual value vector}{} +\nomenclature[ax]{$x$}{Variable value vector}{} +The nomenclature is result of the following: +\begin{verbatim} +\nomenclature[aJ]{$J$}{Jacobian Matrix}{} +\nomenclature[Zi]{$i$}{Variable number}{} +\nomenclature[ax]{$\Delta x$}{Variable displacement vector}{} +\nomenclature[af]{$f$}{Residual value vector}{} +\nomenclature[ax]{$x$}{Variable value vector}{} +\end{verbatim} + +An some symbols with units: +\begin{equation} + \label{eq:3} + F=m \alpha +\end{equation} +\nomenclature[aF]{$F$}{Force}{N} +\nomenclature[am]{$m$}{mass}{kg} +\nomenclature[ga]{$\alpha$}{acceleration}{m/s$\mathrm{^2}$} +\begin{verbatim} +\nomenclature[aF]{$F$}{Force}{N} +\nomenclature[am]{$m$}{mass}{kg} +\nomenclature[ga]{$\alpha$}{acceleration}{m/s$\mathrm{^2}$} + +\end{verbatim} +\end{document} |