I've been recently criticized of not clearly separating TOC and Affiliation list when creating a PDF from a R Markdown file.
My YAML is this one
---
title: "title"
author:
- Name author 1:
email: paleomariomm@gmail.com
institute: [cenieh, ucl1, ppex]
correspondence: true
- Name author 2:
institute: [ubu]
institute:
- cenieh: Centro Nacional de Investigación sobre la Evolución Humana (CENIEH), Paseo Sierra de Atapuerca 3, 09002, Burgos, Spain
- ucl1: Department of Anthropology, University College London, London, WC1H 0BW, UK
- ppex: Equipo Primeros Pobladores de Extremadura, Casa de Cultura Rodríguez Moñino, Cáceres, Spain
- ubu: Laboratorio de Evolución Humana, Universidad de Burgos, Edificio I+D+i, Burgos, Spain
output:
pdf_document:
number_sections: yes
pandoc_args:
- '--lua-filter=lua/scholarly-metadata.lua'
- '--lua-filter=lua/author-info-blocks.lua'
toc: yes
toc_depth: 4
---
By converting this Rmd file to PDF, I see this:
As you can identify, some potential misundertanding might appear between the TOC and Affiliation list, as the affiliation list is just below the table of contents.
I would like to separate them clearly. I thought different possibilities:
- Introducing a line that separates both sections.
- Adding a small title at the top of the affiliation list saying Affiliation.
- Reversing the order and placing the affiliation list just below the authors.
I have been working around with these situations but unsuccessfully. Any idea on how to implement any of those?