[Tex/LaTex] big angle brackets

anglebrackets

I know that \langle and \rangle creates left and right angle brackets. But they don't seem to adopt to the size of the expression inside. For example, if I have a big matrix, I would like to angle brackets to be big as well. How can I get this effect?

Best Answer

The mtpro2 package (MathTime Professional II) provides extra-large (up to 10 cm tall) fence symbols -- round parentheses, square brackets, curly braces, angle brackets, etc. -- via its \LEFTRIGHT command. Note that the full mtpro2 package isn't free of charge; however, its "lite" subset, which is all that's needed to produce extra-large fence symbols, is free of charge.

enter image description here

\documentclass{article}
\usepackage[lite]{mtpro2}
\begin{document}
\[
\LEFTRIGHT\langle\rangle{
\begin{array}{c} 
  1\\2\\3\\4\\5\\6\\7\\8\\9\\10
\end{array}}
\]
\end{document}

update 2020-10-01: The pctex.com site noted in my answer no longer seems provide a functioning link to the page from which the lite subset of the mtpro2 package used to be available for downloading. Many thanks to @mateuszb for bringing this issue to my attention.


Related Question