During export of jupyter notebook, I got loads of errors of the following kind
notebook.tex:798: Missing number, treated as zero
notebook.tex:798: Illegal unit of measure (
notebook.tex:799: Missing number, treated as zero
notebook.tex:799: Illegal unit of measure (
notebook.tex:803: Missing number, treated as zero
notebook.tex:803: Illegal unit of measure (
The notebook needs to contain markdown table of a certain width such as
when exporting this notebook as PDF (File > Download as > PDF via LaTeX (.pdf)) the described errors appear.
The problem was introduced with Pandoc 2.11.2 with this commit jgm/pandoc@bd7c9eb
To fix it we need to add \usepackage{calc} to base.tex.j2, ideally after the \usepackage{booktabs} line.
Nbconvert version: 6.0.7
The text was updated successfully, but these errors were encountered:
Pandoc >= 2.11.1 requires the calc package, and pandoc >= 2.11.3
requires the array package, for larger tables (taken from git blame
for pandoc's templates). This commits adds the two packages in
an order similar to that in pandoc's templates.
Pandoc >= 2.11.1 requires the calc package, and pandoc >= 2.11.3
requires the array package, for larger tables (taken from git blame
for pandoc's templates). This commits adds the two packages in
an order similar to that in pandoc's templates.
During export of jupyter notebook, I got loads of errors of the following kind
The notebook needs to contain markdown table of a certain width such as
when exporting this notebook as PDF (
File > Download as > PDF via LaTeX (.pdf)
) the described errors appear.The problem was introduced with Pandoc 2.11.2 with this commit jgm/pandoc@bd7c9eb
To fix it we need to add
\usepackage{calc}
to base.tex.j2, ideally after the\usepackage{booktabs}
line.Nbconvert version: 6.0.7
The text was updated successfully, but these errors were encountered: