-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorialLatex.tex
More file actions
84 lines (71 loc) · 2.11 KB
/
tutorialLatex.tex
File metadata and controls
84 lines (71 loc) · 2.11 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
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{geometry}
\usepackage{amssymb, amsthm, amsmath, mathtools}
\usepackage{xspace}
\newcommand{\latex}{\LaTeX\xspace}
\geometry{a4paper}
\title{Tutorial in \latex}
\author{Kaisín Manning}
\date{15/09/2025}
\begin{document}
\maketitle
\newpage
\tableofcontents
\newpage
\section{Preamble}
\subsection{Document Class}
\paragraph{Document}classes detrmines the formatting and file properties of your text.\par
\begin{table}[!th]
\begin{tabular}{|l|l|l|}
\hline
\textbf{tag} & \textbf{features} & \textbf{uses}\\
\textbackslash{documentclass\{article\}} & no \textbackslash{part} or \textbackslash{chapter} division & article, doccumentation\\
\textbackslash{documentclass\{report\}} & no \textbackslash{part} division & long paper, thesei, small book\\
\textbackslash{documentclass\{book\}} & two sided, book format & book\\
\textbackslash{documentclass\{letter\}} & letter \& envelope format, basic tag & letter\\
\textbackslash{documentclass\{slides\}} & default font: large sans serif & presentation, slideshow\\
\textbackslash{documentclass\{beamer\}} & theme, animation, link/button & interactive presentaion, slideshow\\
\textbackslash{documentclass\{minimal\}} & page size \& font tag only & debugging\\
\textbackslash{documentclass\{IEEEtran\}} & IEEE article/paper format & IEEE published paper\\
\hline
\end{tabular}
\caption{caption}
\end{table}
\subsection{packages}
\subsection{}
\newpage
\section{Layout}
\subsection{}
\paragraph{paragraph title}
\texttt{vhjvhj}
\subsection{}
\subsection{}
\newpage
\section{Tables}
\subsection{}
\subsection{}
\subsection{}
\newpage
\section{Fonts}
\subsection{}
\subsection{}
\subsection{}
\newpage
\section{}
\subsection{}
\subsection{}
\subsection{}
\newpage
\section{Maths}
\subsection{Inline}
\subsection{}
\subsection{}
\newpage
\section{Refrences \& links}
\subsection{}
\subsection{}
\subsection{}
\newpage
\end{document}