I frequently use simple and larger parenthesis in math mode, like what is shown in the MWE below:
\documentclass[11pt,letterpaper,twoside]{book}
\usepackage{lmodern}
\usepackage{amsmath}
\usepackage{mathtools}
\newcommand*{\bigs}[1]{\vcenter{\hbox{\scalebox{1.25}{#1}}}}
\begin{document}
Blabla bla bla blabla :
\begin{equation}
\Big( c \, \bigs( \big( (1 + (x - y^2)(a + b) \big) \bigs) \Big) = \tfrac{3}{4}.
\end{equation}
\end{document}
I usually don't use the \left \right variants, since I find them too big, and also for other reasons that aren't relevant here.
The \big( \big) commands give a nice output when the document is written in 12pt size. The difference with simple () is clear. But then, If I reduce the font to 11pt, the difference becomes very small, almost negligible. Why is that?
To solve this, I defined a small macro to give something between the simple parenthesis and the \Big version. But I'm now wondering why I have to do this and if this a proper way of doing things in LaTeX.
\bigor\Bigetc in a document they are just the internal implementation of code shared between\big;and\bigr, it should be\Bigl(....\Bigr)– David Carlisle Dec 09 '19 at 00:30\Big(is a mathord,\Bigl(is a mathopen. – David Carlisle Dec 09 '19 at 00:33\begin{document}
$\sin{(}x{)} \rightarrow \sin(x)$
$\sin\big(x\big) \rightarrow \sin\bigl(x\bigr)$
\end{document}
– David Carlisle Dec 09 '19 at 00:40\bigis simply wrong always, it may accidentally give the same spacing because a mathord and mathopen get the same space in some contexts but it is not supported document markup. – David Carlisle Dec 09 '19 at 00:49{}destroys the spacing, why are you using braces? – David Carlisle Dec 09 '19 at 00:50\sindoes not so the braces are not absorbed by\sinas an argument, they instead coerce the(...)to start with a mathord not a mathopen, – David Carlisle Dec 09 '19 at 00:53$\sin(\theta_1+\theta_2)$. Note that$\sin{(\theta_1)}$inserts too much whitespace between "sin" and "(" -- and is thus wrong from a typographic perspective. – Mico Dec 09 '19 at 05:18lmodernfonts. If you comment outlmodernyou'll see that the\bigparentheses are in fact larger. See https://tex.stackexchange.com/a/137143/82917 (slightly different question but same reason) – campa Dec 09 '19 at 08:30