-
Notifications
You must be signed in to change notification settings - Fork 20
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
Fixed research-paper Makefile #2
base: master
Are you sure you want to change the base?
Conversation
thanks for the PR. I agree with you, the
I run on OSX and I had to compile twice the TeX file to get the biblio in place. If not, it shows question marks BTW, thanks for the update of the
I would like to accept the PR. Could you please reply to questions 1 -- 4 before we can establish what we keep and what to clean up? I would love to keep:
Thanks for the time! |
Thank you for reading and taking the time to evaluate my PR! Let me answer questions 1 -- 4.
This happened because of the extensions specified on the original Makefile for the target language:
All of those extensions are actually built-in features of LaTeX so it makes sense for Pandoc not to support them for LaTeX. Those extensions make much more sense when applied to Markdown, since most Markdown specifications don't support those features by default.
Alright, with all of those questions out of the way I'd suggest:
That's all, thank you again your time and sorry for my late reply (I actually didn't get notified, but I'll keep an eye manually now). Also, please make sure to check the Makefile on my latest commit since the one I originally suggested wouldn't have worked properly (because of the missing compilation step after compiling the biblio). |
The Makefile for the research-paper example had the extensions in the target parameter (-t) and needed to be in the from parameter (-f) so they were moved accordingly.
The pdflatex compilation of the main.tex file was performed twice so I removed the extra compilation steps.
Also redirecting both stderr & stdout to /dev/null was triggering a bug where it hanged after compilation during a long period of time, so I changed it to clean only the stdout & the bug was removed.
That's all, thank you for the examples. Really appreciate your hard work!