mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
fix kerning problems with insetquotes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5407 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2470016e1a
commit
f26e81fc97
@ -1,3 +1,7 @@
|
||||
2002-09-25 Juergen Spitzmueller <j.spitzmueller@gmx.de>
|
||||
|
||||
* insetquote.C: fix LaTeX output of quotation marks.
|
||||
|
||||
2002-10-14 Juergen Vigna <jug@sad.it>
|
||||
|
||||
* insettext.C (localDispatch): remove double setUndo in Cut/Delete/
|
||||
|
@ -53,19 +53,19 @@ int quote_index[2][6] = {
|
||||
|
||||
// Corresponding LaTeX code, for double and single quotes.
|
||||
char const * const latex_quote_t1[2][5] =
|
||||
{ { "\\quotesinglbase{}", "'", "`",
|
||||
{ { "\\quotesinglbase ", "'", "`",
|
||||
"\\guilsinglleft{}", "\\guilsinglright{}" },
|
||||
{ ",,", "''", "``", "<<", ">>" } };
|
||||
|
||||
char const * const latex_quote_ot1[2][5] =
|
||||
{ { "\\quotesinglbase{}", "'", "`",
|
||||
{ { "\\quotesinglbase ", "'", "`",
|
||||
"\\guilsinglleft{}", "\\guilsinglright{}" },
|
||||
{ "\\quotedblbase{}", "''", "``",
|
||||
{ "\\quotedblbase ", "''", "``",
|
||||
"\\guillemotleft{}", "\\guillemotright{}" } };
|
||||
|
||||
char const * const latex_quote_babel[2][5] =
|
||||
{ { "\\glq{}", "'", "`", "\\flq{}", "\\frq{}" },
|
||||
{ "\\glqq{}", "''", "``", "\\flqq{}", "\\frqq{}" } };
|
||||
{ { "\\glq ", "'", "`", "\\flq{}", "\\frq{}" },
|
||||
{ "\\glqq ", "''", "``", "\\flqq{}", "\\frqq{}" } };
|
||||
|
||||
} // namespace anon
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user