mathbb 為數字和希臘字母產生奇怪的字符

mathbb 為數字和希臘字母產生奇怪的字符

我只是編譯這段程式碼

\documentclass{article}
\usepackage{amssymb}             % AMS Math

\begin{document}

\begin{equation}\label{eee}
\mathbb{R} \mathbb{A}  \mathbb{1}  \mathbb{\Omega} 
\end{equation}

\end{document} 

輸出確實很奇怪。 amssymb 包發生了什麼事?

在此輸入影像描述

答案1

您可以聲明這兩種字體,我在這裡調用\amsmathbb它們\mathbb

在此輸入影像描述

\documentclass{article}

\usepackage{mathbbol}
\usepackage{amssymb}             % AMS Math

\DeclareSymbolFontAlphabet{\amsmathbb}{AMSb}%

\begin{document}

\begin{equation}\label{eee}
\amsmathbb{R} \amsmathbb{A}  \mathbb{1}  \mathbb{\Omega} 
\end{equation}

\end{document} 

答案2

我建議使用以下格式。

\documentclass{article}
\usepackage{bbold}

\begin{document}
 \begin{itemize}
    \item $\mathbb{1}_X$
    \item $\mathbb{\Omega}$
    \item $\mathbb{\Delta}$
\end{itemize}

\end{document}

黑板字符

相關內容