mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-13 03:40:34 +00:00
use the wasysym package when needed
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9498 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4bea3da188
commit
add9ff6168
@ -1,3 +1,7 @@
|
||||
2005-01-19 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* LaTeXFeatures.C: rename feature "wasy" to "wasysym".
|
||||
|
||||
2005-01-11 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* text.C (setHeightOfRow): add a margin at the top and bottom of
|
||||
|
@ -189,7 +189,7 @@ char const * simplefeatures[] = {
|
||||
"varioref",
|
||||
"prettyref",
|
||||
"float",
|
||||
"wasy",
|
||||
"wasysym",
|
||||
"dvipost",
|
||||
"fancybox",
|
||||
"calc",
|
||||
|
@ -1,5 +1,7 @@
|
||||
2005-01-19 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* math_symbolinset.C (validate): require wasysym as needed
|
||||
|
||||
* math_decorationinset.C (ams): remove again \overleftarrow and
|
||||
\overrightarrow, which do not require amslatex (although amslatex
|
||||
redefines them).
|
||||
|
@ -138,6 +138,8 @@ void MathSymbolInset::validate(LaTeXFeatures & features) const
|
||||
{
|
||||
if (sym_->inset == "msa" || sym_->inset == "msb")
|
||||
features.require("amssymb");
|
||||
else if (sym_->inset == "wasy")
|
||||
features.require("wasysym");
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user