\documentclass{article}

% بسته‌ای برای رسم شکل در Latex 
\usepackage{tikz}

% توسط این بسته تمامی قسمت سفید صفحه حذف می شود و صفحه به اندازه شکل با حاشیه 1mm در می آید.
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{1mm}%

\begin{document}
\begin{tikzpicture}[scale=1.5]
% رسم منحنی در Latex
\draw [xshift=4cm,-latex] plot [smooth] coordinates { (0,0) (1,1) (3,1.1) (4.5,2.6)};
\draw [xshift=4cm,-latex] plot [smooth] coordinates { (0,.7) (1,1.6) (3,1.9) (4.5,3.6)};

% رسم دو بیضی در Latex
\draw[rotate=40] (4.8,-2.3) ellipse (.1cm and .3cm)node[above=10pt,xshift=-3mm]{$dS_{1}$};
\draw[rotate=40] (6.8,-3.35) ellipse (.1cm and .3cm)node[above=10pt,xshift=-5mm]{$dS_{2}$};
\end{tikzpicture}
\end{document}



