forked from Pseudomanifold/latex-mimosis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy-thesis-setup.tex
92 lines (69 loc) · 2.64 KB
/
my-thesis-setup.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
% !TEX root = my-thesis.tex
% **************************************************
% Files' Character Encoding
% **************************************************
\PassOptionsToPackage{utf8}{inputenc}
\usepackage{inputenc}
% **************************************************
% Information and Commands for Reuse
% **************************************************
\newcommand{\thesisTitle}{In-sensor Stochastic Computing Implementations and Comparative Analysis with \\ Conventional Digital Computing}
\newcommand{\thesisName}{DO LE DUY}
\newcommand{\thesisSubject}{Bachelor Thesis}
\newcommand{\thesisDate}{Feb 7, 2024}
\newcommand{\thesisVersion}{First Draft}
\newcommand{\thesisSupervisor}{Prof. Masanori Hashimoto}
\newcommand{\thesisSupervisorGroup}{Integrated Systems Engineering Laboratory}
\newcommand{\thesisUniversity}{\protect{Kyoto University}}
\newcommand{\thesisUniversitySchool}{School of Engineering}
\newcommand{\thesisUniversityDepartment}{Department of Electrical and Electronic Engineering}
\newcommand{\thesisUniversityGroup}{Integrated Systems Engineering Laboratory}
% **************************************************
% Fonts
% **************************************************
\usepackage{charter}
\usepackage[oldstyle,scale=0.7]{sourcecodepro}
% **************************************************
% Load and Configure Packages
% **************************************************
\usepackage[english]{babel} % babel system, adjust the language of the content
\usepackage{scrhack}
\setlength{\parindent}{0pt} % Remove para indent
\setstretch{1.2} % value for line spacing, use \setstretch{}
\setlength{\parskip}{1em} % value for paragraph indentation
\usepackage{amsmath}
% Save the original \frac command in case it's needed
\let\oldfrac\frac
% Redefine \frac to be \dfrac
\renewcommand{\frac}[2]{\dfrac{#1}{#2}}
% Move figures to end of thesis
\usepackage[nomarkers]{endfloat}
% Redefine the separator between figures/tables
\renewcommand{\efloatseparator}{\vspace{1cm}}
% Adjust section titles formating
% \usepackage{titlesec}
% \titleformat{\section}
% {\normalfont\large\bfseries}{\thesection}{1em}{}
% \titleformat{\subsection}
% {\normalfont\normalsize\bfseries}{\thesubsection}{1em}{}
\usepackage[%
colorlinks = true,
citecolor = RoyalBlue,
linkcolor = RoyalBlue,
urlcolor = RoyalBlue,
]{hyperref}
% Setup biblatex
\usepackage[%
autocite = plain,
backend = biber,
doi = true,
url = true,
giveninits = true,
hyperref = true,
maxbibnames = 99,
maxcitenames = 99,
sortcites = true,
style = numeric,
]{biblatex}
% \input{bibliography-mimosis}
\addbibresource{Thesis.bib}