我正在创建一个R Markdown报告,但无法找到将我的标题移到页面上的方法。
这是一个最小的例子,我想将标题向下移动5cm:
---
title: "This is my title to display at 5cm below the top"
output:
pdf_document:
includes:
in_header: header.tex
---
\thispagestyle{titlepage}
header.tex
文件包含一些自定义样式:
\usepackage{fancyhdr}
\fancypagestyle{titlepage}{
\fancyfoot[LE,RO]{\thepage\ of \pageref{LastPage}}
\fancyfoot[LE,LO]{Project}
\fancyhead[L]{\includegraphics[width=4cm]{logo.png}}
}
请注意,我不是在谈论边距,只是想移动标题,使其不会始终位于页面顶部。
答案 0 :(得分:1)
这样可以解决问题:
\setlength{\headsep}{5cm}
\thispagestyle{title page}
答案 1 :(得分:1)
另一种选择是使用titling
LaTeX软件包,该软件包可以轻松更改标题的样式。我在YAML的header-includes
参数中加入了一些自定义内联:
---
title: "This is my title to display at 5cm below the top"
output: pdf_document
header-includes:
- \usepackage{titling}
- \setlength{\droptitle}{5em}
---
# Content
And then something here...
\newpage
# Next Page
Some more text
对于这样的小修改,通常可以在YAML中包括LaTeX命令,但是如果您要进行进一步的自定义,我建议将其保存在单独的
.tex
文件中,如{{3}中所述}