Text FormattingHow add symbol "*" under char?

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
artemff
Posts: 113
Joined: Sat Oct 17, 2009 11:15 pm

How add symbol "*" under char?

Post by artemff »

How add symbol of star: "*" under char?

Recommended reading 2024:

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

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

User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

How add symbol "*" under char?

Post by frabjous »

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}
artemff
Posts: 113
Joined: Sat Oct 17, 2009 11:15 pm

Re: How add symbol "*" under char?

Post by artemff »

frabjous, big thanks. Sorry i want symbol above char, but this information also need for me.
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: How add symbol "*" under char?

Post by frabjous »

Just change \underset to \overset.
artemff
Posts: 113
Joined: Sat Oct 17, 2009 11:15 pm

Re: How add symbol "*" under char?

Post by artemff »

frabjous, thanks
Post Reply