How to type the double bracket '{{b, a}}' in tex just as the picture below?
Asked
Active
Viewed 245 times
2 Answers
5
You need negative spaces \! to get the braces close to each other. There may be a better way.
\documentclass{article}
\begin{document}
( {!!{a,b}!!} )
\end{document}
User23456234
- 1,808
LaTeXereXeTaL
- 3,594
3
\documentclass{article}
\newcommand\doubleBrackets[1]{${!{ #1 }!}$}
\begin{document}
These are double { } brackets \doubleBrackets{b, a}.
\end{document}
JamesT
- 3,169


