mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 03:47:20 +00:00
0f3211c339
so that it recognizes an item containing only a list which is itself tight as potentially an item in a tight list. Closes #9161.
969 B
969 B
This inserts an empty \item[] when a list occurs at the
beginning of a definition list definition; otherwise the list
may start on the line with the label, which looks terrible.
See https://tex.stackexchange.com/questions/192480/force-itemize-inside-description-onto-a-new-line
% pandoc -t latex
Definition
: 1. list
2. list
^D
\begin{description}
\tightlist
\item[Definition]
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item[]
\item
list
\item
list
\end{enumerate}
\end{description}
% pandoc -t latex
Definition
: Foo
1. list
2. list
^D
\begin{description}
\item[Definition]
Foo
\begin{enumerate}
\def\labelenumi{\arabic{enumi}.}
\tightlist
\item
list
\item
list
\end{enumerate}
\end{description}
% pandoc -t latex
Definition
: - list
- list
^D
\begin{description}
\tightlist
\item[Definition]
\begin{itemize}
\tightlist
\item[]
\item
list
\item
list
\end{itemize}
\end{description}