You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was deciding what would be the appropiate way to adapt my MS Word thesis to Quarto. At first, I was trying to understand article-format-template to adapt it to my university institution template but then i remembered that Quarto also has the option to include multiple qmd scripts in a book project.
So then I thought, is it possible to adapt article-format-template to a Quarto book project .yml ? If so, how could it be done? I hope this question makes sense in the Quarto landscape.
Thanks again, and let me know.
The text was updated successfully, but these errors were encountered:
I faced a similar problem, I had my code structured in different scripts and used the quarto book format to organise the content into a HTML document, but ran into some problems when I wanted to use a template for pdf output as an article.
If the pdf styles for the book output do not work for you, you can try to mimic the book .yml file with a .qmd file using the include command to organise the content:
---
title: "Awesome title"
bibliography:
- references.bib
csl: style.csl
execute:
echo: false
format:
YourJournalFormat-pdf
---
# Abstract
This is a short abstract before I include the section content.
{{< include intro.qmd >}}
{{< include section1.qmd >}}
{{< include section2.qmd >}}
# References
::: {#refs}
:::
Hello, thanks for this template.
I was deciding what would be the appropiate way to adapt my MS Word thesis to Quarto. At first, I was trying to understand article-format-template to adapt it to my university institution template but then i remembered that Quarto also has the option to include multiple qmd scripts in a book project.
So then I thought, is it possible to adapt article-format-template to a Quarto book project .yml ? If so, how could it be done? I hope this question makes sense in the Quarto landscape.
Thanks again, and let me know.
The text was updated successfully, but these errors were encountered: