Projekt

Allgemein

Profil

Aktionen

Bilder » Historie » Revision 1

Revision 1/17 | Weiter »
Patrick Schulz, 09.02.2021 09:28


Bilder

Bilder im transpect-tex Common Framework (transpect-floats.dtx)

Einzelbilder
\begin{tpFigure}[<floatpos>]
  \caption{<caption>}
  \source{<Quelle>}
  \legend{<Legende>}
  \number{<Nummer>}
  \fig{\includegraphics[<optionen>]{<pfad>}}
\end{tpFigure}
  • <floatpos> Float-Position (optional):
    • 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.
    • 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.
  • \caption{} Bildunterschrift
  • \source{} Quellenangabe
  • \legend{} Legende
  • \number{} Abbildungszähler samt Präfix, z.B. "Abb. 10", "Fig. 1.2", "Abbildung 22", etc.
  • \fig{} Hiermit wird die Bilddatei eingebunden, beinhaltet i.d.R. \includegraphics[<optionen>]{<pfad>}

komplexe Abbildungen

Mehrere Bilder unter einer Caption

\begin{tpFigure}
  \caption{<caption>}
  \legend{<Legende>}
  \source{<source>}
  \label{<Counter>}
  \begin{tpSubFloat}
    \fig{\includegraphics[<optionen>]{<pfad>}}
  \end{tpSubFloat}
  \begin{tpSubFloat}
    \fig{\includegraphics[<optionen>]{<pfad>}}
  \end{tpSubFloat}
\end{tpFigure}

Mehrere Bilder mit separaten Captions

\begin{tpFigure}
  \begin{tpSubFloat}
    \caption{<caption>}
    \legend{<Legende>}
    \source{<source>}
    \label{<Counter>}
    \fig{\includegraphics[<optionen>]{<pfad>}}
  \end{tpSubFloat}
  \begin{tpSubFloat}
    \caption{<caption>}
    \legend{<Legende>}
    \source{<source>}
    \label{<Counter>}
    \fig{\includegraphics[<optionen>]{<pfad>}}
  \end{tpSubFloat}
\end{tpFigure}

Von Patrick Schulz vor mehr als 3 Jahren aktualisiert · 1 Revisionen