This repository has been archived by the owner on Jun 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpresentation.tex
147 lines (121 loc) · 4.27 KB
/
presentation.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
\documentclass{beamer}
\usepackage{amsmath}
\usepackage{listings}
\usepackage{verbatim}
\usepackage{color}
\definecolor{mygray}{rgb}{0.4,0.4,0.4}
\definecolor{mygreen}{rgb}{0,0.8,0.6}
\definecolor{myorange}{rgb}{1.0,0.4,0}
\lstset{
basicstyle=\footnotesize\sffamily\color{black},
commentstyle=\color{mygray},
numbers=left,
numbersep=5pt,
numberstyle=\tiny\color{mygray},
keywordstyle=\color{mygreen},
showspaces=false,
showstringspaces=false,
stringstyle=\color{myorange},
tabsize=2
}
% February 23rd, 2017
% Author: Denisolt Shakhbulatov, Mahmoud Saleh, Arshit Arora, Amar Waqas
\begin{document}
\title { \Huge\LaTeX }
\author{Denisolt Shakhbulatov, Mahmoud Saleh, Arshit Arora, Amar Waqas}
\date{February 23rd, 2017}
\frame{\titlepage}
\frame{\frametitle{Index}\tableofcontents}
\section{Introduction}
\subsection{About \LaTeX}
\frame{\frametitle{About \LaTeX}
\LaTeX , which is pronounced «Lah-tech» or «Lay-tech» (to rhyme with «blech» or «Bertolt Brecht»), is a document preparation system for high-quality typesetting. It is most often used for medium-to-large technical or scientific documents but it can be used for almost any form of publishing.
\LaTeX is not a word processor! Instead, \LaTeX encourages authors not to worry too much about the appearance of their documents but to concentrate on getting the right content.}
\subsection{Features}
\frame{\frametitle{ \LaTeX Features}
\begin{itemize}
\item Typesetting journal articles, technical reports, books, and slide presentations.
\item Control over large documents containing sectioning, cross-references, tables and figures.
\item Typesetting of complex mathematical formulas.
\item Advanced typesetting of mathematics with AMS- \LaTeX .
\item Automatic generation of bibliographies and indexes.
\item Multi-lingual typesetting.
\item Inclusion of artwork, and process or spot colour.
\item Using PostScript or Metafont fonts.
\end{itemize}
}
\subsection{Why \LaTeX}
\frame{\frametitle{Why use \LaTeX}
LaTeX does a perfect job at helping writing proper mathematical papers. It provides easiest syntax for mathematical equations, that helps creating a proper organised scientific paper. Also LaTeX is highly customisable. You can create your own themes and apply them in your paper or presentation. Not only that, but LaTeX lets you easily generate graphs. It is commonly used to write IEEE format papers.
}
\section{Section no. 2}
\subsection{Lists I}
\frame{\frametitle{unnumbered lists}
\begin{itemize}
\item Introduction to \LaTeX
\item Course 2
\item Termpapers and presentations with \LaTeX
\item Beamer class
\end{itemize}
}
\section{Mathematics and Tables}
\subsection{Mathematics}
\begin{frame}[fragile]
\frametitle{Mathematical Equations}
Mathematical equations can be written in LaTeX as well. Another useful tool of LaTeX is ability to create boxes
Source Code:
\linebreak
\lstset{language=[LaTeX]TeX}
\begin{lstlisting}[basicstyle=\scriptsize,]
$$\Pr\left[\sum_{i=1}^k X_i > c\right]\leq 2^{-\Omega(c^2k)}$$
\linebreak
\end{lstlisting}
Output:
\linebreak
\linebreak
\fbox{%
\parbox{\textwidth}{%
$$\Pr\left[\sum_{i=1}^k X_i > c \right]
\leq 2^{-\Omega(c^2 k)}$$
}%
}
\end{frame}
\subsection{Tables}
\frame{\frametitle{Tables}
You can also create tables in LaTeX
\linebreak \linebreak
\begin{tabular}{|c|c|c|}
\hline
\textbf{Name} & \textbf{Major} & \textbf{Year} \\
\hline
Denisolt Shakhbulatov & Computer Science & Sophomore \\
\hline
Arshit Arora & Computer Science & Sophomore \\
\hline
Mahmoud Saleh & Computer Science & Senior \\
\hline
Amar Waqas & Computer Science & Junior \\
\hline
\end{tabular}}
\section{Conclusion}
\subsection{Quotes from NYIT professors}
\frame{\frametitle{Quotes}
Dr. Anand Santhanakrishnan: \linebreak "The good thing about \LaTeX is that it is written in ASCII, the user gets a file and compiles it this way the user does not get a virus - REU Summer 2016"
\linebreak\linebreak
Dr. Cecilia Dong: \linebreak
"You should be writing your research paper in \LaTeX"
}
\subsection{Bibliography}
\frame{\frametitle{Bibliography}
\begin{itemize}
\item http://www.latex-project.org/about/
\item https://www.cs.princeton.edu/courses/archive/spr10/cos433/Latex/latex-guide.pdf
\end{itemize}
}
\subsection{Thank you}
\frame{
\begin{center}
\Huge Thank You
\end{center}
}
\end{document}