Consider the following:

printMessage[cellexpr_]:=CellPrint@Cell[cellexpr,"Message",
                         CellLabel->"(slave Kernel)",ShowCellLabel->True,
                         CellFrameMargins->0,Background->LightBrown,
                         CellLabelAutoDelete->False];
printMessage[BoxData[RowBox[{RowBox[{"Sin", "::", "\"argx\""}], ": ",
  "\"\\!\\(Sin\\) called with \\!\\(2\\) arguments; 1 argument is expected.\""}],
  StandardForm]]
Sin[1,1];

-->

(slave Kernel) Sin::argx: Sin called with 2 arguments; 1 argument is expected.
During evaluation of In[1]:= Sin::argx: Sin called with 2 arguments;
1 argument is expected. >>

enter image description here

One can see that the auto-generated Message inherits the style of the previous printed Cell. Why this happens? And how to prevent this?

link|improve this question

1  
@Alexey Please consider posting the input form of the code so that it can be copied for playing. Thnx. – Sasha Apr 17 '11 at 1:41
So that other people don't have to retype the boxdata, here it is BoxData[RowBox[{RowBox[{"Sin", "::", "\"argx\""}], ": ", "\"\\!\\(Sin\\) called with \\!\\(2\\) arguments; 1 argument is \ expected.\""}]]; – Simon Apr 17 '11 at 1:45
@Sasha beat me to it! – Simon Apr 17 '11 at 1:46
2  
I think it should be noted that it only happens when printMessage[BoxData[...]] and Sin[1,1] are within the same cell separated by new lines. If there are entered on new cells, the reported effect can not be observed. – Sasha Apr 17 '11 at 1:54
2  
It's also a little inconsistent - the styles sometimes take a while to propagate. I've been play a bit, and sometimes I think I found a solution, but when it's run again it reverts to the behaviour that Alexey doesn't want... It also happens with FontSize and other options. – Simon Apr 17 '11 at 2:19
show 12 more comments
feedback

1 Answer

up vote 1 down vote accepted

It seems that one workaround for this bug is to move "Message" to another place in the Cell options:

printMessage[cellexpr_]:=CellPrint@Cell[cellexpr,CellLabel->"(slave Kernel)",
                         "Message", ShowCellLabel->True,
                         CellFrameMargins->0,Background->LightBrown,
                         CellLabelAutoDelete->False];
printMessage[BoxData[RowBox[{RowBox[{"Sin", "::", "\"argx\""}], ": ",
  "\"\\!\\(Sin\\) called with \\!\\(2\\) arguments; 1 argument is expected.\""}],
  StandardForm]]
Sin[1,1];

EDIT

But as the result appearance of the printed Cell is changed:

ScreenShot

print := printMessage[
  BoxData[RowBox[{RowBox[{"NIntegrate", "::", "\"slwcon\""}], ": ", 
     "\"Numerical integration converging too slowly; suspect one of \
the following: singularity, value of the integration being 0, \
oscillatory integrand, or insufficient WorkingPrecision. If your \
integrand is oscillatory try using the option Method->Oscillatory in \
NIntegrate.\""}], StandardForm]]

EDIT 2

The above workaround works only during the first fresh session. After saving and reopening of the Notebook the problem appears again.

The only working workaround a this moment is do not use Styles but to specify explicit set of options.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.