How do I typeset a large blackboard bold R (size of a \sum symbol) as an operator in an equation? See image.
I can get the text to display underneath with \mathop{}, but I can't make the R big. \displaystyle doesn't make the symbol any bigger.
I can get a solution of sorts in XeLaTeX, but I would prefer a LaTeX solution.
This is the XeLaTeX solution
\documentclass[a4paper]{article}
\usepackage{fontspec}
\setmainfont{Linux Libertine O}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\begin{bmatrix} x \\ y \\ z \end{bmatrix}_{\substack{\text{some text}\\\text{other text}}}
=
\sum_x\mathop{\text{\huge ℝ}}_{\text{sys1}\rightarrow\text{sys2}}
\begin{bmatrix} X \\ Y \\ Z \end{bmatrix}_{\substack{\text{more text}\\\text{also text}}}
\end{equation*}
\end{document}
As you can see, I've copy-pasted the unicode character and made it \huge, and used \mathop to put the text underneath. It's not an elegant solution, it's not very portable since it depends on the text font instead of a math font and it doesn't center the R on the '=' properly (compare the sum).
What is a better way to do this? Preferably in LaTeX.


\DeclareMathOperator{\bigR}{\text{\Large{$\mathbb{R}$}}}– yo' Jan 15 '15 at 09:14