Implemented Bibliography quick and dirty
This commit is contained in:
parent
feb3af6484
commit
1d737195b5
6
Bibliography.bib
Normal file
6
Bibliography.bib
Normal file
@ -0,0 +1,6 @@
|
||||
@Misc{ example,
|
||||
author = {Example Author},
|
||||
title = {Example Title},
|
||||
howpublished = {\url{google.com}},
|
||||
note = {Retrieved 2022-10-24}
|
||||
}
|
@ -1,2 +0,0 @@
|
||||
%all the content goes here
|
||||
\input{frames/ExampleFrame.tex}
|
22
Packages.tex
22
Packages.tex
@ -53,6 +53,12 @@ rightsub = \grq%
|
||||
\usepackage{colortbl}
|
||||
%enable line break in nomenclature
|
||||
\usepackage{array}
|
||||
%multirows in tables
|
||||
\usepackage{multirow}
|
||||
%footnotes for tables
|
||||
\usepackage{threeparttable}
|
||||
%enable rotation of table headers
|
||||
\newcommand\rothead{\bfseries\rotatebox{90}}
|
||||
|
||||
%--------------------
|
||||
%header and footer
|
||||
@ -67,7 +73,9 @@ rightsub = \grq%
|
||||
%--------------------
|
||||
%bibliography
|
||||
%--------------------
|
||||
\usepackage[square, numbers]{natbib}
|
||||
%\usepackage[square, numbers]{natbib}
|
||||
\usepackage[style=authortitle]{biblatex}
|
||||
\bibliography{Bibliography.bib}
|
||||
|
||||
%--------------------
|
||||
%for calculating the number of pages
|
||||
@ -79,17 +87,23 @@ rightsub = \grq%
|
||||
%--------------------
|
||||
\usepackage{ifthen}
|
||||
|
||||
%--------------------
|
||||
%symbols
|
||||
%--------------------
|
||||
%special symbols
|
||||
\usepackage{fontawesome}
|
||||
|
||||
%--------------------
|
||||
%equations
|
||||
%--------------------
|
||||
%math symbols and more
|
||||
\usepackage{amsmath}
|
||||
%special symbols
|
||||
\usepackage{fontawesome}
|
||||
%si units
|
||||
\usepackage[output-decimal-marker={,}]{siunitx}
|
||||
%decimal comma
|
||||
\usepackage{icomma}
|
||||
%stealth arrows in math
|
||||
\usepackage{mathabx}
|
||||
|
||||
%--------------------
|
||||
%drawings
|
||||
@ -103,6 +117,7 @@ rightsub = \grq%
|
||||
\usetikzlibrary{shapes.geometric}
|
||||
\usepackage{pgf-umlsd}
|
||||
\usepackage{environ}
|
||||
%enable resizing TikZ pictures
|
||||
\makeatletter
|
||||
\newsavebox{\measure@tikzpicture}
|
||||
\NewEnviron{scaletikzpicturetowidth}[1]{%
|
||||
@ -124,3 +139,4 @@ rightsub = \grq%
|
||||
}
|
||||
% landscape
|
||||
\usepackage{pdflscape}
|
||||
|
||||
|
10
Sources.tex
Normal file
10
Sources.tex
Normal file
@ -0,0 +1,10 @@
|
||||
\section{Sources}%
|
||||
\label{sec:Sources}
|
||||
|
||||
\begin{frame}[t, allowframebreaks]
|
||||
\frametitle{\secname}
|
||||
|
||||
\setbeamertemplate{bibliography item}{}
|
||||
\AtNextBibliography{\small}
|
||||
\printbibliography[heading=none]
|
||||
\end{frame}
|
@ -1,4 +1,5 @@
|
||||
\documentclass[aspectratio=169, 17pt]{beamer}
|
||||
\documentclass[aspectratio=169, english, 17pt, xcolor=table]{beamer}
|
||||
\renewcommand<>\cellcolor[1]{\only#2{\beameroriginal\cellcolor{#1}}}
|
||||
\usetheme{utokyo}
|
||||
|
||||
\input{Packages.tex}
|
||||
@ -12,14 +13,19 @@
|
||||
|
||||
\setbeamertemplate{frametitle continuation}{}
|
||||
|
||||
%TODO: REMOVE
|
||||
\nocite{*}
|
||||
|
||||
\begin{document}
|
||||
\definecolor{utokyo-blue}{HTML}{187fc3}
|
||||
\definecolor{utokyo-yellow}{HTML}{f9be00}
|
||||
|
||||
\input{TitlePage.tex}
|
||||
|
||||
\input{Content.tex}
|
||||
\input{sections/ExampleSection.tex}
|
||||
|
||||
\input{TitlePage.tex}
|
||||
|
||||
\input{Sources.tex}
|
||||
|
||||
\end{document}
|
||||
|
@ -1,4 +1,4 @@
|
||||
\setcounter{framenumber}{0}
|
||||
\setcounter{framenumber}{-1}
|
||||
|
||||
\title{\TITLE}
|
||||
\subtitle{\SUBTITLE}
|
||||
|
@ -7,7 +7,7 @@
|
||||
\definecolor{utokyo-blue}{HTML}{187fc3};
|
||||
\definecolor{utokyo-yellow}{HTML}{f9be00};
|
||||
\useasboundingbox (0,0) rectangle(\the\paperwidth,\the\paperheight);
|
||||
\ifnum\insertframenumber>1\relax%
|
||||
\ifnum\insertframenumber>0\relax%
|
||||
\fill[white,opacity=1] (0,0) rectangle(\the\paperwidth,\the\paperheight);
|
||||
\node [below left] at (\the\paperwidth, \the\paperheight - 5mm)
|
||||
{\includesvg[height = 1.2 cm]{./images/UTokyo_Logo.svg}};
|
||||
|
@ -1,5 +1,8 @@
|
||||
\section{Example Section}%
|
||||
\label{sec:Example Section}
|
||||
|
||||
\begin{frame}[t]
|
||||
\frametitle{example title}
|
||||
\frametitle{\secname}
|
||||
\framesubtitle{example subtitle}
|
||||
example text
|
||||
\begin{itemize}
|
Loading…
x
Reference in New Issue
Block a user