I would like to create two differents longtables, with the same width of columns from one longtable to an other other.
Here some specifities.
- The longtable have the same number of columns
- The content of the lastest column have the same size from one header to an other one.
- Only the content of the first columns could have different size
I would like the size of the first columns be the same from table to an another one, the size should be the max of "autocalculated size".
Here a MWE
\documentclass{article}
\usepackage{longtable}
\begin{document}
\begin{longtable}{|l|l|}
Head & 1 \\
\endhead
text & other
\end{longtable}
\begin{longtable}{|l|l|}
Head & 2 \\
\endhead
longer text & other
\end{longtable}
\end{document}