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.
<lingo>, <fileformat>, <filename>, <headline>, <remark>
(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>