CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

CoCalc is a real-time collaborative commercial alternative to JupyterHub and Overleaf that provides Jupyter Notebooks, LaTeX documents, and SageMath.

| Download

Aaron Tresham Calculus Materials - Feb 2018 snapshot

Views: 8489
1
\documentclass[12pt]{article}
2
\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
3
\title{Writing in \LaTeX{} Assignment}
4
\author{Author's Name} %Put your name here
5
\date{\today}
6
7
\usepackage{parskip, amsmath, amssymb, latexsym, graphicx, enumerate, sagetex}
8
\usepackage[normalem]{ulem}
9
10
\begin{document}
11
\maketitle
12
\newcommand{\ds}{\displaystyle}
13
14
In this file, use \LaTeX{} to reproduce everything in the file ``GOAL.pdf" exactly as it is.
15
16
Use \verb|\section| for the three headings, \verb|itemize| for the bullet points, and \verb|enumerate| for the numbered list.
17
18
Use \verb|\displaystyle| (or the shortcut \verb|\ds|) to make the formulas look nicer.
19
20
For the graph, use \verb|\sageplot| to graph $x^3$ with a width of 2 inches.
21
22
\hrulefill
23
24
% Type your assignment here.
25
26
27
\end{document}
28
29