I have a really long caption for a figure in a LaTeX document. I would like to break the caption into a few paragraphs. How do I do that?
As per the request below, I removed everything I could while still getting the errors I mentioned in my comment. The resulting file is this:
\documentclass{article}
\usepackage[pdftex]{graphicx}
\usepackage{hyperref}
\graphicspath{{./Figures/}}
\begin{document}
\begin{figure}
\includegraphics{NodesEdgesExample2.pdf}
\caption{
Paragraph 1.
Paragraph 2.
Paragraph 3.
}
\label{fig:AltNavigationConcept}
\end{figure}
\end{document}
We're building it in TeXnicCenter, and I verified that another person in my research lab also gets the same errors on his computer with the above code.

Paragraph ended before \NR@gettitle was complete,Paragraph ended before \addcontentsline was completeandExtra }, or forgotten \endgroup. Any thoughts? – Brandon Mar 16 '12 at 22:57\def\NR@gettitle#1{%should be\long\def\NR@gettitle#1{%to allow paragraphs. – David Carlisle Mar 16 '12 at 23:31\endgrafinstead of leaving a blank line, everything works. It's better, though, to follow lockstep's advice of providing a "short caption". – egreg Mar 16 '12 at 23:36