mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
parent
e30f3d76d2
commit
3c7b75c5bc
@ -1790,13 +1790,19 @@ void Preamble::parse(Parser & p, string const & forceclass,
|
||||
}
|
||||
|
||||
else if (t.cs() == "newtheorem") {
|
||||
bool star = false;
|
||||
if (p.next_token().character() == '*') {
|
||||
p.get_token();
|
||||
star = true;
|
||||
}
|
||||
string const name = p.getArg('{', '}');
|
||||
string const opt1 = p.getFullOpt();
|
||||
string const opt2 = p.getFullOpt();
|
||||
string const body = p.verbatim_item();
|
||||
string const opt3 = p.getFullOpt();
|
||||
string const cmd = star ? "\\newtheorem*" : "\\newtheorem";
|
||||
|
||||
string const complete = "\\newtheorem{" + name + '}' +
|
||||
string const complete = cmd + "{" + name + '}' +
|
||||
opt1 + opt2 + '{' + body + '}' + opt3;
|
||||
|
||||
add_known_theorem(name, opt1, !opt2.empty(), from_utf8(complete));
|
||||
|
Loading…
Reference in New Issue
Block a user