I am not skilled in LaTeX programming, so I ask for your helps.
So when I use the () parentheses or [] brackets, there are not auto adjusting its size.
For example,
f(0)
is fine, but for f(\frac{1}{2})
, the output parentheses is small in one size.So I need to use
\left( \right)
for its to be auto adjusting it size, in this case f\left(\frac{1}{2}\right)
.After a while of writing like this, I'm seeking for some easy macros.
I want to re-define the
(
as \left(
and )
as \right)
, so that I can save some time.I tried the
\newcommand
and \renewcommand
, and it does work well.( I do have the required package)From log, Missing control sequence inserted. \newcommand{ ( }{\left( }
Please help, if it is possible to do this.
Thank you very much!