Added option to remove the section numbers in the title

This commit is contained in:
Lukas Pietzschmann
2024-02-22 11:03:45 +01:00
parent 9313259306
commit cfc625ca6a
2 changed files with 24 additions and 4 deletions

View File

@@ -9,6 +9,7 @@ This theme provides some settings you can tweak:
- Language: Possible values are `english` or `german`. This changes the value passed to babel and csquotes. If none of both is selected, `german` is used. - Language: Possible values are `english` or `german`. This changes the value passed to babel and csquotes. If none of both is selected, `german` is used.
- Extra slides: For each section and subsection an extra slide containing the title can be inserted. This is controlled by passing `secslide` or/and `subsecslide`. The absence of `secslide` indicates that you don't want an extra slide for every section. Analog for `subsecslide`. - Extra slides: For each section and subsection an extra slide containing the title can be inserted. This is controlled by passing `secslide` or/and `subsecslide`. The absence of `secslide` indicates that you don't want an extra slide for every section. Analog for `subsecslide`.
- Automatic toc: A table of contents is automatically inserted with the `\maketitle` command (After the title slide). If you want to disable this behavior, you have to set the `notoc` option. - Automatic toc: A table of contents is automatically inserted with the `\maketitle` command (After the title slide). If you want to disable this behavior, you have to set the `notoc` option.
- Section numbers in frame title: Each frage contains the current section (and subsection) number in its title. To disable this, you have to pass the `nonumbersinframetitle` option. If you disable section numbers in the title, and you use use the `wide` environment inside a frame, it can look weird when the title is shifted to the right, but the content is not. To cope with this, you can pass the `wide` option to the frame. This will also shift the title to the left.
If you wanna set one (or more) of those values, you have to pass it to `\usetheme`. Look at ![example.tex](https://github.com/LukasPietzschmann/awesome-beamer/blob/master/example.tex) for, well, an example. If you wanna set one (or more) of those values, you have to pass it to `\usetheme`. Look at ![example.tex](https://github.com/LukasPietzschmann/awesome-beamer/blob/master/example.tex) for, well, an example.

View File

@@ -15,6 +15,7 @@
\DeclareBoolOption{notoc} \DeclareBoolOption{notoc}
\DeclareBoolOption{secslide} \DeclareBoolOption{secslide}
\DeclareBoolOption{subsecslide} \DeclareBoolOption{subsecslide}
\DeclareBoolOption{nonumbersinframetitle}
\DeclareDefaultOption{\PassOptionsToPackage{\CurrentOption}{smile}} \DeclareDefaultOption{\PassOptionsToPackage{\CurrentOption}{smile}}
@@ -92,6 +93,19 @@
\BeforeBeginEnvironment{tabular}{\def\arraystretch{1.1}\rowcolors{2}{lightgray}{white}} \BeforeBeginEnvironment{tabular}{\def\arraystretch{1.1}\rowcolors{2}{lightgray}{white}}
\providebool{wideframe}
\define@key{beamerframe}{wide}[true]{
\booltrue{wideframe}
\begingroup
}
\apptocmd{\beamer@reseteecodes}{%
\ifbool{wideframe}{%
\endgroup
\boolfalse{wideframe}
}{}
}{}{}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -269,8 +283,13 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newlength\awesome@sidebarwidth\setlength{\awesome@sidebarwidth}{0.15\paperwidth}
\newlength\awesome@textmargin\setlength{\awesome@textmargin}{0.05\paperwidth}
\setbeamersize{description width=0.5cm} \setbeamersize{description width=0.5cm}
\setbeamersize{sidebar width left=0.15\paperwidth} \setbeamersize{sidebar width left=\awesome@sidebarwidth}
\setbeamersize{sidebar width right=\z@}
\setbeamersize{text margin left=\awesome@textmargin}
\setbeamersize{text margin right=\awesome@textmargin}
\setbeamertemplate{caption}{\insertcaption} \setbeamertemplate{caption}{\insertcaption}
\setbeamertemplate{blocks}[rounded][shadow=false] \setbeamertemplate{blocks}[rounded][shadow=false]
@@ -287,7 +306,7 @@
} }
\newenvironment{wide}{\begingroup\leavevmode% \newenvironment{wide}{\begingroup\leavevmode%
\hspace*{-2cm}\fboxsep\z@\minipage{\linewidth+2cm}% \hspace*{-\awesome@sidebarwidth}\fboxsep\z@\minipage{\linewidth+2cm}%
}{\endminipage\endgroup} }{\endminipage\endgroup}
\setbeamertemplate{subsection in toc}{% \setbeamertemplate{subsection in toc}{%
@@ -303,7 +322,7 @@
} }
\setbeamertemplate{frametitle}{% \setbeamertemplate{frametitle}{%
\vspace{1em}\hspace{-\beamer@leftsidebar}\begin{beamercolorbox}[wd=\beamer@leftsidebar]{frametitle}% \vspace{1em}\ifawesome@nonumbersinframetitle\ifbool{wideframe}{\hspace{-\awesome@sidebarwidth}}{}\else\hspace{-\awesome@sidebarwidth}\begin{beamercolorbox}[wd=\awesome@sidebarwidth]{frametitle}%
\ifx\insertsection\empty\else% \ifx\insertsection\empty\else%
\color{accent}\thesection.% \color{accent}\thesection.%
\ifx\insertsubsection\empty% \ifx\insertsubsection\empty%
@@ -317,7 +336,7 @@
\fi% \fi%
\fi% \fi%
\fi \fi
\end{beamercolorbox}% \end{beamercolorbox}\fi%
\begin{beamercolorbox}{frametitle}% \begin{beamercolorbox}{frametitle}%
\insertframetitle% \insertframetitle%
\end{beamercolorbox} \end{beamercolorbox}