-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
40 lines (35 loc) · 958 Bytes
/
Copy pathmain.tex
File metadata and controls
40 lines (35 loc) · 958 Bytes
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
\documentclass[11pt]{article}
% Packages
\usepackage{amsmath} % For mathematical symbols and equations
\usepackage{graphicx} % For including images
\usepackage{hyperref} % For hyperlinks
\usepackage{geometry} % For adjusting page dimensions
\usepackage{listings}
\usepackage{xcolor}
\usepackage{titlesec}
%\usepackage{plantuml}
\usepackage{svg}
%\usepackage{currfile}
\geometry{a4paper, margin=1in}
% Title and Author
\title{C programming}
\author{Deva}
\date{\today}
% Define a custom command for the listings settings
\lstdefinestyle{myStyle}{
belowcaptionskip=1\baselineskip,
breaklines=true,
frame=none,
numbers=none,
basicstyle=\footnotesize\ttfamily,
keywordstyle=\bfseries\color{green!40!black},
commentstyle=\itshape\color{purple!40!black},
identifierstyle=\color{blue},
backgroundcolor=\color{gray!10!white},
}
\begin{document}
\maketitle
\tableofcontents
\include{chap1/chap1.tex}
\include{chap2/chap2.tex}
\end{document}