latex3 / tagging-project

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

minipage inside tabular leads to faulty structure #37

Open u-fischer opened 10 months ago

u-fischer commented 10 months ago
\DocumentMetadata{testphase={phase-III,table}}

\documentclass[]{article}

\begin{document}

\begin{tabular}{p{6cm}}
\begin{itemize}\item blub\end{itemize}
\end{tabular}

% faulty structure, minipage outside TD
\begin{tabular}{l}
 \begin{minipage}{6cm}
   abc 
 \end{minipage}
\end{tabular}

% faulty structure, errors
\begin{tabular}{l}
 \begin{minipage}{6cm}
   \begin{itemize}\item blub\end{itemize}
 \end{minipage}
\end{tabular}

\end{document}