Reputation: 161
I want to write a markdown file containing multiple authors, then convert it into a LaTeX and Doc file using Pandoc.
Based on the answers to these questions, I tried to write:
% Author <br/> Another Author
Pandoc can convert that into two lines in HTML files, but only one line (one author) in LaTeX and Doc files.
Upvotes: 6
Views: 6245
Reputation: 795
You can supply pandoc with multiple author names using a YAML front matter section in your markdown.
For example:
---
author:
- "Alice Ceila"
- "Edy Jo"
---
Upvotes: 9