GeneralCredits to collaborating Author in Document Title

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
drewfstr314
Posts: 1
Joined: Sun Dec 09, 2012 6:14 am

Credits to collaborating Author in Document Title

Post by drewfstr314 »

I'm new to LaTeX and want to give credit to a collaborator. Something like

TITLE

AUTHOR
IN COLLABORATION WITH (NAME)

DATE

Is there any way to do this? Thanks.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX books
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Credits to collaborating Author in Document Title

Post by localghost »

You can simply add this collaboration note to the argument of the \author command and even give it a certain formatting.

Code: Select all

\documentclass[11pt]{article}
\usepackage[T1]{fontenc}

\title{Credit to a collaborating Author}
\author{Main Author\\\small in collaboration with Collaborating Author}

\begin{document}
  \maketitle
\end{document}
The double backslash (\\) forces a line break in the author line.


Other packages for title formatting:

Best regards and welcome to the board
Thorsten
Attachments
Sample document title.
Sample document title.
tmp.png (5.34 KiB) Viewed 3712 times
Post Reply