Lots of updates
hyperref support as well as footnoes for authors.
diff --git a/.Rproj.user/5271889B/sources/per/t/90E44B40 b/.Rproj.user/5271889B/sources/per/t/90E44B40
new file mode 100644
index 0000000..edef751
--- /dev/null
+++ b/.Rproj.user/5271889B/sources/per/t/90E44B40
@@ -0,0 +1,22 @@
+{
+ "collab_server" : "",
+ "contents" : "",
+ "created" : 1544112566543.000,
+ "dirty" : false,
+ "encoding" : "UTF-8",
+ "folds" : "",
+ "hash" : "1850734637",
+ "id" : "90E44B40",
+ "lastKnownWriteTime" : 1544106697,
+ "last_content_update" : 1544106697,
+ "path" : "~/GitHub/posterdown/inst/rmarkdown/templates/posterdown_memoir/template.yaml",
+ "project_path" : "inst/rmarkdown/templates/posterdown_memoir/template.yaml",
+ "properties" : {
+ "cursorPosition" : "4,0",
+ "scrollLine" : "0"
+ },
+ "relative_order" : 2,
+ "source_on_save" : false,
+ "source_window" : "",
+ "type" : "yaml"
+}
\ No newline at end of file
diff --git a/.Rproj.user/5271889B/sources/per/t/90E44B40-contents b/.Rproj.user/5271889B/sources/per/t/90E44B40-contents
new file mode 100644
index 0000000..c2ebc68
--- /dev/null
+++ b/.Rproj.user/5271889B/sources/per/t/90E44B40-contents
@@ -0,0 +1,4 @@
+name: Posterdown Memoir L38 X W45 PDF
+description: >
+ Template for creating R Markdown based PDF via Latex and Memoir
+create_dir: true
diff --git a/.Rproj.user/5271889B/sources/per/t/950DD430 b/.Rproj.user/5271889B/sources/per/t/950DD430
new file mode 100644
index 0000000..92809c1
--- /dev/null
+++ b/.Rproj.user/5271889B/sources/per/t/950DD430
@@ -0,0 +1,22 @@
+{
+ "collab_server" : "",
+ "contents" : "",
+ "created" : 1544112118287.000,
+ "dirty" : false,
+ "encoding" : "UTF-8",
+ "folds" : "",
+ "hash" : "3352023408",
+ "id" : "950DD430",
+ "lastKnownWriteTime" : 1544118983,
+ "last_content_update" : 1544118983851,
+ "path" : "~/GitHub/posterdown/inst/rmarkdown/templates/posterdown_memoir/resources/template.tex",
+ "project_path" : "inst/rmarkdown/templates/posterdown_memoir/resources/template.tex",
+ "properties" : {
+ "cursorPosition" : "145,39",
+ "scrollLine" : "140"
+ },
+ "relative_order" : 1,
+ "source_on_save" : false,
+ "source_window" : "",
+ "type" : "tex"
+}
\ No newline at end of file
diff --git a/.Rproj.user/5271889B/sources/per/t/950DD430-contents b/.Rproj.user/5271889B/sources/per/t/950DD430-contents
new file mode 100644
index 0000000..d0387be
--- /dev/null
+++ b/.Rproj.user/5271889B/sources/per/t/950DD430-contents
@@ -0,0 +1,171 @@
+%brent's poster layout :)
+
+\documentclass[article,30pt,extrafontsizes]{memoir}
+
+%utf-8 seems to be important
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+\usepackage{palatino}
+\usepackage{multicol}
+\usepackage{graphicx}
+\usepackage{blindtext}
+\usepackage[svgnames,table]{xcolor}
+\usepackage[framemethod=tikz]{mdframed}
+\usepackage{color}
+\usepackage{geometry}
+\usepackage{adjmulticol}
+
+%For kable extra package :)
+\usepackage{booktabs}
+\usepackage{longtable}
+\usepackage{array}
+\usepackage{multirow}
+\usepackage{wrapfig}
+\usepackage{float}
+\usepackage{colortbl}
+\usepackage{pdflscape}
+\usepackage{tabu}
+\usepackage{threeparttable}
+\usepackage{threeparttablex}
+\usepackage[normalem]{ulem}
+\usepackage{makecell}
+
+\usepackage{hyperref}
+\hypersetup{
+ colorlinks=true,
+ linkcolor=blue,
+ citecolor=red,
+ filecolor=magenta,
+ urlcolor=cyan,
+}
+
+
+%For figure and table placement
+\usepackage{float}
+\floatplacement{figure}{H}
+\floatplacement{table}{H}
+
+%spacing between figure/ table and caption
+\setlength{\abovecaptionskip}{0.4in}
+\setlength{\belowcaptionskip}{0.2in}
+\captionnamefont{\footnotesize\sffamily\bfseries}
+\captiontitlefont{\footnotesize\sffamily}
+
+%define column options
+\setlength{\columnseprule}{1pt}
+\def\columnseprulecolor{\color{red}}
+\setsubsubsecheadstyle{\small\color{red}\textbf}% Set \section style
+\setsecheadstyle{\small\color{red}}
+\setsecnumformat{}
+\def\sectionmark#1{\markboth{#1}{#1}}
+
+%-----------------------------------------------------
+
+\thispagestyle{empty}
+\definecolor{light-gray}{gray}{0.9}
+
+%biblatex options
+\usepackage[sorting=none,backend=biber]{biblatex}
+\renewcommand*{\bibfont}{\tiny}
+\bibliography{$bibliography$}
+\defbibheading{bibliography}[\bibname]{%
+\section*{#1}%
+\markboth{#1}{#1}}
+\AtBeginDocument{%
+ \renewcommand{\bibname}{References}
+}
+
+%bring in the users information
+\author{$author$}
+\title{$title$}
+\counterwithout{section}{chapter}
+\makechapterstyle{mydefault}{
+\addtocounter{secnumdepth}{2}
+\setsecheadstyle{\Large\color{red}\textbf}
+\setsubsecheadstyle{\itshape}
+\setsubsubsecheadstyle{\itshape}
+}
+
+\chapterstyle{mydefault}
+
+%define column spacing
+\setlength\columnsep{1in}
+
+\setlength\parindent{1em}
+\setlength\parskip{1em}
+\setlength\hangparas{0}
+
+%spacing after section head title
+\setaftersecskip{0.3in}
+\setbeforesecskip{1in}
+\setlength\textfloatsep{0.3in}
+\setlength\floatsep{0.3in}
+\setlength\intextsep{0.3in}
+
+\setstocksize{38in}{45in}
+\settrimmedsize{\stockheight}{\stockwidth}{*}
+\settypeblocksize{38in}{45in}{*}
+\setlrmargins{*}{*}{1}
+\setulmarginsandblock{2.5cm}{*}{*}
+\setmarginnotes{0em}{0cm}{0cm}
+\setlength{\footskip}{0cm}
+\setlength{\footnotesep}{0cm}
+\setlength{\headheight}{0pt}
+\setlength{\headsep}{0pt}
+\setlength{\trimtop}{0pt}
+\setlength{\trimedge}{0pt}
+\setlength{\uppermargin}{0pt}
+\checkandfixthelayout
+
+\definecolor{myframecolour}{HTML}{00004d}
+
+\mdfdefinestyle{brentsmdfstyle}{%
+ backgroundcolor=myframecolour,
+ linecolor=Red,
+ topline=false,
+ leftline=false,
+ rightline=false,
+ linewidth=2mm,
+ settings={\definecolor{linkcolor}{RGB}{255,255,255}}}
+
+%Footnote to white
+\usepackage{footmisc}
+\def\footnotelayout{\centering\color{white}}
+
+% see https://stackoverflow.com/a/47122900
+$if(highlighting-macros)$
+$highlighting-macros$
+$endif$
+
+%begin the document
+\begin{document}
+
+\begin{mdframed}[style=brentsmdfstyle]
+%sets footnote to be white hoprefully
+\renewcommand\footnoterule{}
+\renewcommand{\thempfootnote}{\footnotesize\color{red}{\arabic{mpfootnote}}}
+
+% group which adds title author and other infor
+% Used instead of \maketitle for better spacing options
+\begingroup
+ \centering
+ \color{White}
+\vspace{0.5in}
+ \Huge\textbf{$title$}\\[0.3in]
+ \color{cyan} \Large{\textbf{$author$}} \par
+ \vspace{0.2in}
+
+% end title section -------------------
+ \endgroup
+\end{mdframed}
+
+% Brgin body of poster
+\begin{adjmulticols*}{3}{10mm}{10mm}
+\normalsize{
+\color{black}
+$body$
+\printbibliography
+}
+\end{adjmulticols*}
+%end the poster
+\end{document}
diff --git a/.Rproj.user/5271889B/sources/prop/5781AC46 b/.Rproj.user/5271889B/sources/prop/5781AC46
index ce7ff1a..8054aa9 100644
--- a/.Rproj.user/5271889B/sources/prop/5781AC46
+++ b/.Rproj.user/5271889B/sources/prop/5781AC46
@@ -1,4 +1,4 @@
{
- "cursorPosition" : "103,57",
- "scrollLine" : "86"
+ "cursorPosition" : "193,0",
+ "scrollLine" : "180"
}
\ No newline at end of file
diff --git a/.Rproj.user/5271889B/sources/prop/7A49AA51 b/.Rproj.user/5271889B/sources/prop/7A49AA51
index 9013709..c3507bb 100644
--- a/.Rproj.user/5271889B/sources/prop/7A49AA51
+++ b/.Rproj.user/5271889B/sources/prop/7A49AA51
@@ -1,4 +1,4 @@
{
- "cursorPosition" : "2,64",
+ "cursorPosition" : "4,0",
"scrollLine" : "0"
}
\ No newline at end of file
diff --git a/.Rproj.user/5271889B/sources/prop/D0048985 b/.Rproj.user/5271889B/sources/prop/D0048985
index ee949e1..3c1ccb8 100644
--- a/.Rproj.user/5271889B/sources/prop/D0048985
+++ b/.Rproj.user/5271889B/sources/prop/D0048985
@@ -1,4 +1,4 @@
{
- "cursorPosition" : "297,26",
- "scrollLine" : "298"
+ "cursorPosition" : "189,116",
+ "scrollLine" : "182"
}
\ No newline at end of file
diff --git a/.Rproj.user/5271889B/sources/prop/FA5E3F8 b/.Rproj.user/5271889B/sources/prop/FA5E3F8
index 3c4eb07..a662063 100644
--- a/.Rproj.user/5271889B/sources/prop/FA5E3F8
+++ b/.Rproj.user/5271889B/sources/prop/FA5E3F8
@@ -1,4 +1,4 @@
{
- "cursorPosition" : "4,37",
- "scrollLine" : "0"
+ "cursorPosition" : "17,427",
+ "scrollLine" : "14"
}
\ No newline at end of file
diff --git a/.Rproj.user/5271889B/sources/prop/FDA71E49 b/.Rproj.user/5271889B/sources/prop/FDA71E49
index 106fdb4..8a53f53 100644
--- a/.Rproj.user/5271889B/sources/prop/FDA71E49
+++ b/.Rproj.user/5271889B/sources/prop/FDA71E49
@@ -1,4 +1,4 @@
{
- "cursorPosition" : "109,29",
- "scrollLine" : "0"
+ "cursorPosition" : "145,39",
+ "scrollLine" : "140"
}
\ No newline at end of file