1

I would like to create a math formula as follows. How do I write it in LaTeX?

Enter image description here

1 Answers1

10

I recommend reading one of the guides listed here: What are good learning resources for a LaTeX beginner?.

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
f\sim\mathcal{GP}(\mu(x),K(\mathbf{x},\mathbf{x}';\theta))
\] 
\end{document}

enter image description here

Next time, please add a minimal working example (MWE) of what you tried.

CarLaTeX
  • 62,716