我是pandoc
和 latex
的新手。我不能让作者从属关系成为我使用文档类paper
生成的最终pdf的一部分。
假设我有以下source.md
文件:
---
title: my super document
subtitle: blablabla
author:
- me
- my friend
- my other friend
institute: alien space agency
date: <#today>
header-includes:
- \\usepackage{endnotes}
abstract: |
This document describes a super research project.
---
start of the writing blablabla...
<#today>
是一个gpp
宏,可转换为tex源中的\today
。
我像这样使用pandoc
:
cat source.md | gpp -H --include macros.gpp | pandoc -f markdown --variable documentclass=paper --standalone --smart --atx-headers --from=markdown+yaml_metadata_block -o document.pdf
在制作的document.pdf
中,作者没有日期也没有隶属关系。
但是,如果我使用文档类article
,我的日期正确。但仍然
没有作者研究所。
我怎样才能让日期和作者同时拥有paper
文档类?
修改:更多信息...
如果我在这里制作一份tex文件就是我得到的:
\title{my super document}
\providecommand{\subtitle}[1]{}
\subtitle{blablabla}
\author{me \and my friend \and my other friend}
\providecommand{\institute}[1]{}
\institute{alien space agency}
\date{\today}
这对我来说没问题。但是最终文件中只有作者(没有研究所)和日期。我认为这是因为paper
文档类,更改为article
显示日期但没有显示任何机构......
我的pandoc版本是 1.19.2.1