我正在使用来自R内部的Pandoc将降价文档转换为PDF文档。我正试图将标题居中。
到目前为止,我已经尝试过了:
<center># This is my title</center>
和
-># This is my title<-
但两项都没有奏效。有没有办法在使用Pandoc从markdown转换为PDF时将标题居中?
答案 0 :(得分:17)
pandoc
有its own extended version of markdown。这包括title block。
如果文件以标题栏开头
% my title
% Me; Someone else
% May 2013
这将被解析为LaTeX
,结果为pdf
\title{my title}
\author{Me \and Someone Else}
\date{May 2013}
然后是
\maketitle
在文件中调用。
这将创建标准的居中标题。
如果您想更改标题等格式的格式,可以使用titling package。
如果要更改节标题的格式,可以使用titlesec package。
要自动执行pandoc,您可以定义your own template。一个更简单的选项是将包含所需乳胶前导码的文件包含在标题中。然后在调用pandoc
时使用适当的参数(例如-H FILE
或--include-in-header=FILE
)