-
DescriptionHi, This is my _quarto.yml file: project:
type: manuscript
manuscript:
article: index.qmd
notebooks:
- notebook: 1_data/1_fragebogen.qmd
title: Fragebogen und Reliabilitätswerte
format:
html:
comments:
hypothesis: true
docx: default
pdf: default
format-links:
- docx
- pdf
execute:
freeze: true
bibliogra and this is my YAML header and content in my index.qmd file: ---
title: "Bewertung der Effektivität einer Virtual-Reality-Simulation zur Vermittlung der Titration: Eine vergleichende Studie mit traditionellen Labormethoden"
authors:
- name: "Urs Chalupny"
affiliation: "FHNW"
corresponding: true
bibliography: references.bib
format:
html: default
pdf: default
docx: default
---
```{r}
#| label: library
#| message: false
#| warning: false
#| include: false
library(tidyverse)
library(gt)
library(here)
```
# Einleitung Einführung in die Problemstellung, Theorie- und Literaturübersicht
{{< include 2_docs/1_introduction.qmd >}}
# Methoden
{{< include 2_docs/2_methods.qmd >}}
# Ergebnisse
{{< include 2_docs/3_results.qmd >}}
# Interpretation und Diskussion
{{< include 2_docs/4_discussion.qmd >}}
# Bibliographie
::: {#refs}
::: I'm trying to keep my different chapters in separeted qmd files. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
This comment has been hidden.
This comment has been hidden.
-
Could you make sure your example is small and reproducible? Why are you redefining the format inside your document? You already defined them at the project level. To be clear, the feature works: quarto create project manuscript 12049 12049
cd 12049
quarto render |
Beta Was this translation helpful? Give feedback.
You defined for some reason a YAML frontmatter in all your included files, like:
Global/shared metadata are in
_quarto.yml
.Add
editor: visual
in_quarto.yml
to take effect everywhere.Include shortcode is a copy/paste plain and simple as documented in a red important callouts (https://quarto.org/docs/authoring/includes.html), so at the end of all the includes, what remains for the format is from https://github.com/Theurrien/other_formats/blob/main/2_docs/4_discussion.qmd:
SO you basically ask to render to HTML only which means there are no "other formats".