Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Carson Witt

2061 views
1
\documentclass[landscape]{article}
2
\title{Test Document}
3
\author{Carson Witt}
4
5
\usepackage{graphicx}
6
7
8
%% ADDED PREAMBLE
9
\usepackage{todonotes}
10
\usepackage[displaymath, mathlines]{lineno}
11
\usepackage{hyperref}
12
\usepackage{pagecolor}
13
\usepackage{tabularx}
14
15
\newcommand{\sg}[1]{\todo[color=red!40,fancyline]{#1}}
16
\newcommand{\good}[1]{\todo[color=blue!40,fancyline]{#1}}
17
\newcommand{\comm}[1]{\todo[color=orange!40,fancyline]{#1}}
18
%%
19
20
21
\begin{document}
22
23
%% ADDED FEEDBACK
24
\pagecolor{yellow!30!white}
25
\mbox{\LARGE Projectile Motion }\hfill NAME
26
27
\vspace{1cm}
28
29
\hrule
30
31
\vspace{1cm}
32
33
Grade:
34
35
\vspace{1cm}
36
37
\begin{tabularx}{15cm}{ |p{6cm} | p{8cm}|}
38
\hline
39
Part 1 Explanation &
40
41
\\
42
\hline
43
Graph pt. 1 in figure env, caption, label, ref &
44
45
\\
46
\hline
47
Part 2 Explanation &
48
49
\\
50
\hline
51
Graph pt. 2 in figure env, caption, label, ref &
52
53
\\
54
\hline
55
$t$-values for both parametric equations before and after collision &
56
57
\\
58
\hline
59
Extension &
60
61
\\
62
\hline
63
Proper formatting &
64
65
\\
66
\hline
67
Spacing mistakes &
68
69
\\
70
\hline
71
\end{tabularx}
72
73
\newpage
74
75
\listoftodos[List of Comments]
76
77
\newpage
78
79
\maketitle
80
81
\linenumbers
82
\pagecolor{white}
83
%%
84
85
86
87
\begin{figure}
88
\caption{This is my best graph}
89
\label{graph1}
90
\includegraphics[scale=0.5]{parametric_plot.pdf}
91
\end{figure}
92
93
I can now reference Figure \ref{graph1}
94
95
\end{document}
96
97