-
DescriptionI want to include an Rmd file in many of my other files. This file is located in a folder lib at the base of the Quatro project. I currently do it like this: ---
title: Parameter recovery simulation of individual differences
format: html
author: Ven Popov
date: Jan 29, 2024
---
{{< include ../../lib/_r-matrix-to-latex.Rmd >}} is there a way to specify somewhere that includes should look in the lib folder, rather than using ../../ etc? I tried using |
Beta Was this translation helpful? Give feedback.
Answered by
mcanouil
Jan 29, 2024
Replies: 1 comment 1 reply
-
Within a Quarto project you can use a leading |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
venpopov
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Within a Quarto project you can use a leading
/
to indicate the file is relative to the root of the Quarto project:{{< include /lib/_r-matrix-to-latex.Rmd >}}
shoudl work.