Skip to content

Commit

Permalink
Use \newline i.s.o. \par for linebreaks in LaTeX
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Mar 28, 2014
1 parent 2a40448 commit 7e719d1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/latexdocvisitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 *)
Expand Down

0 comments on commit 7e719d1

Please sign in to comment.