Skip to content

Commit

Permalink
references(): don't number the appendix part
Browse files Browse the repository at this point in the history
  • Loading branch information
florisvdh committed Jun 5, 2024
1 parent 4c475e1 commit 9d144af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/references.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ references <- function(appendix = FALSE, part = FALSE) {
assert_that(is.flag(part), noNA(part))
output <- c(
"\\appendix"[appendix],
"\\part{\\appendixname}"[appendix && part]
"\\part*{\\appendixname}"[appendix && part]
)
}
cat(output, sep = "\n\n")
Expand Down

0 comments on commit 9d144af

Please sign in to comment.