Projekt

Allgemein

Profil

Bilder » Historie » Version 1

Patrick Schulz, 09.02.2021 09:28

1 1 Patrick Schulz
h1. Bilder
2
3
h2. Bilder im *transpect-tex Common Framework* ("transpect-floats.dtx":https://gitlab.le-tex.de/transpect-tex/transpect-tex/-/blob/master/src/transpect-floats.dtx)
4
5
h3. Einzelbilder
6
<pre><code class="text">
7
\begin{tpFigure}[<floatpos>]
8
  \caption{<caption>}
9
  \source{<Quelle>}
10
  \legend{<Legende>}
11
  \number{<Nummer>}
12
  \fig{\includegraphics[<optionen>]{<pfad>}}
13
\end{tpFigure}
14
</code></pre>
15
* @<floatpos>@ Float-Position (optional):
16
** fehlt das opt. Argument oder ist die Klammer leer, wird das Bild fix (d.h. nicht-gleitend) platziert. Ggf. wird dabei (viel) vertikaler Weißraum erzeugt.
17
** t top
18
** b bottom
19
** h falls Bild noch auf Seite passt: nichtgleitend, sonst: top auf nächster Seite
20
** p Bild allein auf nächster Seite. 
21
* @\caption{}@ Bildunterschrift
22
* @\source{}@ Quellenangabe
23
* @\legend{}@ Legende
24
* @\number{}@ Abbildungszähler samt Präfix, z.B. "Abb. 10", "Fig. 1.2", "Abbildung 22", etc.
25
* @\fig{}@ Hiermit wird die Bilddatei eingebunden, beinhaltet i.d.R. @\includegraphics[<optionen>]{<pfad>}@
26
27
h3. komplexe Abbildungen
28
29
h4. Mehrere Bilder unter einer Caption
30
31
<pre><code class="text">
32
\begin{tpFigure}
33
  \caption{<caption>}
34
  \legend{<Legende>}
35
  \source{<source>}
36
  \label{<Counter>}
37
  \begin{tpSubFloat}
38
    \fig{\includegraphics[<optionen>]{<pfad>}}
39
  \end{tpSubFloat}
40
  \begin{tpSubFloat}
41
    \fig{\includegraphics[<optionen>]{<pfad>}}
42
  \end{tpSubFloat}
43
\end{tpFigure}
44
</code></pre>
45
46
h4. Mehrere Bilder mit separaten Captions
47
48
<pre><code class="text">
49
\begin{tpFigure}
50
  \begin{tpSubFloat}
51
    \caption{<caption>}
52
    \legend{<Legende>}
53
    \source{<source>}
54
    \label{<Counter>}
55
    \fig{\includegraphics[<optionen>]{<pfad>}}
56
  \end{tpSubFloat}
57
  \begin{tpSubFloat}
58
    \caption{<caption>}
59
    \legend{<Legende>}
60
    \source{<source>}
61
    \label{<Counter>}
62
    \fig{\includegraphics[<optionen>]{<pfad>}}
63
  \end{tpSubFloat}
64
\end{tpFigure}
65
</code></pre>