答案1
我不会为你画出整个东西。不过,我给你一个很好的起点。我在这里做的是初学者的东西,有很多更优雅(和更短)的方式来绘制它。
如果你遇到困难,这里有一本非常好的手册:http://texdoc.net/texmf-dist/doc/generic/pgf/pgfmanual.pdf
你应该能够在几个小时内画出这个:
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows}
\begin{document}
\begin{tikzpicture}
\draw [color=gray!30] [step=1cm] (0,-4) grid (10,4);
\draw[->,thick] (0,0) -- (10,0) node[below] {$t$};
\draw[<->,thick] (0,-4) -- (0,4) node[left] {$x$};
\draw [color=red] plot coordinates {(0,0) (1,1.5) (2,-1.5) (3,0.5) (4,0) (4.25,-0.5)};
\draw [color=black](0,0) node[left]{$(x,t)$};
\fill[red] (0,0) circle (2pt);
\fill[red] (1,1.5) circle (2pt);
\fill[red] (2,-1.5) circle (2pt);
\fill[red] (3,0.5) circle (2pt);
\fill[red] (4,0) circle (2pt);
\fill[red] (4.5,-1) circle (2pt);
\fill[red] (5,-1) circle (2pt);
\fill[red] (5.5,-1) circle (2pt);
\end{tikzpicture}
\end{document}