How do I get printf to end a line with "\\" ? I wanted to format a LaTeX table--something like
print(printf(false,"~5,2f ~t & ~5,2f ~t & ~5,6f ~t & ~5,6f ~t & ~5,6f \\", first(listx),first(listy), abs(ans), abs(exact), err)),
This ends lines with |, not \\. I worked around this with search and replace, so it's not a big deal. I did read the user documentation.
--Barton