Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions inst/templates/quarto/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
test_rnaseq/
test_proteomics/
fgcz_report_homogenisation.docx
55 changes: 55 additions & 0 deletions inst/templates/quarto/_fgcz-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
## ─────────────────────────────────────────────────────────────
## FGCZ Shared Report Defaults
## Include in individual .qmd files via:
## metadata-files: ["_fgcz-report.yml"]
## ─────────────────────────────────────────────────────────────

format:
html:
embed-resources: true
self-contained: true
smooth-scroll: true
page-layout: full

# Code
code-fold: true
code-tools: true

# Theme (minimal for now — SCSS branding comes later)
theme: cosmo

# Grid sizing
grid:
body-width: 1800px
sidebar-width: 250px
margin-width: 100px

# FGCZ header
include-in-header: fgcz_header_quarto.html

# Figure defaults
fig-dpi: 300
fig-align: left

# Execution
execute:
echo: false
warning: false
message: false

# Knitr defaults — plots should fit on screen; click lightbox for full size
knitr:
opts_chunk:
fig.width: 6
fig.height: 5
fig.retina: 2
out.width: "30%"

# Cross-references
crossref:
fig-title: "Figure"
tbl-title: "Table"
title-delim: ":"

# Lightbox for all figures
lightbox: true
Loading