Open jgunstone opened 1 year ago
Thanks for opening your first issue here! Engagement like this is essential for open source projects! :hugs:
If you haven't done so already, check out EBP's Code of Conduct. Also, please try to follow the issue template as it helps other community members to contribute more effectively.
If your issue is a feature request, others may react to it, to raise its prominence (see Feature Voting).
Welcome to the EBP community! :tada:
I am also looking at using longtable
and tabularray
because with the current table package that is used, tabular
, the rows don't go nicely onto the next page.
It would be great to add support for these
There is already some support for longtable
in the myst-to-tex
subpackage (here), however I don't think that the options are exposed to the directive level in mystmd
cc @fwkoch ?
Which area is this feature request for?
LaTeX Export
Describe the feature you'd like to request
i'd like to be able to specify what latex table package to export with.
based on this: https://github.com/executablebooks/mystjs/blob/ef07d85f49f84f575e2917437f333db6aacacfad/packages/myst-to-tex/src/tables.ts#L162-L194
it looks like the
tabular
package is hard-coded in?Describe the solution you'd like
I'd like to use either:
longtable
(as i have a requirement for multipage tables)tabularray
(newer and in my humble opinion better, its great and has excellent customisation features, including multpage and multicol support)The example below is produced using
tabularray
. To my understanding it would be impossible to do this using eithertabular
orlongtable
test2_1.pdfDescribe alternatives you've considered
pandoc uses
longtable
by default.