Hello!
I would like to create a different looking braces (.,.) and [.,.], by making them blackboard, to denote intervals in the real number system, so that they look different from the usual ordered pair (.,.).
I have tried using \mathbb, but it doesn't work. Then I tried the option using the bbm package (suggested in http://www.latex-community.org/forum/vi ... f=5&t=1289), but I get only the normal braces. Same with using the bbold package, and I also get only the normal braces.
Any suggestions?
P.S. I know it can be done, because I have seen it here:
http://tug.ctan.org/pkg/blackboard (the file blackboard.ps)
It would be highly preferrable that the solution is in vector graphics.
Math & Science ⇒ blackboard braces (.,.) and [.,.] and letter i
- localghost
- Site Moderator
- Posts: 9201
- Joined: Fri Feb 02, 2007 12:06 pm
blackboard braces (.,.) and [.,.] and letter i
Take a look at the source (*.tex) file. You can find it under »Location on CTAN« on the page you linked.Turkurz wrote:[…] I know it can be done, because I have seen it here:
http://tug.ctan.org/pkg/blackboard (the file blackboard.ps)
It would be highly preferrable that the solution is in vector graphics.
Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Re: blackboard braces (.,.) and [.,.] and letter i
Hmm, I have loaded the .tex sourcefile and tried to compile it, but failed. It is a very strange document. It doesn't even have a preamble or \begin{document}...\end{document}. How is this supposed to be compiled?
- localghost
- Site Moderator
- Posts: 9201
- Joined: Fri Feb 02, 2007 12:06 pm
blackboard braces (.,.) and [.,.] and letter i
It's a plain TeX document. You could compile it on the command line.
But this will not be necessary. Take a look at the bbm or bbold package.
Code: Select all
pdftex blackboard.tex
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
Board Rules
Avoidable Mistakes[/size]
¹ System: openSUSE 42.2 (Linux 4.4.52), TeX Live 2016 (vanilla), TeXworks 0.6.1
blackboard braces (.,.) and [.,.] and letter i
I have searched the bbold documentation http://tug.ctan.org/tex-archive/fonts/bbold/bbold.pdf and tried this:
The first option doesn't seem to change the braces. The other two don't make vector graphics, but something ugly and fractured.
Any suggestions?
Code: Select all
\documentclass{book}
\usepackage[english]{babel}
\usepackage{bbold}
\begin{document}
$\mathbb{()}$, $\mathbb{[]}$\\
\textbb{()}, \textbb{[]}\\
\bbfamily () []
\end{document}
Any suggestions?