Code: Select all
\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
\[ x + F \left( \frac{k}{q} \right) \]
\[ x + F \biggl( \frac{k}{q} \biggr) \]
\end{document}
Code: Select all
\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}
\[ x + F \left( \frac{k}{q} \right) \]
\[ x + F \biggl( \frac{k}{q} \biggr) \]
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\[ x + F {\left( \frac{k}{q} \right)} \]
Code: Select all
\documentclass[12pt]{article}
\usepackage{amsmath}
\let\originalleft\left
\let\originalright\right
\renewcommand{\left}{\mathopen{}\mathclose\bgroup\originalleft}
\renewcommand{\right}{\aftergroup\egroup\originalright}
\begin{document}
\[ x + F \left( \frac{k}{q} \right) \]
\[ x + F \biggl( \frac{k}{q} \biggr) \]
\end{document}
Stefan_K wrote:Another fix by redefining \left and \right from here: Spacing around \left and \right:
StefanCode: Select all
\documentclass[12pt]{article} \usepackage{amsmath} \let\originalleft\left \let\originalright\right \renewcommand{\left}{\mathopen{}\mathclose\bgroup\originalleft} \renewcommand{\right}{\aftergroup\egroup\originalright} \begin{document} \[ x + F \left( \frac{k}{q} \right) \] \[ x + F \biggl( \frac{k}{q} \biggr) \] \end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.