I would like to print a simple list of acronyms at the beginning of my dissertation, something like:
Acronyms
- USA - United States of America
- NBA - National Basketball Association
- PIN - Personal Identification Number
I've tried using the glossaries package, the acronym package, and the xindy/makeglossaries programs, but they require steps like
- compiling a list of definitions into other files
- running
makeglossariesor other scripts betweenpdflatexcompilations - using
\gls{}within the document itself
In short, the glossaries package is a very complicated and capable tool, and it breaks everything when I try using it.
Does anybody know of a simple way to make an Acronym section at the beginning of a document that doesn't involve manually formatting? Here is a pseduo-MWE:
\documentclass[12pt]{book}
\usepackage{simpleacronyms} %prospective solution
\input{acronyms} %definition file
\begin{document}
\frontmatter
\tableofcontents
\printacronyms %put the acronym definitions here
%... dissertation here
\end{document}
Where acronyms.tex has content like
\acronym{USA}{United States of America}
\acronym{NBA}{National Basketball Association}
\acronym{PIN}{Personal Identification Number}
\chapter*containing the list using atabularenvironment? – barbara beeton May 10 '16 at 16:16glossaries,acronymandacroall can do this. »it breaks everything« is very unspecific. If you had posted a MWE showing how things break we might have been able to help… But it it looks like you found out how to useacronymand that is doesn't require additional compilation steps (contrary to your statement in the question) after all :) – cgnieder May 10 '16 at 18:33