-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
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
renderthis::to_pdf() throw error for HTML slides using mathjax #75
Comments
I can't replicate the issue. I made this simple
Then I rendered it to pdf with If I use the specific mathjax setting you used, like this:
Then yes I get the error. But I didn't need to use it to get the latex math to render properly. |
Silly question, but have you tried opening the rendered html page in a browser? I've had issues in the past where the RStudio viewer doesn't render the same as an actual browser like Chrome. |
Not a silly question at all :) Indeed I noticed that web browser (I mostly use Chrome) display the equations properly (as in this case) even when the RStudio viewer doesn't. Although, hold that thought... I think I'm getting closer to the issue: Scenario 1
Scenario 2
So basically, RStudio is doing something when serving the HTML on localhost that isn't present in the HTML file itself and thus can't be exported into the PDF by renderthis. Who do I poke now with these new details? :) |
renderthis should be using chrome by default. If you open the html file in chrome and try to print from chrome, it should look correct. If it does, then there's something going on in RStudio. I'd also try just re-installing everything to see if there's a version issue somewhere. |
These days, there are more than a few web features that are common practice that require a running web server to use. One of those is loading scripts and resources from external hosts. That's why the Render button fires up a local web server for the preview. Opening the file directly, on the other hand, causes these features break when you open the file with One way around this is to use the Render button to launch the preview server and then use the URL for the preview in renderthis::to_pdf("http://localhost:7756/index.html", "my-slides.pdf") |
If I open the 'localhost' HTML that looks ok, then yes, the PDF looks OK too. That's essentially what I've done when I described
However, like I said the HTML file itself, opened in a web browser without serving it from RStudio has the issue, and thus a PDF made from that one has the issue too. which basically leads to @gadenbuie 's related workaround
The actual issue isn't really 'fixed' but I entirely agree with
I've got other fires to put out so I think I'll leave it at that until I've got more time to investigate further and/or chase up RStudio/Posit people who might have an opinion on the possibility of making self-contained HTML files in this scenario. Cheers both! |
Hello.
Thanks a lot for this package which I've been using happily for several years.
For some months now, I've been having an issue with some (but not all) symbols in LaTeX equations.
Initially, it seemed to be a quarto issue.
For instance, the following:
was producing
Which led me to the fix here
But now, that the LaTeX equation displays correctly in the HTML presentation,
renderthis::to_pdf()
throw the following error and fails to produce the PDF.Note that weirdly enough, if I click the 'Print' button in the RStudio 'Presentation' tab, and manually (not programmatically) print it from there, the PDF contains the equation formatted properly.
Any suggestion?
The text was updated successfully, but these errors were encountered: