-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparentheses.tex
19 lines (13 loc) · 1.14 KB
/
parentheses.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
\documentclass{article}
\usepackage{phfparen}
\begin{document}
Write parentheses with the backtick (`) character.
\begin{align*}
`*(1) & & `*[1] & & `*{1} & & `*<1> \\
`*(\frac{1}{2}) & & `*[\frac{1}{2}] & & `*{\frac{1}{2}} & & `*<\frac{1}{2}> \\
`*(\frac{1}{2 + \frac{1}{2}}) & & `*[\frac{1}{2 + \frac{1}{2}}] & & `*{\frac{1}{2 + \frac{1}{2}}} & & `*<\frac{1}{2 + \frac{1}{2}}> \\
`*(\frac{1}{2 + \frac{1}{2 + \frac{1}{2}}}) & & `*[\frac{1}{2 + \frac{1}{2 + \frac{1}{2}}}] & & `*{\frac{1}{2 + \frac{1}{2 + \frac{1}{2}}}} & & `*<\frac{1}{2 + \frac{1}{2 + \frac{1}{2}}}> \\
\end{align*}
Same for inline math: \( `*(1) \), \( `*(\frac{1}{2}) \), \( `*[\frac{1}{2}] \), \( `*{\frac{1}{2}} \), \( `*<\frac{1}{2}> \)
If you need small braces, write without asterisk, e.g.~\( `(\frac{1}{2 + \frac{1}{2}}) \)
\end{document}