[Tex/LaTex] Big floor symbols

symbols

When I write

\lfloor\dfrac{1}{2}\rfloor

the floors come out too short to cover the fraction. How can I lengthen the floor symbols?

Best Answer

You could use \left...\right for stretchable delimiters, or perhaps one of the pairs of the \bigl...\bigr family of commands:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\[
\Bigl\lfloor\dfrac{1}{2}\Bigr\rfloor\qquad
\left\lfloor\dfrac{1}{2}\right\rfloor
\]

\end{document}

enter image description here