UPDATESSSSSSSSSSSSSSS
diff --git a/.Rproj.user/441ADA46/sources/per/t/90EA5F68 b/.Rproj.user/441ADA46/sources/per/t/90EA5F68
new file mode 100644
index 0000000..4a9f647
--- /dev/null
+++ b/.Rproj.user/441ADA46/sources/per/t/90EA5F68
@@ -0,0 +1,22 @@
+{
+    "collab_server" : "",
+    "contents" : "",
+    "created" : 1543870199613.000,
+    "dirty" : false,
+    "encoding" : "UTF-8",
+    "folds" : "",
+    "hash" : "3268981996",
+    "id" : "90EA5F68",
+    "lastKnownWriteTime" : 1543898987,
+    "last_content_update" : 1543898987400,
+    "path" : "~/Documents/GitHub/posterdown/inst/rmarkdown/templates/posterdown_memoir/resources/template.tex",
+    "project_path" : "inst/rmarkdown/templates/posterdown_memoir/resources/template.tex",
+    "properties" : {
+        "cursorPosition" : "34,23",
+        "scrollLine" : "21"
+    },
+    "relative_order" : 1,
+    "source_on_save" : false,
+    "source_window" : "",
+    "type" : "tex"
+}
\ No newline at end of file
diff --git a/.Rproj.user/441ADA46/sources/per/t/90EA5F68-contents b/.Rproj.user/441ADA46/sources/per/t/90EA5F68-contents
new file mode 100644
index 0000000..098650b
--- /dev/null
+++ b/.Rproj.user/441ADA46/sources/per/t/90EA5F68-contents
@@ -0,0 +1,84 @@
+%brent's poster layout :)
+
+\documentclass[60pt,extrafontsizes]{memoir}
+
+%utf-8 seems to be important
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+\usepackage{palatino}
+\usepackage{multicol}
+\usepackage{graphicx}
+\usepackage{blindtext,xcolor}
+
+%define column options
+\setlength{\columnseprule}{1pt}
+\def\columnseprulecolor{\color{red}}
+\setsubsubsecheadstyle{\small\color{red}\textbf}% Set \section style
+\setsecheadstyle{\small\bfseries\color{red}}
+\setsecnumformat{}
+\def\sectionmark#1{\markboth{#1}{#1}}
+
+%-----------------------------------------------------
+
+%define poster size
+\usepackage[paperwidth=45in,paperheight=38in, text={7in,10in},centering, margin=1in]{geometry}
+
+\usepackage[style=authoryear-comp,backend=biber]{biblatex}
+
+\bibliography{\jobname}
+
+\counterwithout{section}{chapter}
+\makechapterstyle{mydefault}{
+\addtocounter{secnumdepth}{2}
+\setsecheadstyle{\small\color{red}\textbf}
+\setsubsecheadstyle{\itshape}
+\setsubsubsecheadstyle{\itshape}
+}
+
+\chapterstyle{mydefault}
+
+
+\defbibheading{bibliography}[\bibname]{%
+\section*{#1}%
+\markboth{#1}{#1}}
+
+
+\AtBeginDocument{%
+  \renewcommand{\bibname}{References}
+}
+
+
+
+%define column spacing
+\setlength\columnsep{1.2in}
+
+%spacing after section head title
+\setaftersecskip{1sp}
+\setbeforesecskip{0.5in}
+
+\setlength{\parskip}{0pt}
+
+%begin the document
+\begin{document}
+
+
+% group which adds title author and other infor
+% Used instead of \maketitle for better spacing options
+\begingroup
+  \centering
+  \textbf{$title$}\\[0.3in]
+  \footnotesize $author$\par
+\endgroup
+\vspace{1.2in}
+% end title section -------------------
+
+% Brgin body of poster
+\begin{multicols*}{3}
+\scriptsize{\noindent
+$body$
+\printbibliography
+}
+\end{multicols*}
+
+%end the poster
+\end{document}
diff --git a/.Rproj.user/441ADA46/sources/per/t/D009EC1E b/.Rproj.user/441ADA46/sources/per/t/D009EC1E
new file mode 100644
index 0000000..d30f143
--- /dev/null
+++ b/.Rproj.user/441ADA46/sources/per/t/D009EC1E
@@ -0,0 +1,22 @@
+{
+    "collab_server" : "",
+    "contents" : "",
+    "created" : 1543898253797.000,
+    "dirty" : false,
+    "encoding" : "UTF-8",
+    "folds" : "",
+    "hash" : "449153678",
+    "id" : "D009EC1E",
+    "lastKnownWriteTime" : 1543898331,
+    "last_content_update" : 1543898331251,
+    "path" : "~/Documents/GitHub/posterdown/R/posterdown_memoir.R",
+    "project_path" : "R/posterdown_memoir.R",
+    "properties" : {
+        "cursorPosition" : "20,51",
+        "scrollLine" : "10"
+    },
+    "relative_order" : 2,
+    "source_on_save" : false,
+    "source_window" : "",
+    "type" : "r_source"
+}
\ No newline at end of file
diff --git a/.Rproj.user/441ADA46/sources/per/t/D009EC1E-contents b/.Rproj.user/441ADA46/sources/per/t/D009EC1E-contents
new file mode 100644
index 0000000..6b3d781
--- /dev/null
+++ b/.Rproj.user/441ADA46/sources/per/t/D009EC1E-contents
@@ -0,0 +1,22 @@
+#' Posterdown PDF format (using 'memoir' document class)
+#'
+#' @inheritParams rmarkdown::pdf_document
+#' @param ... Additional arguments to \code{rmarkdown::pdf_document}
+#'
+#' @return R Markdown output format to pass to
+#'   \code{\link[rmarkdown:render]{render}}
+#'
+#' @examples
+#'
+#' \dontrun{
+#' library(rmarkdown)
+#' draft("MyArticle.Rmd", template = "posterdown_generic", package = "posterdown")
+#' }
+#'
+#' @export
+posterdown_memoir <- function(..., keep_tex = TRUE) {
+  inherit_pdf_document(...,
+                       keep_tex = keep_tex,
+                       template = find_resource("posterdown_memoir", "template.tex"),
+                       citation_package = "biblatex")
+}