Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add preliminary support for titlecaps #10

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/tl_packages
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ epstopdf-pkg
etoolbox
everysel
fancyvrb
fbox
fetamont
fira
fontspec
Expand Down Expand Up @@ -85,10 +86,12 @@ sidenotesplus
siunitx
sttools
times
titlecaps
underscore
unicode-math
units
upquote
varwidth
xcolor
xits
zref
Binary file modified examples/se2thesis-master-thesis-example.pdf
Binary file not shown.
16 changes: 11 additions & 5 deletions se2thesis.dtx
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,8 @@
% Load required packages early.
% \begin{macrocode}
\RequirePackage{graphicx}
\RequirePackage{titlecaps}
\Addlcwords{a an the that to this is are and with on}
\RequirePackage{translations}
\LoadDictionary{se2translations}
\DeclareTranslationFallback{version-of-date}{%
Expand Down Expand Up @@ -1211,10 +1213,10 @@
\cs_new:Nn \__@@_print_title:
{
\group_begin:
\usekomafont{title}\centering\@title\par
\usekomafont{title}\centering\titlecap{\@title}\par
\group_end:
\ifx\@subtitle\@empty\else{%
\medskip\usekomafont{subtitle}\centering\@subtitle\par%
\medskip\usekomafont{subtitle}\centering\titlecap{\@subtitle}\par%
}\fi
\bigskip
\group_begin:
Expand Down Expand Up @@ -1331,7 +1333,7 @@
\renewcommand*{\@lowertitleback}{%
\group_begin:
\noindent\textbf{\@author}:\\
\emph{\@title}\\
\emph{\titlecap{\@title}}\\
\tl_if_eq:NnT \l_@@_thesis_type_tl { bachelor }
{ \GetTranslation{Bachelor-thesis},~ }
\tl_if_eq:NnT \l_@@_thesis_type_tl { master }
Expand Down Expand Up @@ -1359,9 +1361,13 @@
}
\renewcommand{\chapterlinesformat}[3]{%
\parbox[b]{\textwidth}{\hrulefill#2}\par%
#3\par\bigskip%
\titlecap{#3}\par\bigskip%
\hrule%
}
\let\orig@addtocentrydefault\addtocentrydefault
\renewcommand*{\addtocentrydefault}[3]{%
\orig@addtocentrydefault{#1}{#2}{\titlecap{#3}}%
}
\RedeclareSectionCommand[afterskip=1.5\baselineskip]{chapter}
\renewcommand*{\chapterlineswithprefixformat}[3]{%
\Ifstr{#1}{chapter}
Expand All @@ -1373,7 +1379,7 @@
}
% \end{macrocode}
%
% Change the loop of a \cmd{\paragraph} to be italic and end with a full stop.
% Change the look of a \cmd{\paragraph} to be italic and end with a full stop.
% \begin{macrocode}
\setkomafont{paragraph}{\normalsize\normalfont\itshape}
\AddtoDoHook{heading/endgroup/paragraph}{\headingdot}
Expand Down
Loading