Revert yesterday's change. It's going to be too complicated to deal

with nasty surprises.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5438 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-10-18 09:43:15 +00:00
parent 53177767c9
commit 8648388992
2 changed files with 6 additions and 14 deletions

View File

@ -1,3 +1,8 @@
2002-10-18 Angus Leeming <leeming@lyx.org>
* formula.C (latexString): Revert yesterday's change. It's going to
be too complicated to deal with nasty surprises.
2002-10-17 Angus Leeming <leeming@lyx.org> 2002-10-17 Angus Leeming <leeming@lyx.org>
* formula.C (latexString): change "\[ ... \]" to "$ \displaystyle ... $" * formula.C (latexString): change "\[ ... \]" to "$ \displaystyle ... $"

View File

@ -330,18 +330,5 @@ string const InsetFormula::PreviewImpl::latexString() const
ostringstream ls; ostringstream ls;
WriteStream wi(ls, false, false); WriteStream wi(ls, false, false);
parent().par_->write(wi); parent().par_->write(wi);
string str = ls.str().c_str(); return ls.str().c_str();
// If we are in displaymode, the preview will include the margins
// on either side of the previewed equation.
// We can create an image with a tight bounding box by replacing the
// "\[ ... \]" delimiters with "$ \displaystyle ... $".
// Note that we have to get rid of any trailing '\n's for the fix
// to work.
if (prefixIs(str, "\\[")) {
str = rtrim(rtrim(ltrim(str, "\\["), "\n"), "\\]");
str = "$ \\displaystyle " + str + " $";
}
return str;
} }