I am looking for some way of putting a tick and cross marks above a word or a letter. Something like this
Asked
Active
Viewed 1,559 times
2
Seeker
- 161
-
1Refer 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 Answers
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}
Henri Menke
- 109,596
1
Use stackengine (I've not searched for the symbols, you'll find them on your own):
\documentclass{article}
\usepackage{stackengine}
\begin{document}
\stackon{A}{cm}
\stackon{B}{x}
\end{document}
TeXnician
- 33,589
-
-
@Seeker Which TeX distro are you using (TeX Live, MikTeX, ...)? Try using its package manager. – TeXnician Oct 11 '17 at 07:13
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

