Not ignore #refs div for bibliography generated using bib #2703
-
In the quarto documentation, there is the following statement: If your bibliography is being generated using BibLaTeX or natbib (Section 1.6), the bibliography will always appear at the end of the document and the #refs div will be ignored Is there any way to include output of sessionInfo() following References and Footnotes? I'd like to have the following sequence:
Currently, the sequence is as follows:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You could do this by modifying the underling template - that is controlling where the https://quarto.org/docs/journals/templates.html#latex-partials You could provide your own empty Good luck! |
Beta Was this translation helpful? Give feedback.
You could do this by modifying the underling template - that is controlling where the
\bibliography
is output (inbiblio.tex
). You can read more about how to approach this here:https://quarto.org/docs/journals/templates.html#latex-partials
You could provide your own empty
biblio.tex
file (preventing Quarto/Pandoc from outputting any template information) and then place it all yourself, for example.Good luck!