Programming the FrontEnd Notebook interface component of Wolfram Mathematica. New dedicated Mathematica SE site: http://mathematica.stackexchange.com/
0
votes
0answers
38 views
Cannot calculate with dynamic variables
I have a problem with Dynamic variables.
This is a prototype of a grading scheme. In reality it is bigger. The
10 pts in initPtsPartAcome from the school.
The output cell should be deployed as a ...
0
votes
1answer
66 views
Dynamic is not working properly
I'm having some troubles with the Dynamic command in Mathematica, the next code shows an interactive graphic of the function f(x) = 1 - x^2. The graphic's title also shows the current area under the ...
0
votes
1answer
72 views
Close programmatically all cell groups in Mathematica? [closed]
Is it possible to collapse all cell groups in the current notebook? I tried
nb = SelectedNotebook[];
SelectionMove[nb, Before, CellGroup]
FrontEndTokenExecute["OpenCloseGroup"]
but nothing changes. ...
5
votes
1answer
185 views
How to fill in CellFrameLabels in Mathematica Notebook Styles?
I have been working on getting numbered cell-frame labels following the great advice in these other answers
Extending cell definition to CellFrameLabels definition
How to Autonumber Cell Tags in ...
3
votes
2answers
469 views
How to Autonumber Cell Tags in Mathematica Notebooks?
I tried to follow the directions on autonumbering cells in a Mathematica-8 notebook, here
http://reference.wolfram.com/mathematica/tutorial/AutomaticNumbering.html
I created a tiny notebook with ...
1
vote
1answer
89 views
Why normal notebook created from script minimizes automatically?
The code is simple:
#!/usr/local/bin/math -script
UsingFrontEnd[FE=$FrontEnd];
Unprotect[$FrontEnd];
$FrontEnd=FE;
nb= NotebookOpen["/home/src/math/test.nb",Visible->True];
Pause[10]
But window ...
18
votes
1answer
822 views
How to create tabbed Mathematica notebooks
Is there a way to create and edit notebooks (sequences of cells) in a tabbed interface? Could such an interface be made with TabView or some other tool? I assume this would be possible if I made a ...
7
votes
2answers
212 views
Creating robust real-time monitors for variables
We can create a real-time monitor for a variable like this:
CreatePalette@Panel@Row[{"x = ", Dynamic[x]}]
(This is more interesting and useful if x happens to be something like $Assumptions. It's ...
6
votes
1answer
574 views
Understanding Kernel-FrontEnd communication — Why does my Front End freeze?
EDIT: Just a confirmation whether you can reproduce this or not would be useful. Only a single computer is needed to try this (no remote connection necessary).
Update It seems other can't reproduce ...
9
votes
1answer
137 views
Detecting if a front end token is available to execute
How can I detect if a front end token is available to execute? Alternately, how can I detect if a front end token failed to execute?
Example: the Edit -> Copy command is not available if nothing is ...
15
votes
2answers
914 views
How to evaluate a notebook from the command line?
How can we evaluate a Mathematica notebook from the command line (i.e. when running the kernel in command line mode)?
Suppose we're working on a remote machine. I know it is possible to convert ...
8
votes
5answers
203 views
Evaluate current cell without leaving or losing the position in it in Mathematica
I am experimenting with logo designs in Mathematica (8 or above) using the notebook interface and I want to change the generating formula A LOT. The problem is I only know SHIFT + ENTER which makes me ...
4
votes
4answers
363 views
Times and NonCommutativeMultiply, handing the difference automatically
I've got some symbols which should are non-commutative, but I don't want to have to remember which expressions have this behaviour whilst constructing equations.
I've had the thought to use ...
3
votes
3answers
175 views
Controlling the Rasterize[] width for notebook-related expressions
Update Mr Wizard's answer gives pixel-perfect results, but it is Windows-only and destroys the clipboard contents. My answer should work on any platform, but it's less precise: e.g. it omits In/Out ...
14
votes
5answers
296 views
Mouseover & Dynamic in Mathematica
Could anyone point out why this is not working in Mathematica 8:
DynamicModule[{x = Pink},
Row[
{Style["Hello", x],
Mouseover[
x = Green; "World",
x = Blue; "World"]}]]
What I expect ...
7
votes
1answer
274 views
Is it possible to invoke Mathematica's diff functionality from the command line?
TortoiseSVN (as well as other Tortoise clients) include a script to diff notebook files in Mathematica. Diff functionality for Mathematica is implemented in the AuthorTools package (perhaps there is ...
5
votes
2answers
395 views
Paste Mathematica code so that's it's broken into separate input cells
I often copy Mathematica code from websites (such as SO) to a notebook. The code usually gets pasted as a single input cell. I'm looking for a simple way to paste it as several input cells for ...
3
votes
5answers
420 views
How to modify OUTPUT font type?
Is it possible to change the OUTPUT font type instead of the default one? How?
This is my default stylesheet: http://filefactory.com/file/cfc2cb0/n/blueOutput.nb
Thanks!
6
votes
1answer
179 views
Temporarily disabling all input cells in a section of a notebook
Is there a way to disable all input cells in a cell group / section, in a way that is easily reversed later?
My aim is to keep a section of a notebook intact, but prevent it from being evaluated when ...
5
votes
2answers
240 views
How to run initialization code for a palette?
Occasionally it would be preferable to have some initialization code for palettes (of buttons). For example, it could define some functions that are used by palette buttons.
What is the easiest and ...
5
votes
2answers
319 views
Change the equation background color in text style
In Mathematica when your writing to a Text styled cell, if you create an formatted equation, for example pressing "x ctrl_ a", the background color changes while the equation is selected. Does anyone ...
5
votes
1answer
825 views
How to modify the default stylesheet?
Each time I create a new notebook, I have to set the magnification to 150% and modify the output color to blue.
Is there a way to automate this using stylesheets or other features?
5
votes
5answers
776 views
Self-restarting MathKernel - is it possible in Mathematica?
This question comes from the recent question "Correct way to cap Mathematica memory use?"
I wonder, is it possible to programmatically restart MathKernel keeping the current FrontEnd process ...
5
votes
3answers
229 views
What is the minimal difference in RGB color values which Mathematica renders and exports as different colors?
I was amazed when I found that Mathematica gives True for the following code (on 32 bit Windows XP with Mathematica 8.0.1):
Rasterize[Graphics[{RGBColor[0, 0, 0], Disk[]}]] ===
...
4
votes
1answer
314 views
Uncaught Throw generated by JLink or UseFrontEnd
This example routine generates two Throw::nocatch warning messages in the kernel window. Can they be handled somehow?
The example consists of this code in a file "test.m" created in C:\Temp:
...
3
votes
5answers
168 views
CellDingbat is below the first line of the Cell
According to the Documentation, "Dingbats are placed to the left of the main contents of a cell, aligned with the first line of the contents." But when I evaluate
CellPrint@Cell[BoxData["Text"], ...
2
votes
2answers
186 views
Keyboard navigation of cell grouping hierarchy?
I find cell grouping very useful in organizing my notebooks. I've been navigating this hierarchy by clicking with the mouse in the brackets on the right hand side of the notebook, but that's kind of ...
7
votes
5answers
1k views
mathematica start front end and eval notebook from command line
Is there a way to start up a mathematica front end (GUI) from a (Windows) command prompt and have it eval a notebook without further user action?
even though mathematica.exe takes the -run and ...
2
votes
4answers
319 views
How to create a notebook with a properly formatted expression
I have a Mathematica expression generated by another program, which I would like to open in a notebook, properly formatted. For instance, the other program generates this:
...
7
votes
2answers
310 views
Overlapped Mesh lines in ContourPlot3D
I have a problem with rendering of Mesh lines on a 3D surface produced by ContourPlot3D in Mathematica 7.0.1:
p=ContourPlot3D[x^4+y^4+z^4-(x^2+y^2+z^2)^2+3(x^2+y^2+z^2)==3,
{x, -2,2}, {y, -2, ...
2
votes
3answers
246 views
How to align first column and first row in Grid independently from others?
How to specify separate alignments for the first column (excluding first row in this column), first row (excluding first element in this row) and all other elements in the Grid? It is preferable to do ...
4
votes
1answer
777 views
Why doesn't running ClearAll[“Global`*”] from a custom Palette update local variables colors?
I created a custom palette, with an ActionMenu that executes ClearAll["Global`*"]. It performs the desired action, but the frontend doesn't instantly update the colors from black to blue (standard), ...
6
votes
1answer
252 views
Dangerous symbol names that begin with a lowercase letter
I am looking for a full list of dangerous symbol names that begin with a lowercase letter in Mathematica.
At this moment I know three such names: min, max and lim. These names appear in the ...
10
votes
2answers
357 views
SaveDefinitions considered dangerous
SaveDefinitions is a nice option of Manipulate. It causes Manipulate to store any definitions used for its creation inside the Manipulate panel. A Manipulate made this way can be copied to an empty ...
4
votes
1answer
85 views
Is it possible to create MakeBoxesStop wrapper?
It is known that output expressions are passed through MakeBoxes to turn the graphics expressions into the box language which the front end uses to represent graphics (when $Output has default option ...
5
votes
3answers
418 views
Convenient way to add inline formatting to usage Messages
Usage Messages of built-in functions have embedded in-line formatting. For example:
In[1]:= ActionMenu::usage // FullForm
Out[1]//FullForm=
"\!\(\*RowBox[{\"ActionMenu\", \"[\", ...
3
votes
2answers
131 views
Self-destructive Button inside Column
How to create a Button which will be displayed only when the value of some global FrontEnd setting is False and will self-destruct with entire row of the Column after pressing it setting this value to ...
2
votes
1answer
142 views
Creating Palette for switching .NB-associations between installed versions of Mathematica
I would like to create a palette for switching .NB-file associations between installed versions of Mathematica under Windows.
At this moment I have developed the following code for enumerating ...
5
votes
2answers
842 views
how to align comments in Mathematica notebook?
I do not know if this was asked before or not. Simple formating issue.
I noticed it is sometimes hard to align comments (----) on top of each others. Must be a font type issue. It just looks a little ...
4
votes
3answers
380 views
TableForm with TableHeadings aligned to Left but the content of table aligned to Right
TableForm with TableHeadings option is a quick and easy way to display good-looking classical table in Mathematica FrontEnd. The only problem is that it is common to display such a table with headings ...
3
votes
2answers
122 views
Making customized InputForm and ShortInputForm
I often wish to see the internal representation of Mathematica's graphical objects not in the FullForm but in much more readable InputForm having the ability to select parts of the code by ...
7
votes
1answer
402 views
How to export graphics in “Working” style environment rather than “Printout”?
I have learned recently that Export in Mathematica uses by default the "Printout" screen style environment rather than "Working" when exporting to PDF. It sometimes results in FontSize fluctuations in ...
6
votes
2answers
162 views
Context unique to each group at a specified level
Recent versions of Mathematica provide the option of having a unique $Context for each cell group, via:
Evaluation > Notebook's Default Context > Unique to Each Cell Group
This is an appealing ...
16
votes
3answers
793 views
Getting the Mathematica front end to obey the FontFamily option
When it comes to Chinese characters, I am unable to get the Front End of Mathematica to use the fonts of my choice. How can I get it to use the fonts I need?
Here I provide two screenshots to show ...
3
votes
2answers
406 views
Styling 3D plots as it was in Mathematica 5
I like quiet and undisturbed color gamut and lighting of 3D plots in Mathematica 5.
Is it possible to style 3D plots in Mathematica 7 exactly as it was in Mathematica 5?
Plot3D[Sin[x y], {x, 0, Pi}, ...
12
votes
1answer
612 views
Remap Caps lock key to Esc in Mma 7
TLDR: How do I get CapsLock to translate to "ShortNameDelimiter" in Mma 7?
I like pretty text in my mma notebooks, and often define functions as f[\[Alpha]_] =... so as to match the exact ...
6
votes
2answers
252 views
Making a working copy of the legacy documentation for version 5 inside new versions of Mathematica
In new versions of Mathematica we have fully functional old-fashioned Mathematica Help Browser. But the legacy documentation of version 5 is not included in new versions of Mathematica. This legacy ...
5
votes
2answers
215 views
Mathematica Help Browser from Mathematica 5 in new versions of Mathematica
I remember that someone from WRI stated in the official newsgroup that Mathematica 7 still has a working old-fashioned Mathematica Help Browser from Mathematica 5 for compatibility purposes. But I can ...
4
votes
1answer
315 views
Command-line arguments of Mathematica Kernel and FrontEnd
I still know nothing on usage of such command-line options of MathKernel as
-lmverbose
-run cmd
-password "pw"
-pwfile "file"
How are they working and what they are needed for?
Are there other ...
4
votes
1answer
97 views
Problem with Message styling
Consider the following:
printMessage[cellexpr_]:=CellPrint@Cell[cellexpr,"Message",
CellLabel->"(slave Kernel)",ShowCellLabel->True,
...
