search for: pdf_document

Displaying 20 results from an estimated 21 matches for "pdf_document".

2023 Nov 17
1
Can someone please have a look at this query on stackoverflow?
...ly that the beamer (LaTeX) class is used but you're actually using the article (LaTeX) class. You may use specifications of the geometry package rather than specifying options to the class: e.g. replace your current header: --- title: "Testing landscape and aspect ratio" output: pdf_document: number_sections: true classoption: - landscape - "aspectratio=169" header-includes: - \usepackage{dcolumn} documentclass: article geometry: margin=1.5cm --- with this one: --- title: "Testing landscape and aspect ratio" output: pdf_document: number_sections...
2020 May 14
2
rmd y pdf
Estimados quisiera tener el script para al hacer un pdf desde rmarkdown poder modificarle el tamano y tipo de fuente saludos José -- Dr. Jose A. Betancourt Bethencourt Universidad de Ciencias Medicas Carlos j. Finlay
2023 Nov 14
2
Can someone please have a look at this query on stackoverflow?
Dear all, I have posted a query which has received a response but that is not working on my computer. Here is the query: https://stackoverflow.com/questions/77387434/pdf-from-rmarkdown-landscape-and-aspectratio-169 Can someone please help me ? Best Regards, Ashim
2023 Nov 18
1
Can someone please have a look at this query on stackoverflow?
...9;re actually > using the article (LaTeX) class. > > You may use specifications of the geometry package rather than > specifying options to the class: > > e.g. replace your current header: > > --- > title: "Testing landscape and aspect ratio" > output: > pdf_document: > number_sections: true > classoption: > - landscape > - "aspectratio=169" > header-includes: > - \usepackage{dcolumn} > documentclass: article > geometry: margin=1.5cm > --- > > with this one: > > --- > title: "Testing landscape...
2016 Sep 08
3
¿Cómo generar tabla apaisada salida PDF con RMarkdown?
...paisado, no tendría problema y es lo que querría hacer. Intenté conseguirlo usando 'xtable' con un código que encontré por ahí. Pongo seguido un ejemplo para poner en un documento Rmd --- title: "Tablas que no entran" author: "Sandia Urlia" date: "" output: pdf_document --- ```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE) ``` ```{r} la.tabla.ancha <- cars[c(1:10),rep(1,14)] knitr::kable(la.tabla.ancha, caption = "La tablaza") ``` ```{r results='asis'} options(xtable.comment = FALSE) print( xtable::xtable( la.ta...
2023 Nov 18
2
Can someone please have a look at this query on stackoverflow?
...ications of the geometry package rather than > > > specifying options to the class: > > > > > > e.g. replace your current header: > > > > > > --- > > > title: "Testing landscape and aspect ratio" > > > output: > > > pdf_document: > > > number_sections: true > > > classoption: > > > - landscape > > > - "aspectratio=169" > > > header-includes: > > > - \usepackage{dcolumn} > > > documentclass: article > > > geometry: margin=1.5cm >...
2023 Nov 18
1
Can someone please have a look at this query on stackoverflow?
.... > > > > You may use specifications of the geometry package rather than > > specifying options to the class: > > > > e.g. replace your current header: > > > > --- > > title: "Testing landscape and aspect ratio" > > output: > > pdf_document: > > number_sections: true > > classoption: > > - landscape > > - "aspectratio=169" > > header-includes: > > - \usepackage{dcolumn} > > documentclass: article > > geometry: margin=1.5cm > > --- > > > > with this...
2016 Sep 09
2
¿Cómo generar tabla apaisada salida PDF con RMarkdown?
...yo, se guarda los correos con respuestas a problemas posibles. No estaba usando|header.tex|, que es necesario para una como para otra solucin. El encabezado queda as: |---|| ||title: "Tablas que no entran"|| ||author: "Sandia Urlia"|| ||date: ""|| ||output: || || pdf_document:|| || includes:|| || in_header: header.tex || ||--- | La solucin que coment Carlos (la de: http://stackoverflow.com/questions/25849814/rstudio-rmarkdown-both-portrait-and-landscape-layout-in-a-single-pdf) tiene la ventaja de que permite girar tablas generadas con |kable()| sin...
2023 Nov 18
1
Can someone please have a look at this query on stackoverflow?
...than > > > > specifying options to the class: > > > > > > > > e.g. replace your current header: > > > > > > > > --- > > > > title: "Testing landscape and aspect ratio" > > > > output: > > > > pdf_document: > > > > number_sections: true > > > > classoption: > > > > - landscape > > > > - "aspectratio=169" > > > > header-includes: > > > > - \usepackage{dcolumn} > > > > documentclass: article > &g...
2017 Jun 07
1
rmarkdown and font size
...tmp.rmd") containing: --- title: Test --- ```{r example, echo=FALSE, results='asis'} tmp <- data.frame(a=1:5, b=letters[1:5]) print( knitr::kable(tmp, row.names=FALSE)) ``` And I render it with: rmarkdown::render('tmp.rmd', output_format=c('html_document','pdf_document')) I get two files: tmp.pdf tmp.html Is there a way to control (change or specify) the font size of the table in the pdf output? (or of the entire document, if it can't be changed for just the table) With my actual data, the table is too wide to fit on a page in the pdf output; perha...
2018 Jul 18
2
Compilar libro con paquete bookdown (PDF)
...;> The pdf_book() format is a general format like html_book(), and it >> also >> >>> has a base_format argument: >> >>> >> >>> pdf_book(toc = TRUE, number_sections = TRUE, fig_caption = TRUE, >> >>> ..., base_format = rmarkdown::pdf_document, toc_unnumbered = TRUE, >> >>> toc_appendix = FALSE, toc_bib = FALSE, quote_footer = NULL, >> >>> highlight_bw = FALSE) >> >>> >> >>> You can change the base_format function to other output format >> >>> functions, and *...
2018 Jul 09
2
Parametrized Vignettest in R packages
On 09/07/2018 3:24 PM, Witold E Wolski wrote: > Dear Yihui, > > Thank you for the valuable questions. > > sample_analysis is a "tibble" while > configuration is an "R6" class. > But I also have parametrized reports where I pass R reference classes > as arguments. > > This is the Rmd yaml params part corresponding to the error message. > >
2018 Jul 17
2
Compilar libro con paquete bookdown (PDF)
...puede ser útil. A eso me refería en el > correo anterior, no al yaml. > > The pdf_book() format is a general format like html_book(), and it also > has a base_format argument: > > pdf_book(toc = TRUE, number_sections = TRUE, fig_caption = TRUE, > ..., base_format = rmarkdown::pdf_document, toc_unnumbered = TRUE, > toc_appendix = FALSE, toc_bib = FALSE, quote_footer = NULL, > highlight_bw = FALSE) > > You can change the base_format function to other output format functions, > and *bookdown* has provided a simple wrapper function tufte_book2(), > which is basical...
2016 Feb 10
0
Utility to zero unused blocks on disk
...ept a new write, Secure erase of an SSD, or any solid state device, is problematic. See: http://www.techrepublic.com/article/erasing-ssds-security-is-an-issue/ The CSE requires physical destruction of these devices through pulverisation or incineration. See: https://cse-cst.gc.ca/en/system/files/pdf_documents/itsg06-eng.pdf The USDOD leaves disposal protocols to the individual commands. Essentially, due to the way data is stored on SSDs, it is impossible to access every memory cell during a software driven wipe; no matter how many passes are made. The possibility of significant fragments of residual...
2018 Jul 09
0
Parametrized Vignettest in R packages
...("vignettes/tr_srm_summary.Rmd", params=list(configuration=skylineconfig, data=sample_analysis )) THANK YOU. This is how my vignette header looks (see below) and it works. --- title: "Titel" author: "WEW at FGCZ.ETHZ.CH" date: "`r Sys.Date()`" output: pdf_document: default html_document: default params: configuration: !r quote(get(data(skylineconfig, package="myPackage"))) data: !r quote(get(data(sample_analysis, package="myPackage"))) vignette: > %\VignetteIndexEntry{Summarize Peptide Level Measurements} %\VignetteEngine{kn...
2018 Jul 17
2
Compilar libro con paquete bookdown (PDF)
Gracias por haberte tomado la molestia de indagar. Entiendo que es eso lo que hago en el encabezado YAML, basandome en la explicación del comienzo del punto 3 de acá: https://bookdown.org/yihui/bookdown/output-formats.html Eso mismo, con el documento que propone el propio Yihui (punto 1.2 del mismo libro) no lo consigo compilar a PDF. Y se me hace extrañísimo, porque tampoco me da error ni nada
2018 Jul 18
2
Compilar libro con paquete bookdown (PDF)
...eo anterior, no al yaml. >>> >>> The pdf_book() format is a general format like html_book(), and it also >>> has a base_format argument: >>> >>> pdf_book(toc = TRUE, number_sections = TRUE, fig_caption = TRUE, >>> ..., base_format = rmarkdown::pdf_document, toc_unnumbered = TRUE, >>> toc_appendix = FALSE, toc_bib = FALSE, quote_footer = NULL, >>> highlight_bw = FALSE) >>> >>> You can change the base_format function to other output format >>> functions, and *bookdown* has provided a simple wrapper funct...
2017 Jun 13
0
WG: Fw: Re: rmarkdown and font size
...> > tmp <- data.frame(a=1:5, b=letters[1:5]) > > print( knitr::kable(tmp, row.names=FALSE)) > > ``` > > > > > > > > And I render it with: > > > > rmarkdown::render('tmp.rmd', > > output_format=c('html_document','pdf_document')) > > > > I get two files: > > tmp.pdf > > tmp.html > > > > Is there a way to control (change or specify) the font size of the table in the > > pdf output? > > (or of the entire document, if it can't be changed for just the table) >...
2023 Dec 02
1
adding "Page X of XX" to PDFs
Sorry, jumped into the thread too late. (On the other hand, once the document gets complicated enough, it may be worth it in the long run to convert to something that actually has a document-generating back-end, rather than reinventing everything from scratch ...) On 2023-12-02 2:03 p.m., Jeff Newmiller via R-help wrote: > He clearly stated he was using the pdf() graphics device. > >
2023 Dec 02
1
adding "Page X of XX" to PDFs
You could easily omit the Page X of xX, but leave the timestamp Then add Page X of XX programmatically using pdftools or some similar pdf command line tools. On Sat, 2 Dec 2023, 22:35 , <avi.e.gross at gmail.com> wrote: > Having read all of the replies, it seems there are solutions for the > question and the OP points out that some solutions such as making the > document twice