Commit 7e719d1a authored by Dimitri van Heesch's avatar Dimitri van Heesch

Use \newline i.s.o. \par for linebreaks in LaTeX

parent 2a40448c
......@@ -175,8 +175,7 @@ void LatexDocVisitor::visit(DocURL *u)
void LatexDocVisitor::visit(DocLineBreak *)
{
if (m_hide) return;
if (m_insideTable) m_t << "\\newline\n";
else m_t << "\\par\n";
m_t << "\\newline\n";
}
void LatexDocVisitor::visit(DocHorRuler *)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment