How to Write Multiple Authors in Markdown (Pandoc)

5.7k Views Asked by At

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.

1

There are 1 best solutions below

0
On

You can supply pandoc with multiple author names using a YAML front matter section in your markdown.

For example:

---
author:
- "Alice Ceila"
- "Edy Jo" 
---