fileformat

Auftreten

optional, einmal

Attribute

Beschreibung

Mit <fileformat> wird das Ausgabeformat des zu erzeugenden Outputs spezifiziert. Mögliche Formate sind: ASCII, HTML, (La)TeX, PDF, Postscript, DocBook... Wird das vorgegebene Format vom erzeugenden Programm nicht unterstützt oder ist die <fileformat>-Anweisung nicht gegeben worden, erfolgt die Ausgabe im ASCII-Format.

Durch das Ausgabeformat ist gleichzeitig die Endung der Ausgabedatei bestimmt (siehe auch <filename>):

     Format         Schlüsselwort      Dateiendung
    -----------------------------------------------
      ASCII             ascii             .txt
     (La)TeX           (la)tex            .tex
       PDF               pdf              .pdf
    Postscript        postscript          .ps
      HTML              html              .html
     DocBook           docbook            .xml
                

<fileformat> darf nur genau einmal angegeben werden.

Eltern-Elemente

<output>

Kind-Elemente

Siehe Auch

<filename>, <headline>, <lingo>, <remark>

Beispiele

(siehe auch <output>)

<!-- Ausgabe im ASCII-Format -->
<fileformat>ascii</fileformat>
                
<!-- es soll eine TeX-Tabelle erstellt werden -->
<fileformat>tex</fileformat>
                
<!-- Ausgabe im PDF-Format -->
<fileformat>pdf</fileformat>
                
<!-- Ausgabe nach DocBook -->
<fileformat>docbook</fileformat>