Markdown with footnotes to LaTeX #10019
Unanswered
writersglen
asked this question in
Q&A
Replies: 1 comment
-
Pandoc Markdown does support footnotes, with both reference-style footnotes and inline footnotes. Here is a minimal example: <!-- test.md -->
Here is a footnote reference,[^1] and another.[^longnote]
[^1]: Here is the footnote.
[^longnote]: Here's one with multiple blocks.
Subsequent paragraphs are indented to show that they
belong to the previous footnote.
{ some.code }
The whole paragraph can be indented, or just the first
line. In this way, multi-paragraph footnotes work like
multi-paragraph list items.
This paragraph won't be part of the note, because it
isn't indented.
Here is an inline note.^[Inline notes are easier to write, since
you don't have to pick an identifier and move down to type the
note.] By running Here is a footnote reference,\footnote{Here is the footnote.} and
another.\footnote{Here's one with multiple blocks.
Subsequent paragraphs are indented to show that they belong to the
previous footnote.
\begin{Verbatim}
{ some.code }
\end{Verbatim}
The whole paragraph can be indented, or just the first line. In this
way, multi-paragraph footnotes work like multi-paragraph list items.}
This paragraph won't be part of the note, because it isn't indented.
Here is an inline note.\footnote{Inline notes are easier to write, since
you don't have to pick an identifier and move down to type the note.} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I’m trying to automate my writing workflow;
But Pandoc *.md to *.tex doesn’t seem to support footnotes.
Am I missing something? What do?
Thanks,
LRP
Beta Was this translation helpful? Give feedback.
All reactions