A warning keeps popping up in my LaTeX editor, and it's really annoying. It says that the command \Bbb is obsolete and I should use \mathbb instead. I personally like the command \Bbb by the obvious reason that its shorter than the newer one. If the command \Bbb is obsolete then why they don't take it out? If I try to make a new command to redefine \Bbb as \mathbb, the compiler won't let me. Is there a way to get rid of this warning?
|
|
||||
|
Since some years the command The command Of course you're free to redefine it as you please:
In this way you'll not get any warning. Why hasn't it been removed? Because many legacy documents use it. |
|||||
|
|
I suspect you are using this command all over the place to typeset something like a matrix or perhaps a set of numbers. You should try to separate style from content, while at the same time save your fingers from excessive typing.
Both short and readable, and, if ever necessary, simple to change styling (e.g. you wish to use some other font for sets). |
|||
|
|
\let\Bbb\mathbbworks for me. – Werner Apr 11 '12 at 13:19\renewcommand{\Bbb}{\mathbb}should. :) – egreg Apr 11 '12 at 13:20\newcommand– Beni Bogosel Apr 11 '12 at 14:47