[Tex/LaTex] How to type the symbol for usual topology $R_{(-)}$ in LaTex

codesymbols

How could I type the symbol as shown in the picture below?

I tried to use $\mathbb{R}_{(-)}$ instead, but the - inside can not touch the parenthesis on both sides.

I want to create a horizontal line that stops automatically when it touches the parenthesis.

Enter image description here

Best Answer

What about \leftfree \mkern -12mu \rightfree from MnSymbol package?

enter image description here

\documentclass{report}
\usepackage{amssymb}
\usepackage{MnSymbol}
\begin{document}
\[ \mathbb{R}_{\leftfree\mkern -12mu\rightfree} \]
\end{document}
Related Question