0

In below figure we pointed to <i,j>

enter image description here

But we wish to have a special symbol instead of <>. In the new symbol we expect that the angle between the two arms are larger than default <> i.e., the below symbols

3 Answers3

5

I think you're looking for \langle and \rangle.

\documentclass{article}
\begin{document}
\( < i, j > \)

\( \langle i,j \rangle \)
\end{document}

Vincent
  • 20,157
1

Do you want increasing the size of \langle or \rangle? If the answer is "yes" you can choose the scalerel package to pag. 7 (for example):

enter image description here

\documentclass[a4paper,12pt]{article}
\usepackage{amsmath,amssymb}
\usepackage{scalerel}
\begin{document}
$\stretchto[200]{\langle}{20pt}x,y\stretchto[200]{\rangle}{20pt}$
\end{document}

If you want double \langle (\rangle) you can use \llangle or \rrangle with MnSymbol package.

Sebastiano
  • 54,118
0

Perhaps \left\langle ... \right\rangle? That should adjust the size to the contents.

vonbrand
  • 5,473