From f26e81fc97e2e8d0dfb4871f94943c2542ff4f3f Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Tue, 15 Oct 2002 10:39:57 +0000 Subject: [PATCH] fix kerning problems with insetquotes git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5407 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/ChangeLog | 4 ++++ src/insets/insetquotes.C | 10 +++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/insets/ChangeLog b/src/insets/ChangeLog index 5d4d9da093..59a486f380 100644 --- a/src/insets/ChangeLog +++ b/src/insets/ChangeLog @@ -1,3 +1,7 @@ +2002-09-25 Juergen Spitzmueller + + * insetquote.C: fix LaTeX output of quotation marks. + 2002-10-14 Juergen Vigna * insettext.C (localDispatch): remove double setUndo in Cut/Delete/ diff --git a/src/insets/insetquotes.C b/src/insets/insetquotes.C index d6c631eddc..1403f21a64 100644 --- a/src/insets/insetquotes.C +++ b/src/insets/insetquotes.C @@ -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 -- 2.39.5