mirror of
https://github.com/tu-darmstadt-informatik/bsc-thesis.git
synced 2026-04-05 17:15:26 +00:00
first commit
This commit is contained in:
commit
65edc3c26d
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
texput.log
|
||||
thesis.aux
|
||||
thesis.bbl
|
||||
thesis.blg
|
||||
thesis.brf
|
||||
thesis.pdf
|
||||
thesis.synctex.gz
|
||||
thesis.log
|
||||
external.bib
|
||||
papers.bib
|
||||
short.bib
|
||||
thesis.dvi
|
||||
q.log
|
||||
thesis.out
|
||||
thesis.run.xml
|
||||
thesis.toc
|
||||
thesis.bcf
|
||||
|
||||
downloads
|
||||
9
abstract.tex
Normal file
9
abstract.tex
Normal file
@ -0,0 +1,9 @@
|
||||
% INFO
|
||||
% Abstract.tex
|
||||
% Für den Abstract der Abschlussarbeit oder Dissertation
|
||||
|
||||
\begin{abstract}
|
||||
Dies ist der Abstract der Arbeit.
|
||||
Er gibt wertungsfrei, kurz und prägnant den Inhalt der wissenschaftlichen Arbeit wieder.
|
||||
\end{abstract}
|
||||
|
||||
0
approach.tex
Normal file
0
approach.tex
Normal file
4
background.tex
Normal file
4
background.tex
Normal file
@ -0,0 +1,4 @@
|
||||
|
||||
\subsection{Problem formulation}
|
||||
\subsection{Faster R-CNN}
|
||||
\subsection{Mask R-CNN}
|
||||
42
clean.bib
Normal file
42
clean.bib
Normal file
@ -0,0 +1,42 @@
|
||||
% This file was created with JabRef 2.10.
|
||||
% Encoding: UTF8
|
||||
|
||||
|
||||
@Book{Schill2012,
|
||||
title = {Verteilte Systeme: Grundlagen und Basistechnologien},
|
||||
author = {Schill, Alexander and Springer, Thomas},
|
||||
year = {2012},
|
||||
edition = {2. Aufl.},
|
||||
location = {Berlin [u.a.]},
|
||||
pagetotal = {433},
|
||||
publisher = {Springer Vieweg},
|
||||
|
||||
timestamp = {2016-02-09}
|
||||
}
|
||||
|
||||
@Book{Tanenbaum2008,
|
||||
title = {Verteilte Systeme: Prinzipien und Paradigmen},
|
||||
author = {Tanenbaum, Andrew S. and Steen, Maarten van},
|
||||
year = {2008},
|
||||
edition = {2., aktualisierte Aufl.},
|
||||
location = {München [u.a.]},
|
||||
pagetotal = {761},
|
||||
publisher = {Pearson Studium},
|
||||
|
||||
timestamp = {2016-02-09}
|
||||
}
|
||||
|
||||
@Mvproceedings{Dowling2013,
|
||||
title = {Distributed Applications and Interoperable Systems},
|
||||
editor = {Dowling, Jim and Taïani, François},
|
||||
year = {2013},
|
||||
eventdate = {2013-06-03/2013-06-05},
|
||||
eventtitle = {8th International Federated Conference on Distributed Computing Techniques, DisCoTec},
|
||||
publisher = {Springer},
|
||||
venue = {Florenz, Italien},
|
||||
|
||||
timestamp = {2016-02-09}
|
||||
}
|
||||
|
||||
@comment{jabref-entrytype: Mvproceedings: req[date;editor;title;year] opt[addendum;chapter;doi;eprint;eprintclass;eprinttype;eventdate;eventtitle;isbn;language;location;mainsubtitle;maintitle;maintitleaddon;month;note;number;organization;pages;pagetotal;publisher;pubstate;series;subtitle;titleaddon;url;urldate;venue;volumes]}
|
||||
|
||||
3
conclusion.tex
Normal file
3
conclusion.tex
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
\subsection{Future Work}
|
||||
0
experiments.tex
Normal file
0
experiments.tex
Normal file
2
introduction.tex
Normal file
2
introduction.tex
Normal file
@ -0,0 +1,2 @@
|
||||
\subsection{Motivation \& Goals}
|
||||
\subsection{Related Work}
|
||||
166
thesis.tex
Normal file
166
thesis.tex
Normal file
@ -0,0 +1,166 @@
|
||||
\documentclass[
|
||||
paper=a4, % DIN-A4-Format
|
||||
11pt, % Schriftgröße
|
||||
bibliography=totoc, % Bibliografie automatisch im Inhaltsverzeichnis generieren
|
||||
parskip=off, % Absatzabstand: off, half, full
|
||||
oneside, % einseitiges Layout
|
||||
% twoside, % zweiseitiges Layout
|
||||
article, % verwendet KOMA-Klasse scrartcl
|
||||
% longdoc=true,
|
||||
accentcolor=tud2b,
|
||||
% colorbacktitle, % Hintergrund des Titels einfärben
|
||||
colorback, % Hintergrund unter dem Titel einfärben
|
||||
type=bsc, % für Bachelorarbeit
|
||||
]{tudthesis}
|
||||
|
||||
\usepackage[T1]{fontenc}
|
||||
\usepackage[utf8]{inputenc} % korrekte Darstellung von Umlauten u. Sonderzeichen
|
||||
\usepackage[stable]{footmisc} % mehr Optionen für Fußnoten
|
||||
\usepackage{booktabs} % hübschere Tabellen als der LaTeX-Standard
|
||||
\usepackage{multirow} % Create tabular cells spanning multiple rows
|
||||
\usepackage{longtable} % große Tabellen, die sich über mehrere Seiten erstrecken
|
||||
\usepackage{listings} % bietet Umgebung, um Programmiercode zu setzen inkl. Syntaxhighlighting
|
||||
\usepackage{amsmath} % Setzen mathematischer Formeln
|
||||
\usepackage{ellipsis} % korrigiert Aussehen von „…“
|
||||
\usepackage{enumitem} % mehr Optionen für Aufzählungen
|
||||
\usepackage[shortcuts]{extdash} % mehr Optionen für Worttrennung
|
||||
\usepackage{setspace} % Zeilenabstände verändern: \singlespacing, \onehalfspacing oder \doublespacing
|
||||
\usepackage{lipsum} % zur Erzeugung von Lorem-Ipsum-Blindtext
|
||||
\usepackage[math]{blindtext} % zur Erzeugung von deutschem Blindtext
|
||||
\usepackage{hyperref} % Verlinkungen im Dokument
|
||||
|
||||
% INFO %
|
||||
% Das hyperref-Paket sollte möglichst als letztes geladen werden, darum steht es weiter hinten in der Präambel.
|
||||
% Leider funktioniert hyperref nicht 100%-ig einwandfrei mit tudstyle; bei Problemen damit lieber aus dem Dokument entfernen!
|
||||
% Einstellungen für hyperref
|
||||
\hypersetup{%
|
||||
pdftitle=Motion R-CNN,
|
||||
pdfauthor=Simon Meister,
|
||||
pdfsubject=B.Sc. Thesis,
|
||||
unicode=true, % benötigt, damit Umlaute im pdftitle richtig dargestellt werden
|
||||
breaklinks=true
|
||||
%% colorlinks=true
|
||||
%% linkcolor=NavyBlue,
|
||||
%% urlcolor=NavyBlue,%Green4,
|
||||
%% citecolor=NavyBlue%DeepPink3
|
||||
}
|
||||
|
||||
\usepackage[
|
||||
backend=biber, % biber ist das Standard-Backend für Biblatex. Für die Abwärtskompatibilität kann hier auch bibtex oder bibtex8 gewählt werden (siehe biblatex-Dokumentation)
|
||||
style=authortitle, %numeric, authortitle, alphabetic etc.
|
||||
autocite=footnote, % Stil, der mit \autocite verwendet wird
|
||||
sorting=nty, % Sortierung: nty = name title year, nyt = name year title u.a.
|
||||
sortcase=false,
|
||||
url=false,
|
||||
hyperref=auto,
|
||||
]{biblatex}
|
||||
|
||||
\renewbibmacro*{cite:seenote}{} % um zu verhindern, dass in Fußnoten automatisch "(wie Anm. xy)" eingefügt wird
|
||||
\DeclareFieldFormat*{citetitle}{\mkbibemph{#1\isdot}} % zitierte Titel kursiv formatieren
|
||||
\DeclareFieldFormat*{title}{\mkbibemph{#1\isdot}} % zitierte Titel kursiv formatieren
|
||||
|
||||
\addbibresource{clean.bib} % Hier Pfad zu deiner .bib-Datei hineinschreiben
|
||||
\nocite{*} % Alle Einträge in der .bib-Datei im Literaturverzeichnis ausgeben, auch wenn sie nicht im Text zitiert werden. Gut zum Testen der .bib-Datei, sollte aber nicht generell verwendet werden. Stattdessen lieber gezielt Einträge mit Keywords ausgeben lassen (siehe \printbibliography in Zeile 224).
|
||||
|
||||
|
||||
% INFO %
|
||||
% Hier kannst du deine persönlichen Daten hineinschreiben und diese Variablen verwenden, damit du es nicht jedes Mal neu schreiben musst.
|
||||
\newcommand*{\myname}{Simon Meister}
|
||||
\newcommand*{\mytitlede}{Motion R-CNN: 3D-Bewegungsschätzung auf Instanzebene mit Regionsbasierten CNNs}
|
||||
\newcommand*{\mytitleen}{Motion R-CNN: Instance-level 3D Motion Estimation with Region-based CNNs}
|
||||
\newcommand*{\mymail}{\href{mailto:simon.meister@stud.tu-darmstadt.de}{simon.meister@stud.tu-darmstadt.de}}
|
||||
\newcommand*{\myprof}{Prof. Stefan Roth, Ph.D.}
|
||||
\newcommand*{\myinstitute}{Visual Inference Group}
|
||||
\newcommand*{\myfaculty}{Fachbereich Informatik}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
|
||||
\begin{document}
|
||||
\parindent 0em % Erstzeileneinzug
|
||||
|
||||
|
||||
% Titelei
|
||||
\author{\myname}
|
||||
\thesistitle{\mytitleen}{\mytitlede}
|
||||
\birthplace{Erbach}
|
||||
\date{23.11.2017}
|
||||
\referee{\myprof}{M.Sc. Junhwa Hur}
|
||||
\department{\myinstitute}
|
||||
\group{\myfaculty}
|
||||
\dateofexam{23.11.2017}{23.11.2017}
|
||||
\makethesistitle
|
||||
|
||||
% Eigenständigkeitserklärung: muss nach \makethesistitle erscheinen, sonst wird sie als erste Seite des Dokuments gesetzt.
|
||||
\affidavit[23.11.2017]{\myname}
|
||||
%\affidavit{\myname}
|
||||
|
||||
\pagestyle{myheadings} % Seitenstil umschalten
|
||||
\mymarkright{Version: \today} % Inhalt der Fußzeile
|
||||
|
||||
|
||||
\input{abstract}
|
||||
\clearpage
|
||||
|
||||
%\pagenumbering{Roman} % Seitennummerierung auf römische Zahlen ändern
|
||||
|
||||
\setcounter{tocdepth}{4}
|
||||
\setcounter{secnumdepth}{4}
|
||||
\tableofcontents % Inhaltsverzeichnis
|
||||
\setcounter{page}{1}
|
||||
\clearpage
|
||||
|
||||
% Aktuelle Seitenzahl speichern, da Wechsel auf arabische Zahlen die Zählung zurücksetzt
|
||||
%% \newcounter{savedromanpagenumber}
|
||||
%% \setcounter{savedromanpagenumber}{\value{page}}
|
||||
%\pagenumbering{arabic} % Arabische Seitenzahlen
|
||||
|
||||
\section{Introduction}
|
||||
\parindent 2em
|
||||
\onehalfspacing
|
||||
|
||||
\input{introduction}
|
||||
|
||||
\section{Background}
|
||||
\parindent 2em
|
||||
\onehalfspacing
|
||||
|
||||
\input{background}
|
||||
|
||||
\section{Motion R-CNN}
|
||||
\parindent 2em
|
||||
\onehalfspacing
|
||||
|
||||
\input{approach}
|
||||
|
||||
\section{Experiments}
|
||||
\parindent 2em
|
||||
\onehalfspacing
|
||||
|
||||
\input{experiments}
|
||||
|
||||
\section{Conclusion}
|
||||
\parindent 2em
|
||||
\onehalfspacing
|
||||
|
||||
\input{conclusion}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Bibliografie mit BibLaTeX
|
||||
%
|
||||
% Verwende keyword=meinbegriff, um nur die Einträge aus deiner .bib-Datei ausgeben zu lassen, die mit meinbegriff getaggt sind.
|
||||
% Darf ein bestimmtes Keyword nicht enthalten sein, verwende notkeyword=meinbegriff.
|
||||
\singlespacing
|
||||
\printbibliography[title=Literaturverzeichnis, heading=bibliography]
|
||||
%\printbibliography[title=Literaturverzeichnis, heading=bibliography, keyword=meinbegriff]
|
||||
|
||||
\clearpage
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
% Beginn des Anhangs
|
||||
\appendix
|
||||
|
||||
%% \pagenumbering{Roman}
|
||||
%% \setcounter{page}{\value{savedromanpagenumber}+1} % gespeicherte Seitenzahl vom Beginn des Dokuments aufrufen und damit weiterzählen
|
||||
|
||||
\clearpage
|
||||
|
||||
\end{document}
|
||||
Loading…
x
Reference in New Issue
Block a user