| <!DOCTYPE html> |
| <html> |
| <body> |
| <!-- This shows the unstretched operators. --> |
| <math> |
| <mrow> |
| <mo>(</mo> <mo>)</mo> |
| <mo>{</mo> <mo>}</mo> |
| <mo>[</mo> <mo>]</mo> |
| <mo>⌈</mo> <mo>⌉</mo> |
| <mo>⌊</mo> <mo>⌋</mo> |
| <mo stretchy="true">∫</mo> <mo>|</mo> |
| <mo>‖</mo> <mo stretchy="true">∥</mo> |
| </mrow> |
| </math> |
| |
| <br/> |
| |
| <!-- Stretch the operators to different heights. --> |
| <math> |
| <mrow> |
| <mo>(</mo> <mo>)</mo> |
| <mo>{</mo> <mo>}</mo> |
| <mo>[</mo> <mo>]</mo> |
| <mo>⌈</mo> <mo>⌉</mo> |
| <mo>⌊</mo> <mo>⌋</mo> |
| <mo stretchy="true">∫</mo> <mo>|</mo> |
| <mo>‖</mo> <mo stretchy="true">∥</mo> |
| <mspace height="75px" depth="1px"/> |
| </mrow> |
| </math> |
| |
| <math> |
| <mrow> |
| <mo>(</mo> <mo>)</mo> |
| <mo>{</mo> <mo>}</mo> |
| <mo>[</mo> <mo>]</mo> |
| <mo>⌈</mo> <mo>⌉</mo> |
| <mo>⌊</mo> <mo>⌋</mo> |
| <mo stretchy="true">∫</mo> <mo>|</mo> |
| <mo>‖</mo> <mo stretchy="true">∥</mo> |
| <mspace height="50px" depth="1px"/> |
| </mrow> |
| </math> |
| |
| <math> |
| <mrow> |
| <mo>(</mo> <mo>)</mo> |
| <mo>{</mo> <mo>}</mo> |
| <mo>[</mo> <mo>]</mo> |
| <mo>⌈</mo> <mo>⌉</mo> |
| <mo>⌊</mo> <mo>⌋</mo> |
| <mo stretchy="true">∫</mo> <mo>|</mo> |
| <mo>‖</mo> <mo stretchy="true">∥</mo> |
| <mspace height="20px" depth="1px"/> |
| </mrow> |
| </math> |
| |
| <br/> |
| |
| <!-- Show that stretching also works in msqrt as well as mrow. --> |
| <math> |
| <msqrt> |
| <mo>(</mo> <mo>)</mo> |
| <mo>{</mo> <mo>}</mo> |
| <mo>[</mo> <mo>]</mo> |
| <mo>⌈</mo> <mo>⌉</mo> |
| <mo>⌊</mo> <mo>⌋</mo> |
| <mo stretchy="true">∫</mo> <mo>|</mo> |
| <mo>‖</mo> <mo stretchy="true">∥</mo> |
| <mspace height="40px" depth="1px"/> |
| </msqrt> |
| </math> |
| |
| </body> |
| </html> |