-
Notifications
You must be signed in to change notification settings - Fork 8
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
smart quotes throughout #30
Comments
I have tested a quickfix for this based on an answer in this stackoverflow: quotes in latex Essentially adds a global macro to replace quotes "" with the proper LaTeX format (``''): Adding this to the end of includes.tex:
On a cursory glance through the generated documents after a Example: |
If this seems to be a reasonable approach - I can issue a PR! |
That's a clever solution! My thinking was stuck in |
Hmmm you're right - I hadn't considered that other glyphs might be used to depict quotations. For the sake of consistency, I think it might be cleaner to sed-replace all instances of |
I've made this sort of change in the past; it simply is what it is. I am not concerned about the number of lines changed. However, at that point, I would advocate for directly adding the smart quotes with sed instead of using a macro. That way, the source code could be directly inspected and it would deterministically render in the output. Plus, it would be satisfying to grep for all the old glyphs and verify that they were all changed when there are no results produced. Thoughts? |
I've replaced all single and double quotes (straight and UTF-8) with TeX's opening and closing quotation marks, sprinkling in some |
LaTeX uses specific markup for quotes. Throughout most of the original DOJ document, quotes are detected as
"
- and this should be replaced by the LaTeX equivalent.The text was updated successfully, but these errors were encountered: