
When I use subscript in the text it always looks like italic...
example: T$_{m}$
is that normal?
Thanks
a.k.
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
Code: Select all
T\textsubscript{m}
Code: Select all
T$_\text{m}$
Code: Select all
\newcommand*{\superscript}[1]{\ensuremath{^\textrm{{\scriptsize #1}}}}
\newcommand*{\subscript}[1]{\ensuremath{_\textrm{{\scriptsize #1}}}}
\newcommand*{\tinysuperscript}[1]{\ensuremath{^\textrm{{\tiny #1}}}}
\newcommand*{\tinysubscript}[1]{\ensuremath{_\textrm{{\tiny #1}}}}
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