评论

评论

输入公式

C.I._{95%}

文档中不显示%符号。看起来就像

CI_95

将会显示。

背景:创建 OpenOffice 公式时,数学对象%通常用于特殊符号,例如%alpha显示正确的希腊符号。也许它假设我想将其改为其他符号?

研究:

C.I._{95%perthousand}

显示正确(看起来像0/oo)。

我怎样才能让%符号显示出来?

答案1

评论

默认情况下,%-symbol 是用于注释的符号。要显示符号,您必须通过在其前面加上 来“转义” \,即\%。其他符号也是如此,例如\$\{\}

获取千分符号的实现取自@egreg 的回答经典论文风格的千分比符号

执行

\documentclass{article}
\pagestyle{empty}
\usepackage{textcomp}
\usepackage{amsmath}
\DeclareRobustCommand{\perthousand}{%
    \ifmmode
        \text{\textperthousand}%
    \else
        \textperthousand
    \fi}
\begin{document}
$C.I._{95\%}$
$C.I._{95\perthousand}$
\end{document}

输出

在此处输入图片描述

相关内容