Authors Exist

This check ensures that there is at least one author defined.
Ensure that the submission includes a complete list of authors with their names, affiliations, and contact information.

MyST Example

Add an email to the author that you wish to be corresponding. If there is more than one author with an email, you may mark that author specifically as corresponding.

1
2
3
4
5
6
7
---
authors:
  - name: Author Name
    email: author@ubc.ca
    affiliations:
      - University of British Columbia
---

See MyST documentation.

Quarto Example

Add an email to the author that you wish to be corresponding. If there is more than one author with an email, you may mark that author specifically as corresponding.

1
2
3
4
5
6
7
---
authors:
  - name: Author Name
    email: author@ubc.ca
    affiliation:
      - University of British Columbia
---

See Quarto documentation.