Projekt

Allgemein

Profil

Bilder » Historie » Revision 6

Revision 5 (Patrick Schulz, 09.04.2021 14:18) → Revision 6/17 (Philipp Glatza, 26.04.2021 20:59)

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>] 
   \tpCaption{<caption>} 
   \tpSource{<Quelle>} 
   \tpLegend{<Legende>} 
   \tpNumber{<Nummer>} 
   \tpFig{\includegraphics[<optionen>]{<pfad>}} 
 \end{tpFigure} 
 </code></pre> 

 * @<options>@ Attribute, XML-Syntax @<attribut>="<value>"@    (optional): 
 ** @float-pos@ 
 *** fehlt das oder ist @<value>@ 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 zwingend anzugeben (und darf nicht leer sein), anzugeben, da zweispaltige Objekte in TeX zwangsweise immer gleiten. 

 Ein seitenbreites Bild wäre demnach 
 <pre><code class="text"> 
 \begin{tpFigure*}[<options>] 
   … 
 \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>