Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Project: Peter's Files
Views: 146
Visibility: Unlisted (only visible to those who know the link)
1
%% LaTeX Template by Peter Francis
2
%% Contact: [email protected]
3
%% Updated 9/17/18
4
5
\documentclass[12PT]{article}
6
7
%% Font and Language
8
\usepackage[T1]{fontenc}
9
\usepackage[utf8]{inputenc}
10
\usepackage{lmodern}
11
\usepackage[english]{babel}
12
13
%% Formating the Page
14
\usepackage[letter,top=1in,bottom=1in,left=1in,right=1in, marginparwidth=.5 in]{geometry}
15
%\pagenumbering{gobble} %%% UNCOMMENT THIS LINE TO TURN OF PAGE NUMBERS
16
%\usepackage[parfill]{parskip} %%% Activate to begin paragraphs with an empty line rather than an indent
17
18
%% Line spacing -- change to 2 for double space, etc.
19
\linespread{1.3}
20
21
%% Some Useful Packages
22
\usepackage{hyperref, amsmath, amsthm, pgf, latexsym, amsfonts, graphicx, enumerate, float, MnSymbol}
23
24
%% Useful commands-- use the syntax \newcommand{\what you want to type}{real command}
25
\newcommand{\N}{\mathbb{N}}
26
\newcommand{\Z}{\mathbb{Z}}
27
\newcommand{\R}{\mathbb{R}}
28
\newcommand{\Q}{\mathbb{Q}}
29
\newcommand{\dabba}{\partial}
30
\newcommand{\e}{\epsilon}
31
\newcommand{\bs}{\blacksquare}
32
\newcommand{\lb}{\left\lbrace}
33
\newcommand{\rb}{\right\rbrace}
34
35
36
%% Title
37
\title{Title}
38
\author{Author}
39
40
\begin{document}
41
\maketitle
42
%%%%%%%%%%%%%%%%%%%% TYPE BELOW %%%%%%%%%%%%%%%%%%%%%%
43
44
45
46
47
\section*{'Problem Number (and name)'}
48
Collaborators: Name, Name, Name\\
49
\\
50
Any introductory text goes here. If there is none, delete this line and the line below it.\\
51
\\
52
\textbf{Claim:} Your claim goes here.\\
53
\textbf{Proof:} Your proof goes here. Math stuff that you want in the line of text goes in between single dollar signs. LOOK: $S=\{x\in\R:\forall a\in \N, \exists b\in \Z, \frac{x}{a-b}\in\Q\}$. Math stuff you want to put centered on its own line goes in between double dollar signs. Clearly,
54
$$A\subseteq B\cap(C\cup D)\iff (A\subseteq B)\land ((A\subseteq C)\lor (A\subseteq D)).$$
55
This is how you cite something \cite{ReferenceLabel1}.
56
When you are done with your proof you get to make a solid or open square. $\bs$ $\square$
57
58
59
60
61
\newpage
62
63
\begin{thebibliography}{10} % THIS IS YOUR REFERENCES. LIST REFERENCES BELOW.
64
65
66
67
68
69
70
71
%\bibitem{bela}B\'ela Bajnok, An Introduction to Abstract Mathmematics. Chapter 10, Mathematical Structures, Edition 1. (New York, Springer, 2013), pp. 112'
72
73
%\bibitem{kennedy}Benjamin B Kennedy, Introduction to Real Analysis, Gettysburg College Course Text (Unpublished).
74
75
%\bibitem{Lay}David C. Lay, Steven R. Lay, Judi J. McDonald, Linear Algebra and its application. Chapter 1, Linear Equations in Linear Algebra, Edition 5. (Pearson, 2016)
76
77
78
%%% COMMENT THIS
79
\bibitem{ReferenceLabel1}First MI Last, Title. Chapter A, Chapter name, Edition 'number'. (City, State, Publishing company, year Published), pp. 'number'-'number'
80
81
%\bibitem{ReferenceLabel2}First MI Last, Title, WWW Document, URL
82
83
%\bibitem{ReferenceLabel3}First MI Last, Title, 'Distributing College' Lab Handout (Unpublished).
84
85
\end{thebibliography}
86
87
\vfill
88
I have upheld the highest principles of honesty and integrity in all of my academic work and have not witnessed a violation of the Honor Code.
89
% \includegraphics[width=3cm]{signature} %%% UNCOMMENT IF YOU HAVE A signature.jpg IMAGE IN YOUR DIRECTORY
90
91
%%%%%%%%%%%%%%%%%%%% TYPE ABOVE %%%%%%%%%%%%%%%%%%%%%%
92
\end{document}
93