-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_doc.tex
52 lines (35 loc) · 958 Bytes
/
create_doc.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
%------------------------------------------------------------------------------
% document class article
\documentclass[12pt]{article}
%------------------------------------------------------------------------------
% Packages
\usepackage{booktabs}
\usepackage{graphicx}
%------------------------------------------------------------------------------
% Title
\title{Title}
\author{Author}
\date{\today}
%------------------------------------------------------------------------------
% Begin document
\begin{document}
\maketitle
\begin{abstract}
This is a test latex document for creating a pdf.
\end{abstract}
\section{Introduction}
Cars scatter plot.
%insert image cars.png
\begin{figure}[h]
\centering
\includegraphics[width=0.5\textwidth]{cars.png}
\caption{Cars}
\end{figure}
\section{Data}
Cars regression table.
%insert table tab.tex
\input{reg.tex}
\section{Conclusion}
End of Document.
\tiny{This is a test document.}
\end{document}