General ⇒ R with a circle
R with a circle
how can I write the symbol that should look like \mathbb{R} with a circle above it? I don't want \mathbb{R}^\circ, it should be more like \AA.
Thanks a lot...
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: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
R with a circle
welcome to the board!
You could try
Code: Select all
\mathop{\mathbb{R}}\limits^\circ
Code: Select all
\overset{\circ}{\mathbb{R}}
Re: R with a circle
it works, but it doesn't look good. When you use it in the text, the lines with this symbol are larger...
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
R with a circle
try this macro, I've just made some adjustments as you can see:
Code: Select all
\newcommand*\Rcirc{\ensuremath{\smash{\overset{\circ}
{\smash{\mathbb{R}}\rule{0pt}{1.2ex}}\vphantom{\mathbb{R}}}}}
Re: R with a circle
Thank you very much...