如何在 Markdown 的每个页面上包含一些文本行和图像?

How to include some lines of text and an image on every page in Markdown?

所以我必须准备一个降价文档,其中我必须在pdf输出的每一页上签名(我的签名图片+一些文本)。我正在使用 RStudio 从降价生成 pdf,大概 pandoc 是底层转换器。

有办法吗?这尤其困难,因为每次添加新内容时页面的位置都会发生变化,而 markdown 与 Latex 不同,它似乎不是基于页面的格式。

Pandoc 依赖乳胶。你可以在 yaml front matter 中使用 header-includes 来向 latex header 添加内容。在这里,您可以使用 fancyhdr:

定义 header
---
title: "Untitled"
header-includes:
    - \usepackage{fancyhdr}
    - \pagestyle{fancy}
    - \rhead{right header text}
    - \lhead{left header text}
    - \cfoot{center footer text}
output: pdf_document
---

您可以在任何 Latex 手册中找到有关自定义 Latex header 的更多信息,例如 wikibook