output

Occurrence

optional, single

Attributes

Description

Inside <output> statements concerning the kind of output to be generated are given. If not all child elements are given it's the task of the executing software to generate the output in a standard format, or to generate a filename e.g. Therefore, it's always the best to set <output> with its child elements.

Parent Elements

<calculatebottomtimetable>, <calculateprofile>, <calculatetable>

Child Elements

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

See Also

<calculatebottomtimetable>, <calculateprofile>, <calculatetable>

Examples

(e.g. see also <calculatetable>)

<output>
    <!-- English is the language to be used in the output -->
    <lingo>en</lingo>
    <fileformat>tex</fileformat>
    <!-- The file extension must not be given in the file name, because -->
    <!-- it is specified through the output format in the line above -->
    <filename>kais_tab1</filename>
    <headline>Kai_s Special Decompression Table</headline>
    <remark>
        The best decompression table ever generated!!! ;-)
    </remark>
</output>
                
<!-- The format of the output isn't given, therefore ASCII format will be generated, -->
<!-- the file name extension is set to ".txt" - which must not be given inside -->
<!-- the file name statement! -->
<output>
    <!-- output language set to German -->
    <lingo>de</lingo>
    <filename>alfons_deco_table</filename>
    <headline>Alfon's hyper deco table</headline>
</output>
                
<!-- Only the language (Italian) is set, the format of the output isn't given, therefore  -->
<!-- ASCII format will be generated, the file name extension is set to ".txt" -->
<!-- - which must not be given inside the file name statement! -->
<output>
    <lingo>it</lingo>
</output>