mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 11:16:55 +00:00
tex2lyx/text.cpp: support for the centering environment used to center e.g. images
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24708 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
df85fce637
commit
bbd5ddeff3
@ -809,9 +809,10 @@ void parse_environment(Parser & p, ostream & os, bool outer,
|
|||||||
// they are commands not environments. They are furthermore switches that
|
// they are commands not environments. They are furthermore switches that
|
||||||
// can be ended by another switches, but also by commands like \footnote or
|
// can be ended by another switches, but also by commands like \footnote or
|
||||||
// \parbox. So the only safe way is to leave them untouched.
|
// \parbox. So the only safe way is to leave them untouched.
|
||||||
else if (name == "center" || name == "flushleft" || name == "flushright" ||
|
else if (name == "center" || name == "centering" ||
|
||||||
name == "singlespace" || name == "onehalfspace" ||
|
name == "flushleft" || name == "flushright" ||
|
||||||
name == "doublespace" || name == "spacing") {
|
name == "singlespace" || name == "onehalfspace" ||
|
||||||
|
name == "doublespace" || name == "spacing") {
|
||||||
eat_whitespace(p, os, parent_context, false);
|
eat_whitespace(p, os, parent_context, false);
|
||||||
// We must begin a new paragraph if not already done
|
// We must begin a new paragraph if not already done
|
||||||
if (! parent_context.atParagraphStart()) {
|
if (! parent_context.atParagraphStart()) {
|
||||||
@ -822,7 +823,7 @@ void parse_environment(Parser & p, ostream & os, bool outer,
|
|||||||
parent_context.add_extra_stuff("\\align left\n");
|
parent_context.add_extra_stuff("\\align left\n");
|
||||||
else if (name == "flushright")
|
else if (name == "flushright")
|
||||||
parent_context.add_extra_stuff("\\align right\n");
|
parent_context.add_extra_stuff("\\align right\n");
|
||||||
else if (name == "center")
|
else if (name == "center" || name == "centering")
|
||||||
parent_context.add_extra_stuff("\\align center\n");
|
parent_context.add_extra_stuff("\\align center\n");
|
||||||
else if (name == "singlespace")
|
else if (name == "singlespace")
|
||||||
parent_context.add_extra_stuff("\\paragraph_spacing single\n");
|
parent_context.add_extra_stuff("\\paragraph_spacing single\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user