mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 02:14:50 +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>
|
2002-10-14 Juergen Vigna <jug@sad.it>
|
||||||
|
|
||||||
* insettext.C (localDispatch): remove double setUndo in Cut/Delete/
|
* 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.
|
// Corresponding LaTeX code, for double and single quotes.
|
||||||
char const * const latex_quote_t1[2][5] =
|
char const * const latex_quote_t1[2][5] =
|
||||||
{ { "\\quotesinglbase{}", "'", "`",
|
{ { "\\quotesinglbase ", "'", "`",
|
||||||
"\\guilsinglleft{}", "\\guilsinglright{}" },
|
"\\guilsinglleft{}", "\\guilsinglright{}" },
|
||||||
{ ",,", "''", "``", "<<", ">>" } };
|
{ ",,", "''", "``", "<<", ">>" } };
|
||||||
|
|
||||||
char const * const latex_quote_ot1[2][5] =
|
char const * const latex_quote_ot1[2][5] =
|
||||||
{ { "\\quotesinglbase{}", "'", "`",
|
{ { "\\quotesinglbase ", "'", "`",
|
||||||
"\\guilsinglleft{}", "\\guilsinglright{}" },
|
"\\guilsinglleft{}", "\\guilsinglright{}" },
|
||||||
{ "\\quotedblbase{}", "''", "``",
|
{ "\\quotedblbase ", "''", "``",
|
||||||
"\\guillemotleft{}", "\\guillemotright{}" } };
|
"\\guillemotleft{}", "\\guillemotright{}" } };
|
||||||
|
|
||||||
char const * const latex_quote_babel[2][5] =
|
char const * const latex_quote_babel[2][5] =
|
||||||
{ { "\\glq{}", "'", "`", "\\flq{}", "\\frq{}" },
|
{ { "\\glq ", "'", "`", "\\flq{}", "\\frq{}" },
|
||||||
{ "\\glqq{}", "''", "``", "\\flqq{}", "\\frqq{}" } };
|
{ "\\glqq ", "''", "``", "\\flqq{}", "\\frqq{}" } };
|
||||||
|
|
||||||
} // namespace anon
|
} // namespace anon
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user