Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-release > by-pkgid > a47d51544ec63a4f57df69ffdfe2c320 > files > 33

aephea-10_008-8.mga7.noarch.rpm

\import{../pud/man.zmm}
\import{aephea.shared}

\begin{pud::man}{

   {name}{aephea-base}
   {html_title}{Aephea base definitions}
   {author}{Stijn van Dongen}
   {section}{7}
   {defstyle}{long}
   {synstyle}{long}
   {css_append}{ .debug { border: solid; border-width: 1px; } }

   \man_share
}


\${html}{\"pud::man::maketoc"}

\: iref#2, lref#2, enref#2, aref#2.
\: evn{spacing}
\: bf#1 it#1 v#1 tt#1
\: ftinc#2 ftdec#2
\: httpref#1 sibref#2
\: par car cpar#1 ccar#1
\: par#1 car#1 cpar#2 ccar#2


\sec{name}{NAME}
\NAME{aephea-base}{a description of Aephea base definitions}

\par{
   The macros in this package have been ported to both \html and
   troff.}


\sec{description}{DESCRIPTION}
\par{
   \it{aephea-base} \- A description of Aephea base definitions.
   The macros in this package have been ported to both \html and troff.

   This package is  used by the Aephea \v{simpledocument} class
   and by the Portable Unix Documentation (\pud) mini-languages for
   authoring manual pages (\sibref{pud-man}) and the \pud language
   for \faq authoring (\sibref{pud-faq}).}

\par{
   There is a small list of known issues in the \secref{issues} section,
   mostly concerning the troff device. These should generally be of no
   concern at all, but if you run into trouble look there first.  A quick
   glance through the list \it{before} you run into trouble may be the
   wisest thing to do.}


\sec{itemintro}{INTRODUCTION TO THE ITEMIZE ENVIRONMENT}

\par{
   The \it{itemize} environemnt is the Aephea workhorse for lists,
   enumerations, itemizations, and other tailed creatures. A simple and
   valid use is for example
   }

\set{tmp}{\!{  \begin{itemize}
      \item{\bf{foo}}
      \car{
         For I am foo.
         }
      \items{
         {\bf{barra}}
         {\bf{zuttelezut}}
      }
      \car{
         For we are bar and zut.
         }
   \end{itemize}}}

