diff options
| author | Grégoire Duchêne <gduchene@fastmail.net> | 2010-12-07 06:19:44 +0100 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@fastmail.net> | 2010-12-07 06:24:39 +0100 |
| commit | 381f491b3eecbf90f2202a37f3c43c7f487f8713 (patch) | |
| tree | c53c714ca38968c5bfe76e47702aae122a68900c /src/generators/latex | |
| parent | 792bc5386756a42d622d5f023b40808553b912de (diff) | |
Bogus inline quotation implementation corrected.
OK, I implemented subscript text instead of inline quotations, but I
called it "inline quotation support" anyway. My bad, it is now fixed,
and subscript text is coming right away.
Diffstat (limited to 'src/generators/latex')
| -rw-r--r-- | src/generators/latex/text_g.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/generators/latex/text_g.cpp b/src/generators/latex/text_g.cpp index ced4bf3..338172a 100644 --- a/src/generators/latex/text_g.cpp +++ b/src/generators/latex/text_g.cpp @@ -29,7 +29,7 @@ latex::text_g::text_g() : text_g::base_type(text_) { | &uint_(CODE) << L"\\texttt{" << +text_ << '}' | &uint_(MATH) << L"$" << +text_ << '$' | &uint_(SUPER) << L"^{" << +text_ << '}' - | &uint_(QUOTE) << L"_{" << +text_ << '}'; + | &uint_(QUOTE) << L"``" << +text_ << L"''"; ptext_ = +char_; } |
