\documentclass[titlepage]{article} \usepackage{listings} \usepackage{xcolor,colortbl} \usepackage{multirow} \usepackage{courier} \usepackage[colorlinks,linkcolor=blue,citecolor=blue,urlcolor=blue,breaklinks=true]{hyperref} \lstset{basicstyle=\ttfamily\small , breaklines} \usepackage[left=3cm,top=3cm,bottom=3cm, right=3cm,includehead,includefoot]{geometry} \usepackage{fancyhdr,lastpage} %\pagestyle{fancy} \cfoot{Page \thepage\ of \pageref{LastPage}} \fancyhfoffset{.25in} \renewcommand{\headrulewidth}{0.25pt} \renewcommand{\footrulewidth}{0pt} \setlength{\headheight}{23pt} \renewcommand{\labelitemiii}{$\circ$} \usepackage{longtable} \usepackage{amsmath} \usepackage[T1]{fontenc} \usepackage[scaled]{helvet} \renewcommand*\familydefault{\sfdefault} \usepackage{courier} \usepackage{graphicx} \usepackage{tocbibind} \usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent % tinytex::parse_packages(files = 'upgreek.sty') % tinytex::tlmgr_install('was') \usepackage{upgreek} \usepackage{textpos} \usepackage{relsize} \usepackage{upquote} % Use \begin{landscape} and end{landscape} to rotate text %%% \usepackage{pdflscape} \usepackage{textcomp} \usepackage{float} \floatplacement{figure}{H} \floatplacement{table}{H} \usepackage[printonlyused,nohyperlinks]{acronym} \def\bflabel#1{{\large#1\ \ \ \ }\hfill} \usepackage{fixltx2e} \setlength{\belowcaptionskip}{10pt} \usepackage{Sweave} \SweaveOpts{keep.source=true} \SweaveOpts{eps=false} %\VignetteIndexEntry{Formatting Tables with latexpdf} \begin{document} \SweaveOpts{concordance=TRUE} \vspace*{2cm} \begin{center} \vspace{1.5cm} {\Large Formatting Tables with latexpdf}\\ ~\\ \today\\ ~\\ Tim Bergsma\\ \end{center} \newpage \section*{Introduction} The R package 'latexpdf' supports rich aesthetics for embedding tables in PDF documents, illustrated below. Be sure to set chunk option 'results' to 'tex'. Although illustrations us as.ltable(), many arguments are passed through to as.tabular(). See also as.pdf() for creating stand-alone table images. \section*{Examples} We make a sample data frame. <>= x <- data.frame( study=c(rep('PROT01',5),NA), subject=rep(c(1001,1002),each=3), time=c(0,1,2,0,1,2), conc=c(0.12,34,5.6,.5,200,NA) ) x @ Now we try various invocations. <>= library(latexpdf) writeLines(as.ltable(x)) @ <>= writeLines(as.ltable(x,environments=NULL)) @ <>= writeLines(as.ltable(x,caption='Plasma Concentrations',label='pctab')) @ <>= writeLines(as.ltable(x,caption='Plasma Concentrations',cap.top=FALSE)) @ <>= writeLines(as.ltable(x,grid=TRUE,caption='grid is TRUE')) @ <>= writeLines(as.ltable(x,grid=TRUE,caption='Includes Walls',walls=1,rules=c(1,2,1))) @ <>= writeLines(as.ltable(x,grid=TRUE,caption='Custom Breaks', colbreaks=c(0,2,0),rowgroups=x$subject )) @ <>= writeLines(as.ltable(x,grid=TRUE,caption='Custom Justify', numjust='left',charjust='right' )) <>= writeLines(as.ltable(x,grid=TRUE,caption='Decimal Align', justify=c('center','left','right','decimal') )) <>= writeLines(as.ltable(x,grid=TRUE,caption='Not Verbatim', justify=c('center','left','right','decimal'), verbatim=FALSE )) <>= writeLines(as.ltable(x,grid=TRUE,caption='Custom Column Width', justify=c('center','left','right','decimal'), colwidth=c(NA,NA,NA,'2cm') )) <>= writeLines(as.ltable(x,caption='Row Colors',rowcolors=c('white','lightgray'))) @ <>= writeLines( as.ltable( x, caption='Row Groups', rowgroups=as.character(x$subject), rowgrouplabel='groups', rowgrouprule = 2 ) ) @ <>= writeLines( as.ltable( x, caption='Column Groups', colgroups=c('demographic','demographic','clinical','clinical') ) ) @ <>= writeLines( as.ltable( x, caption='Row and Column Groups', rowgroups=as.character(x$subject), colgroups=c('demographic','demographic','clinical','clinical'), rowgrouprule = 1, grid=TRUE ) ) @ \end{document}