如何以这种字体/样式/格式生成罗马数字符号?

如何以这种字体/样式/格式生成罗马数字符号?

代码

\documentclass{article}
\makeatletter
\newcommand*{\rom}[1]{\expandafter\@slowromancap\romannumeral #1@}
\makeatother
\begin{document}
Charles's sister Bona, married the eldest son of Philip \rom{6} of France,
the future John \rom{2} of France, in 1335.

Today is the year \rom{2011}.
\end{document}

生成这个罗马数字符号

在此处输入图片描述

如何在此字体/样式/格式中生成罗马数字符号?

在此处输入图片描述

答案1

它是\mathbb{I}随附的amsfonts

\documentclass{article}
\usepackage{amsfonts}
\begin{document}
\[ p(h|\mathcal{D})=
\frac{p(h|\mathcal{D})p(h)}{\sum_{h'\in\mathcal{H}} p(h'|\mathcal{D})}=
\frac{p(h)\mathbb{I}(\mathcal{D}\in h)/|h|^N}{%
\sum_{h'\in\mathcal{H}} p(h')\mathbb{I}(\mathcal{D}\in h')/|h'|^N}
\]
\end{document} 

在此处输入图片描述

可以也是一个\mathbbm{I}需要该bbm包的。

相关内容