Replies: 1 comment 6 replies
-
You should be able to use the meta shortcode:
project:
type: tmp
tmp:
tmp_title: "My Title"
bibliography: references.bib
title: tmp
author: Fred
version: 0.1.0
contributes:
project:
project:
type: book
output-dir: docs
book:
title: "{{< meta tmp.tmp_title >}}"
author: "Jane Doe"
date: "1/16/2023"
chapters:
- index.qmd
- intro.qmd
- summary.qmd
- references.qmd
formats:
html:
theme: cosmo
pdf:
documentclass: scrreprt
# formats:
# pdf:
# template: monashthesis.tex Would that work? |
Beta Was this translation helpful? Give feedback.
6 replies
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.
-
MWE in github
Inside my extension, I want
_quarto.yml
to hide it is using abook
project type under the hood.Ideally, I would have in my
_quarto.yml
:I need to reference
$tmp.tmp_title$
inside_extensions/tmp/_extension.yml
:I tried to do it like I do inside any partials tex file, but it does not work in the .yml file. How do I do that?
Beta Was this translation helpful? Give feedback.
All reactions