-
Notifications
You must be signed in to change notification settings - Fork 66
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
Add note type and functions to create endnotes #34
base: master
Are you sure you want to change the base?
Conversation
@jgm I rebased jgm/pandoc#4042 again, everything is fixed there except for dependencies which point to github now. All I need to fix it is merging of this PR, it is blocking. |
Any progress on that? |
@aparcar You can compile my "endnotes" branch and test it. I keep it updated by rebasing it on top of jgm/pandoc master. I am in the process of adding Lua Note constructor compatibility and tests. After that I think it will be ready for merge. |
Thank you very much for your quick response. I compiled it and it works - creating the same output as before. What is required to add EndNote support to markdown, as that the file format I'm currently working on? An option like |
There is a jgm/pandoc#1425 issue with a discussion on markdown endnote syntax. The syntax for endnotes in Markdown is not decided, so I have not added endnote support to markdown reader. If you want to keep using Markdown, you can easily extend it with a Lua filter. Take a look at Also make sure the output format you use is supported. Currently it includes only ODT, Docx and Muse. |
It's okay to have only EndNotes so I added |
Great, with Would it be possible to a] support PDF as output and b] to use numbers instead of roman numbering? Should I open additional issues for both? |
@aparcar I have already removed that "ok" debug printing, you need to update to remove it. For PDF output it is necessary to add endnote support to LaTeX writer. LaTeX does not have native support for endnotes, so it will be necessary to decide which package to use for that and things like that. Roman numbering seems to be the default ODT style, you can probably change it somehow with templates. Text::Amuse::Compile uses numbers by default, so you will like it. |
@labdsf thank you very much for your kind help! I'd rather stick with the LaTeX typography, who complex is the process of integrating an external library package? |
@aparcar I think this discussion is a bit off-topic for this PR. Just one more remark: if you just want to move all your footnotes to the end of the document, you can modify your LaTeX template by adding |
@jgm Is there any plan to get this merged? All the feedback for jgm/pandoc#4042 is addressed, I need this PR merged and new version of pandoc-types released to finalize it. |
No description provided.