1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
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}
```
|