我正试图让我的情节立即出现在我的代码下面。我见过另外两个这样的问题。
Figure position in markdown when converting to PDF with knitr and pandoc
这些都有很多建议,其中一些很复杂,但都没有。 Yihui的建议答案:https://yihui.name/knitr/options/是
fig.show:('asis'; character)如何展示/安排情节;四 可能的值是asis:在他们的位置准确显示图 生成(好像代码是在R终端中运行);
但这也行不通。这是我目前的尝试。如果你把它编成html,那么这些数字会显示在正确的位置,但会丢失字幕。我需要安装一些额外的东西吗?还是附加代码?
---
title: "Plotting Plots Under Code"
author: "Ilana"
date: "February 1, 2017"
output: pdf_document
fig.show: "asis"
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(ggplot2)
```
## Title
```{r fig.cap="Sample Plots"}
plot(iris$Sepal.Length,iris$Petal.Length,main="First One")
plot(iris$Sepal.Length,iris$Petal.Length,main="Second One")
#Where I want figure two
plot(iris$Sepal.Length,iris$Petal.Length,main="Third One")
```
More Text, Which should be on the bottom of the document
谢谢