-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.Rnw
More file actions
57 lines (50 loc) · 2.19 KB
/
main.Rnw
File metadata and controls
57 lines (50 loc) · 2.19 KB
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
\documentclass[9pt, final]{beamer}
\mode<presentation>{\usetheme{rml}}
% \usepackage[english]{babel}
\usepackage[latin1]{inputenc}
% \usepackage{grffile}
\usepackage{graphics}
\usepackage{amsmath, amsthm, amssymb, latexsym, xcolor}
\usepackage{pgf, tikz}
\usetikzlibrary{arrows, matrix, positioning}
%\usepackage{times}\usefonttheme{professionalfonts}
\usepackage{mathpazo} % Palatino
% \usepackage{avant} % Avant Garde
% \renewcommand{\familydefault}{\rmdefault}
\usefonttheme[]{serif}
% \boldmath
\usepackage[orientation=portrait, size=a0, scale=1.3, grid, debug]{beamerposter}
\usepackage{array, booktabs, tabularx}
\newcolumntype{Z}{>{\centering\arraybackslash}X} % centered tabularx columns
\newcommand{\pphantom}{\textcolor{ta3aluminium}} % phantom introduces a vertical space in p formatted table columns??!!
\title{Multimatrix Extension of Partial Least Square}
\author{\small Raju Rimal (Supervisor: Solve S{\ae}bo, Trygve Alm{\o}y)}
\institute[Norwegian University of Life Sciences (NMBU)]{\footnotesize Norwegian University of Life Sciences (NMBU), {\AA}s, Norway}
\date[15 August, 2015]{15 August, 2015}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newlength{\topcolumn}
\setlength{\topcolumn}{0.49\textheight}
\newlength{\bottomcolumn}
\setlength{\bottomcolumn}{0.51\textheight}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage[backend=bibtex, natbib=true]{biblatex}
\addbibresource{references.bib}
\renewcommand\bibfont{\small}
\setbeamercolor*{bibliography entry title}{fg=black}
\setbeamercolor*{bibliography entry author}{fg=black}
\setbeamercolor*{bibliography entry location}{fg=black}
\setbeamercolor*{bibliography entry note}{fg=black}
\setbeamertemplate{bibliography item}[text]
\begin{document}
\begin{frame}[fragile]
<<loadPkgs, echo=FALSE, include=FALSE, eval=TRUE>>=
req.pkgs <- c('ggplot2', 'reshape2', 'pls', 'grid')
invisible(lapply(req.pkgs, require, quietly = TRUE, warn.conflicts = FALSE, character.only = TRUE))
@
<<loadData, echo=FALSE>>=
load('Personalitydata.rdata')
@
<<block1, child='frame1.Rnw'>>=
@
\end{frame}
\end{document}