From ae4c53332014cbbd4b378bdd8603c5c214b9c32f Mon Sep 17 00:00:00 2001 From: Xiretza Date: Fri, 28 Feb 2020 18:35:10 +0100 Subject: [PATCH] Add bibliography --- Diplomschrift.bib | 19 +++++++++++++++++++ Diplomschrift.tex | 8 ++++++++ preamble.tex | 3 +++ 3 files changed, 30 insertions(+) create mode 100644 Diplomschrift.bib diff --git a/Diplomschrift.bib b/Diplomschrift.bib new file mode 100644 index 0000000..8696878 --- /dev/null +++ b/Diplomschrift.bib @@ -0,0 +1,19 @@ +@online{nandgame, + author = "Olav Junker Kjær", + title = "The Nand Game", + url = "http://nandgame.com", +} + +@online{breadboard_computer, + author = "Ben Eater", + title = "Building an 8-bit breadboard computer!", + url = "https://www.youtube.com/playlist?list=PLowKtXNTBypGqImE405J2565dvjafglHU", + year = "2016", +} + +@unpublished{yosys, + author = "Clifford Wolf, Johann Glaser", + title = "Yosys - A Free Verilog Synthesis Suite", + url = "http://www.clifford.at/yosys/files/yosys-austrochip2013.pdf", + year = "2013", +} diff --git a/Diplomschrift.tex b/Diplomschrift.tex index 2d98a9d..f66dc47 100644 --- a/Diplomschrift.tex +++ b/Diplomschrift.tex @@ -5,6 +5,12 @@ \usepackage{subfiles} \begin{document} +\titleformat{\part}[display] + {\Huge\scshape\filright} + {\partname~\thepart:} + {20pt} + {\makeatother} + \tableofcontents \let\tableofcontents\relax @@ -12,4 +18,6 @@ \subfile{vhdl_intro/vhdl_intro.tex} +\printbibliography + \end{document} diff --git a/preamble.tex b/preamble.tex index 644b9e9..0df6cb9 100644 --- a/preamble.tex +++ b/preamble.tex @@ -33,6 +33,9 @@ style=vhdlstyle, } +\usepackage{biblatex} +\addbibresource{Diplomschrift.bib} + \usepackage{titling} \usepackage{graphicx} \usepackage{lastpage}