\verbatim{\apply{protect#1}{{\tmp}}}
\car{
   This source result in the following output:
   }

\apply{_#1{\1}}{{\tmp}}

\par{
   This is not impressive at all, but it gives an idea of how itemize works.
   The following example is a single itemize environment providing a
   rollercoasterride through most of the features of the itemize environment.
   As shown below, it is possible to change all the itemize settings and styles
   at will even within a single itemize instance.  Of course this is not useful
   at all except for demonstrating the \it{itemize} capabilities, but it goes
   to show that the itemize macros are quite robust (by virtue of modularity).
   }

\cpar{NOTE}{
   The entire listing below was put in Aephea's \it{spacing} environment,
   described further below. The environment was used to create
   extra margins on the two sides.
   }


\begin{spacing}{{left}{2}{right}{2}}
\begin{itemize}{
   {flow}{compact}
   {interitem}{1}
   {type}{arabic}
   {align}{right}
   {textindent}{4}
   {itemmargin}{2}
   {mark}{\*{itembullet}}
   {class_all}{}
}

\item
\car{
   Spacing modes \it{compact} and \it{cascade} are determined by the key \it{flow}.
   The current mode is \it{compact}, meaning that the itemize token and the ensuing text are on the same line.
   Below, compact mode is switched off (approximately) halfway.
   The \it{interitem} key determines the amount skipped between an item description
   and the next item.
   }

\item
\car{
   Several item modes (custom, mark, enumeration).
   }

\item
\car{
   Several enumeration modes (roman, arabic, alphabetic).
   }

\set{$type}{roman}
\set{$rp}{)}
\item
\car{
   The style of a list can be changed while in the middle of it.
   }

\item
\car{
   Nuther item.
   }

\item
\car{
   The list can be 'interupted' and resumed (by means of
   the \mc{intermezzo#1} macro).
   }

\intermezzo{
   Perhaps you wonder what good is THAT for, and justly so.
   The \mc{intermezzo#1} macro should only be used inbetween different
   items,  i.e. it should \it{not} split content belonging to a single item.
   }

\set{$type}{arabic}
\set{$rp}{]}
\set{$lp}{[}
\item
\car{
   Items can be optionally and automatically
   right and/or left delimited. The current
   item is delimited with square brackets.
   }

\set{$align}{left}
\item
\car{
   Items can be left or right aligned.
   }

\item
\car{
   Items can be stacked, which is supported only when \it{flow} is set to \it{cascade}.
   }

\set{{dict}{itemize}}{$flow}{cascade}
\item
\car{
   Beginning with this item, \it{flow} is set to \it{cascade}.
   }

\items{
   {Implying}
   {That}
   {Stacking}
}
\car{
   is now possible.
   }

\set{$align}{right}
\item
\car{
   (back to right-align) The itemcounter just keeps running by the way.
   }

\set{{dict}{itemize}}{$flow}{compact}
\setx{$itemcount}{\f{+}{\$itemcount}{5}}
\item
\car{
   (back to compact) But the counter can be manipulated at will.
   }

\set{$type}{mark}
\set{$rp}{}
\set{$lp}{}
\item
\car{
   A bullet item.
   }

\set{$interitem}{0}
\item
\car{
   Now \it{interitem} is set to 0 (affecting the current list), and a new list
   is started contiguous to the present text (by having its margintop set to 0).
   }

\begin{itemize}{
   {margintop}{0}
   {flow}{compact}
   {interitem}{0}
   {textindent}{4}
   {itemmargin}{2}
   {align}{right}
   {type}{abc}
   {class_all}{}
   {rp}{.}
}
\item
   \car{Hubris}
\item
   \car{Laziness}
\item
   \car{Impatience}
\end{itemize}
\car{Are the three virtues of programming.}

\item
\car{
   This concludes a listing showing most of the itemize capabilities.
   }

\end{itemize}

\end{spacing}


\sec{itemuse}{USING THE ITEMIZE ENVIRONMENT}
\par{
   You steer the itemize environment by providing it with tag-value pairs like so:
   }

\verbatim{\
   \\begin{itemize}{
      {flow}{compact}
      {interitem}{1}
      {align}{right}
      {type}{abc}
      {rp}{.}
   }}

\car{
   This is the list of tags that you may use.
   }

\begin{itemize}{
   {flow}{cascade}
   {interitem}{1}
}
\apply{_#2{\!item{\!it{\1}}\@{\N}\car{\2}}}{
   {margintop}
   {Top of table, anomalous unit (ems), default 0.}

   {interitem}
   {Paragraph skip in \it{ems} inbetween items, default 0.}

   {flow}
   {Set to compact or cascade}

   {textindent}
   {Width of text indent in ems.}

   {itemmargin}
   {Width of item margin in ems (for right-aligned items).}

   {mark}
   {E.g. \v{\\*{itembullet}} (if type=mark), affects \mc{item}.}

   {align}
   {One of left or right (item alignment), default left.}

   {class_all}
   {class name assigned to all block-level elements}

   {lp}
   {What's printed immediately to the left of an item.}

   {rp}
   {What's printed immediately to the right of an item.}

   {type}
   {One of mark, roman, abc, arabic, affects \mc{item}.}

                     \: hum ho, being clever we need \!$itemcount
                     \: rather than \$itemcount.
                     \: that's the downside of macro cleverness.
   {itemcount}
   {The count of items seen so far, e.g. \!$itemcount right now.}
}
\end{itemize}


\par{
   You need to know that the itemize environment internally maps these tags
   to dollar keys simply by prepending a dollar.
   Thus, if you want to reset one of the values associated with such a tag,
   you need to do e.g.
   }

\verbatim{\:/
   \\set{$align}{right}
   \\set{$itemcount}{30}}

\car{
   A more robust to do this is to ensure that the modified key is retrieved
   from the right dictionary, i.e. the top-level \it{itemize} dictionary,
   as follows.
   }

\verbatim{\:/
   \\set{{dict}{itemize}}{$align}{right}
   \\set{{dict}{itemize}}{$itemcount}{30}}

\sec{spacing}{THE SPACING ENVIRONMENT}
\par{
   Its syntax is identical to that of the \it{itemize} environment.
   It accepts tags \it{left}, \it{right}, \it{top}, and \it{bottom}.
   These should receive numeric values. The associated
   unit is \it{em}.
   }

\par{
   The troff device does not yet support the \it{top} and \it{bottom}
   tags.
   }

\sec{macros}{MACROS}

\begin{itemize}{
   {flow}{cascade}
   {interitem}{1}
}

\items{
   {\defmac{enref2}{enref#2}}
   {\defmac{iref2}{iref#2}}
   {\defmac{lref2}{lref#2}}
   {\defmac{aref2}{aref#2}}
   {\defmac{httpref1}{httpref#1}}
   {\defmac{sibref1}{sibref#1}}
   {\defmac{sibref2}{sibref#2}}
   {\defmac{sibref3}{sibref#3}}
}
\car{
   \mc{enref#2} \it{creates} a link for which the first argument is the anchor
   and for which the second argument is the content (which can be left empty).
   \mc{iref#2} takes such an anchor as the first argument and it takes content
   that carries the link as the second argument.  \mc{lref#2} takes a file name
   (possibly including a relative or absolute path) as the first argument and
   content as the second argument.  \mc{aref#2} takes a URL (later possibly a
   URI) as the first argument and content as the second argument.  \mc{sibref#2}
   takes a label as argument which presumably is the name of some application.
   It may append an extension depending on the current device, and it assumes
   that \v{label + extension} is the name of a file in the current directory.
   The second argument is displayed in the text. For \mc{sibref#1} the
   displayed text is the same as the label. For \mc{sibref#3} the second
   argument is an additional anchor within the file being linked to, and
   the third argument is the displayed text.
   \mc{httpref#1} simply prints a URL which will be active when html is output.}

\items{
   {\defmac{par1}{par#1}}
   {\defmac{cpar2}{cpar#2}}
   {\defmac{car1}{car#1}}
   {\defmac{ccar2}{ccar#2}}
}
\car{
   These are all paragraph macros that carry the paragraph content as
   the last argument. The first argument of \mc{cpar#2} and \mc{ccar#2}
   is the caption.  These macros will ensure well-formedness for devices
   that support it, such as \html.
   Use \v{\\car#1} where you don't need a paragraph skip, but just need to
   indicate that you are in text mode again. You can simply always use
   \v{\\par#1} and never use \v{\\car#1}.  If you care about the details of spacing
   though, or if you have particular trouble for example in creating an itemize
   environment where you do not want top and bottom margins, then it could be
   worthwile to turn to \v{\\car#1}.  Examples for using \v{\\car#1} are:
   }

\begin{itemize}{
   {margintop}{0}
   {mark}{\*{itembullet}}
   {flow}{compact}
   {align}{right}
   {textindent}{2}
   {itemmargin}{1}
   {interitem}{0}
   {class_all}{}
}
\item
\car{After an environment that always carries a bottom margin.}

\""{ I do not follow this advice myself, actually.
\item
\car{
   After a caption that always carries a bottom margin, such
   as most sectioning commands (e.g. \v{\\sec} in the manual macros).
   }
}


\item
\car{
   After an environment that does \it{not} carry a bottom margin,
   and where you specifically want the environment to be contiguous to the
   enclosing text. The listing you are currently reading is an
   example of this.
   }

\end{itemize}
\car{
   As promised. The \v{\\car} macro may feel a little unusual.  If you don't mind
   standing the chance of a little spurious vertical white-space just use
   \v{\\par} all the time.  If you really need it, such as in an 'inline' listing
   as above, the \v{\\car} macro is ready to do the job.
   }

\items{
   {\defmac{bf1}{bf#1}}
   {\defmac{it1}{it#1}}
   {\defmac{tt1}{tt#1}}
   {\defmac{v1}{v#1}}
   {\defmac{ftinc2}{ftinc#2}}
   {\defmac{ftdec2}{ftdec#2}}
}
\car{
   The first four items set their argument in the \bf{font} \it{specified}.
   \mc{tt#1} and \mc{v#1} both denote a typewriter font. \it{These macros should
   not be nested if troff is to be among the output devices}.  Support for the
   last two items is not yet very robust.  They temporarily \ftinc{1}{increment}
   respectively \ftdec{1}{decrement} the font by the amount of the first argument and
   apply the resulting setting to the second argument.
   }

\items{
   {\defmac{verbatim1}{verbatim#1}}
   {\defmac{verbatix1}{verbatix#1}}
}
\car{
   Make the device output the contents verbatim in a mono-spaced font,
   obeying spaces and newlines.  This does not prohibit expansion of
   macros, use \mc{protect#1} for that.  The macro \mc{verbatim#1} will
   create a non-breaking environment.
   }


\end{itemize}


\sec{issues}{ISSUES}

\begin{itemize}{
   {margintop}{0}
   {flow}{cascade}
   {interitem}{1}
}

\item{\bf{Nesting}}
\car{
   Do not nest \mc{bf#1}, \mc{it#1}, \mc{tt#1}, or \mc{v#1} macros if troff is
   among the output devices. It will yield unexpected results.
   }

\intermezzo{The rest of this list pertains to the \it{itemize} environment.}

\""{
\item{\bf{Boldness}}
\car{
   There is currently not a way to get bold (Roman) numerals using
   the automatic enumeration mode within \it{itemize}, or to change
   the appearance of any of the other enumeration types.
   }
should be possible now using CSS on the item class.
}

\item{\bf{Margins}}
\car{
   Do not use fractional values for \v{textindent} and \v{itemmargin} in the itemize
   environment, if troff is among the output devices.
   The reason is that the Aephea macros use the difference between these two values
   and pass them on to the output devices. Troff rounds all values it gets
   and thus the additive relationship between the values may be lost.
   }

\end{itemize}

\end{pud::man}