我正在尝试从Rmarkdown生成包含外部图像的PDF(即,不是从R代码生成的图形,已在其他问题中解决,但来自其他来源的图像)。问题在于,当我生成PDF时,图像不会出现在我放置在源代码中的位置,而是会被移动,大概是为了不破坏文本。据我所知,使用R代码生成的数字不会发生这种情况 - 这些数据会立即放在生成它们的R代码之后。有没有办法解决这个问题,以便图像被强制显示在我放置它们的文本中,好像它们是从R代码生成的?
一些样本Rmd在下面。如果两个图像中的任何一个很大,则会移动一个或另一个图像直到文本之后。
---
title: "Untitled"
author: "Me"
date: "December 16, 2016"
output: pdf_document
---
## One image with text
If any of the images are too large, they will be moved elsewhere.
First image goes here:
![Image #1](pictures/image1.jpg)
First image should be before here.
## Another image
Second image goes here:
![Image #2](pictures/image2.jpg)
Second image should be before here.