-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Feature request: Option to preserve internal LaTeX template or make standalone match direct PDF generation #10725
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
Comments
The pdf-via-latex route disables the |
In your first example, this is just the difference between two unicode en-dashes and two latex ligatures for en-dash ( Your second example I don't understand. When I use |
Thanks for your reply. I did some thorough testing on a simple .md ( If I use the 2 step route (--standalone to tex, then pdf), I need to disable both. I guess knowing about these smart extensions allows me to fully control everything, so perhaps rather than adding a new option, it would be great if the verbose modes could specify exactly which smart modes are enabled? Here is my output from the 4 combinations (command goes after output):
Yields correct display in the PDF.
Dashes displayed incorrectly
Apostrophe on top of quotes
Dashes displayed incorrectly I guess I could do the same for the verbose output if you need me to, just more tedious to deal with. Thanks! :) P.S. Regarding the $ sign -- I haven't tried reproducing that; I was dealing with this text inside a table; but I may also have made a manual fix, as I have multiple versions lying around ... again if you need me to do a thorough test with the table ones as well please let me know. Thanks! :) |
Uh oh!
There was an error while loading. Please reload this page.
I'm writing this as a feature request as I don't know if the intentional design is that
.md --pandoc--> pdf
has identical behavior to
.md --pandoc -s --> .tex --xelatex--> pdf
I just run into a case where it is not: For
––〃––
in the .md:––〃––
(debugged this using both--verbose
and.md --pandoc--> .txt
, outputs matched)----〃----
Another example: For
Decius' "Title"
Decius’$,$ “Title”
Decius' ``Title''
In this second example, the plain behavior 1) actually was buggy, as when rendering to pdf, the ending possessive apostrophe and first quote overlapped; just by using method 2) the bug was fixed
The feature request I'm making would be a way to either be able to keep the intermediate .tex file that 1) creates and that gets automatically deleted e.g.
--keep-internal-tex
, or when creating 2) have an option to use the same template/processing as method 1) e.g.--use-internal-template
The text was updated successfully, but these errors were encountered: