mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 03:36:39 +00:00
Plain quote fixes
\textquote... commands are only available in t1.
This commit is contained in:
parent
cf82bcadfb
commit
e68afbe671
@ -374,7 +374,10 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op) const
|
||||
break;
|
||||
}
|
||||
case 0x0027: {// ' (plain)
|
||||
res = "\\textquotesingle";
|
||||
if (op == "t1")
|
||||
res = "\\textquotesingle";
|
||||
else
|
||||
res = "\\char39";
|
||||
break;
|
||||
}
|
||||
case 0x201e: {// ,,
|
||||
@ -419,7 +422,10 @@ docstring InsetQuotesParams::getLaTeXQuote(char_type c, string const & op) const
|
||||
break;
|
||||
}
|
||||
case 0x0022: {// "
|
||||
res = "\\textquotedbl";
|
||||
if (op == "t1")
|
||||
res = "\\textquotedbl";
|
||||
else
|
||||
res = "\\char34";
|
||||
break;
|
||||
}
|
||||
// The following are fakes
|
||||
|
Loading…
Reference in New Issue
Block a user