Bilder » Historie » Revision 5
Revision 4 (Patrick Schulz, 26.03.2021 09:26) → Revision 5/17 (Patrick Schulz, 09.04.2021 14:18)
h1. Bilder 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) h3. Einzelbilder h4. Einspaltiger Satz <pre><code class="text"> \begin{tpFigure}[<options>] \begin{tpFigure}[<floatpos>] \tpCaption{<caption>} \tpSource{<Quelle>} \tpLegend{<Legende>} \tpNumber{<Nummer>} \tpFig{\includegraphics[<optionen>]{<pfad>}} \end{tpFigure} </code></pre> * @<options>@ Attribute, XML-Syntax @<attribut>="<value>"@ @<floatpos>@ Float-Position (optional): ** @float-pos@ *** fehlt das opt. Argument oder ist @<value>@ die Klammer leer, wird das Bild fix (d.h. nicht-gleitend) platziert. Ggf. wird dabei (viel) vertikaler Weißraum erzeugt. *** ** t top *** ** b bottom *** ** h falls Bild noch auf Seite passt: nichtgleitend, sonst: top auf nächster Seite *** ** p Bild allein auf nächster Seite. ** @class@ *** Layout-Klasse des Gleitobjektes * @\tpCaption{}@ Bildunterschrift * @\tpSource{}@ Quellenangabe * @\tpLegend{}@ Legende * @\tpNumber{}@ Abbildungszähler samt Präfix, z.B. "Abb. 10", "Fig. 1.2", "Abbildung 22", etc. * @\tpFig{}@ Hiermit wird die Bilddatei eingebunden, beinhaltet i.d.R. @\includegraphics[<optionen>]{<pfad>}@ h4. zweispaltiger Satz 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 der @<floatpos>@-Parameter zwingend anzugeben, da zweispaltige Objekte in TeX zwangsweise immer gleiten. Ein seitenbreites Bild wäre demnach <pre><code class="text"> \begin{tpFigure*}[<options>] \begin{tpFigure*}[<floatpos>] … \end{tpFigure*} </code></pre> Ohne die * wird das Bild in einer einzelnen Spalte platziert. Die übrigen Parameter sind dieselben wie im einspaltigen Satz, oben. h3. komplexe Abbildungen h4. Mehrere Bilder unter einer Caption <pre><code class="text"> \begin{tpFigure} \tpCaption{<caption>} \tpLegend{<Legende>} \tpSource{<source>} \tpNumber{<Counter>} \begin{tpSubFloat} \tpFig{\includegraphics[<optionen>]{<pfad>}} \end{tpSubFloat} \begin{tpSubFloat} \tpFig{\includegraphics[<optionen>]{<pfad>}} \end{tpSubFloat} \end{tpFigure} </code></pre> h4. Mehrere Bilder mit separaten Captions <pre><code class="text"> \begin{tpFigure} \begin{tpSubFloat} \tpCaption{<caption>} \tpLegend{<Legende>} \tpSource{<source>} \tpNumber{<Counter>} \tpFig{\includegraphics[<optionen>]{<pfad>}} \end{tpSubFloat} \begin{tpSubFloat} \tpCaption{<caption>} \tpLegend{<Legende>} \tpSource{<source>} \tpNumber{<Counter>} \tpFig{\includegraphics[<optionen>]{<pfad>}} \end{tpSubFloat} \end{tpFigure} </code></pre>