We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm building on
NAME="Ubuntu" VERSION="18.04.3 LTS (Bionic Beaver)"
and I get the following error:
pandoc: unrecognized option `--pdf-engine' Try pandoc --help for more information. Makefile:15: recipe for target 'pdf' failed
The fix seems to be --latex-engine xelatex instead of --pdf-engine xelatex. It worked for me, anyway.
--latex-engine xelatex
--pdf-engine xelatex
The text was updated successfully, but these errors were encountered:
Fix for laboon#158
aeef8df
This seems to depend on the version of Pandoc. 2.0 seems to be where this changed.
Sorry, something went wrong.
More details: Ubuntu 18.04 won't install pandoc 2.x with apt-get because its current install was
apt-get
bionic (18.04LTS) (text): general markup converter [universe] 1.19.2.4~dfsg-1build4: amd64 arm64 armhf i386 ppc64el s390x
I went to https://github.com/jgm/pandoc/releases/latest and downloaded the pandoc-2.*-amd64.deb file and executed
pandoc-2.*-amd64.deb
sudo dpkg -i $DEB
where $DEB is the downloaded .deb file above, to install it by hand.
$DEB
.deb
No branches or pull requests
I'm building on
and I get the following error:
The fix seems to be
--latex-engine xelatex
instead of--pdf-engine xelatex
. It worked for me, anyway.The text was updated successfully, but these errors were encountered: