refined acro package configuration
This commit is contained in:
parent
4b2142f3b1
commit
bea2321bf7
|
@ -1,8 +1,11 @@
|
||||||
\DeclareBoolOption[false]{sort} % wether to sort acronym list alphabetically or not
|
|
||||||
|
|
||||||
\acsetup
|
\acsetup
|
||||||
{
|
{
|
||||||
make-links = true, % generate links
|
make-links = true, % generate links
|
||||||
case-sensitive = true, % when calling \ac{ID} ID is case sensetive i.e ABC won't match AbC
|
case-sensitive = true, % when calling \ac{ID} ID is case sensetive i.e ABC won't match AbC
|
||||||
use-id-as-short = true, % id of acronym is used as short form
|
use-id-as-short = true, % id of acronym is used as short form
|
||||||
|
list/display = used,
|
||||||
|
list/sort = true,
|
||||||
|
link-only-first = false,
|
||||||
|
pages/display = none,
|
||||||
|
pages/fill = {, }
|
||||||
}
|
}
|
4
main.tex
4
main.tex
|
@ -7,7 +7,7 @@
|
||||||
\usepackage{setspace} % for more spacing control
|
\usepackage{setspace} % for more spacing control
|
||||||
\usepackage{geometry} % for margin control
|
\usepackage{geometry} % for margin control
|
||||||
\usepackage{tabularx} % extension of tabular environment that allows dynamic widths
|
\usepackage{tabularx} % extension of tabular environment that allows dynamic widths
|
||||||
\usepackage{hyperref} % for referecing stuff
|
\usepackage[]{hyperref} % for referecing stuff
|
||||||
\usepackage{fancyhdr} % fancy headers
|
\usepackage{fancyhdr} % fancy headers
|
||||||
\usepackage{import} % advanced document import
|
\usepackage{import} % advanced document import
|
||||||
\usepackage{pdfpages} % include multipage pdf documents
|
\usepackage{pdfpages} % include multipage pdf documents
|
||||||
|
@ -47,6 +47,7 @@
|
||||||
\input{extra/fixes}
|
\input{extra/fixes}
|
||||||
% article page geometry configuration
|
% article page geometry configuration
|
||||||
\input{config/geomerty}
|
\input{config/geomerty}
|
||||||
|
\input{config/acro} % setup acronyms
|
||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
|
@ -55,7 +56,6 @@
|
||||||
\input{config/author} % meta information about author
|
\input{config/author} % meta information about author
|
||||||
\input{config/pages} % set page configuration
|
\input{config/pages} % set page configuration
|
||||||
\input{config/minted} % set minted configuration
|
\input{config/minted} % set minted configuration
|
||||||
\input{config/acro} % setup acronyms
|
|
||||||
|
|
||||||
\input{extra/utils} % some utility stuff
|
\input{extra/utils} % some utility stuff
|
||||||
|
|
||||||
|
|
|
@ -50,5 +50,5 @@
|
||||||
\cleardoublepage
|
\cleardoublepage
|
||||||
\def\listacronymname{Abkürzungsverzeichnis}
|
\def\listacronymname{Abkürzungsverzeichnis}
|
||||||
\addcontentsline{toc}{section}{\listacronymname}
|
\addcontentsline{toc}{section}{\listacronymname}
|
||||||
\printacronyms[sort]
|
\printacronyms
|
||||||
\newpage
|
\newpage
|
Reference in New Issue