我怎样才能$\mathbb{R}$
倒着写字?而且,一般来说,\mathbb
字母...
答案1
\umathbb{R}
为了你倒置\rmathbb{R}
为了r受到影响\fmathbb{R}
为了F有嘴唇的
\documentclass{article}
\usepackage{amsfonts}
\usepackage{graphicx}
\makeatletter
\newcommand{\umathbb}[1]{{\mathpalette\dude@umathbb{#1}}}
\newcommand{\dude@umathbb}[2]{%
\raisebox{\depth}{\rotatebox{180}{$\m@th#1\mathbb{#2}$}}%
}
\newcommand{\rmathbb}[1]{{\mathpalette\dude@rmathbb{#1}}}
\newcommand{\dude@rmathbb}[2]{%
\scalebox{-1}[1]{$\m@th#1\mathbb{#2}$}%
}
\newcommand{\fmathbb}[1]{{\mathpalette\dude@fmathbb{#1}}}
\newcommand{\dude@fmathbb}[2]{%
\raisebox{\depth}{\scalebox{1}[-1]{$\m@th#1\mathbb{#2}$}}%
}
\makeatother
\begin{document}
$A\umathbb{R}B$ $A\rmathbb{R}B$ $A\fmathbb{R}B$
$X_{\umathbb{R}}$ $X_{\rmathbb{R}}$ $X_{\fmathbb{R}}$
\end{document}
答案2
答案3
支持较小的数学样式。
\documentclass{article}
\usepackage{amsfonts,scalerel,graphicx}
\newcommand\umathbb[1]{%
\ThisStyle{\rotatebox[origin=c]{180}{$\SavedStyle\mathbb{#1}$}}}
\newcommand\rmathbb[1]{%
\ThisStyle{\scalebox{-1}[1]{$\SavedStyle\mathbb{#1}$}}}
\newcommand\fmathbb[1]{%
\ThisStyle{\scalebox{-1}[1]{\rotatebox[origin=c]{180}{$\SavedStyle\mathbb{#1}$}}}}
\begin{document}
\[
A\mathbb{R}B\quad A\umathbb{R}B\quad A\rmathbb{R}B\quad A\fmathbb{R}B
\]
\[
X_{\mathbb{R}} X_{\umathbb{R}} X_{\rmathbb{R}} X_{\fmathbb{R}}
\]
\[
\mathbb{R}_{\mathbb{R}_{\mathbb{R}}}\quad
\umathbb{R}_{\umathbb{R}_{\umathbb{R}}}\quad
\rmathbb{R}_{\rmathbb{R}_{\rmathbb{R}}}\quad
\fmathbb{R}_{\fmathbb{R}_{\fmathbb{R}}}
\]
\end{document}