我需要用一个新的符号来表示自己定义的操作。如何建立一对新的分隔符,就像在左右括号上加一个小圆圈一样?困难的是它有四种大小:\big
,\Big
,\bigg
,\Bigg
。
\documentclass{article}
\begin{document}
\[\bigl\newlparentheses\sin(x+\pi)\bigr\newrparentheses
\cdot\Bigl\newlparentheses\frac ab\Bigr\newrparentheses\]
\end{document}
答案1
您可以定义新的括号。
对于经典\left
的\right
\def\oright#1{\right#1\mskip-10mu\circ}
\def\oleft#1{\circ\mskip-10mu\left#1}
对于大\bigl
,\bigr
如
\def\obigr#1{\bigr#1\mskip-8mu\circ}
\def\obigl#1{\circ\mskip-8mu\bigl#1}
对于特大号\Bigl
,\Bigr
\def\oBigr#1{\Bigr#1\mskip-8mu\circ}
\def\oBigl#1{\circ\mskip-8mu\Bigl#1}
使用方式如下:
\[\oleft(\sin(x+\pi)\oright)\]
\[\obigl(\sin(x+\pi)\obigr)\]
\[\oBigl(\sin(x+\pi)\oBigr)\]
结果如下: