-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
967ab8d
commit ad22a8e
Showing
60 changed files
with
8,084 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
.PHONY: asset-revealjs asset-docx asset-report asset-pdf-short-report assets help | ||
.DEFAULT_GOAL := help | ||
|
||
asset-revealjs: ## Render reveal.js Slides | ||
quarto render docs/demos/template-revealjs.qmd --output-dir assets | ||
|
||
asset-docx: ## Render docx report document | ||
quarto render docs/demos/template-docx-report.qmd --output-dir assets | ||
|
||
asset-short-docx: ## Render short docx report document | ||
quarto render docs/demos/template-docx-short-report.qmd --output-dir assets | ||
|
||
asset-report: ## Render pdf report document | ||
quarto render docs/demos/template-pdf-report.qmd --output-dir assets | ||
|
||
asset-short-report: ## Render short pdf report document | ||
quarto render docs/demos/template-pdf-short-report.qmd --output-dir assets | ||
|
||
asset-pptx: ## Render pptx Slides | ||
quarto render docs/demos/template-pptx.qmd --output-dir assets | ||
|
||
assets: asset-report asset-short-report asset-docx asset-short-docx asset-revealjs asset-pptx ## Render all assets | ||
|
||
help: ## Show help messages for make targets | ||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(firstword $(MAKEFILE_LIST)) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-18s\033[0m %s\n", $$1, $$2}' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
title: AAGIQuarto | ||
author: Adam H. Sparks, James J Balamuta, Russel Edson, Vinh Thiem Ma, Rose Megirian, Sam Rogers, Julian Taylor | ||
version: 1.0.0 | ||
quarto-required: ">=1.4.0" | ||
contributes: | ||
formats: | ||
revealjs: | ||
theme: [default, revealjs/aagi.scss] | ||
date-format: long | ||
slide-number: true | ||
footer: " " | ||
logo: assets/aagi-logo.svg | ||
title-slide-attributes: | ||
data-background-image: assets/title-slide-main.png | ||
data-background-size: 1050px auto | ||
data-background-position: 50% 85% | ||
highlight-style: breeze | ||
overview: true | ||
progress: true | ||
touch: true | ||
chalkboard: true | ||
execute: | ||
echo: true | ||
pdf+report: | ||
template: pdf-report/template.tex | ||
engine: xelatex | ||
csl: assets/biometrics.csl | ||
format-resources: | ||
- assets/aagi_logo.pdf | ||
- assets/partners.pdf | ||
pdf+short+report: | ||
template: pdf-short-report/template.tex | ||
engine: xelatex | ||
csl: assets/biometrics.csl | ||
link-citations: true | ||
format-resources: | ||
- assets/aagi_logo.pdf | ||
- assets/partners.pdf | ||
docx+report: | ||
reference-doc: docx-report/template.docx | ||
toc: true | ||
docx+short+report: | ||
reference-doc: docx-short-report/template.docx | ||
pptx: | ||
reference-doc: pptx/template.pptx | ||
toc: true | ||
number-sections: false | ||
incremental: true |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.