-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.qmd
88 lines (49 loc) · 1.49 KB
/
example.qmd
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
title: "Quarto-Plus Examples"
format: docx
filters:
- quarto-plus
---
#
# header.lua
There is an empty level 1 header before header.lua in the .qmd, but it should be removed.
All headers within the document should be indented.
{{< pagebreak >}}
# magic_string.lua
The following image should have a magic string before it, but after this sentence.
![](images/figure.jpg)
The magic string is dependent on the image's source.
{{< pagebreak >}}
# table_of_contents.lua
Table of Contents should be inserted below.
::: .toc
:::
{{< pagebreak >}}
List of Figures should be inserted below.
::: .list_of_figures
:::
{{< pagebreak >}}
List of Tables should be inserted below.
::: .list_of_tables
:::
{{< pagebreak >}}
# terms_and_abbreviations.lua
Test abbreviations: \Gls{PK} and \Glspl{PK}; \glspl{PD} and \gls{PD}
Terms and Abbreviations table should be inserted below.
::: .abbreviations
:::
{{< pagebreak >}}
# style.lua
{{< style "Caption" "This should be in caption style" >}}
{{< pagebreak >}}
# crossref.lua
The following should insert a caption for tables:
{{< tbl_caption "Table 1" "This is a simple summary table" >}}
The following should be a cross-reference to the above table caption:
{{< crossref "Table 1" >}}
{{< pagebreak >}}
The following should insert a caption for figures:
{{< fig_caption "Figure 1" "This is a simple concentration-time figure" >}}
The following should be a cross-reference to the above figure caption:
{{< crossref "Figure 1" >}}
{{< pagebreak >}}