Text Formatting ⇒ How add symbol "*" under char?
How add symbol "*" under char?
How add symbol of star: "*" under char?
NEW: TikZ book now 40% off at Amazon.com for a short time.
How add symbol "*" under char?
In math mode with the AMS-Math package(s), you can use the \underset command:
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$\underset{*}{A}$
\end{document}
Re: How add symbol "*" under char?
frabjous, big thanks. Sorry i want symbol above char, but this information also need for me.
Re: How add symbol "*" under char?
Just change \underset to \overset.
Re: How add symbol "*" under char?
frabjous, thanks