Is it possible to insert guide lines in Graphics - for example a horizontal line through y=0 coordinate without specifying the range of the line?
Originally I assumed Infinity might do the trick:
Graphics[{Point[{0, 1}], Line[{{-Infinity, 0}, {Infinity, 0}}]}, Frame -> True] But this results in the error message:
Coordinate {DirectedInfinity[-1], 0} should be a pair of numbers, or a Scaled or Offset form. So Instead of Infinity, it's possible to insert such a line using Epilog with large magnitude parameters, eg -50 to 50. The reason for Epilog is so that PlotRange->All can be used without having to specify a narrower range (see following example)
However (1) Epilog causes some of the line to be displayed outside the graphics' frame, eg in the following graphic (which shows the interpolated spectrum between the signed & unsigned graph Laplacian), and (2) specifying -50, and 50 (or -500 to 500) is a hack since for some graphs it may not cover the range (for very large graphs or if zooming out to view beyond the D-A to D+A vertical range).




