-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathreport.Rnw
More file actions
32 lines (20 loc) · 879 Bytes
/
report.Rnw
File metadata and controls
32 lines (20 loc) · 879 Bytes
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
\documentclass[10pt,a4paper]{report}
\setlength\parindent{0pt}
%\UseRawInputEncoding
\usepackage[margin=0.8in]{geometry}
\begin{document}
% ###################################################### PAGE 1: SUMMARY #######################################################
% ======================================================== SPLASH TEXT =======================================================
\begin{center}
\Huge\noindent\textbf{A Dynamic PDF Report}
\vspace{0.5em}
\LARGE{EPI-interactive}
\end{center}
\vspace{0.5em}
\large{\today}\
\vspace{1em}
\noindent This is a sample PDF generator. The following chart is generated directly from Shiny reactive outputs.\\
<<plot_example_1_chart, fig = TRUE , echo = FALSE, warning=FALSE, out.width="100%">>=
plot_function(input$plot_example_1_n, input$plot_example_1_mean)
@
\end{document}