Skip to content

Commit

Permalink
Set theming and colour packages
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhsparks committed Jul 31, 2024
1 parent 5b67cf3 commit 9d57f87
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions template.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,34 @@ format:
aagi-revealjs: default
---

```{r}
#| label: load
#| message: false
if (!require("remotes")) {
install.packages("remotes")
}
if (!require("AAGIThemes")) {
remotes::install_git("https://github.com/AAGI-Org-AU-Public/AAGIThemes",
build_vignettes = TRUE
)
}
library(ggplot2)
library(theme.aagi)
library(flextable)
# set ggplot2 theme
theme_set(theme_aagi())
# set flextable theme
set_flextable_defaults(
theme_fun = theme_ft_aagi
)
```

## Quarto

Quarto enables you to weave together content and executable code into a finished presentation. To learn more about Quarto presentations see <https://quarto.org/docs/presentations/>.
Expand Down

0 comments on commit 9d57f87

Please sign in to comment.