Re: Nomenclatura o lista dei simboli

#52550
Up
0
Down
::


Allora..
esempio ridotto del file Nomenclatura.tex:
`
% Roman symbols [r]
\nomenclature[r]{$d(t)$}{Temporal evolution of the spreading diameter}
\nomenclature[r]{$h_l(t)$}{Temporal evolution of height of thickness of the lamella}
\nomenclature[r]{$h_e$}{Limit of metastability}
\nomenclature[r]{$Re$}{Reynolds number}
% Greek symbols [g]
\nomenclature[g]{$\beta (t)$}{Temporal evolution of the spreading factor}
\nomenclature[g]{$\rho$}{Density of liquid}
\nomenclature[g]{$\mu$}{Dynamic viscosity of the liquid}
\nomenclature[g]{$\nu$}{Kinematic viscosity of the liquid}
`
Mentre il mio preambolo:
`
\documentclass[a4paper,12pt,oneside,indentfirst]{book}
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
%Nomenclature%
\usepackage{nomencl}
\makenomenclature
\RequirePackage{ifthen}
\ifthenelse{\equal{\languagename}{english}}
{
\renewcommand{\nomgroup}[1]{%
\ifthenelse{\equal{#1}{r}}{%
\item[\textbf{Roman symbols}]}{%
\ifthenelse{\equal{#1}{g}}{%
\item[\textbf{Greek symbols}]}{}}}%
}%
`
Poi per richiamare Nomenclatura.tex:
`
\begin{document}
\frontmatter
\begingroup
\makeatletter
\@fileswfalse
\tableofcontents
\clearpage
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
\clearpage
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
\clearpage
\addcontentsline{toc}{chapter}{\nomname}
\include{Nomenclatura}
\printnomenclature
\endgroup
`
Spero sia minimale come mi hai chiesto :)..

Go to top