Question: What's the difference between \left\lbrack1,2,3\right\rbrack and \left[1,2,3\right]? Why would I use one versus the other?
I recently started using mathlive, a WYSIWYG LaTeX editor, for a web project. I noticed that it uses \lbrack and \rbrack for square brackets. In years of using LaTeX, I've never encountered these commands before and so am curious
Example:
\documentclass{article}
\begin{document}
\begin{equation}
\left\lbrack1,2,3\right\rbrack
\end{equation}
% vs
\begin{equation}
\left[1,2,3\right]
\end{equation}
\end{document}
\show\lbrack. This way you will get as output"> \lbrack=macro:->[.No difference at all... It is possible programmatic the reason of this difference for debugging purposes of your WYSIWYG app.
– koleygr Sep 10 '22 at 16:46