I want to be able to create particle motion diagrams for a calculus or physics class that look like this;
This is what I had at the time of posting the question:
\documentclass[12pt]{article}
enter code here
\usepackage{mathptmx} % rm & math
\usepackage[scaled=0.90]{helvet} % ss
\usepackage{courier} % tt
\normalfont
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{multicol}
\usepackage{graphpap}
\usepackage[normalem]{ulem}
\usepackage{pgfplots}
\pgfplotsset{compat=1.8}
\DeclareGraphicsRule{.tif}{png}{.png}{`convert #1 `dirname #1`/`basename #1 .tif`.png}
\begin{document}
\begin{tikzpicture}
% an arrow
\draw[-latex][line width=.3mm] (0,0) -- (6,0);
\node at (5.9, -0.3) {$s$};
\node at (1,0) {\circle*{4.0}};
\node at (1, -0.5) {$t = 0$};
\node at (1, -1.0) {$s = 0$};
\node at (5,0) {\circle*{4.0}};
\node at (5, -0.5) {$t = 1$};
\node at (5, -1.0) {$s = 4$};
\end{tikzpicture}
\end{document}


tikz-pgf, what have you tried so far using that package? – siracusa Feb 18 '19 at 01:10