Ich versuche gerade ein Glossar in mein Latexdokument einzufügen. Ich sehe aber keines in meinem Dokument - unabhängig davon, welches Package ich verwende.
Mittlerweile versuche ich das via Nomenklatur hinzubekommen:
\documentclass[a4paper]{article}
\usepackage{ngerman}
\usepackage{nomencl}
\renewcommand{\nomname}{Glossar}
\makenomenclature
\begin{document}
Das Rotkehlchen\glossary{Rotkehlchen} (Erithacus
rubecula) kommt in weiten Teilen
Europas\glossary{Europa} vor.
\nomenclature{$Rotkehlchen$}{Das Rotkehlchen ist eine Vogelart aus der Familie der Drosselv"ogel (Turdidae). Das Rotkehlchen war Vogel des Jahres 1992.}
\nomenclature{$Europa$}{Europa ist das westliche Fünftel
der eurasischen Landmasse und wird "ublicherweise als
eigenst"andiger Kontinent betrachtet.}
\printnomenclature
\end{document}
(s. S. 32)
Das Ergebnis sieht so aus: Das Rotkehlchen (Erithacus rubecula) kommt in weiten Teilen Europas vor.
Eigentlich wollte ich soetwas:
\documentclass[a4paper,10pt]{article}
\usepackage{glossary}
\makeglossary
\begin{document}
\tableofcontents
\bigskip
\section{First section}
$\gamma = \int_1^\infty\left({1\over\lfloor x\rfloor}
-{1\over x}\right)\,dx$
\glossary{name={$\gamma$},
description={Euler–Mascheroni constant}}
\let\stdsection\section
\def\section*#1{\stdsection{#1}}
\printglossary
\let\section\stdsection
\section{Another section}
Text
\end{document}(s. http://texblog.net/latex-link-arc…ssary-numbered/)
Mich freut ja unheimlich, dass ich eine *.glo-Datei habe, hätte aber auch gerne ein Glossary im *.pdf.
----
Wieso ist hier \printglossary eine "Undefined control sequence"?
\documentclass{article}
\usepackage{nomencl}
\makeglossary
\begin{document}
\section*{Main equations}
\begin{equation}
a=\frac{N}{A}
\end{equation}%
\nomenclature{$a$}{The number of angels per unit area}%
\nomenclature{$N$}{The number of angels per needle point}%
\nomenclature{$A$}{The area of the needle point}%
The equation $\sigma = m a$%
\nomenclature{$\sigma$}{The total mass of angels per unit area}%
\nomenclature{$m$}{The mass of one angel}
follows easily.
\printglossary
\end{document}
(s. S. 3 http://www.cs.brown.edu/system/softwar…doc/nomencl.pdf)
Danke!