-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.qmd
More file actions
39 lines (27 loc) 路 808 Bytes
/
Copy pathindex.qmd
File metadata and controls
39 lines (27 loc) 路 808 Bytes
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
---
title: "A title section with a background image"
subtitle: "<br/>It is possible to add a bakground image to your title block header.<br/>Note: It is better to use a custom title block instead of the title-block-banner option for more customization IMO.<br/><br/><br/><br/>"
format: html
author: "Yan Holtz"
date: "September 2024"
editor: visual
toc: true
title-block-banner: "./bg.png"
---
It is possible to add a background image to the document header!
And here is some random content
# Plot 1
Running Code
When you click the Render button a document will be generated that includes both content and the output of embedded code. You can embed code like this:
```{r}
plot(1,1)
```
# Plot 2
A bit of code
```{r}
#| echo: false
2 * 2
```
Nice one isn't it! 馃檭
# Conclustion
Pretty useful!