Compare commits
3 Commits
d4ce5d8578
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b5d816d1e1 | ||
|
|
7359df4710 | ||
|
|
0d88c6935b |
@@ -41,9 +41,21 @@
|
|||||||
|
|
||||||
% - Captions
|
% - Captions
|
||||||
% - Itemize/Enumerate (both) item icons ->
|
% - Itemize/Enumerate (both) item icons ->
|
||||||
\setbeamercolor{item}{parent = palette primary}
|
%\setbeamercolor{item}{parent = palette primary}
|
||||||
%\setbeamercolor{item}{parent = palette secondary}
|
\setbeamercolor*{item}{parent = palette secondary}
|
||||||
|
|
||||||
|
% Redefine colors for bibliography entries
|
||||||
|
\setbeamercolor{bibliography item}{parent = palette secondary}
|
||||||
|
\setbeamercolor*{bibliography entry author}{parent=palette secondary}
|
||||||
|
\setbeamercolor*{bibliography entry title}{parent=palette primary}
|
||||||
|
\setbeamercolor*{bibliography entry location}{parent=palette secondary}
|
||||||
|
\setbeamercolor*{bibliography entry note}{parent=palette secondary}
|
||||||
|
\setbeamercolor*{bibliography entry location date}{parent=palette secondary}
|
||||||
|
\setbeamercolor*{bibliography entry journal}{parent=palette secondary}
|
||||||
|
\setbeamercolor*{bibliography entry doi}{parent=palette secondary}
|
||||||
|
\setbeamercolor*{bibliography entry url}{parent=palette secondary}
|
||||||
|
|
||||||
|
\setbeamercolor{caption name}{parent = palette primary}
|
||||||
|
|
||||||
|
|
||||||
\setbeamercolor{frametitle}{parent=palette primary}
|
\setbeamercolor{frametitle}{parent=palette primary}
|
||||||
|
|||||||
@@ -64,16 +64,23 @@
|
|||||||
|
|
||||||
\defbeamertemplate*{footline}{LTU}
|
\defbeamertemplate*{footline}{LTU}
|
||||||
{
|
{
|
||||||
\ifnum \insertpagenumber=1 % Suppress on the first slide
|
\ifnum\insertframenumber=1 % Suppress on the title slide
|
||||||
\relax
|
\relax
|
||||||
\else
|
\else
|
||||||
\begin{beamercolorbox}[wd=\paperwidth, ht=\footlineheight, dp=0.5\footlineheight, left, leftskip=2em]{palette quaternary}
|
\begin{beamercolorbox}[wd=\paperwidth,ht=\footlineheight,dp=0.5\footlineheight]{palette quaternary}
|
||||||
|
\hskip2em % Left margin
|
||||||
|
\hbox to \dimexpr\paperwidth-4em\relax{%
|
||||||
\ifxetex
|
\ifxetex
|
||||||
\usebeamercolor[fg]{palette quaternary}\textbf{\addfontfeatures{LetterSpace=125} \LTU}
|
\usebeamercolor[fg]{palette quaternary}\textbf{\addfontfeatures{LetterSpace=125} \LTU}%
|
||||||
\else
|
\else
|
||||||
\usebeamercolor[fg]{palette quaternary}\textbf{\textls[125]{\LTU}}
|
\usebeamercolor[fg]{palette quaternary}\textbf{\textls[125]{\LTU}}%
|
||||||
\fi
|
\fi
|
||||||
\end{beamercolorbox}
|
\hfill % Push the slide number to the right
|
||||||
|
\usebeamercolor[fg]{palette secondary}\textbf{\number\numexpr\insertframenumber-1\relax}%
|
||||||
|
}%
|
||||||
|
\hskip2em % Right margin
|
||||||
|
\end{beamercolorbox}
|
||||||
\fi
|
\fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
BIN
ltu-example.pdf
BIN
ltu-example.pdf
Binary file not shown.
@@ -3,15 +3,17 @@
|
|||||||
\usepackage[utf8]{inputenc}
|
\usepackage[utf8]{inputenc}
|
||||||
\usepackage[T1]{fontenc}
|
\usepackage[T1]{fontenc}
|
||||||
\usepackage{amsmath}
|
\usepackage{amsmath}
|
||||||
|
\usepackage{biblatex}
|
||||||
|
\usepackage{graphicx}
|
||||||
|
|
||||||
\usepackage{tikz}
|
\usepackage{tikz}
|
||||||
\usetikzlibrary{decorations.pathreplacing}
|
\usetikzlibrary{decorations.pathreplacing}
|
||||||
|
|
||||||
|
\addbibresource{references.bib} % Specify the bibliography file
|
||||||
|
|
||||||
\title{LTU Beamer Template}
|
\title{LTU Beamer Template}
|
||||||
\date{2024-05-06}
|
\date{2024-05-06}
|
||||||
\author{Some Guy}
|
\author{Malte Kerl}
|
||||||
|
|
||||||
\usetheme[language=english]{LTU}
|
\usetheme[language=english]{LTU}
|
||||||
|
|
||||||
@@ -40,4 +42,28 @@
|
|||||||
\liwicki[2]{The slide is also displayed times the highest Liwicki number}\\
|
\liwicki[2]{The slide is also displayed times the highest Liwicki number}\\
|
||||||
\liwicki[4]{Don't leave Liwicki Numbers out}
|
\liwicki[4]{Don't leave Liwicki Numbers out}
|
||||||
\end{frame}
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}{frame with citations and figures}
|
||||||
|
\begin{columns}
|
||||||
|
\begin{column}{0.5\textwidth}
|
||||||
|
According to \citeauthor{smith2020}, significant advancements have been made in this field \cite{smith2020}.
|
||||||
|
|
||||||
|
For a comprehensive overview, refer to the book by \cite{doe2019}.
|
||||||
|
\end{column}
|
||||||
|
\begin{column}{0.5\textwidth}
|
||||||
|
\begin{figure}
|
||||||
|
\centering
|
||||||
|
\includegraphics[width=0.8\linewidth]{media/template/english/LTU_eng_vit}
|
||||||
|
\caption{LTU Logo (demo graphic)}
|
||||||
|
\label{fig:ltuengvit}
|
||||||
|
\end{figure}
|
||||||
|
|
||||||
|
\end{column}
|
||||||
|
\end{columns}
|
||||||
|
\end{frame}
|
||||||
|
|
||||||
|
\begin{frame}[allowframebreaks]
|
||||||
|
\frametitle{References}
|
||||||
|
\printbibliography
|
||||||
|
\end{frame}
|
||||||
\end{document}
|
\end{document}
|
||||||
19
references.bib
Normal file
19
references.bib
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
@article{smith2020,
|
||||||
|
author = {Smith, John},
|
||||||
|
title = {An Innovative Approach to Science},
|
||||||
|
journal = {Journal of Innovative Research},
|
||||||
|
volume = {15},
|
||||||
|
number = {3},
|
||||||
|
pages = {123-145},
|
||||||
|
year = {2020},
|
||||||
|
doi = {10.1234/jir.2020.15.3.123},
|
||||||
|
}
|
||||||
|
|
||||||
|
@book{doe2019,
|
||||||
|
author = {Doe, Jane},
|
||||||
|
title = {Comprehensive Guide to Science},
|
||||||
|
publisher = {Academic Press},
|
||||||
|
year = {2019},
|
||||||
|
address = {New York},
|
||||||
|
isbn = {978-3-16-148410-0},
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user