I'm trying to get the identity symbol for matrices (number 1 with double
vertical stroke). It's everywhere, and I probably have done it before
myself... but I just can't find it! Any help would be greatly appreciated.
Thanks,
Michael
Like so?
\documentclass[10pt]{minimal}
\usepackage{dsfont}
\begin{document}
The identity map $\mathds{1}_{V}\colon V\to V$.
\end{document}
--
Maarten Bergvelt
Thanks a lot, though.
Michael
The problem is, I think, that the usual way to get blackboard bold
($\mathbb R$ for the real numbers,etc) only works for capitals, not
for numbers etc. That is why dsfont package was written, I guess.
You can look in the source of most article on the arXive. In this case
the author uses a home grown version of the double stroked identity:
\newcommand{\eins}{\mbox{$1 \hspace{-1.0mm} {\bf l}$}}
--
Maarten Bergvelt
\documentclass{report}
\usepackage{bbm}
\begin{document}
$\mathbbm{1}$
\end{document}
is maybe what you're looking for?
See the Math Alphabets table in the Comprehensive LaTeX Symbol List
(http://www.ctan.org/tex-archive/info/symbols/comprehensive/) for various
ways of producing an identity symbol in LaTeX.
-- Scott
> In this case
> the author uses a home grown version of the double stroked identity:
>
> \newcommand{\eins}{\mbox{$1 \hspace{-1.0mm} {\bf l}$}}
Ok, that should work in any case.
Thanks!
Thanks.
magnify that, and it seems to be a superposition of bold "1" and "l"
(not sure whether they're entangled...). the paper certainly doesn't
use any sort of blackboard bold font.
what system are you using? is installation a big deal? (if so, i'll
make a .tds.zip file and put it on ctan, on request.)
--
Robin Fairbairns, Cambridge
that's good, in that the font claims to match computer modern.
however, it's only available as metafont source. hence the
recommendation for doublestroke which is provided as type 1 fonts.
--
Robin Fairbairns, Cambridge
Michael