mirror of
https://gitlab.science.ru.nl/mthesis-edeboone/m.internship-documentation.git
synced 2025-05-15 04:19:13 +02:00
Started thesis document
This commit is contained in:
parent
5379ba3d8d
commit
0fdfedcc51
10 changed files with 669 additions and 0 deletions
24
documents/thesis/Makefile
Normal file
24
documents/thesis/Makefile
Normal file
|
@ -0,0 +1,24 @@
|
|||
# vim:ft=make
|
||||
-include config.mk
|
||||
|
||||
.PHONY: all clean dist-clean
|
||||
|
||||
### Variables
|
||||
MAIN_SRC ?= main.tex
|
||||
TEXENGINE ?= latexmk --pdf
|
||||
|
||||
MAIN_TARGET = $(patsubst %.tex,%.pdf,$(MAIN_SRC))
|
||||
|
||||
### Targets
|
||||
all: $(MAIN_TARGET)
|
||||
|
||||
dist: all clean
|
||||
|
||||
$(MAIN_TARGET): $(MAIN_SRC)
|
||||
$(TEXENGINE) $^
|
||||
|
||||
dist-clean: clean
|
||||
@rm -vf *.pdf *.eps *.dvi *.ps
|
||||
|
||||
clean:
|
||||
@rm -vf *.dat *.log *.out *.aux *.nav *.snm *.toc *.vrb *~ *.fls *.fdb_latexmk *-blx.bib *.bbl *.blg *.run.xml
|
8
documents/thesis/chapters/airshowers.tex
Normal file
8
documents/thesis/chapters/airshowers.tex
Normal file
|
@ -0,0 +1,8 @@
|
|||
\documentclass[../main.tex]{subfiles}
|
||||
|
||||
\begin{document}
|
||||
\chapter{Airshowers}
|
||||
\label{sec:airshowers}
|
||||
|
||||
|
||||
\end{document}
|
8
documents/thesis/chapters/conclusion.tex
Normal file
8
documents/thesis/chapters/conclusion.tex
Normal file
|
@ -0,0 +1,8 @@
|
|||
\documentclass[../main.tex]{subfiles}
|
||||
|
||||
\begin{document}
|
||||
\chapter{Conclusion}
|
||||
\label{sec:conclusion}
|
||||
|
||||
|
||||
\end{document}
|
8
documents/thesis/chapters/introduction.tex
Normal file
8
documents/thesis/chapters/introduction.tex
Normal file
|
@ -0,0 +1,8 @@
|
|||
\documentclass[../main.tex]{subfiles}
|
||||
|
||||
\begin{document}
|
||||
\chapter{Introduction}
|
||||
\label{sec:introduction}
|
||||
|
||||
|
||||
\end{document}
|
8
documents/thesis/chapters/timing.tex
Normal file
8
documents/thesis/chapters/timing.tex
Normal file
|
@ -0,0 +1,8 @@
|
|||
\documentclass[../main.tex]{subfiles}
|
||||
|
||||
\begin{document}
|
||||
\chapter{Timing}
|
||||
\label{sec:timing}
|
||||
|
||||
|
||||
\end{document}
|
1
documents/thesis/config.mk
Normal file
1
documents/thesis/config.mk
Normal file
|
@ -0,0 +1 @@
|
|||
MAIN_SRC=thesis.tex
|
145
documents/thesis/thesis.tex
Normal file
145
documents/thesis/thesis.tex
Normal file
|
@ -0,0 +1,145 @@
|
|||
%%%%%%%%%%%%%%%%%%%%%%%%%%% Document %%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\documentclass[notitlepage,oneside]{book}
|
||||
% Pre-Ambule
|
||||
% For Bibliography
|
||||
\usepackage[sorting=none,natbib=true,citestyle=numeric-comp,backend=bibtex]{biblatex}
|
||||
\addbibresource{../../bibliotheca/bibliography.bib}
|
||||
|
||||
% % Document
|
||||
\usepackage{subfiles}
|
||||
\usepackage{amsmath}
|
||||
\usepackage{mathtools}
|
||||
%\usepackage{cancel}
|
||||
\usepackage{todo}
|
||||
|
||||
% Graphics
|
||||
\usepackage{xcolor}
|
||||
\usepackage{graphicx}
|
||||
\graphicspath{{.}{../../figures/}}
|
||||
\usepackage{epstopdf}
|
||||
|
||||
\usepackage{caption}
|
||||
\usepackage{subcaption}
|
||||
\usepackage[colorlinks=true]{hyperref}
|
||||
\usepackage{cleveref}
|
||||
\usepackage{grffile}
|
||||
|
||||
\usepackage[english]{babel} % for proper word breaking at line ends
|
||||
\usepackage[switch]{lineno}
|
||||
|
||||
%\usepackage{listings}
|
||||
\usepackage{csquotes}
|
||||
\usepackage[margin=1.0in]{geometry}
|
||||
\usepackage[nobottomtitles]{titlesec}
|
||||
|
||||
\titleformat{\chapter}[hang] % shape
|
||||
{\normalfont\bfseries\huge} % format
|
||||
{\thechapter.} % label
|
||||
{0.5ex} % sep
|
||||
{
|
||||
} % before-code
|
||||
[
|
||||
] % after-code
|
||||
|
||||
\setlength{\parindent}{0cm}
|
||||
\newcommand*{\captionsource}[2]{%
|
||||
\caption[{#1}]{%
|
||||
#1%
|
||||
\\\hspace{\linewidth}%
|
||||
\textbf{Source:} #2%
|
||||
}%
|
||||
}
|
||||
|
||||
% Shortcuts
|
||||
|
||||
% Math
|
||||
\newcommand{\dif}[1]{\mathop{}\!\mathrm{d} #1}
|
||||
\newcommand{\pdif}[1]{\mathop{}\!\mathrm{\partial} #1}
|
||||
|
||||
|
||||
% Thesis titling
|
||||
\def\thesistitle{Enhancing Timing Accuracy \\[0.3cm] in Air Shower Radio Detectors}
|
||||
\def\thesissubtitle{}
|
||||
\def\thesisauthorfirst{E.T.}
|
||||
\def\thesisauthorsecond{de Boone}
|
||||
\def\thesissupervisorfirst{dr. Harm}
|
||||
\def\thesissupervisorsecond{Schoorlemmer}
|
||||
\def\thesissecondreaderfirst{dr. Katherine}
|
||||
\def\thesissecondreadersecond{Mulrey}
|
||||
\def\thesisdate{2022-11}
|
||||
\definecolor{radboud}{RGB}{227, 0, 11}
|
||||
|
||||
\begin{document}
|
||||
\frontmatter
|
||||
\begin{titlepage}
|
||||
\thispagestyle{empty}
|
||||
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
|
||||
\center
|
||||
\textcolor{radboud}{\textsc{\Large Radboud Universiteit Nijmegen}}\\[.7cm]
|
||||
\includegraphics[width=25mm]{radboud/in_dei_nomine_feliciter}\\[.5cm]
|
||||
\textsc{Faculteit der Natuurwetenschappen, Wiskunde en Informatica}\\[0.5cm]
|
||||
|
||||
\HRule \\[0.4cm]
|
||||
{ \huge \bfseries \thesistitle}\\[0.1cm]
|
||||
\textsc{\thesissubtitle}\\
|
||||
\HRule \\[.5cm]
|
||||
\textsc{\large Master's thesis Physics and Astronomy}\\[.5cm]
|
||||
|
||||
\begin{minipage}{0.4\textwidth}
|
||||
\begin{flushleft} \large
|
||||
\emph{Author:}\\
|
||||
\thesisauthorfirst\space \textsc{\thesisauthorsecond}
|
||||
\end{flushleft}
|
||||
\end{minipage}
|
||||
~
|
||||
\begin{minipage}{0.4\textwidth}
|
||||
\begin{flushright} \large
|
||||
\emph{Supervisor:} \\
|
||||
\thesissupervisorfirst\space \textsc{\thesissupervisorsecond} \\[1em]
|
||||
\emph{Second Reader:} \\
|
||||
\thesissecondreaderfirst\space \textsc{\thesissecondreadersecond}
|
||||
\end{flushright}
|
||||
\end{minipage}\\[4cm]
|
||||
\vfill
|
||||
{\large \thesisdate}
|
||||
\clearpage
|
||||
\end{titlepage}
|
||||
|
||||
%\newpage
|
||||
%\hrule
|
||||
%\bigskip
|
||||
|
||||
\tableofcontents
|
||||
\clearpage
|
||||
\mainmatter
|
||||
\subfile{chapters/introduction.tex}
|
||||
|
||||
% Airshowers
|
||||
\subfile{chapters/airshowers.tex}
|
||||
|
||||
% Timing
|
||||
\subfile{chapters/timing.tex}
|
||||
|
||||
% Conclusion
|
||||
\subfile{chapters/conclusion.tex}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%% Appendix and Bibliography %%%%%%%%%%%%%%%%%%
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
%\pagebreak[3]
|
||||
%\phantomsection
|
||||
%\subfile{appendix.tex}
|
||||
|
||||
%%% Print Bibliography
|
||||
%\clearpage
|
||||
\backmatter
|
||||
\phantomsection
|
||||
\addcontentsline{toc}{chapter}{Bibliography}
|
||||
\printbibliography
|
||||
\hrule
|
||||
|
||||
\clearpage
|
||||
\phantomsection
|
||||
\addcontentsline{toc}{chapter}{Todos}
|
||||
\todos
|
||||
\end{document}
|
Loading…
Add table
Add a link
Reference in a new issue