-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.qmd
More file actions
51 lines (39 loc) · 1.09 KB
/
template.qmd
File metadata and controls
51 lines (39 loc) · 1.09 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
---
title: Demonstration
author: Jan Novák
date: last-modified
format:
profinit-html:
toc: true
profinit-pdf:
toc: true
lot: true
lof: true
profinit-revealjs:
incremental: true
output-file: template_revealjs.html
profinit-docx:
toc: true
shift-heading-level-by: -1
---
## Introduction
Quarto allows us to combine content and code into one document. More about Quarto can be found here <https://quarto.org/>.
## Mathematics
$$\int_{a}^{b} x^2 \,dx$$
## Images

## Tables
| Default | Left | Right | Center |
|---------|:-----|------:|:------:|
| 12 | 12 | 12 | 12 |
| 123 | 123 | 123 | 123 |
| 1 | 1 | 1 | 1 |
: First table {#tbl-first .corporate-table}
## Code
In the following way, we can write a code block.
```{.python}
def useless_sqrt_function(n):
return n**(1/2)
```
## Formatting
Here is the option to **highlight** what is *considered* to be ***important***. It is also possible to add [clickable links](https://www.youtube.com/watch?v=dQw4w9WgXcQ).