1

I'm trying to write something simple:

enter image description here

Not quite sure how to write out the second term (from the left) in LaTeX. Any suggestions please?

Stefan Pinnow
  • 29,535
Chet
  • 231

1 Answers1

2

enter image description here

\documentclass{article}

\begin{document}

\[
  \frac{\partial^2 f}{\partial y \, \partial x}
    = \frac{\partial}{\partial y} \biggl( \frac{\partial f}{\partial x} \biggr)
  %  = \frac{\partial}{\partial y} \left( \frac{\partial f}{\partial x} \right)
    = (f_x)_y
    = f_{xy}
    = \partial_{yx} f
\]

\end{document}

There is a difference in the spacing between using a \biggl(...\biggr) and \left(...\right) pair. Your choice, although the former is preferred.

Werner
  • 603,163
  • Thanks guys....works! I'm very new to this...and don't use it often enough to internalize it. Thanks again! – Chet May 26 '17 at 19:04