Skip to content

Commit

Permalink
references(): use plural for appendices part title (non-HTML)
Browse files Browse the repository at this point in the history
  • Loading branch information
florisvdh committed Jun 5, 2024
1 parent 9d144af commit 1a71daa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions 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*{\\appendicesname}"[appendix && part]
)
}
cat(output, sep = "\n\n")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -588,6 +588,15 @@
\addto\extrasfrench{%
\def\cfcoop{Cette étude a été menée en collaboration avec:}%
}
\addto\extrasdutch{%
\def\appendicesname{Bijlagen}%
}
\addto\extrasenglish{%
\def\appendicesname{Appendices}%
}
\addto\extrasfrench{%
\def\appendicesname{Annexes}%
}

\RequirePackage{emptypage}
% define title page
Expand Down

0 comments on commit 1a71daa

Please sign in to comment.