Replies: 2 comments 4 replies
-
This should work as you expect Did you try this already ? Is this not working ? |
Beta Was this translation helpful? Give feedback.
3 replies
-
I don't believe there is a way as it is processed as the appendix of the document. Or you have to use JavaScript for now: ---
title: "Quarto Playground"
format: html
citation: true
include-after-body:
- text: |
<script type="text/javascript">
const header = document.querySelector('header');
const appendixContents = document.querySelector('#quarto-appendix');
header.insertAdjacentElement('afterend', appendixContents);
</script>
---
This is a playground for Quarto. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description
If you use the
citation: true
option in YAML, an auto-generated bibtext and text citation appears at the end of a Quarto document. I was wondering whether it is possible to specify the location that this citation appears, in the same way that you can use......to specify the location that references appear when using a .bib file?
Beta Was this translation helpful? Give feedback.
All reactions