-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_quarto.yml
More file actions
94 lines (89 loc) · 5.63 KB
/
_quarto.yml
File metadata and controls
94 lines (89 loc) · 5.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
project: # https://quarto.org/docs/projects/quarto-projects.html
type: book # Specifies this project is a book format.
# if change this key, maybe you have a problem with the structure output
output-dir: docs # Directory where the rendered output files will be placed.
# not change this key if you want to deploy in GitHub Pages
post-render: render_cleanup.R # Script to run automatically after rendering is complete.
# for clean the output directory after render
resources: # https://quarto.org/docs/projects/quarto-projects.html#project-resources
# List of directories containing files needed for rendering (e.g., data, scripts).
# These are copied to the output directory.
- Data/
- Output/
- Scripts/
execute: # https://quarto.org/docs/computations/execution-options.html
freeze: auto # Automatically manage code execution based on changes.
warning: false # Prevent R code chunk warnings from appearing in the output.
book: # https://quarto.org/docs/books/index.html
google-analytics: "G-2MWSHLX73Q" # replace with your Google Analytics tracking ID or remove this line
favicon: cover.jpg # edit or exclude this image/line
title: "ARTE" # edit your title
subtitle: "Article Reproducibility Template & Environment" # edit your subtitle
author: "Pablo Rogers and Ricardo Limongi" # edit your name
date: 09/03/2025 # https://quarto.org/docs/reference/dates.html
date-format: long # Format for displaying the date (e.g., "August 8, 2024").
doi: 10.17605/OSF.IO/NJDQ5 # put your DOI
cover-image: cover.jpg # edit ou exclude this image
downloads: pdf # https://quarto.org/docs/books/book-output.html#reader-tools
# Adds a button to download the document as a PDF.
reader-mode: true # Enables a distraction-free reading mode.
sidebar: # Configuration for the website navigation sidebar.
align: left # Aligns the sidebar to the left side of the page.
collapse-level: 1 # Level of headings to initially collapse in the sidebar.
page-footer: # https://quarto.org/docs/reference/formats/html.html#appearance
# edit or exclude this footer
left: <a href="https://www.phdpablo.com">by Pablo Rogers</a> # Content for the left side of the footer.
right: This article was built with <a href="https://quarto.org/">Quarto</a> # Content for the right side of the footer.
site-url: "https://phdpablo.github.io/article-template/" # edit your site URL
# The base URL where the website will be published.
repo-url: "https://github.com/phdpablo/article-template/" # edit your repo URL
# Link to the source code repository for this project.
sharing: [twitter, facebook, linkedin] # edit or exclude this sharing
# Enables sharing buttons for specified social media platforms.
open-graph: true # Generates Open Graph metadata for better social media previews.
chapters: # https://quarto.org/docs/books/book-structure.html
- index.qmd # The main landing page of the book/website.
- 01-intro.qmd # Introduction chapter.
- 02-background.qmd # Background/Theory chapter.
- 03-methods.qmd # Methods chapter.
- 04-results.qmd # Results chapter.
- 05-conclusion.qmd # Conclusion chapter.
- references.qmd # References/Bibliography page.
bibliography: references.bib # https://quarto.org/docs/authoring/citations.html
# File containing the bibliographic references in BibTeX format.
csl: apa7ed.csl # Citation Style Language file defining the citation format (APA 7th ed.).
# See others at https://www.zotero.org/styles
format: # https://quarto.org/docs/reference/formats/html.html
html: # Configuration for HTML output format.
title-block-style: none # Hides the default title block, using custom styling.
toc: true # Includes a table of contents in the HTML output.
collapse: true # Allows collapsing/expanding sections in the TOC.
html-math-method: mathjax # Uses MathJax to render mathematical equations.
code-link: true # Adds a button to copy code chunks to the clipboard.
theme: # https://quarto.org/docs/output-formats/html-themes.html
# See more theme options at: https://quarto.org/docs/output-formats/html-themes.html
light: flatly # Light color theme for the website.
dark: darkly # Dark color theme for the website.
number-sections: true # Adds section numbers to headings.
link-external-newwindow: true # Opens external links in a new browser tab.
fig-width: 5 # Default width (in inches) for figures in HTML output.
fig-height: 5 # Default height (in inches) for figures in HTML output.
fig-align: left # Default horizontal alignment for figures (left, center, right).
pdf: # https://quarto.org/docs/reference/formats/pdf.html
documentclass: article # LaTeX document class to use for PDF output.
papersize: A4 # Paper size for the PDF.
top-level-division: section # Treats top-level headings (e.g., # Header) as \section{} in LaTeX.
geometry: # Page margins and dimensions for the PDF.
- paperwidth=8.27in # Width of the paper.
- paperheight=11.69in # Height of the paper.
- left=1.25in # Left margin.
- textwidth= 5.25in # Width of the text block.
- top=1.00in # Top margin.
- textheight=8.25in # Height of the text block.
toc: false # Disables the table of contents in the PDF output.
colorlinks: true # Colors hyperlinks in the PDF instead of using boxes.
fig-width: 5 # Default width (in inches) for figures in PDF output.
fig-height: 5 # Default height (in inches) for figures in PDF output.
fig-align: left # Default horizontal alignment for figures in PDF.
keep-tex: false # Keeps the intermediate .tex file generated during PDF creation.
editor: source # Sets the default editor mode to source (WYSIWYG) in RStudio.