\documentclass{article}
\usepackage{longtable, tabu, enumitem, geometry, lipsum, calc}
% from https://tex.stackexchange.com/a/6454
\makeatletter
\newcommand*{\compress}{@minipagetrue}
\makeatother
\begin{document}
\begin{longtabu}{l>{\compress}X}
Dummy &
\begin{enumerate}
\item \lipsum[1]
\item \lipsum[1]
\end{enumerate}
\end{longtabu}
\end{document}
\documentclass{article}
\usepackage{longtable, tabu, enumitem, geometry, lipsum, calc, hyperref}
% from https://tex.stackexchange.com/a/6454
\makeatletter
\newcommand*{\compress}{@minipagetrue}
\makeatother
\begin{document}
\begin{longtabu}{l>{\compress}X}
Dummy &
\begin{enumerate}
\item \lipsum[1]
\item \lipsum[1]
\end{enumerate}
\end{longtabu}
\end{document}
And you can see the alignment issue. How to fix it? Removing the package isn't a solution, because I have to use it (of course, this is not what I am writing, this is just MWE that reproduces the problem.) Perhaps I am not much aware of what the \compress it doing behind the hood, so am having trouble dealing with this problem.


longtabuthen? – Book Of Flames Jun 10 '21 at 08:42xltabularpackage. It makes sure, tables can spread across multiple pages, while at the same time offering anXtype column similar totabularx. – leandriis Jun 10 '21 at 09:23tabularxwithxltabular. – leandriis Jun 10 '21 at 09:30\begin{tabenum}\item Item one\item Item two\end{tabenum}this compiles to a list with the last item shifted to the right. How to make it look like a normal list? – Book Of Flames Jun 11 '21 at 02:36