mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +00:00
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:
parent
03700cf7e3
commit
08323de6c6
@ -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)
|
||||
|
@ -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";
|
||||
}
|
||||
|
@ -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).
|
||||
|
Loading…
Reference in New Issue
Block a user