Wondering about how LaTeX implements the vertical and horizontal brackets [{(⟨.
I saw these unicode characters which could potentially be used for vertical brackets:
⎡
⎢
⎣
⎤
⎥
⎦
⎧
⎨
⎩
⎪
⎫
⎬
⎭
But they would have to manually fine-tune the position of them because they don't line up:
⎧
⎪
⎨
⎪
⎩
In addition, unicode only has this partial support for vertical brackets only, it doesn't have it for horizontal brackets. Maybe you could rotate them though...
Wondering if they are instead drawing them by hand somehow, or where the implementation is so I can look further how it is done.
To clarify, I am using unicode examples here. I only did that to demonstrate that there are unicode characters to handle this. At least, there are the vertical versions. So maybe LaTeX uses those. What I am really interested in though is, using a modern font in LaTeX (maybe a modern math font, though I don't know what the difference is), such as an OpenType font, how the brackets (horizontal and vertical) are constructed, and how they are mapped into the TeX system.
\big( \Big( \bigg( \Bigg(are just separate font glyphs somewhere defined... – Lance Aug 03 '18 at 08:23\big(et al are definied infontmath.ltx, which is part of your system in the.../latex(base/folder – Aug 03 '18 at 08:37