-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.tex
More file actions
124 lines (93 loc) · 3.48 KB
/
notes.tex
File metadata and controls
124 lines (93 loc) · 3.48 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
% Notes Template
% Template version: v0.4.1
% https://github.com/rnsavinelli/notes-template
%
%!TEX encoding = UTF-8 Unicode
% Document-class options:
\documentclass[letter]{article}
% Package includes and formatting settings -----------------------------------
% ----------------------------------------------------------------------------
% LaTeX Font encoding - 8-bit fonts
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[sc, osf]{mathpazo}
\usepackage[spanish]{babel}
\usepackage{hyperref}
% These settings should be modified by the user
\def\authorsname{Mr./Mrs. Author}
\def\authorswebsite{}
\def\course{\LaTeX}
\def\courseyear{}
\def\thetitle{Title}
\def\thesubtitle{Subtitle}
\def\university{}
% PDF Settings
\hypersetup{
pdfauthor = {\authorsname},
pdfkeywords = {-},
pdftitle = {\thetitle, \thesubtitle},
pdfsubject = {-},
}
% HREF settings
\hypersetup{
colorlinks = true,
urlcolor = blue,
linkcolor = black
}
% LaTeX' own graphics handling
\usepackage{graphicx}
\graphicspath{ {./images/} }
% AMS-LaTeX extensions for mathematical typesetting.
\usepackage{amsmath,amsthm,amsfonts,amssymb,mathrsfs}
% Document format and settings -----------------------------------------------
% ----------------------------------------------------------------------------
\usepackage[left=1in, right=1in, bottom=1.25in, top=1.25in]{geometry}
% Better spacing between lines
\usepackage{parskip}
\setlength\parindent{0em}
%\pagenumbering{roman}
\usepackage{chngcntr}
\counterwithin*{equation}{section}
% Title, section, and topic formatting
\usepackage{titlesec}
\usepackage[labelfont=bf]{caption}
% \today commands
\usepackage{datetime}
% Content of the document ----------------------------------------------------
% ----------------------------------------------------------------------------
\begin{document}
\title{\thetitle \\ {\large \thesubtitle}}
\author{\authorsname}
\date{\today}
\maketitle
% Include as many files as needed. This approach is taken to reduce the amount
% of information contained inside this very same document. It is not mandatory
% to use external files to add your content, but it is advisable.
%
% \input is preferred over \include since the latter automatically appends a
% page break. Deppending of your use case you might prefer one over the other.
\input{section-01}
\input{section-02}
% Closing of the document ----------------------------------------------------
% ----------------------------------------------------------------------------
% Comment the commands below to re-enable section,
% subsection and subsubsection numbering.
\titleformat{\section}{\bfseries\Large}{}{0em}{}
\titleformat{\subsection}{\bfseries\large}{}{0em}{}
\titleformat{\subsubsection}{\bfseries\normalsize}{}{0em}{}
% Bibliography ---------------------------------------------------------------
% ----------------------------------------------------------------------------
%\newpage
%\bibliographystyle{plain}
%\bibliography{bib/uni}
% Appendices -----------------------------------------------------------------
% ----------------------------------------------------------------------------
%\newpage
%\input{appendix-a}
% About Section --------------------------------------------------------------
% ----------------------------------------------------------------------------
%\newpage
%\input{about}
\end{document}
% End of the document --------------------------------------------------------
% ----------------------------------------------------------------------------