我正在 Rmarkdown 中创建一份报告,该报告将合并为 PDF。我想在第一页包含两张图片:标题上方的徽标,然后是日期下方的漂亮图片。问题是使用 \postdate 添加第二张图片似乎会让程序感到困惑。当我仅包含 \posttitle 代码时,它与顶部徽标完美结合,但当我添加 \postdate 代码时,它无法结合,并显示以下错误代码:
“我无法从错误日志 EOS_report_2324.log 中找到任何缺失的 LaTeX 包。!LaTeX 错误:缺少 \begin{document}。”
我使用了这个帖子尝试让第二张图像显示出来,但没有成功。
---
title: "Report 2324"
subtitle: |
| Placeholder
| Placeholder
author:
- Person 1, Person 2, Person 3, Person 4, Person 5,
- Person 6, & Person 7
date: "`r format(Sys.time(),'%d %B %Y')`"
header-includes:
- \usepackage{titling}
- \pretitle{\begin{center}
- \posttitle{\end{center}}
\includegraphics[width=2in, height=2in]{`r paste("Z:/logo.png",sep="")`}\LARGE\\}
- \postdate{\end{center}}
\includegraphics[width=2in,height=4in]{`r paste("Z:/image2.png",sep="")`}}
output:
pdf_document:
fig_caption: true
toc: true
extra_dependencies: ["float"]
include-before:
- '`\newpage{}`{=latex}'
editor_options:
markdown:
wrap: 72
---
有什么想法吗?我有 tinytex 并且正在使用 pdfTeX,版本 3.141592653-2.6-1.40.26 (TeX Live 2024) (预加载格式=pdflatex)。