-
Notifications
You must be signed in to change notification settings - Fork 0
/
notes.tex
81 lines (64 loc) · 2 KB
/
notes.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
\documentclass[a4paper,12pt,oneside]{book}
%-------------------------------Start of the Preamble------------------------------------------------
\usepackage[english]{babel}
\usepackage{blindtext}
\usepackage{hyperref}
\usepackage{xfp}
\usepackage{geometry}
\geometry{
a4paper,
total={170mm,257mm},
left=20mm,
top=25mm,
bottom=25mm,
}
\setlength{\intextsep}{10pt plus 1.0pt minus 1.0pt} % Add vertical space before and after tables and figures (http://tex.stackexchange.com/a/26522/101976)
\parindent=0cm % Remove the paragraph indent of the first line
\addtolength{\jot}{1.2\jot} % Double the line between equations
\def\arraystretch{1.5} % Increase the vertical table cell margin
\raggedbottom % Prevents spreading the page content vertically for non-full pages.
%package for writing math equations
\usepackage{amsmath}
\usepackage{nccmath}
% package for inserting table
\usepackage{tabularray}
\usepackage{ragged2e}
\usepackage{tabu}
%package for inserting pictures
\usepackage{graphicx}
% No hyphens while justifying
\usepackage[none]{hyphenat}
% Multi Column Items
\usepackage{multicol}
\usepackage{enumitem}
\newcommand*{\Perm}[2]{{}^{#1}\!P_{#2}}%
\newcommand*{\Comb}[2]{{}^{#1}C_{#2}}%
\hypersetup{
colorlinks=true,
linkcolor=black,
filecolor=magenta,
urlcolor=cyan,
}
%use of package for section title formatting
\usepackage{titlesec}
\titleformat{\chapter}
{\Large\bfseries} % format
{} % label
{0pt} % sep
{\huge} % before-code
%----------------------End of the Preamble---------------------------------------
\begin{document}
%---------------------Title Page------------------------------------------------
\begin{titlepage}
\raggedright
{\Large GATE Exam\\[8cm]}
{\Huge\scshape CSE, ECE, IN, ME\\[.1in]}
{\Large Short Notes\\[1cm]}
\vfill
{\itshape 2025, GATE}
\end{titlepage}
%-------------------------------------------------------------------------------
\tableofcontents
\input{General-Aptitude}
\input{Engineering-Mathematics}
\end{document}