-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.tex
124 lines (97 loc) · 2.21 KB
/
start.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
\documentclass[11pt]{article}
\usepackage{amsmath, amssymb, amsfonts}
\usepackage{float}
\title{My Latex Document}
\author{Ritvik Shukla}
\date{\today}
\begin{document}
\tableofcontents
\maketitle
Hello! This is my first \LaTeX\ document. \newline
This is a hard return.\\[6pt]
This is a soft return.\\
I am a $(x+1)$ Math Mode.
Equation = ${A(x)=x^4+24x}$
% Display Math Mode
$${A(x)=x^{34}+24x}$$
$${A(x)=x^{33x+4^5}+24x}$$
% Subscripts
$$x_1$$
$$x_{12}$$
$$x_{1_{2_3}}$$
% Greeks
$$\pi$$
$$\Pi$$
$$\alpha$$
$$\A=\pi r^2$$
% Trig
$$\sin$$
$$\sin\theta$$
$$\sin\theta=\frac{opposite}{hypotenuse}$$
$$\sin^{-1}x$$
$$\arcsin x$$
% Logarithms
$$\log$$
$$\log_2$$
$$\log_2 x$$
% Limits
$$\lim_{x\to\infty}$$
$$\lim_{x\to\infty} f(x)$$
% Summation
$$\sum_{i=1}^n$$
$$\sum_{i=1}^n x_i$$
% Root
$$\sqrt{2}$$
$$\sqrt[3]{2}$$
$$\sqrt{1+\sqrt{x}}$$
% Fractions
$$\dfrac{1}{2}$$
$$\frac{1}{2}+\frac{1}{3}$$
$$2\left(\frac{1}{x^2-1}\right)$$
% Tables
\vspace{1cm}
\begin{table}[H]
\centering
\def\arraystretch{1.8}
\begin{tabular}{|c|c|c|p{3in}}
\hline
$x$ & 1 & 2 & This is a para I am very proud about \\ \hline
$f(x)$ & 1 & 2 & This is a para I am very proud about \\ \hline
\end{tabular}
\caption{This is a caption}
\end{table}
% Arrays
\begin{align*}
5x^2-9
\end{align*}
% Enumerate
\begin{enumerate}
\item pencil
\begin{enumerate}
\item pencil
\item calculator
\end{enumerate}
\item calculator
\end{enumerate}
% Text Style
This will produce \textit{italicized} text.
This will produce \textbf{bold} text.
This will produce \textsc{small caps} text.
This will produce \texttt{type writer} text.
\begin{large}This is a large text\end{large}
\begin{Large}This is a large text\end{Large}
\begin{Huge}This is a large text\end{Huge}
\begin{small}This is a large text\end{small}
\begin{tiny}This is a large text\end{tiny}
\begin{center}This is a centered Text\end{center}
\begin{flushleft}This is a left justified text\end{flushleft}
\begin{flushright}This is a left justified text\end{flushright}
\Large
This is a large text
% Link
\href{www.google.com}{This My Link}
% Sections
\section{First Section}
\subsection{Subsection One}
\subsubsection{Sub sub section}
\end{document}