summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/acro/example_one.tex
blob: ea775ba86c3003c2b857f38e546ed671a01b3727 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
% arara: pdflatex
% arara: pdflatex
\documentclass{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{acro}
\acsetup{
  page-ref    = paren,% Seitennummer in Klammern
  extra-style = comma,% extra-Informationen mit Komma anhängen
  only-used   = false,% für das Beispiel auch die nicht verwendeten in die Liste aufnehmen
  sort        = true  % Liste sortieren
}

\usepackage{longtable,siunitx}

\DeclareAcronym{ecm}{
  short = ECM ,
  long  = Electro Chemical Machining ,
  extra = Elektrochemisches Abtragen
}
\DeclareAcronym{adc}{
  short = ADC ,
  long  = Analog-to-Digital-Converter
}
\DeclareAcronym{edm}{
  short = EDM ,
  long  = Electro Discharge Machining
}
\DeclareAcronym{ecdm}{
  short = ECDM ,
  long  = Electro Chemical Discharge Machining ,
  extra = Kombination aus \acs{ecm} und \acs{edm}
}

% "Acronyme" (tatsächlich physikalische Größen) einer speziellen Klasse:
\DeclareAcronym{f}{
  short = \ensuremath{f} ,
  long  = Frequenz ,
  extra = \si{\hertz} ,
  class = physics
}
\DeclareAcronym{A}{
  short = \ensuremath{A} ,
  long  = Fläche ,
  extra = \si{\metre^2} ,
  class = physics
}
\DeclareAcronym{C}{
  short = \ensuremath{C} ,
  long  = Kapazität ,
  extra = \si{\farad} ,
  class = physics
}
\DeclareAcronym{F}{
  short = \ensuremath{F} ,
  long  = Kraft ,
  extra = \si{\newton} ,
  class = physics
}

\begin{document}

erstes Mal: \ac{ecm}

zweites Mal: \ac{ecm}

% alle außer der Klasse 'physics' auflisten:
\printacronyms[exclude-classes=physics, name=Abkürzungsverzeichnis]

% nur die Klasse 'physics' auflisten:
\acsetup{
  list-type   = table,
  list-style  = extra-longtable-rev,
  extra-style = plain
}
\printacronyms[include-classes=physics, name=Formelverzeichnis]

\end{document}