Projekt

Allgemein

Profil

Bilder » Historie » Version 12

Maren Pufe, 24.11.2021 13:46

1 1 Patrick Schulz
h1. Bilder
2
3 9 Philipp Glatza
{{toc}}
4
5
h2. Grundsätzliches
6
7 11 Philipp Glatza
Folgende Bildformate können von TeX nicht verstanden werden und sollten in einem extra Schritt nach PDF oder PNG gewandelt werden:
8 9 Philipp Glatza
9
* @.tif@, @.tiff@
10
* @.svg@
11
12
Folgende Bildformate werden von TeX verstanden:
13
14
* @.jpg@, @.jpeg@
15
* @.pdf@
16 1 Patrick Schulz
* @.png@
17 10 Patrick Schulz
* @.eps@
18 9 Philipp Glatza
19 1 Patrick Schulz
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)
20
21
h3. Einzelbilder
22 3 Patrick Schulz
23
h4. Einspaltiger Satz
24
25 1 Patrick Schulz
<pre><code class="text">
26 5 Patrick Schulz
\begin{tpFigure}[<options>]
27 2 Patrick Schulz
  \tpCaption{<caption>}
28
  \tpSource{<Quelle>}
29
  \tpLegend{<Legende>}
30
  \tpNumber{<Nummer>}
31
  \tpFig{\includegraphics[<optionen>]{<pfad>}}
32 1 Patrick Schulz
\end{tpFigure}
33
</code></pre>
34
35 8 Patrick Schulz
* @<options>@ Attribute, kommaseparierte KeyVal-Syntax @<attribut>=<value>@ bzw. @<attribut>={<value>}@, wenn @<value>@ "=" oder "," enthalten (optional):
36 5 Patrick Schulz
** @float-pos@
37
*** fehlt das oder ist @<value>@ leer, wird das Bild fix (d.h. nicht-gleitend) platziert. Ggf. wird dabei (viel) vertikaler Weißraum erzeugt.
38
*** t top
39
*** b bottom
40
*** h falls Bild noch auf Seite passt: nichtgleitend, sonst: top auf nächster Seite
41
*** p Bild allein auf nächster Seite. 
42
** @class@
43
*** Layout-Klasse des Gleitobjektes
44 1 Patrick Schulz
* @\tpCaption{}@ Bildunterschrift
45 2 Patrick Schulz
* @\tpSource{}@ Quellenangabe
46
* @\tpLegend{}@ Legende
47 1 Patrick Schulz
* @\tpNumber{}@ Abbildungszähler samt Präfix, z.B. "Abb. 10", "Fig. 1.2", "Abbildung 22", etc.
48 2 Patrick Schulz
* @\tpFig{}@ Hiermit wird die Bilddatei eingebunden, beinhaltet i.d.R. @\includegraphics[<optionen>]{<pfad>}@
49 3 Patrick Schulz
50
h4. zweispaltiger Satz
51
52 6 Philipp Glatza
Soll ein Gleitobjekt im zweispaltigen Satz über beide spalten gehen, wird dem Umgebungsnamen ein @*@ am Ende angefügt. Auch ist dann das @float-pos@-Attribut zwingend anzugeben (und darf nicht leer sein), da zweispaltige Objekte in TeX zwangsweise immer gleiten.
53 3 Patrick Schulz
54
Ein seitenbreites Bild wäre demnach
55
<pre><code class="text">
56 5 Patrick Schulz
\begin{tpFigure*}[<options>]
57 3 Patrick Schulz
58
\end{tpFigure*}
59
</code></pre>
60
Ohne die * wird das Bild in einer einzelnen Spalte platziert.
61
62
Die übrigen Parameter sind dieselben wie im einspaltigen Satz, oben.
63 1 Patrick Schulz
64
h3. komplexe Abbildungen
65
66
h4. Mehrere Bilder unter einer Caption
67
68
<pre><code class="text">
69
\begin{tpFigure}
70 2 Patrick Schulz
  \tpCaption{<caption>}
71
  \tpLegend{<Legende>}
72
  \tpSource{<source>}
73
  \tpNumber{<Counter>}
74 1 Patrick Schulz
  \begin{tpSubFloat}
75 2 Patrick Schulz
    \tpFig{\includegraphics[<optionen>]{<pfad>}}
76 1 Patrick Schulz
  \end{tpSubFloat}
77
  \begin{tpSubFloat}
78 2 Patrick Schulz
    \tpFig{\includegraphics[<optionen>]{<pfad>}}
79 1 Patrick Schulz
  \end{tpSubFloat}
80
\end{tpFigure}
81
</code></pre>
82
83
h4. Mehrere Bilder mit separaten Captions
84
85
<pre><code class="text">
86
\begin{tpFigure}
87
  \begin{tpSubFloat}
88 2 Patrick Schulz
    \tpCaption{<caption>}
89
    \tpLegend{<Legende>}
90
    \tpSource{<source>}
91
    \tpNumber{<Counter>}
92
    \tpFig{\includegraphics[<optionen>]{<pfad>}}
93 1 Patrick Schulz
  \end{tpSubFloat}
94
  \begin{tpSubFloat}
95 2 Patrick Schulz
    \tpCaption{<caption>}
96
    \tpLegend{<Legende>}
97
    \tpSource{<source>}
98
    \tpNumber{<Counter>}
99
    \tpFig{\includegraphics[<optionen>]{<pfad>}}
100 1 Patrick Schulz
  \end{tpSubFloat}
101
\end{tpFigure}
102
</code></pre>