summaryrefslogtreecommitdiffstats
path: root/main.tex
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2022-04-06 20:00:37 +0100
committerYann Herklotz <git@yannherklotz.com>2022-04-06 20:00:37 +0100
commitd611f929443140cbd7bff2a1899b971c216ddbd2 (patch)
tree588d23e3adb1efc22e39f3af15b624b2fa54a783 /main.tex
parent30dd0624be59e05ede55e911e5d5656798c3f0d9 (diff)
downloadlsr22_fvhls-d611f929443140cbd7bff2a1899b971c216ddbd2.tar.gz
lsr22_fvhls-d611f929443140cbd7bff2a1899b971c216ddbd2.zip
Add new files and Makefile
Diffstat (limited to 'main.tex')
-rw-r--r--main.tex54
1 files changed, 50 insertions, 4 deletions
diff --git a/main.tex b/main.tex
index 40456b1..775cdc2 100644
--- a/main.tex
+++ b/main.tex
@@ -1,14 +1,60 @@
-\documentclass{article}
-\usepackage[utf8]{inputenc}
+\documentclass{scrreprt}
\title{LSR}
-\author{Yann Herklotz}
+\author{Yann Herklotz Grave}
\date{April 2022}
+\includeonly{
+ introduction,
+ background,
+ hls,
+ scheduling,
+ pipelining,
+ dynamic,
+ schedule,
+ conclusion
+}
+
+\usepackage{graphicx}
+\usepackage{amsmath}
+\usepackage[utf8]{inputenc}
+\usepackage[sc]{mathpazo}
+\usepackage{newpxmath}
+\addtokomafont{disposition}{\rmfamily}
+
+\usepackage{epigraph}
+\setlength\epigraphwidth{1\textwidth}
+\setlength\epigraphrule{0pt} % no line between
+\setlength\beforeepigraphskip{1\baselineskip} % space before and after epigraph
+\setlength\afterepigraphskip{2\baselineskip}
+\renewcommand*{\textflush}{flushright}
+\renewcommand*{\epigraphsize}{\normalsize\itshape}
+
+\usepackage{xcolor}
+
+\definecolor{ymhfwcol}{HTML}{5F506B}
+\newcommand{\ymhfw}{%
+ \textcolor{ymhfwcol}{FW}%
+}
+
+\definecolor{ymhwipcol}{HTML}{76949F}
+\newcommand{\ymhwip}{%
+ \textcolor{ymhwipcol}{WIP}%
+}
+
\begin{document}
\maketitle
-\section{Introduction}
+\tableofcontents
+
+\include{introduction}
+\include{background}
+\include{hls}
+\include{scheduling}
+\include{pipelining}
+\include{dynamic}
+\include{schedule}
+\include{conclusion}
\end{document}