Commit 4504438e authored by Dimitri van Heesch's avatar Dimitri van Heesch

Fixed small bug

parent ee5cb6bc
......@@ -3826,7 +3826,7 @@ void filterLatexString(QTextStream &t,const char *str,
case '[': if (Config_getBool("PDF_HYPERLINKS"))
t << "\\mbox{[}";
else if (insideItem)
t << "\[";
t << "\\[";
else
t << "[";
break;
......@@ -3834,7 +3834,7 @@ void filterLatexString(QTextStream &t,const char *str,
if (Config_getBool("PDF_HYPERLINKS"))
t << "\\mbox{]}";
else if (insideItem)
t << "\[";
t << "\\[";
else
t << "]";
break;
......
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