HOME
> Office programs
> Latex: Create A List Of Abbreviations
LaTeX: Create a list of abbreviations
LaTeX, as a word processor, must contain some basic functions, otherwise it would not be very useful as such. For this reason, you can also use Latex to create a list of abbreviations for your scientific paper - and do it completely automatically.
How inclusion works
In LaTeX, formatting is not done using traditional clicks and options, but is implemented using commands.- To create a directory in LaTeX, you must first create a longtable in your document.
- This works by using the line [\begin{longtable}{p{x cm}p{y cm}} abbreviation & abbreviation \ \end{longtable}]. Ignore the square brackets in this piece.
- Replace each X and Y with the dimensions you want your list of abbreviations to take up in the document.
- By including such a table, you ensure that if the content is too large, the table will not be truncated, but will continue neatly on the next page.
This is the alternative approach
- By using the so-called abbreviation package, the creation of abbreviations can be automated.
- Load the package into the document before [\begin{document}] using [\usepackage{acronym}].
- By using the command [\begin{acronym} \acro{abktag}[abbreviation]{abbreviation} \end{acronym}] erhält jede genannte Abkürzung ihren eigenen Tag.
- Nun kann mithilfe des Befehles [\ac{abktag}] innerhalb des Fließtextes zuerst das ausgeschriebene Wort angezeigt werden und ab dann immer die Abkürzung.
- Die Abkürzung selbst wird durch den Befehl beim ersten Aufrufen direkt in Klammern hinter das ausgeschriebene Wort gesetzt.