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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis