Articles, Essays, and Journal Templates ⇒ How do I add multiple authors?
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
How do I add multiple authors?
Juan
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
How do I add multiple authors?
The simplest solution is to manually split the author line which is too long into two. For example:
\textsc{Name1}\\
\textsc{Name2}\thanks{A thank you or further information}\\[2mm]
Cheers,
Vel
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
Re: How do I add multiple authors?
I’m new to LaTeX but I’m getting the hang of it. I tried to copy/paste the “author” info section so that it included more than one author slot, but the program won’t recognize it and shows only one author. The copy/paste method has worked for me on my CV but, right now, I don’t know what to do with it. I’m writing an article jointly and wanted to see how it looked with both our names. I’d appreciate it if someone could help me out. I was using template number 2.
Thanks,
Chris
How do I add multiple authors?
This is an example of the author line from this template with two authors:
\textsc{John Smith}\thanks{A thank you or further information} ~and James Smith\\[2mm]
.Cheers,
Vel
Re: How do I add multiple authors?
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
How do I add multiple authors?
Code: Select all
\documentclass{article}
\title{Use two authors in a title}
\author{Walzing Wombat\\University of Duckburg \and Salsa
Snake\\Somewhere over the rainbow}
\begin{document}
\maketitle
\end{document}
\and
separates the two author blocks.