Skip to content

Commit

Permalink
Incorporate feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
robertjndw committed Jun 25, 2024
1 parent e004115 commit 191064c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions layout/thesis_template.typ
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
author: author,
)

print_page_break(print: is_print)
pagebreak()

titlepage(
title: title,
Expand All @@ -41,8 +41,7 @@
submissionDate: submissionDate
)

print_page_break(print: is_print)

print_page_break(print: is_print, to: "even")

disclaimer(
title: title,
Expand Down
4 changes: 2 additions & 2 deletions utils/print_page_break.typ
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#let print_page_break(print: bool) = {
#let print_page_break(print: bool, to: "even") = {
if print {
pagebreak(to: "odd")
pagebreak(to: to)
} else {
pagebreak()
}
Expand Down

0 comments on commit 191064c

Please sign in to comment.