Questions tagged [printing]
Questions about printing from Mathematica. Includes questions about scaling output, printing to PDF, specifying headers and footers and other layout elements, the printing environment style sheet version etc.
192 questions
1
vote
2
answers
188
views
Using Print for multiple numbers in a row
Do you know of a direct way to fix the following code in order for it to print every integer $k$ in the interval $[1, 5]$, a blank space, and aftewards its square $k^2$?
...
1
vote
1
answer
173
views
Print just the plots in a notebook [duplicate]
Is there a way to quickly print all of the plots (and nothing else) in a notebook?
0
votes
0
answers
80
views
Calculating distance between objects in een Graphic image (printing Laser Cutter)
I am converting a drawing into a grid of black circles. I want to send this new drawing to a laser cutter. The laser cutter should cut out all the black circles. To get ...
4
votes
0
answers
93
views
Extra List[] in Short[] output [closed]
This was closed due to:
simple mistake ... or else it is easily found in the documentation
I see no comment indicating either. Quite the opposite, as the comments ...
2
votes
0
answers
211
views
With both 14.0 and 14.1 Save as PDF (print preview) has become completely mangled
For over a decade, I have been using the same method of creating and saving notebooks as PDF. For some reason saving to PDF started to produce complete gibberish for most of the styles I use. It ...
1
vote
0
answers
44
views
How to inactivate Print when launching a notebook from another notebook? [duplicate]
I am launching a notebook from another notebook:
NotebookEvaluate[
FileNameJoin[{NotebookDirectory[], "path-to-notebook"}]]];
The latter contains ...
0
votes
0
answers
71
views
Can one force Print[] statements within a Dynamic[] to appear in the Notebook? If so, should one ever do that?
For a simple demostration of the behavior, note that the print statements in this expression appear in the Messages window: ...
1
vote
0
answers
73
views
Stop AutoScroll with PrintTemporary
I would like the workaround in this thread, but for PrintTemporary instead of Print.
In particular, I have followed the answer from @b3m2a1 (which works fine for Print) and tried to adapt it to ...
3
votes
1
answer
193
views
Print in TableForm
Hi I have this code which runs fine, however it does not print things at the end in nice TableForm. I want it to print things nicely in the form of a table with some headings. However if I use ...
2
votes
4
answers
485
views
Horizontal version of Print[]
With the following code I produce the binary digits of n=13:
n=13;
Q = Quotient[n, 2];
While[Q != 0, Print[Mod[n, 2]]; Q = Quotient[n, 2]; n = Q]
The problem is ...
0
votes
1
answer
82
views
Print into different cell groups inside module
I have a function with the following (simplified) structure:
...
0
votes
1
answer
79
views
1
vote
0
answers
111
views
Hyperlinks in plain text not preserved when saving in PDF format in Mathematica V13
I have a notebook containing hyperlinks, but when I save it in pdf format (print to PDF) the hyperlinks are not blue and not clickable.
According to Hyperlinks not preserved when saving in PDF format ...
1
vote
1
answer
450
views
Pdf export is heavily flawed for simplest possible notebook such as a=b+c
File > save As ... > pdf (or print as pdf) gives me extremely bad results even for the most basic simplest possible Mathematica notebooks.
Here a simple example where I can reproduce the problem....
1
vote
1
answer
414
views
How to publish a Mathematica notebook to a journal as supplementary material?
I've done part of a proof via Mathematica. In the appendix of the paper I've linked to this published notebook, since I misunderstood "With any paid subscription plan, all files stored in the ...