LaTeX tufte sidenotes? #9599
Answered
by
jgm
dmca-glasgow
asked this question in
Q&A
LaTeX tufte sidenotes?
#9599
-
Hi there, I have some LaTeX documents that make heavy use of sidenotes using the tufte-handout class from the tufte-latex package, for example: \documentclass{tufte-handout}
\begin{document}
My content \sidenote{My sidenote}.
\end{document} I've noticed that Pandoc omits the sidenote contents completely in Markdown, JSON AST and HTML. How could I approach writing a custom solution for these sidenotes, given they are not even in the AST? Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
jgm
Mar 22, 2024
Replies: 1 comment 1 reply
-
If you use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
dmca-glasgow
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you use
-f latex+raw_tex
, do they appear in the AST as RawBlock?If so, you could intercept these in a filter and use pandoc.read on the contents...