Theses, Books, Title pages ⇒ subscript in latex
-
- Posts: 679
- Joined: Tue Mar 03, 2015 4:01 pm
subscript in latex
First let me say great template and thanks a lot for making it so user friendly. I just have a quick question regarding subscripts in the text and headings. I have no problem with \textsuperscript outside math mode but I can't seem to be able to use \textsubscript. Do I have to use a different package for this? When I check online it says both should be included in the same/ default latex package. Any help would be greatly appreciated.
PS - I'm a newbie to latex, so please bear with me.
teresh
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
subscript in latex
Include the fixltx2e package in your preamble using:
\usepackage{fixltx2e}
. After this, you can use \textsuperscript{text}
and \textsubscript{text}
in the text and headings.Cheers,
Vel
subscript in latex
- KOMA-Script classes define
\textsubscript
on their own if it isn't defined, yet. The packagescrextend
makes it available for other classes, too, along with a number of others of KOMA-Script's goodies. - the memoir class also provides
\textsubscript
(but changing the class would have a lot of other impact so probably not a choice here…)