I'm looking for a way to include text as an element of a line for plotting with Plot[]. Thanks!
The two examples below show what I'm aiming for.
Example 1: Add text manually.

Example 2: ListPlot, ParametricPlot, and Show:
p1 := ListPlot[Table[{Sin[n], Sin[2 n]}, {n, 50}],
PlotMarkers -> {Style["1", 12, Background -> White]}]
p2 := ParametricPlot[{Sin[n], Sin[2 n]}, {n, 0, 50}, PlotStyle -> Thin]
Show[p2, p1]
which generates
