You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/06-static-files.qmd
+14-4Lines changed: 14 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -48,15 +48,25 @@ format:
48
48
- your_titlepage.tex
49
49
```
50
50
51
-
## Copyrightand dedication pages
51
+
## Copyright, dedication and other static pages
52
52
53
-
You can include these as raw tex files. They appear after the title page. The [quarto_titlepages repository](https://github.com/nmfs-opensci/quarto_titlepages) has examples of these pages in the `tex` folder. You can include as many raw tex files for your frontmatter as you need.
53
+
You can include the dynamically created title page and cover page along with static pages. In this case the static pages appear after the title page or after the cover page. The [quarto_titlepages repository](https://github.com/nmfs-opensci/quarto_titlepages) has examples of these pages in the `tex` folder. You can include as many raw tex files for your frontmatter as you need.
54
54
55
+
Here a copyright page appears after the cover page and the dedication and a picture appear after the title page.
55
56
```
56
-
titlepage-include-file:
57
+
format:
58
+
titlepage-pdf:
59
+
documentclass: scrbook
60
+
classoption: ["oneside", "open=any"]
61
+
number-sections: true
62
+
titlepage: "vline"
63
+
coverpage: "otter"
64
+
coverpage-include-file:
57
65
- tex/copyright.tex
66
+
titlepage-include-file:
58
67
- tex/dedication.tex
68
+
- tex/prettypicture.tex
59
69
```
60
70
61
-
A `\clearpage` command is issued after each tex file is input. To prevent page numbers, use `\thispagestyle{empty}` in the tex file.
71
+
A `\clearpage` command is issued after each tex file is input. To prevent page numbers, use `\thispagestyle{empty}` in the static tex files.
0 commit comments