latex3 / tagging-project

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

stabular package incompatible #548

Open mbertucci47 opened 1 month ago

mbertucci47 commented 1 month ago

Not sure if anyone uses stabular over longtable, but it errors with

! Missing # inserted in alignment preamble.

If its array option is loaded, the error is

! Undefined control sequence.
<argument> \ERRORmissingcells 

Example:

\DocumentMetadata
  {
    lang=en-US,
    pdfversion=2.0,
    pdfstandard=ua-2,
    testphase={phase-III,title,math,table,firstaid}
  }
\documentclass{article}

\usepackage[
%  array % errors with or without
  ]{stabular}

\begin{document}

\begin{stabular}{cc}
A & B \\
C & D
\end{stabular}

\end{document}
u-fischer commented 1 month ago

hm yes, it would have to copy the tabular adaptions in array.sty.

FrankMittelbach commented 1 month ago

... or build on array perhaps? What happens if array is loard afterwards?