我有一个非常大的系统发育树,我很想把它插入到我正在使用Rmarkdown和knitr编写的补充材料中。我不喜欢把树拆分到不同的页面上,我怀疑有没有人会把它打印出来,所以我想我应该在我生成的pdf文件中间放一个大页面。
问题是如何更改A4文档中某一页面的页面大小?我是一个新手,我已经找到了全局纸张大小选项,但我正在努力寻找在Word中设置等同于部分的方法。
(更新)嗨,还有没有人有建议?我尝试了pdfpages包,但这似乎在粘贴的pdf大小的页面上产生了一个同样小的图形,即如果我创建一个20in x 20in的pdf图形,然后使用\includepdf粘贴页面,那么我得到一个20in x 20i
如何将我的Rmarkdown beamer演示文稿的标题页靠左对齐,而不是默认的居中?
例如,默认值为center:
---
title: "Untitled"
author: "S SS"
date: "2/4/2018"
output: beamer_presentation
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo =假)
## R Markdown
This is an R Markdown presentation. Markdown is a simple
我正在编织到pdf,但当它输出我的图形时,它也输出下面的内容。我如何阻止R输出这个?
##
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
## Registering fonts with
我想使我的R标记文档中所有标题(数字和表格)的字体大小更小。我用的是预订。最后的输出是pdf,我在R Studio工作。为了加载图片,我使用了来自knitr的knitr函数,因为有人告诉我这是最好的方法(参见)。
我只找到了完全相同的问题,但是对于html输出。
一个例子.rmd
---
output: pdf_document
---
Normal text has the same size as the captions.
```{r, echo = FALSE, out.width = '50%', fig.cap = "The caption has th
当试图将我的Rmarkdown文件编织成PDF格式时,knitr似乎没有包装评论,文本只是超出了pdf的页边距。
我尝试指定了几个参数,但似乎没有任何效果。
---
title: "Demo margin"
output: pdf_document
---
```{r setup, include=FALSE}
选项(width=80)
knitr::opts_chunk$set(echo = TRUE,out.width = 40,tidy=T,tidy.opts=list(width.cutoff=60))
## R Markdown
This is an R Mark
所以我希望有一个简单的HTML、Word和PDF输出到一个静态的R标记文档。它在下面。
这个脚本与Word和HTML很好地结合在一起。但是针织到pdf会给出以下错误。
! Package amsmath Error: \begin{align} allowed only in paragraph mode.
Error: LaTeX failed to compile pdfissuesdoubeldollar.tex. See
https://yihui.org/tinytex/r/#debugging for debugging tips. See
pdfissuesdoubeldol
我正在用r markdown写一个文档。当我将它编织成pdf时,而不是作者的名字,pdf只显示"true“。
在html输出中,针织效果非常好,而且在我看来,它应该可以工作。
---
title: "knitr will you work please?"
author:
name: John Smith
output: pdf_document
---
将显示输出
knitr will you work please?
true
而不是
knitr will you work please?
John Smith
是否可以注释掉包含多个块的Rmd文件的一部分(例如: 4-5)?常规不起作用。
---
title: "Untitled"
author: "author"
date: "5 August 2017"
output: pdf_document
---
```{r}
打印(123)
```{r}
2**2
<!--
# Comment section starts
This text is not visible in the output.
```{r}
A <- 3*4
一个
This text not be visible