If you see this, something is wrong
First published on Tuesday, Aug 19, 2025 and last modified on Thursday, Sep 11, 2025 by François Chaplais.
LaTeX2Web supports main LaTeX list types, as well as LaTeX2Web specific lists.
These are LaTeX2Web specific lists. They are call simple because they are not recursive, i.e., you cannot put a list within another one. Items in these list types must be inline text, i.e., the text that you would put in a paragraph.
The syntax for a simple list is the following
\begin{list}
\item first in the list
\item second in the list
\end{list}and here is the output:
The \begin{list} opening statement supports an optional parameter, which specifies which character should precede the list item. The parameter can have the following values:
nonedisccirclesquaredecimaldecimal-leading-zerolower-romanupper-romanlower-greeklower-alphalower-latinupper-alphaupper-latinThis list uses the upper-roman styling. Note that, for this prefix, the number is automatically incremented.
Check list are a list of checkboxes which can be checked on un-checked. To create a checked list item, use the optional parameter checked to the \item command. Here is a sample code
\begin{checkList}
\item[checked] début
\item fin
\end{checkList}and this is the output
The checkboxes can be modified by anyone, but their state will be saved only if you have authoring privileges on the document. Specifically, the state of the checkboxes is saved to the HTML code of the document. To restore the list, re-compile the document.
These lists use the itemize and enumerate environments. They can be recursive, and items can consist in quite a number of object types like paragraphs, equations, figure, tables, etc... This is nice but, due to the hierarchical structure of LaTeX2Web, this means that a table cell can not include a list for instance. If you want to do this, use a simple list instead.
LaTeX lists can be reference using a label. By default, itemize list are un-ordered, and enumerate list are ordered. This can, however, be overriden by using the same optional parameter in the list declaration. Here is an example.
The previous lists are all itemize, but the list markers have been set to decimal and lower-greek.
Here is the code.
\begin{itemize}[decimal]
\item I am first
\item I am second
\begin{itemize}[lower-greek]
\item I am inside
\item Tell me I look good!
\end{itemize}
\item That's all, folks!
\end{itemize}You can also use font awesome markers for your list items. Here is an example.
For more details see the general help on lists and the help on font awesome icons.
Simple lists are a terminal type, which means that they can be included in any object that is not terminal. LaTeX lists are not terminal in the hierarchy. They can not, however, include theorems. They can include all objects of terminal type.