-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tutorial_01.tex
107 lines (86 loc) · 1.61 KB
/
Tutorial_01.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
Hello! This is my first LaTex document.
A rectangle has side lengths of $(x+1)$ and $(x+3)$.
The equation $$A(x)=x^2+4x+3$$ gives the area of the rectangle.
$\frac{5}{6}$\\
$3/4$\\
$\displaystyle{\frac{3}{4+1}}$\\
$\alpha$\\
$\Delta$\\
$$\delta$$
$$\sin 3\theta$$
$$\tan \phi=\frac{\sin \phi}{\cos \phi}$$
$$\ln x$$
$$\log_2 x$$
%Environment in LaTex
\begin{flushright}
This sentence is flush right.
\end{flushright}
\begin{center}
This sentence is centred.
\end{center}
\begin{flushleft}
This sentence is flush left.
\end{flushleft}
\begin{large}
This sentence is large.
\end{large}
\begin{Large}
This sentence is large.
\end{Large}
\begin{small}
This sentence is small.
\end{small}
\begin{equation}\label{0}
\sqrt[3]{4x}=10
\end{equation}
\begin{equation}\label{1}
x^4+y^3+z^2=100
\end{equation}
Equation \ref {1} uses power.
\begin{equation*}\tag{ EQ5}
x^5+y^5=90
\end{equation*}
\[3x+5y=z\]
\[2x-4y=10\]
\begin{align*}
3x+5y &= z & 2x-4y &= 10\\
3x+5y &= z & 2x-4y &= 10
\end{align*}
\begin{align*}
|x+y|^2 &=(x+y)^2\\
&=x^2+2xy+y^2\\
&=|x|^2+2xy+|y|^2\\
&\leq|x|^2+2|xy|+|y|^2\\
&=|x|^2+2|x||y|+|y|^2\\
&=|x+y|^2
\end{align*}
\begin{enumerate}
\item Reddy
\begin{enumerate}
\item Ellen
\item Pauline
\item May
\end{enumerate}
\item Vivian
\item Peppa
\item George
\end{enumerate}
\begin{itemize}
\item Reddy
\begin{itemize}
\item Ellen
\item Pauline
\item May
\end{itemize}
\item Vivian
\item Peppa
\item George
\end{itemize}
\begin{description}
\item [GV903] {Method}
\item [GV994] {Presentation}
\end{description}
\end{document}