GeneralText after author list

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
evovch
Posts: 1
Joined: Tue Feb 16, 2016 4:36 pm

Text after author list

Post by evovch »

Dear forumers.
What is the correct way to put some text after the list of the authors? I use authblk as it is the first thing I've found online; I am not sure this is the best way to go.

I would like to have the following (1 and 2 are superscripts):
Could you imagine?
H. Potter1 and W. Smith2 for the Siemens collaboration
1Rowling, England
2Actor, USA

So in the "code" I write

Code: Select all

\documentclass[a4paper,twocolumn]{article}
\usepackage{authblk}
\title{Could you imagine?}
\author[1]{H. Potter}
\author[2]{W. Smith}
\affil[1]{Rowling, England}
\affil[2]{Actor, USA}
\begin{document}
\maketitle
\end{document}
Where should I put "for the Siemens collaboration".

Thanks.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Text after author list

Post by Johannes_B »

Welcome, this is a dirty solution. Doing it by hand, without using a package that you have to whack a bit, you would have been faster and gotten a cleaner solution.

Code: Select all

\documentclass[a4paper,twocolumn]{article}
\usepackage{authblk}
\renewcommand\Authands{\space}
\title{Could you imagine?}
\author[1]{H. Potter}
\author[2]{W. Smith}
\author[\space]{for Siemens}
\affil[1]{Rowling, England}
\affil[2]{Actor, USA}
\begin{document}
\maketitle
\end{document}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply