General ⇒ \mathbb{1} not working
\mathbb{1} not working
I figured that unfortunately \mathbb{} is not working with numbers as input. Does anyone know how to produce a comparable result? I already did some inquiery on this subject, but to no avail...
I would be glad if someone could help me!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
\mathbb{1} not working
you can try loading the bbm package. A little example:
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\usepackage{bbm}
\begin{document}
$\mathbbm{1}$
\end{document}
Re: \mathbb{1} not working
Meanwhile a friend could help me as well and he suggested to use \mathds{}. Now I must decide which one i like better xD.
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
\mathbb{1} not working
usually I prefer the doublestroke package with
Code: Select all
\usepackage{dsfont}
...
$\mathds{R}, \mathds{1}$
Stefan