|
"http://www.w3.org/TR/REC-html40/loose.dtd">
Displayed Paragraphs
In addition to the environments described in this section, HEVEA implements the center , flushleft and
flushright environments.
HEVEA also implements the corespondant TeX style declaration
\centering \raggedright and \raggedleft ,
but these declarations may not work as expected, when they do not
appear directly inside a displayed-paragraph environment or inside an array
element.
quote and quotation environments are the same thing: they
translate to BLOCKQUOTE elements.
The verse environment is not supported.
itemize , enumerate and description
environments translate to the UL , OL , and
DL elements and this is the whole story.As a consequence, no control is allowed on the appearances of these environments. More precisely optional arguments to \item do not
function properly inside itemize and enumerate . Moreover, item
labels inside itemize or numbering style inside enumerate
are browser dependent.However, customized lists can be produced by using the the list environment (see next section).
list environment translates to the
DL element.
Arguments to \begin{list} are handled as follows:\begin{list}{ default_label}{ decls}
The first argument default_label is the label generated by an \item command with no argument.
The second argument, decls is a sequence of declarations.
In practice, the following declarations are relevant:
\newcounter{coucou} \begin{list}{\thecoucou}{% \usecounter{coucou}% \renewcommand{\makelabel}[1]{\textbf{#1}.}} ... \end{list}This yields:
trivlist environment is also supported. It is equivalent to
the description environment.
The verbatim and verbatim* environments translate to
the PRE element.
Inside verbatim* , spaces are replaced by underscores (``_ '').Similarly, \verb and \verb* translate to the CODE
text element.The alltt environment is supported. |