-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.tex
More file actions
76 lines (59 loc) · 1.33 KB
/
example.tex
File metadata and controls
76 lines (59 loc) · 1.33 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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% TEX example created by Mr. Harper. %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{jdf}
\begin{document}
% Set Title, Author, and email
\title{A Title}
\author{Student Name \\ email address}
\maketitle
\thispagestyle{fancy}
\begin{abstract}
\lipsum[2]
\end{abstract}
\section*{Heading 1}
\lipsum[1]
\subsection*{Heading 2}
\lipsum[2]
\subsubsection*{Heading 3}
\lipsum[3]
\paragraph*{Heading 4}
\lipsum[4]
\subparagraph*{Heading 5}
\lipsum[5]
\subsubparagraph*{Heading 6}
\lipsum[6]
\section*{Table Example}
\lipsum[1] See Table ~\ref{table:1}.
\begin{table}[H]
\begin{center}
\caption{Table Caption}
\label{table:1}
\begin{tabular}{l|c|r}
\textbf{Value 1} & \textbf{Value 2} & \textbf{Value 3}\\
$\alpha$ & $\beta$ & $\gamma$ \\
\hline
1 & 1110.1 & a\\
2 & 10.1 & b\\
3 & 23.113231 & c\\
\end{tabular}
\end{center}
\end{table}
\section*{Figure Example}
\lipsum[1] See Figure ~\ref{fig::1}.
\begin{figure}[H]
\centering
\includegraphics[width=5in, scale=.5]{example-image}
\caption{Figure Caption}
\label{fig::1}
\end{figure}
\section*{Lists}
\begin{itemize}[leftmargin=.5in]
\item Test
\end{itemize}
\begin{enumerate}[leftmargin=.5in]
\item test \cite{test}
\end{enumerate}
\bibliographystyle{apacite}
\bibliography{example.bib}
\end{document}