Math & Science ⇒ Symbol strictly upon another one in Math Formula
Symbol strictly upon another one in Math Formula
How can i place in a formula one symbol strictly upon another with shortening upper one?
Lower symbol must not to crawl anywhere (i.e. for example solution with array is not valid).
It's better to have generalized solution, but urgently i need to place a small circle upon a symbol. Help me please.
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
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Symbol strictly upon another one in Math Formula
welcome to the board!
You could use a ring accent, i.e.
\r{x}
in text mode or \mathring{x}
in math mode.Stefdn
Re: Symbol strictly upon another one in Math Formula
But there is a way to make "o" smaller?
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
Symbol strictly upon another one in Math Formula

Code: Select all
\documentclass{article}
\usepackage{accents}
\newcommand*{\overcirc}[1]{%
\accentset{\circ}{#1}}
\begin{document}
$\overcirc{x}$
\end{document}
\circ
, you could use any other symbol, perhaps you would find a smaller circle in the 
Stefan
Symbol strictly upon another one in Math Formula
In addition, i found an alternative way to do that. It might be useful for someone.

Code: Select all
\usepackage{amsmath}
\usepackage{graphicx}
$\overset{\text{\scalebox{0.25}{$\circ$}}}{x}$
Code: Select all
\usepackage{graphicx}
\usepackage{accents}
\newcommand*{\overcirc}[1]{%
\accentset{\text{\scalebox{0.5}{$\circ$}}}{#1}}