diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-04 12:31:16 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-10-04 12:31:16 +0200 |
commit | 1cb8504a4dfcf5977411267c80d4ee62a180c2d6 (patch) | |
tree | 69c696740bdc1a8c6b9c205ec0d3c2c47cd2e32b /build/latex/presentation/%INIT_APPLICATION_NAME.tex | |
parent | fix(templates/latex/academia/main.tex): Default to `draft` mode (diff) | |
download | flake-templates-1cb8504a4dfcf5977411267c80d4ee62a180c2d6.tar.gz flake-templates-1cb8504a4dfcf5977411267c80d4ee62a180c2d6.zip |
chore(build): Regenerate
Diffstat (limited to 'build/latex/presentation/%INIT_APPLICATION_NAME.tex')
-rw-r--r-- | build/latex/presentation/%INIT_APPLICATION_NAME.tex | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/build/latex/presentation/%INIT_APPLICATION_NAME.tex b/build/latex/presentation/%INIT_APPLICATION_NAME.tex new file mode 100644 index 0000000..a04a7dd --- /dev/null +++ b/build/latex/presentation/%INIT_APPLICATION_NAME.tex @@ -0,0 +1,60 @@ +% LTeX: language=%INIT_LANGUAGE +\documentclass[ + a4paper, 12pt, + draft, + % final, + hyperref={ pdflang=%INIT_DATE_TIME_LANGUAGE }, +]{beamer} + +\input{headers/preamble.tex} +\input{headers/preamble_local.tex} + +\title{\textbf{%INIT_APPLICATION_NAME_STYLIZED}} +\author{%INIT_AUTHOR_NAME \\ +\href{mailto:%INIT_AUTHOR_EMAIL}{%INIT_AUTHOR_EMAIL}\\[1cm] +{\small Supervisor: TODO}} +\date{\DTMToday} + +% For the copyright section +\SetYears{%INIT_YEAR} +\SetAuthors{%INIT_AUTHOR_NAME} + +\logo{\includegraphics[height=1cm]{references/images/logo}} + +\usetheme[block=fill]{moloch} + +% \setbeameroption{hide notes} % Only slides +% \setbeameroption{show only notes} % Only notes +% \setbeameroption{show notes on second screen} % Both + +\pdfpcsetup{ + % Other settings can be package options, or can go here + duration=10, +} + +\makeatletter +\hypersetup{ + pdftitle={\@title}, + pdfsubject={}, + pdfauthor={\@authors}, + pdfkeywords={TODO}, +} +\makeatother + +\includeonly { + % lpm::next_chapter_includeonly_marker +} + +\begin{document} +\input{content/static/title} + +% lpm::next_chapter_marker + +\input{content/static/questions} + +\appendix +\begin{frame} + \printbibliography + \printindex +\end{frame} +\end{document} |