Converting Mathjax Into Pdf With Wkhtmltopdf Yields Too Small Maths
By using pdfkit-pythonbased on wkhtmltopdf, I have managed to convert MathJaxinto pdf. wkhtmltopdf configuration options are the following: options = { 'quiet': '', 'javasc
Solution 1:
Found a solution, by adding the following to MathJax
configuration:
MathJax.Hub.Config({
CommonHTML: {
minScaleAdjust: 100,
}
});
thus increasing to 100% while default value is only 50 %. Reference is here.
Post a Comment for "Converting Mathjax Into Pdf With Wkhtmltopdf Yields Too Small Maths"