Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/resources/projects/book/templates/_quarto.ejs.yml
12923 views
1
project:
2
type: book
3
4
book:
5
title: "<%= title %>"
6
author: "Norah Jones"
7
date: "<%= new Date().toLocaleDateString() %>"
8
chapters:
9
- index<%= ext %>
10
- intro<%= ext %>
11
- summary<%= ext %>
12
- references<%= ext %>
13
14
bibliography: references.bib
15
16
format:
17
html:
18
theme:
19
- cosmo
20
- brand
21
pdf:
22
documentclass: scrreprt
23
24
<% if(editor){ %>editor: <%= editor %><% } %>
25
26