latex3 / tagging-project

Issues related to the tagging project
https://latex3.github.io/tagging-project/
LaTeX Project Public License v1.3c
23 stars 5 forks source link

block code: items without actual list item body overlap #36

Open u-fischer opened 7 months ago

u-fischer commented 7 months ago
\DocumentMetadata{testphase={block}}
\documentclass{article} 
\begin{document}
\begin{description}
\item[blub]
\item[blub]
\item[blub]
\end{description} 
\end{document}

gives

image

Without the block code the output looks normal:

image

It happens also with other lists (itemize, enumerate) and also without optional argument. It works correctly from the first item with something in the body:

\DocumentMetadata{testphase={block}}
\documentclass{article} 
\begin{document}
\begin{enumerate}
\item 
\item 
\item x
\item 
\item 
\end{enumerate} 
\end{document}

image