Add draft of structure and submodules

Signed-off-by: Riccardo Finotello <riccardo.finotello@gmail.com>
This commit is contained in:
2020-06-10 23:18:57 +02:00
commit e71dbc6844
10 changed files with 109 additions and 0 deletions

11
.gitignore vendored Normal file
View File

@@ -0,0 +1,11 @@
*.aux
*.fdb_latexmk
*.fls
*.log
*.synctex.gz
*.bbl
*.bcf
*.blg
*.run.xml
*.toc
*.xdv

3
.gitmodules vendored Normal file
View File

@@ -0,0 +1,3 @@
[submodule "latex-commons"]
path = latex-commons
url = git@github.com:thesfinox/latex-commons.git

1
.latexmkrc Normal file
View File

@@ -0,0 +1 @@
$pdf_mode=5

7
README.md Normal file
View File

@@ -0,0 +1,7 @@
# Ph.D. Thesis
This project contains the LaTeX code of my Ph.D. defence thesis.
I chose to use `XeLaTeX` to compile it (`BibTeX` for the bibliography) in order to have more freedom to customise the class and the packages. I have included a local `.latexmkrc` file so if you use [_latexmk_](https://mg.readthedocs.io/latexmk.html) you should be good to go. In other cases you should probably use somthing like `xelatex -file-line-error -synctex=1 -interaction=nonstopmode` and the name of the file to compile it. Remember to install both `xelatex` and `biber`!
The repository contains submodules which point to other repositories where I keep my custom packages and classes. Clone the repository using `git clone --recurse-submodules` to include them in your local machine.

1
debug.sty Symbolic link
View File

@@ -0,0 +1 @@
latex-commons/packages/debug.sty

BIN
img/unito.pdf Normal file

Binary file not shown.

1
latex-commons Submodule

Submodule latex-commons added at a3e057ec4d

1
sciencestuff.sty Symbolic link
View File

@@ -0,0 +1 @@
latex-commons/packages/sciencestuff.sty

1
thesis.cls Symbolic link
View File

@@ -0,0 +1 @@
latex-commons/classes/thesis.cls

83
thesis.tex Normal file
View File

@@ -0,0 +1,83 @@
\documentclass[a4paper,11pt,twoside]{thesis}
\usepackage[british]{babel}
\usepackage{csquotes}
\usepackage{debug}
\usepackage{sciencestuff}
\usepackage{lipsum}
\author{Riccardo Finotello}
\title{Title of the Thesis}
\advisor{Igor Pesando}
\institution{Universit\`{a} degli Studi di Torino}
\school{Scuola di Dottorato}
\specialisation{Dottorato in Fisica ed Astrofisica}
\logo{img/unito}
\begin{document}
\maketitlepage{}
\cleardoubleplainpage{}
\makefrontespice{}
\cleardoubleplainpage{}
\begin{abstractpage}
\lipsum[1-2]
\end{abstractpage}
\cleardoubleplainpage{}
\begin{acknowledgementspage}
\lipsum[3-4]
\end{acknowledgementspage}
\cleardoubleplainpage{}
\plaintoc{}
\outline{Outline}
\lipsum[1-3]
\thesispart{This Is the First Part}
\section{AAA}
\lipsum[1]
\subsection{AAA1}
\lipsum[2-5]
\subsection{AAA2}
\lipsum[6-11]
\thesispart{This Is the Second Part 2}
\section{BBB}
\lipsum[1]
\subsection{BBB1}
\lipsum[2-5]
\subsection{BBB2}
\lipsum[6-10]
\appendix
\section{CCC}
\lipsum[1-3]
\section{DDD}
\lipsum[4-6]
\end{document}
% vim: ft=tex