The mathematica-frontend tag has no wiki summary.
18
votes
0answers
387 views
Point Renderings Slightly Off in Mathematica [migrated]
The Mathematica code
f := #1 + Sin[2 #1] &;
inflectionPoints = Table[{x, f[x]}, {x, -Pi, Pi, Pi/2}];
stationaryPoints = Union[
Table[{x, f[x]}, {x, -2 Pi/3, Pi/3, Pi}],
Table[{x, f[x]}, ...
17
votes
1answer
449 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 ...
16
votes
2answers
503 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 ...
14
votes
5answers
212 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 ...
12
votes
2answers
199 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 ...
12
votes
1answer
409 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 ...
11
votes
2answers
248 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 ...
9
votes
3answers
231 views
Known issues with copying code from Mathematica to other platforms?
I just noticed that if you have this in MMA (8.0.1 / win7-64):
and you copy it to SO (just ctrl-c ctrl-v), you get this:
(maxY - minY)/stepy/(maxX - minX)/stepx
which is not mathematically ...
9
votes
2answers
816 views
Keyboard shortcut to Un/Comment out code in Mathematica 7?
A keyboard shortcut to comment/uncomment out a piece of code is common in other programming IDE's for languages like Java, .Net. I find it a very useful technique when experimenting through trial and ...
8
votes
1answer
191 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 ...
7
votes
2answers
186 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 ...
7
votes
1answer
102 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 ...
7
votes
5answers
138 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 ...
7
votes
1answer
146 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 ...
6
votes
1answer
140 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 ...
6
votes
1answer
96 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 ...
6
votes
4answers
270 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 ...
6
votes
2answers
123 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, ...
6
votes
1answer
210 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 ...
6
votes
2answers
131 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 ...
6
votes
2answers
206 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
1answer
72 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 ...
5
votes
2answers
194 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 ...
5
votes
2answers
133 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
141 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
154 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
3answers
130 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[]}]] ===
...
5
votes
1answer
74 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
252 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\", \"[\", ...
5
votes
2answers
315 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 ...
5
votes
2answers
148 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 ...
5
votes
1answer
105 views
How to redefine FrontEndEventActions?
Good day,
This question comes from the question on aborting evaluation of the full sequence of inputs.
I think it is probably possible to achieve the desired behavior by redefining ...
5
votes
4answers
163 views
Conversion of expressions by the FrontEnd
Good day,
As I have learned recently there are some types of expressions in Mathematica which are automatically parsed by the FrontEnd.
For example if we evaluate HoldComplete[Rotate[Style[expr, ...
4
votes
4answers
182 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 ...
4
votes
4answers
242 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 ...
4
votes
1answer
189 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), ...
4
votes
3answers
190 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 ...
4
votes
2answers
269 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}, ...
4
votes
1answer
171 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
92 views
Problem with Message styling
Consider the following:
printMessage[cellexpr_]:=CellPrint@Cell[cellexpr,"Message",
CellLabel->"(slave Kernel)",ShowCellLabel->True,
...
4
votes
1answer
148 views
Write below keyboard shortcut
It used to be Ctrl+= in Mathematica 7, but in Mathematica 8 instead of writing below this shortcut starts free-form input. The documentation at tutorial/KeyboardShortcutListing hasn't been updated. ...
3
votes
1answer
120 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 ...
3
votes
3answers
132 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 ...
3
votes
5answers
180 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!
3
votes
1answer
165 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
136 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"], ...
3
votes
2answers
107 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 ...
3
votes
2answers
96 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 ...
3
votes
1answer
240 views
How to partially change the default stylesheet for the current Notebook
Is there a way to make a minor modification of the default appearance of cells in the current Notebook without specifying the all set of options?
For example, I wish to have all Cells with style ...
2
votes
2answers
102 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 ...