  
  [1X2 [33X[0;0Y[5XAutoDoc[105X[101X[1X documentation comments[133X[101X
  
  [33X[0;0YYou can document declarations of global functions and variables, operations,
  attributes etc. by inserting [13X[5XAutoDoc[105X[113X comments into your sources before these
  declaration.  An  [5XAutoDoc[105X  comment  always  starts with [10X#![110X. This is also the
  smallest  possible [5XAutoDoc[105X command. If you want your declaration documented,
  just write [10X#![110X at the line before the documentation. For example:[133X
  
  [4X[32X[104X
    [4X#![104X
    [4XDeclareOperation( "AnOperation",[104X
    [4X                  [ IsList ] );[104X
  [4X[32X[104X
  
  [33X[0;0YThis will produce a manual entry for the operation [10XAnOperation[110X.[133X
  
  [33X[0;0YInside  of [5XAutoDoc[105X comments, [13X[5XAutoDoc[105X commands[113X starting with [10X@[110X can be used to
  control the output [5XAutoDoc[105X produces.[133X
  
  
  [1X2.1 [33X[0;0YDocumenting declarations[133X[101X
  
  [33X[0;0YIn  the  bare  form above, the manual entry for [10XAnOperation[110X will not contain
  much more than the name of the operation. In order to change this, there are
  several   commands   you  can  put  into  the  [5XAutoDoc[105X  comment  before  the
  declaration. Currently, the following commands are provided:[133X
  
  
  [1X2.1-1 [33X[0;0Y@Description [3Xdescr[103X[101X[1X[133X[101X
  
  [33X[0;0YAdds  the  text  in the following lines of the [5XAutoDoc[105X to the description of
  the  declaration  in the manual. Lines are until the next [5XAutoDoc[105X command or
  until the declaration is reached.[133X
  
  
  [1X2.1-2 [33X[0;0Y@Returns [3Xret_val[103X[101X[1X[133X[101X
  
  [33X[0;0YThe  string  [3Xret_val[103X  is added to the documentation, with the text [21XReturns: [121X
  put  in front of it. This should usually give a brief hint about the type or
  meaning of the value retuned by the documented function.[133X
  
  
  [1X2.1-3 [33X[0;0Y@Arguments [3Xargs[103X[101X[1X[133X[101X
  
  [33X[0;0YThe  string  [3Xargs[103X  contains  a  description  of  the  arguments the function
  expects, including optional parts, which are denoted by square brackets. The
  argument names can be separated by whitespace, commas or square brackets for
  the  optional  arguments,  like  [21Xgrp[, elm][121X or [21Xxx[y[z] ][121X. If [5XGAP[105X options are
  used,  this  can  be followed by a colon : and one or more assignments, like
  [21Xn[, r]: tries := 100[121X.[133X
  
  
  [1X2.1-4 [33X[0;0Y@Group [3Xgrpname[103X[101X[1X[133X[101X
  
  [33X[0;0YAdds  the  following  method to a group with the given name. See section [14X2.5[114X
  for more information about groups.[133X
  
  
  [1X2.1-5 [33X[0;0Y@Label [3Xlabel[103X[101X[1X[133X[101X
  
  [33X[0;0YAdds  label  to  the  function  as label. If this is not specified, then for
  declarations  that  involve  a  list  of  input  filters (as is the case for
  [10XDeclareOperation[110X, [10XDeclareAttribute[110X, etc.), a default label is generated from
  this filter list.[133X
  
  [4X[32X[104X
    [4X#! @Label testlabel[104X
    [4XDeclareProperty( "AProperty",[104X
    [4X                 IsObject );[104X
  [4X[32X[104X
  
  [33X[0;0Yleads to this:[133X
  
  [1X2.1-6 AProperty[101X
  
  [33X[1;0Y[29X[2XAProperty[102X( [3Xarg[103X ) [32X property[133X
  [6XReturns:[106X  [33X[0;10Y[10Xtrue[110X or [10Xfalse[110X[133X
  
  [33X[0;0Ywhile[133X
  
  [4X[32X[104X
    [4X#![104X
    [4XDeclareProperty( "AProperty",[104X
    [4X                 IsObject );[104X
  [4X[32X[104X
  
  [33X[0;0Yleads to this:[133X
  
  [1X2.1-7 AProperty[101X
  
  [33X[1;0Y[29X[2XAProperty[102X( [3Xarg[103X ) [32X property[133X
  [6XReturns:[106X  [33X[0;10Y[10Xtrue[110X or [10Xfalse[110X[133X
  
  
  [1X2.1-8 [33X[0;0Y@ChapterInfo [3Xchapter, section[103X[101X[1X[133X[101X
  
  [33X[0;0YAdds  the  entry to the given chapter and section. Here, [3Xchapter[103X and [3Xsection[103X
  are the respective titles.[133X
  
  [33X[0;0YAs an example, a full [5XAutoDoc[105X comment with all options could look like this:[133X
  
  [4X[32X[104X
    [4X#! @Description[104X
    [4X#! Computes the list of lists of degrees of ordinary characters[104X
    [4X#! associated to the <A>p</A>-blocks of the group <A>G</A>[104X
    [4X#! with <A>p</A>-modular character table <A>modtbl</A>[104X
    [4X#! and underlying ordinary character table <A>ordtbl</A>.[104X
    [4X#! @Returns a list[104X
    [4X#! @Arguments modtbl[104X
    [4X#! @Group CharacterDegreesOfBlocks[104X
    [4X#! @FunctionLabel chardegblocks[104X
    [4X#! @ChapterInfo Blocks, Attributes[104X
    [4XDeclareAttribute( "CharacterDegreesOfBlocks",[104X
    [4X        IsBrauerTable );[104X
  [4X[32X[104X
  
  
  [1X2.2 [33X[0;0YOther documentation comments[133X[101X
  
  [33X[0;0YThere  are also some commands which can be used in [5XAutoDoc[105X comments that are
  not  associated  to  any  declaration. This is useful for additional text in
  your documentation, examples, mathematical chapters, etc..[133X
  
  
  [1X2.2-1 [33X[0;0Y@Chapter [3Xname[103X[101X[1X[133X[101X
  
  [33X[0;0YSets  the  active  chapter,  all  subsequent  functions which do not have an
  explicit  chapter declared in their AutoDoc comment via [10X@ChapterInfo[110X will be
  added to this chapter. Also all text comments, i.e. lines that begin with #!
  without a command, and which do not follow after [10X@Description[110X, will be added
  to  the chapter as regular text. Additionally, the chapters label wil be set
  to [10XChapter_[110X[3Xname[103X. Example:[133X
  
  [4X[32X[104X
    [4X#! @Chapter My chapter[104X
    [4X#!  This is my chapter.[104X
    [4X#!  I document my stuff in it.[104X
  [4X[32X[104X
  
  [33X[0;0YThe  [10X@ChapterLabel[110X [3Xlabel[103X command can be used to set the label of the chapter
  to  [10XChapter_[110X[3Xlabel[103X instead of [10XChapter_[110X[3Xname[103X. Additionally, the chapter will be
  stored as [10X_Chapter_[110X[3Xlabel[103X[10X.xml[110X. The [10X@ChapterTitle[110X [3Xtitle[103X command can be used to
  set  a  heading  for  the chapter that is different from [3Xname[103X. Note that the
  title does not affect the label. If you use all three commands, i.e.,[133X
  
  [4X[32X[104X
    [4X#! @Chapter name[104X
    [4X#! @ChapterLabel label[104X
    [4X#! @ChapterTitle title[104X
  [4X[32X[104X
  
  [33X[0;0Y[10Xtitle[110X  is  used  for the headline, [10Xlabel[110X for cross-referencing, and [10Xname[110X for
  setting the same chapter as active chapter again.[133X
  
  
  [1X2.2-2 [33X[0;0Y@Section [3Xname[103X[101X[1X[133X[101X
  
  [33X[0;0YSets an active section like [10X@Chapter[110X sets an active chapter.[133X
  
  [4X[32X[104X
    [4X#! @Section My first manual section[104X
    [4X#!  In this section I am going to document my first method.[104X
  [4X[32X[104X
  
  [33X[0;0YThe  [10X@SectionLabel[110X [3Xlabel[103X command can be used to set the label of the section
  to    [10XSection_[110X[3Xlabel[103X   instead   of   [10XChapter_chaptername_Section_[110X[3Xname[103X.   The
  [10X@SectionTitle[110X  [3Xtitle[103X  command  can  be used to set a heading for the section
  that is different from [3Xname[103X.[133X
  
  
  [1X2.2-3 [33X[0;0Y@EndSection[133X[101X
  
  [33X[0;0YCloses the current section. Please be careful here. Closing a section before
  opening it might cause unexpected errors.[133X
  
  [4X[32X[104X
    [4X#! @EndSection[104X
    [4X#### The following text again belongs to the chapter[104X
    [4X#! Now we could start a second section if we want to.[104X
  [4X[32X[104X
  
  
  [1X2.2-4 [33X[0;0Y@Subsection [3Xname[103X[101X[1X[133X[101X
  
  [33X[0;0YSets an active subsection like [10X@Chapter[110X sets an active chapter.[133X
  
  [4X[32X[104X
    [4X#! @Subsection My first manual subsection[104X
    [4X#!  In this subsection I am going to document my first example.[104X
  [4X[32X[104X
  
  [33X[0;0YThe  [10X@SubsectionLabel[110X  [3Xlabel[103X  command  can  be  used to set the label of the
  subsection          to          [10XSubsection_[110X[3Xlabel[103X          instead         of
  [10XChapter_chaptername_Section_sectionname_Subsection_[110X[3Xname[103X.                 The
  [10X@SubsectionTitle[110X  [3Xtitle[103X  command  can  be  used  to  set  a  heading for the
  subsection that is different from [3Xname[103X.[133X
  
  
  [1X2.2-5 [33X[0;0Y@EndSubsection[133X[101X
  
  [33X[0;0YCloses  the current subsection. Please be careful here. Closing a subsection
  before opening it might cause unexpected errors.[133X
  
  [4X[32X[104X
    [4X#! @EndSubsection[104X
    [4X#### The following text again belongs to the section[104X
    [4X#! Now we are in the section again[104X
  [4X[32X[104X
  
  
  [1X2.2-6 [33X[0;0Y@BeginAutoDoc[133X[101X
  
  [33X[0;0YCauses   all  subsequent  declarations  to  be  documented  in  the  manual,
  regardless of whether they have an [5XAutoDoc[105X comment in front of them or not.[133X
  
  
  [1X2.2-7 [33X[0;0Y@EndAutoDoc[133X[101X
  
  [33X[0;0YEnds  the  affect of [10X@BeginAutoDoc[110X. So from here on, again only declarations
  with an explicit [5XAutoDoc[105X comment in front are added to the manual.[133X
  
  [4X[32X[104X
    [4X#! @BeginAutoDoc[104X
    [4X[104X
    [4XDeclareOperation( "Operation1", [ IsList ] );[104X
    [4X[104X
    [4XDeclareProperty( "IsProperty", IsList );[104X
    [4X[104X
    [4X#! @EndAutoDoc[104X
  [4X[32X[104X
  
  [33X[0;0YBoth, [10XOperation1[110X and [10XIsProperty[110X would appear in the manual.[133X
  
  
  [1X2.2-8 [33X[0;0Y@BeginGroup [3X[grpname][103X[101X[1X[133X[101X
  
  [33X[0;0YStarts  a  group.  All following documented declarations without an explicit
  [10X@Group[110X  command  are grouped together in the same group with the given name.
  If  no  name is given, then a new nameless group is generated. The effect of
  this command is ended when an [10X@EndGroup[110X command is reached.[133X
  
  [33X[0;0YSee section [14X2.5[114X for more information about groups.[133X
  
  
  [1X2.2-9 [33X[0;0Y@EndGroup[133X[101X
  
  [33X[0;0YEnds the current group.[133X
  
  [4X[32X[104X
    [4X#! @BeginGroup MyGroup[104X
    [4X#![104X
    [4XDeclareAttribute( "GroupedAttribute",[104X
    [4X                  IsList );[104X
    [4X[104X
    [4XDeclareOperation( "NonGroupedOperation",[104X
    [4X                  [ IsObject ] );[104X
    [4X[104X
    [4X#![104X
    [4XDeclareOperation( "GroupedOperation",[104X
    [4X                  [ IsList, IsRubbish ] );[104X
    [4X#! @EndGroup[104X
  [4X[32X[104X
  
  
  [1X2.2-10 [33X[0;0Y@Level [3Xlvl[103X[101X[1X[133X[101X
  
  [33X[0;0YSets  the  current level of the documentation. All items created after this,
  chapters,   sections,  and  items,  are  given  the  level  [3Xlvl[103X,  until  the
  [10X@ResetLevel[110X command resets the level to 0 or another level is set.[133X
  
  [33X[0;0YSee section [14X2.6[114X for more information about groups.[133X
  
  
  [1X2.2-11 [33X[0;0Y@ResetLevel[133X[101X
  
  [33X[0;0YResets the current level to 0.[133X
  
  
  [1X2.2-12 [33X[0;0Y@BeginExample and @EndExample[133X[101X
  
  [33X[0;0Y@BeginExample inserts an example into the manual. The syntax for examples is
  different  from GAPDocs example syntax in order to have a file that contains
  the  example  and  is  GAP  readable.  To achieve this, GAP commands are not
  preceded  by  a  comment,  while  output  has  to  be preceded by an [5XAutoDoc[105X
  comment.  The  GAP prompt for the display in the manual is added by AutoDoc.
  @EndExample ends the example block.[133X
  
  [4X[32X[104X
    [4X#! @BeginExample[104X
    [4XS5 := SymmetricGroup(5);[104X
    [4X#! Sym( [ 1 .. 5 ] )[104X
    [4XOrder(S5);[104X
    [4X#! 120[104X
    [4X#! @EndExample[104X
  [4X[32X[104X
  
  [33X[0;0YThe [5XAutoDoc[105X command [10X@Example[110X is an alias of [10X@BeginExample[110X.[133X
  
  
  [1X2.2-13 [33X[0;0Y@BeginExampleSession and @EndExampleSession[133X[101X
  
  [33X[0;0Y@ExampleSession  inserts  an  example  into  the  manual, but in a different
  syntax. For example, consider[133X
  
  [4X[32X[104X
    [4X#! @BeginExample[104X
    [4XS5 := SymmetricGroup(5);[104X
    [4X#! Sym( [ 1 .. 5 ] )[104X
    [4XOrder(S5);[104X
    [4X#! 120[104X
    [4X#! @EndExample[104X
  [4X[32X[104X
  
  [33X[0;0YAs  you  can see, the commands are not commented and hence are executed when
  the  file  containing the example block is read. To insert examples directly
  into source code files, one can instead use @ExampleSession:[133X
  
  [4X[32X[104X
    [4X#! @BeginExampleSession[104X
    [4X#! gap> S5 := SymmetricGroup(5);[104X
    [4X#! Sym( [ 1 .. 5 ] )[104X
    [4X#! gap> Order(S5);[104X
    [4X#! 120[104X
    [4X#! @EndExampleSession[104X
  [4X[32X[104X
  
  [33X[0;0YIt  inserts  an  example  into the manual just as @Example would do, but all
  lines  are  commented  and therefore not executed when the file is read. All
  lines  that  should  be  part of the example displayed in the manual have to
  start with an [5XAutoDoc[105X comment ([10X#![110X). The comment will be removed, and, if the
  following  character  is  a space, this space will also be removed. There is
  never  more than one space removed. To ensure examples are correctly colored
  in  the  manual,  there  should  be exactly one space between [10X#![110X and the [10Xgap[110X
  prompt.    The    [5XAutoDoc[105X   command   [10X@ExampleSession[110X   is   an   alias   of
  [10X@BeginExampleSession[110X.[133X
  
  
  [1X2.2-14 [33X[0;0Y@BeginLog and @EndLog[133X[101X
  
  [33X[0;0YWorks  just  like  the  @BeginExample  command,  but the example will not be
  tested. See the GAPDoc manual for more information. The [5XAutoDoc[105X command [10X@Log[110X
  is an alias of [10X@BeginLog[110X.[133X
  
  
  [1X2.2-15 [33X[0;0Y@BeginLogSession and @EndLogSession[133X[101X
  
  [33X[0;0YWorks  just  like the @BeginExampleSession command, but the example will not
  be  tested  if  manual  examples  are  run.  See  the GAPDoc manual for more
  information.    The   [5XAutoDoc[105X   command   [10X@LogSession[110X   is   an   alias   of
  [10X@BeginLogSession[110X.[133X
  
  
  [1X2.2-16 [33X[0;0Y@DoNotReadRestOfFile[133X[101X
  
  [33X[0;0YPrevents  the rest of the file from being read by the parser. Useful for not
  finished or temporary files.[133X
  
  [4X[32X[104X
    [4X#! This will appear in the manual[104X
    [4X[104X
    [4X#! @DoNotReadRestOfFile[104X
    [4X[104X
    [4X#! This will not appear in the manual.[104X
  [4X[32X[104X
  
  
  [1X2.2-17 [33X[0;0Y@BeginChunk [3Xname[103X[101X[1X, @EndChunk, and @InsertChunk [3Xname[103X[101X[1X[133X[101X
  
  [33X[0;0YText  inside  a  @BeginChunk  / @EndChunk part will not be inserted into the
  final  documentation  directly.  Instead,  the text is stored in an internal
  buffer.  That chunk of text can then later on be inserted in any other place
  by  using the @InsertChunk [3Xname[103X command. If you do not provide an @EndChunk,
  the chunk ends at the end of the file.[133X
  
  [4X[32X[104X
    [4X#! @BeginChunk MyChunk[104X
    [4X#! Hello, world.[104X
    [4X#! @EndChunk[104X
    [4X[104X
    [4X#! @InsertChunk MyChunk[104X
    [4X## The text "Hello, world." is inserted right before this.[104X
  [4X[32X[104X
  
  [33X[0;0YYou can use this to define an example like this in one file:[133X
  
  [4X[32X[104X
    [4X#! @BeginChunk Example_Symmetric_Group[104X
    [4X#! @BeginExample[104X
    [4XS5 := SymmetricGroup(5);[104X
    [4X#! Sym( [ 1 .. 5 ] )[104X
    [4XOrder(S5);[104X
    [4X#! 120[104X
    [4X#! @EndExample[104X
    [4X#! @EndChunk[104X
  [4X[32X[104X
  
  [33X[0;0YAnd then later, insert the example in a different file, like this:[133X
  
  [4X[32X[104X
    [4X#! @InsertChunk Example_Symmetric_Group[104X
  [4X[32X[104X
  
  
  [1X2.2-18 [33X[0;0Y@BeginSystem [3Xname[103X[101X[1X, @EndSystem, and @InsertSystem [3Xname[103X[101X[1X[133X[101X
  
  [33X[0;0YSame  as  @BeginChunk  etc.  This  command  is  deprecated. Please use chunk
  instead.[133X
  
  
  [1X2.2-19 [33X[0;0Y@BeginCode [3Xname[103X[101X[1X, @EndCode, and @InsertCode [3Xname[103X[101X[1X[133X[101X
  
  [33X[0;0YInserts the text between @BeginCode and @EndCode verbatim at the point where
  @InsertCode  is called. This is useful to insert code excerpts directly into
  the manual.[133X
  
  [4X[32X[104X
    [4X#! @BeginCode Increment[104X
    [4Xi := i + 1;[104X
    [4X#! @EndCode[104X
    [4X[104X
    [4X#! @InsertCode Increment[104X
    [4X## Code is inserted here.[104X
  [4X[32X[104X
  
  
  [1X2.2-20 [33X[0;0Y@LatexOnly [3Xtext[103X[101X[1X, @BeginLatexOnly , and @EndLatexOnly[133X[101X
  
  [33X[0;0YCode  inserted between @BeginLatexOnly and @EndLatexOnly or after @LatexOnly
  is  only inserted in the PDF version of the manual or worksheet. It can hold
  arbitrary LaTeX-commands.[133X
  
  [4X[32X[104X
    [4X#! @BeginLatexOnly[104X
    [4X#! \include{picture.tex}[104X
    [4X#! @EndLatexOnly[104X
    [4X[104X
    [4X#! @LatexOnly \include{picture.tex}[104X
  [4X[32X[104X
  
  
  [1X2.3 [33X[0;0YTitle page commands[133X[101X
  
  [33X[0;0YThe  following  commands  can  be used to add the corresponding parts to the
  title page of the document, in case the scaffolding is enabled.[133X
  
  [30X    [33X[0;6Y@Title[133X
  
  [30X    [33X[0;6Y@Subtitle[133X
  
  [30X    [33X[0;6Y@Version[133X
  
  [30X    [33X[0;6Y@TitleComment[133X
  
  [30X    [33X[0;6Y@Author[133X
  
  [30X    [33X[0;6Y@Date[133X
  
  [30X    [33X[0;6Y@Address[133X
  
  [30X    [33X[0;6Y@Abstract[133X
  
  [30X    [33X[0;6Y@Copyright[133X
  
  [30X    [33X[0;6Y@Acknowledgements[133X
  
  [30X    [33X[0;6Y@Colophon[133X
  
  [33X[0;0YThose  add the following lines at the corresponding point of the title page.
  Please  note  that  many  of those things can be (better) extracted from the
  PackageInfo.g.  In  case you set some of those, the extracted or in scaffold
  defined  items  will  be  overwritten.  While  this  is  not very useful for
  documenting  packages,  they  are  necessary  for  worksheets  created  with
  [2XAutoDocWorksheet[102X  ([14X3.1-1[114X),  since  they do not have a PackageInfo to extract
  those information.[133X
  
  
  [1X2.4 [33X[0;0YPlain text files[133X[101X
  
  [33X[0;0YAutoDoc plain text files work exactly like AutoDoc comments, except that the
  #!  is  unnecessary  at  the beginning of a line which should be documented.
  Files  that  have  the  suffix .autodoc will automatically regarded as plain
  text  files  while  the  commands @AutoDocPlainText and @EndAutoDocPlainText
  mark  parts  in  plain text files which should be regarded as AutoDoc parts.
  All commands can be used like before.[133X
  
  
  [1X2.5 [33X[0;0YGrouping[133X[101X
  
  [33X[0;0YIn [5XGAPDoc[105X, it is possible to make groups of ManItems, i.e., when documenting
  a  function,  operation,  etc.,  it  is possible to group them into suitable
  chunks.  This can be particularly useful if there are several definitions of
  an  operation  with several different argument types, all doing more or less
  the  same  to the arguments. Then their manual items can be grouped, sharing
  the  same description and return type information. Note that it is currently
  not  possible to give a header to the Group in the manual, but the generated
  ManItem heading of the first entry will be used.[133X
  
  [33X[0;0YNote  that group names are globally unique throughout the whole manual. That
  is,  groups  with the same name are in fact merged into a single group, even
  if  they were declared in different source files. Thus you can have multiple
  [10X@BeginGroup[110X  /  [10X@EndGroup[110X  pairs  using  the  same  group name, in different
  places, and these all will refer to the same group.[133X
  
  [33X[0;0YMoreover,  this  means  that  you  can  add  items to a group via the [10X@Group[110X
  command in the [5XAutoDoc[105X comment of an arbitrary declaration, at any time. The
  following code[133X
  
  [4X[32X[104X
    [4X#! @BeginGroup Group1[104X
    [4X[104X
    [4X#! @Description[104X
    [4X#!  First sentence.[104X
    [4XDeclareOperation( "FirstOperation", [ IsInt ] );[104X
    [4X[104X
    [4X#! @Description[104X
    [4X#!  Second sentence.[104X
    [4XDeclareOperation( "SecondOperation", [ IsInt, IsGroup ] );[104X
    [4X[104X
    [4X#! @EndGroup[104X
    [4X[104X
    [4X## .. Stuff ..[104X
    [4X[104X
    [4X#! @Description[104X
    [4X#!  Third sentence.[104X
    [4X#! @Group Group1[104X
    [4XKeyDependentOperation( "ThirdOperation", IsGroup, IsInt, "prime );[104X
  [4X[32X[104X
  
  [33X[0;0Yproduces the following:[133X
  
  [1X2.5-1 FirstOperation[101X
  
  [33X[1;0Y[29X[2XFirstOperation[102X( [3Xarg[103X ) [32X operation[133X
  [33X[1;0Y[29X[2XSecondOperation[102X( [3Xarg1[103X, [3Xarg2[103X ) [32X operation[133X
  [33X[1;0Y[29X[2XThirdOperation[102X( [3Xarg1[103X, [3Xarg2[103X ) [32X operation[133X
  
  [33X[0;0YFirst sentence. Second sentence. Third sentence.[133X
  
  
  [1X2.6 [33X[0;0YLevel[133X[101X
  
  [33X[0;0YLevels can be set to not write certain parts in the manual by default. Every
  entry  has by default the level 0. The command [10X@Level[110X can be used to set the
  level of the following part to a higher level, for example 1, and prevent it
  from  being printed to the manual by default. However, if one sets the level
  to  a  higher  value  in  the  autodoc  option of [10XAutoDoc[110X, the parts will be
  included in the manual at the specific place.[133X
  
  [4X[32X[104X
    [4X#! This text will be printed to the manual.[104X
    [4X#! @Level 1[104X
    [4X#! This text will be printed to the manual if created with level 1 or higher.[104X
    [4X#! @Level 2[104X
    [4X#! This text will be printed to the manual if created with level 2 or higher.[104X
    [4X#! @ResetLevel[104X
    [4X#! This text will be printed to the manual.[104X
  [4X[32X[104X
  
  
  [1X2.7 [33X[0;0YMarkdown-like formatting of text in [5XAutoDoc[105X[101X[1X[133X[101X
  
  [33X[0;0Y[5XAutoDoc[105X  has  some  convenient ways to insert special format into text, like
  math  formulas  and  lists. The syntax for them are inspired by Markdown and
  LaTeX,  but  do  not  follow  them strictly. Neither are all features of the
  Markdown  language  supported.  The  following  subsections describe what is
  possible.[133X
  
  
  [1X2.7-1 [33X[0;0YLists[133X[101X
  
  [33X[0;0YOne can create lists of items by beginning a new line with *, +, -, followed
  by one space. The first item starts the list. When items are longer than one
  line,  the  following  lines have to be indented by at least two spaces. The
  list ends when a line which does not start a new item is not indented by two
  spaces. Of course lists can be nested. Here is an example:[133X
  
  [4X[32X[104X
    [4X#! The list starts in the next line[104X
    [4X#! * item 1[104X
    [4X#! * item 2[104X
    [4X#!   which is a bit longer[104X
    [4X#!   * and also contains a nested list[104X
    [4X#!   * with two items[104X
    [4X#! * item 3 of the outer list[104X
    [4X#! This does not belong to the list anymore.[104X
  [4X[32X[104X
  
  [33X[0;0YThis is the output:[133X
  [33X[0;0YThe list starts in the next line[133X
  
  [30X    [33X[0;6Yitem 1[133X
  
  [30X    [33X[0;6Yitem 2 which is a bit longer[133X
  
        [30X    [33X[0;12Yand also contains a nested list[133X
  
        [30X    [33X[0;12Ywith two items[133X
  
  [30X    [33X[0;6Yitem 3 of the outer list[133X
  
  [33X[0;0YThis does not belong to the list anymore.[133X
  [33X[0;0YThe  *,  -,  and + are fully interchangeable and can even be used mixed, but
  this is not recommended.[133X
  
  
  [1X2.7-2 [33X[0;0YMath modes[133X[101X
  
  [33X[0;0YOne  can start an inline formula with a $, and also end it with $, just like
  in  LaTeX.  This  will  translate  into [5XGAPDoc[105Xs inline math environment. For
  display mode one can use $$, also like LaTeX.[133X
  
  [4X[32X[104X
    [4X#! This is an inline formula: $1+1 = 2$.[104X
    [4X#! This is a display formula:[104X
    [4X#! $$ \sum_{i=1}^n i. $$[104X
  [4X[32X[104X
  
  [33X[0;0Yproduces the following output:[133X
  [33X[0;0YThis is an inline formula: [23X1+1 = 2[123X. This is a display formula:[133X
  
  
  [24X[33X[0;6Y\sum_{i=1}^n i.[133X
  
  [124X
  
  
  [1X2.7-3 [33X[0;0YEmphasize[133X[101X
  
  [33X[0;0YOne  can  emphasize text by using two asterisks (**) or two underscores (__)
  at  the  beginning  and  the  end  of  the  text which should be emphasized.
  Example:[133X
  
  [4X[32X[104X
    [4X#! **This** is very important.[104X
    [4X#! This is __also important__.[104X
    [4X#! **Naturally, more than one line[104X
    [4X#! can be important.**[104X
  [4X[32X[104X
  
  [33X[0;0YThis produces the following output:[133X
  [33X[0;0Y[13XThis[113X  is  very  important.  This is [13Xalso important[113X. [13XNaturally, more than one
  line can be important.[113X[133X
  
