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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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.