Skip to content

Commit 348039f

Browse files
committed
Line breaking points in LaTeX
- Merged with master branch - added breakpoint at `#` sign.
1 parent 3c14ec3 commit 348039f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/latexgen.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2437,7 +2437,7 @@ void filterLatexString(TextStream &t,const QCString &str,
24372437
else
24382438
t << static_cast<char>(c);
24392439
break;
2440-
case '#': t << "\\#"; break;
2440+
case '#': t << "\\+\\#"; break;
24412441
case '$': t << "\\$"; break;
24422442
case '%': t << "\\%"; break;
24432443
case '^': processEntity(t,pdfHyperlinks,"$^\\wedge$","\\string^"); break;

0 commit comments

Comments
 (0)