这里有一些线程,其中解释了如何使用\lceil \rceil \lfloor \rfloor
。
但一般在数学中,有一个看起来像 ceil 和 floor 组合的符号,意思是round
,又称最接近的整数。
有没有办法在 Latex 的数学模式中绘制这个符号?
答案1
该mathtools
软件包有一个\DeclarePairedDelimiter
命令,可让您定义此类宏。我定义了一个\nint
命令,将其参数括在\lfloor
和之间\rceil
。带星号的版本添加了一对隐式\left
... ,但您可以使用、、之一作为可选参数\right
来微调分隔符大小。\big
\Big
\bigg
\Bigg
\documentclass[10pt,a4paper]{article}
\usepackage{mathtools, nccmath}
\DeclarePairedDelimiter{\nint}\lfloor\rceil
\DeclarePairedDelimiter{\abs}\lvert\rvert
\begin{document}
\[ \nint{x}\qquad \nint*{\sqrt{x^2 + \mfrac13}}\qquad\nint[\Big]{\sqrt{x^2}} = \abs{x}\]%
\end{document}
答案2
上述两个答案的组合:
\newcommand{\round}[1]{\ensuremath{\lfloor#1\rceil}}