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
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
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…)