[READ-ONLY] Mirror of https://github.com/tynanpurdy/M3CTeX.
0

Configure Feed

Select the types of activity you want to include in your feed.

initial commit

+101
+3
.gitmodules
··· 1 + [submodule "M3Code"] 2 + path = M3Code 3 + url = https://github.com/SimonAbrelat/M3Code.git
+14
m3c.bib
··· 1 + 2 + @misc{stewart_report:_2019, 3 + title = {Report: {Americans} {Are} {Now} {More} {Likely} {To} {Die} {Of} {An} {Opioid} {Overdose} {Than} {On} {The} {Road}}, 4 + shorttitle = {Report}, 5 + url = {https://www.npr.org/2019/01/14/684695273/report-americans-are-now-more-likely-to-die-of-an-opioid-overdose-than-on-the-ro}, 6 + abstract = {Americans now have a 1 in 96 chance of dying from an opioid overdose, according to new analysis from the National Safety Council.}, 7 + language = {en}, 8 + urldate = {2019-03-03}, 9 + journal = {NPR.org}, 10 + author = {Stewart, Ian}, 11 + month = jan, 12 + year = {2019}, 13 + file = {Snapshot:C\:\\Users\\tynan\\Zotero\\storage\\XTD7E5SV\\report-americans-are-now-more-likely-to-die-of-an-opioid-overdose-than-on-the-ro.html:text/html} 14 + }
m3c.pdf

This is a binary file and will not be displayed.

+84
m3c.tex
··· 1 + \documentclass[12pt,letterpaper]{article} 2 + \usepackage{graphicx} 3 + \usepackage{geometry} 4 + \usepackage{setspace} 5 + \usepackage{anyfontsize} 6 + \usepackage{parskip} 7 + \usepackage{indentfirst} 8 + \usepackage{amsmath} 9 + \usepackage{cite} 10 + \usepackage{listings} 11 + \usepackage{color} 12 + \usepackage{textcomp} 13 + \usepackage{float} 14 + \usepackage[utf8]{inputenc} 15 + \usepackage{natbib} 16 + \usepackage{subcaption} 17 + 18 + \geometry{letterpaper, portrait, margin=1in} 19 + \doublespace 20 + \title{Dab} 21 + \author{Team \#11745} 22 + \graphicspath{{./imgs/}} 23 + 24 + \definecolor{codegreen}{rgb}{0,0.6,0} 25 + \definecolor{codegray}{rgb}{0.5,0.5,0.5} 26 + \definecolor{codepurple}{rgb}{0.58,0,0.82} 27 + \definecolor{backcolor}{rgb}{0.95,0.95,0.92} 28 + 29 + \lstdefinestyle{scheme}{ 30 + backgroundcolor=\color{backcolor}, 31 + commentstyle=\color{codegreen}, 32 + keywordstyle=\color{blue}, 33 + numberstyle=\tiny\color{codegray}, 34 + stringstyle=\color{codepurple}, 35 + basicstyle=\footnotesize\ttfamily, 36 + breakatwhitespace=false, 37 + breaklines=true, 38 + captionpos=t, 39 + keepspaces=true, 40 + numbers=left, 41 + numbersep=5pt, 42 + showspaces=false, 43 + showstringspaces=false, 44 + showtabs=false, 45 + tabsize=2 46 + } 47 + 48 + \lstset{style=scheme} 49 + 50 + \begin{document} 51 + 52 + \maketitle 53 + \newpage 54 + 55 + \section*{Executive Summary} 56 + 57 + \newpage 58 + \tableofcontents 59 + 60 + \newpage 61 + \section{Section} 62 + 63 + \subsection{Assumptions} 64 + 65 + \section{Section} 66 + 67 + \subsection{Assumptions} 68 + 69 + \section{Section} 70 + 71 + \subsection{Assumptions} 72 + 73 + 74 + \newpage 75 + \bibliography{m3c} 76 + \bibliographystyle{apa} 77 + \newpage 78 + 79 + \appendix 80 + \listoffigures 81 + \listoftables 82 + 83 + \section{Listings} 84 + \end{document}