I would like to create a math formula as follows. How do I write it in LaTeX?
Asked
Active
Viewed 372 times
1
-
6Welcome to TeX.SX. What have you tried so far, how far did you get? Where did you get stuck? – Johannes_B May 20 '19 at 04:53
1 Answers
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}
Next time, please add a minimal working example (MWE) of what you tried.
CarLaTeX
- 62,716
-
1I'd suggest just a teeny tiny correction:
\mathbf{x}'instead of\mathbf{x'}. It doesn't make a practical difference here but I think it is semantically better. (IMO of course.) – campa May 20 '19 at 09:35 -
-
I know texperts use [] but what do you use for inline expressions? $expression$ – May 20 '19 at 13:14
-
@santimirandarp I this this post can be helpful to you: https://tex.stackexchange.com/questions/510/are-and-preferable-to-dollar-signs-for-math-mode – CarLaTeX May 20 '19 at 13:30
-
-
-
-

