[Tex/LaTex] How to make a command for a composed symbol to work with all font sizes

font-metricsfontssymbols

In my paper I need a letter $\mathbb{R}$ with a small circle above it.
Currently I'm using the following command:
\newcommand{\obbR}{{\mbox{\kern1.4pt \raisebox{7pt} {\scriptsize$\circ$} \kern-9.1pt}\mathbb{R}}}
But unfortunately it works only with standard font size. The question is how to make a command for this "composed letter", which works with all font sizes.

Actually, I have two problems with writing of this "universal" command.
1. I don't know, how can one make values font-dependent.
2. I don't know, how can one make the small circle, I should put above R, smaller, than \scriptsize\circ.

Best Answer

I think you are looking for the \mathring accent. $\mathring{\mathbb{R}}$ should do what you want.

Related Question