-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
79 lines (55 loc) · 1.83 KB
/
main.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
\documentclass{beamer}
\mode<presentation>
\usetheme{Frankfurt}
\setbeamertemplate{navigation symbols}{}
% \setbeamertemplate{frametitle continuation}[from second][(contd.)]
\setbeamertemplate{frametitle continuation}[from second][]
\title{Some Title}
\subtitle{And Maybe a Subtitle}
\author[Illig \and Orvis \and Segawa \and Spinale]{Peter Illig \and Eli Orvis \and Yukihiko Segawa \and Nick Spinale}
\institute[Carleton]{Carleton College}
\date{February 20\textsuperscript{th}, 2018}
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{amsthm,amssymb,amsmath}
\usepackage{graphicx}
\usepackage{tikz}
\usepackage[normalem]{ulem}
\newcommand{\hcancel}[1]{ % red strikethrough
\tikz[baseline=(tocancel.base)]{
\node[inner sep=0pt,outer sep=0pt] (tocancel) {#1};
\draw[red] (tocancel.south west) -- (tocancel.north east);}}
\newcommand{\hunder}[1]{ % red underline
\tikz[baseline=(tocancel.base)]{
\node[inner sep=0pt,outer sep=0pt] (tocancel) {#1};
\draw[red] (tocancel.south west) -- (tocancel.south east);}}
\newcommand{\N}{\mathbb{N}}
\newcommand{\Z}{\mathbb{Z}}
\newcommand{\Q}{\mathbb{Q}}
\newcommand{\CC}{\mathbb{C}}
\newcommand{\g}{\gamma}
\newcommand{\xg}{x-\gamma}
\newcommand{\pxg}{(x-\gamma)}
\begin{document}
\newtheorem{thm}{Theorem}[section]
\newtheorem{prop}[thm]{Proposition}
\newtheorem{cor}[thm]{Corollary}
\newtheorem{obs}[thm]{Observation}
\newtheorem{defn}[thm]{Definition}
\newtheorem{exmp}[thm]{Example}
\newtheorem{remk}[thm]{Remark}
\maketitle
\begin{frame}
\frametitle{Contents}
\tableofcontents
\end{frame}
\section{Introduction}
\input{intro}
\section{Simplifying the Problem}
\input{simpl}
\section{Newly Reducible Third Iterates, Part 1}
\input{nrtip1}
\section{Newly Reducible Third Iterates, Part 2}
\input{nrti2}
\end{document}