Skip to content
Discussion options

You must be logged in to vote

These files are often required as part of submission requirements for variable conference and journals.
Is it possible to specify where these files go?

Considering how quarto works there is a trick you can do

  • Define an output directory in your _quarto.yml
     project:
       output-dir: _output/
  • Add the index.tex as a resource for your .qmd - this will make Quarto copy it in the output directory as any other manually specified resources
     ---
     title: "Journal submission"
     format: pdf
     keep-tex: true
     resources: 
       - index.tex
     ---
     
     ## Quarto
     
     Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see <https://quarto.org>.
     

A…

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@cynthiahqy
Comment options

Answer selected by cynthiahqy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
latex LaTeX engines related libraries and technologies files Issues related to temporary file locations, nonstandard output locations, etc
3 participants