R大师,
我想知道是否有可能在RIMdown文档中将YAML中的PDF输出标题保持对齐。
还可以在标题上方(标题中)添加徽标吗?
---
output:
pdf_document:
fig_caption: false
#title: "Multi pricing report"
latex_engine: xelatex
fontfamily: mathpazo
fontsize: 11pt
# spacing: double
endnote: no
---
非常感谢你花时间和精力回答。
答案 0 :(得分:5)
您可以使用titling
包并在标题前添加\begin{flushleft}
,之后添加\end{flushleft}
:
---
output:
pdf_document:
fig_caption: false
keep_tex: yes
title: "Multi pricing report"
fontfamily: mathpazo
fontsize: 11pt
header-includes:
- \usepackage{titling}
- \pretitle{\begin{flushleft}}
- \posttitle{\end{flushleft}}
---