Open jgranduel opened 1 year ago
There is no a4
option in LaTeX.
Have you checked with a4paper
in place of a4
or A4
as in your \documentclass[a4paper]{article}
?
@kpym yes, I tried and added \documentclass[a4paper]{article}
at the end of my issue. My issue was about getting the list of allowed page-size in in help and if possible, having the option to use a case insensitive page size (tectonic -Zpaper-size=A4
, or Zpaper-size=a4
, or -Zpaper-size=a4paper
), all of them being minor issues!
The code implementing this matching is in the C layer, in crates/pdf_io/pdf_io/dpx-dpxconf.c. It shouldn't be too hard for someone with knowledge of C to make it a bit more flexible!
Hi,
I am giving tectonic a new try on Windows (tectonic-0.12). Usually using pandoc with
--pdf-engine=xelatex
, I wanted to change thepaper-size
like I do with pandoc.Where can I find all available options for allowed paper-size (or any option)?
I tried a first guess option
I found issue #216 and #182. The format is
a4
for some reason, maybe TeX history?The ISO 276 standard uses capital letters (and so are we used to). Could they be included as alternative?
Nonetheless the output PDF file is not in A4 format:
with pandoc
I am just realizing ironically that pandoc also uses
a4
and that A4 is not the default!Modifying the TeX source works well (
\documentclass[a4paper]{article}
) works well: