* src/LaTeXFeatures.C

(char const * simplefeatures[]): add tipa

        * src/mathed/math_fontinset.C
        (void MathFontInset::validate): textipa requires tipa


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@13678 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2006-04-14 14:40:16 +00:00
parent db644a7fb2
commit a89da87da8
5 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2006-04-14 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* LaTeXFeatures.C (simplefeatures): add tipa.
2006-04-13 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* src/paragraph.h (public): new enum ChangeTracking,

View File

@ -241,6 +241,7 @@ char const * simplefeatures[] = {
"dvipost",
"fancybox",
"calc",
"tipa",
};
int const nb_simplefeatures = sizeof(simplefeatures) / sizeof(char const *);

View File

@ -1,3 +1,7 @@
2006-04-14 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* math_fonzinset.C (validate): textipa requires tipa.
2006-04-13 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* math_xarrowinset.C (validate):

View File

@ -87,6 +87,8 @@ void MathFontInset::validate(LaTeXFeatures & features) const
features.require("amssymb");
if (key_->name == "text")
features.require("amsmath");
if (key_->name == "textipa")
features.require("tipa");
}

View File

@ -46,6 +46,8 @@ What's new
- Set change tracking marks properly when copying between documents with different change
tracking status (bug 2207).
- Load the tipa package automatically when needed.
* Configuration/Installation:
- Make LyX/Win work under windows 98.