Second, how do I type the first equation? I need something like
dSt = u S dt + v S dWt
For this I typed:
Code: Select all
\begin{equation}\label{GMB}
{dS$_t$} = u\S\{dt} + v\S\{dW$_t$}
\end{equation}
Thanks so much!
Code: Select all
\begin{equation}\label{GMB}
{dS$_t$} = u\S\{dt} + v\S\{dW$_t$}
\end{equation}
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
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{mathtools} % loads »amsmath«
\usepackage{xfrac}
\usepackage{fix-cm}
\begin{document}
\[
dS_t=u\,S\,dt+v\,S\,dW_t
\]
\[
S_t=S_0\exp\left[\left(u-\sfrac{v^2}{2}\right)t+vW_t\right]
\]
\end{document}
Code: Select all
\[
(u - v \cdot \frac{v}{2})
\]
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