I am getting strange errors in LaTeX:
perhaps you should insert a `~' before "\ref"
missing `\ ' after "i.e."
missing `\ ' after "i.e."
I understand that the first expects me to put a tilde before the reference, so something like this figure~\ref{myfigure}, but why is it necessary? I can compile without the tilde and everything works fine. Besides that, it is annoying to have to write it like this in case I want to reference many figures. For example, I have this statement in my paper:
Figures \ref{figure:normal_rendering} and \ref{figure:silhouette_rendering} illustrates the silhouette rendering process.
With the form proposed I should keep adding figure before any \ref; it sounds weird to read: "Figure 1, figure 2, and figure 3 illustrates the silhouette rendering process" rather then just "Figure 1, 2, and 3 illustrates the silhouette rendering process".
What about the second and third errors? Any help?
i.e.\. – Stefan Kottwitz Feb 23 '11 at 14:23~makes sure that the line is not broken betweenFigureand\ref, which would look bad. You don't need to putFigurein front of every\refwhen referencing several figures. – Martin Scharrer Feb 23 '11 at 14:26