Generalsuperscripts

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
omkardpd
Posts: 86
Joined: Sun Feb 24, 2008 7:23 am

superscripts

Post by omkardpd »

Hi,

In a document I am using \maketitle command. I have two different author-names in the title. I want to use superscripts 1 and 2 for each of the authors, and give their affiliation right below their names.

eg.

Title of the paper
ABC^{1}, XYZ^{2}
1. affiliated with institute PQR
2. affiliated with institute SPT.
Abstract
blah blah blah...................................
................................................
.........................................

I guess superscripts are not allowed in title. Is there any way I can do this?

Thank you,

Omkar

Recommended reading 2024:

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

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

meho_r
Posts: 823
Joined: Tue Aug 07, 2007 5:28 pm

superscripts

Post by meho_r »

Hi, Omkar,

You can't use "^" for superscript in textual environments (only in math mode). Try this:

Code: Select all

ABC\textsuperscript{1}, XYZ\textsuperscript{2}
Post Reply