6

I'm simply compiling this code

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

\begin{document}

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

\end{document} 

The output is really strange. What is going on with amssymb package?

enter image description here

Ehsan
  • 195
  • 1
  • 6

2 Answers2

6

You can declare both fonts, I called them \amsmathbb and \mathbb here:

enter image description here

\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} 
David Carlisle
  • 757,742
  • 2
    This is not working, I compiled your code exactly and the 1 and Ω came out as normal fonts. – Yan King Yin Apr 19 '19 at 06:13
  • @YanKingYin it should work or you get an error about fonts not being installed, if you can't get it working ask a new question and show your log file from the above test file. – David Carlisle Apr 19 '19 at 07:16
3

I recommend to use the following format.

\documentclass{article}
\usepackage{bbold}

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

\end{document}

Blackboard Characters

akr_
  • 159