define \labelitemi with \def. Fixes LaTeX error if the class has not defined them yet (bug 2053).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@13329 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2006-03-10 16:23:13 +00:00
parent 03700cf7e3
commit 08323de6c6
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2006-03-10 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* bufferparams.C (writeLaTeX): define \labelitemi with \def. Fixes LaTeX
error if the class has not defined them yet (bug 2053).
2006-02-26 Georg Baum <Georg.Baum@post.rwth-aachen.de>
* text3.C (mathDispatch): fix math inset creation from string (bug 2315)

View File

@ -1005,7 +1005,7 @@ bool BufferParams::writeLaTeX(ostream & os, LaTeXFeatures & features,
if (user_defined_bullet(i) != ITEMIZE_DEFAULTS[i]) {
if (bullets_def.empty())
bullets_def="\\AtBeginDocument{\n";
bullets_def += " \\renewcommand{\\labelitemi";
bullets_def += " \\def\\labelitemi";
switch (i) {
// `i' is one less than the item to modify
case 0:
@ -1020,7 +1020,7 @@ bool BufferParams::writeLaTeX(ostream & os, LaTeXFeatures & features,
bullets_def += 'v';
break;
}
bullets_def += "}{" +
bullets_def += '{' +
user_defined_bullet(i).getText()
+ "}\n";
}

View File

@ -30,6 +30,8 @@ What's new
- fix LaTeX error with AMS classes (bug 2363).
- fix LaTeX error when \labelitemi was undefined (bug 2053).
* User Interface:
- Improve handling of the labeling environment in KOMA letters (bug 2246).