3

How to type the double bracket '{{b, a}}' in tex just as the picture below?

enter image description here

W. mu
  • 133

2 Answers2

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}

enter image description here

User23456234
  • 1,808
3

enter image description here

\documentclass{article}

\newcommand\doubleBrackets[1]{${!{ #1 }!}$}

\begin{document}

These are double { } brackets \doubleBrackets{b, a}.

\end{document}

JamesT
  • 3,169