2

I am looking for some way of putting a tick and cross marks above a word or a letter. Something like thisenter image description here

Seeker
  • 161
  • 1
    Refer to https://tex.stackexchange.com/questions/6195/typeset-an-with-an-above and https://tex.stackexchange.com/questions/48036/how-to-represent-cross-and-tick-in-itemize-bullets – Harald Lichtenstein Oct 11 '17 at 07:21

3 Answers3

5

For math mode, I'd recommend using \overset and the symbols from the pifont package.

\documentclass{article}

\usepackage{amsmath}
\usepackage{pifont}

\begin{document}

$\overset{\text{\ding{51}}}{A}$
$\overset{\text{\ding{55}}}{B}$

\end{document}

enter image description here

Henri Menke
  • 109,596
1

Use stackengine (I've not searched for the symbols, you'll find them on your own):

stacked

\documentclass{article}
\usepackage{stackengine}

\begin{document}
\stackon{A}{cm}
\stackon{B}{x}
\end{document}
TeXnician
  • 33,589
1

By simple, can use \mathop and \limits commands, example shown below:

\documentclass{book}

\begin{document}

$\mathop{\mathrm{A}}\limits^\surd$\quad
$\mathop{\mathrm{B}}\limits^\times$
\end{document}
MadyYuvi
  • 13,693