Skip to main content

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.

Filter by
Sorted by
Tagged with
1 vote
2 answers
188 views

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$? ...
Jamai-Con's user avatar
  • 183
1 vote
1 answer
173 views

Is there a way to quickly print all of the plots (and nothing else) in a notebook?
Tom's user avatar
  • 11
0 votes
0 answers
80 views

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 ...
Michiel van Mens's user avatar
4 votes
0 answers
93 views

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 ...
Aharon Naiman's user avatar
2 votes
0 answers
211 views

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 ...
Steven Thomas Hatton's user avatar
1 vote
0 answers
44 views

I am launching a notebook from another notebook: NotebookEvaluate[ FileNameJoin[{NotebookDirectory[], "path-to-notebook"}]]]; The latter contains ...
John Taylor's user avatar
  • 6,063
0 votes
0 answers
71 views

For a simple demostration of the behavior, note that the print statements in this expression appear in the Messages window: ...
Tapiocaweasel's user avatar
1 vote
0 answers
73 views

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 ...
tupoliedro's user avatar
3 votes
1 answer
193 views

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 ...
Learner's user avatar
  • 259
2 votes
4 answers
485 views

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 ...
Jamai-Con's user avatar
  • 183
0 votes
1 answer
82 views

I have a function with the following (simplified) structure: ...
michelangelov's user avatar
1 vote
0 answers
111 views

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 ...
Jakob's user avatar
  • 171
1 vote
1 answer
450 views

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....
Jakob's user avatar
  • 171
1 vote
1 answer
414 views

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 ...
Jakob's user avatar
  • 171
0 votes
0 answers
20 views

I would like to print data within a signle input block in a way something like this: ...
Mari's user avatar
  • 1
1 vote
0 answers
68 views

For debugging, I print out the SessionTime. In the Notebook it looks like: ...
Aharon Naiman's user avatar
0 votes
1 answer
86 views

This example from Power Programming in Mathematica doesn't work for me anymore: the values used for rootfinding are not printed during evaluation. What changed? Is there a new way to reproduce the old ...
Diffycue's user avatar
  • 1,973
0 votes
0 answers
64 views

I have been trying for a long time to generate a question test where operations with 2 rationals appear printed. Can someone help me with the code? shows the following errors. a) The options appear ...
Pamela's user avatar
  • 107
0 votes
2 answers
139 views

So I have factorized a transfer function and stored the terms in a variable. I want to print the product of terms without Mathematica joining them and without a break line. I have managed the first, ...
Granger Obliviate's user avatar
2 votes
1 answer
143 views

In the output of a script that calls Mathematica I would like to be able to differentiate lines printed by mathematica from lines printed by something else. I thought of prefacing lines printed by ...
Kvothe's user avatar
  • 4,931
0 votes
0 answers
99 views

I want to include a table (or really a Grid) object in my notebook that explains what mathematical expressions some variables in my code correspond to. For example, if I have the variable ...
Johnny's user avatar
  • 33
4 votes
0 answers
74 views

None of the links bellow seem to answer the problem with printing graphics "scaled to the real world" anymore: real size image printing exporting pdf with a precise page dimension in metric ...
azerbajdzan's user avatar
  • 32.8k
0 votes
1 answer
138 views

I would like to print $a^\dagger$ (meaning conjugate transpose), but using Mathematica library function ConjugateTranspose[a] (displayed as $a^\dagger$ when typing <...
Neo's user avatar
  • 163
2 votes
1 answer
283 views

I want to manually tag images. For example, we prepare a list of images like imgList = Table[Rasterize[i, ImageSize -> 50], {i, {a, b, c}}] it gives Now I made ...
matheorem's user avatar
  • 17.7k
1 vote
0 answers
50 views

I have a Mathematica 13 notebook that includes some illustrations that repeat across pages when the document is printed. The figure is not duplicated in the notebook - there are not two figure cells ...
Doug Kimzey's user avatar
  • 2,299
3 votes
0 answers
607 views

reported to WRI. ID [CASE:4950759] I just found a very serious problem in V 13.1. Hoping someone will have a workaround. I am able to reproduce this each time. V 13.1 on windows 10 pro. All from ...
Nasser's user avatar
  • 156k
1 vote
1 answer
171 views

Consider this example: ...
Adalbert Hanßen's user avatar
3 votes
2 answers
300 views

I am looking for something which acts like Print, preferably with the same syntax, which lets me arrange things in columns of proper width (i.e. if an item in a ...
Adalbert Hanßen's user avatar
4 votes
2 answers
347 views

I have obtained a formula in Mathematica and I want to transfer it to Microsoft Word so I did this: ...
Wisdom's user avatar
  • 1,318
1 vote
1 answer
236 views

Imagine I want to track the progress of constructing a complex Table or Do object by temporarily printing the iteration number. ...
sam wolfe's user avatar
  • 5,023
0 votes
1 answer
121 views

My code is ...
Akut Luna's user avatar
  • 101
1 vote
0 answers
133 views

how to tile images in a pdf A4 page such that most of the space is used up? here is my attempt: ...
podge cassidy's user avatar
3 votes
3 answers
196 views

This expression: Det[Array[a, {3, 3}]] is evaluated as: $-a(1,3) a(2,2) a(3,1)+a(1,2) a(2,3) a(3,1)+a(1,3) a(2,1) a(3,2)-a(1,1) a(2,3)a(3,2)-a(1,2) a(2,1) a(3,3)+a(...
Lai Yu-Hsuan's user avatar
1 vote
1 answer
238 views

I am executing scripts on command line (cli) using wolfram -script code.m. However I couldn't find a solution that can print data in a grid like or fixed-width ...
lineage's user avatar
  • 1,306
1 vote
0 answers
77 views

I have an external package that uses the following function internally to print messages, PrintOutput[x__] := WriteString[$Output, x]; I want to block all the ...
Epsilon's user avatar
  • 1,122
2 votes
1 answer
240 views

How to print a notebook in color? When I select File>Print from the menu the output is in black and white, except error messages and lines in plots. I need to print the actual color version of the ...
Ed Davis's user avatar
0 votes
0 answers
59 views

I have produced a figure and am trying to print it in A4 paper. How can I force the figure to fill the upper part of my page? For example, see: I'd like to force that figure to occupy all the upper ...
Red Banana's user avatar
  • 5,613
1 vote
0 answers
117 views

Bug introduced in 12.2 or earlier and fixed in 12.3 What's is going on here with the print display in my Mathematica? Has anyone else seen this behavior? The notebook looks completely normal in the ...
dionys's user avatar
  • 4,371
2 votes
1 answer
120 views

I'm writing some operations for Young tableaus and I would like the evaluation of an expression of type young[a_] to be printed the same as ...
user3257842's user avatar
1 vote
0 answers
363 views

My data is data = {{1, 1, 1, 1, 0.469258}, {1, 1, 1, 2, 0.}, {1, 1, 1, 3, -0.000123615}} On linux-like systems there is a printf...
yarchik's user avatar
  • 23.2k
11 votes
1 answer
413 views

12.0.0 for Microsoft Windows (64-bit) (April 6, 2019) How do I get my graphic to look the same in PDF as it does in a Notebook? This is what the graphic looks like in the FrontEnd: This is how the ...
Steven Thomas Hatton's user avatar
2 votes
2 answers
359 views

Below is the code to evaluate the function. I am trying to print the function values at a specified coordinate as shown in ActCoor. ...
user75507's user avatar
  • 137
0 votes
0 answers
121 views

Edit I think I figured out what was wrong. Since I was adding in Print[m] after I ran the loop, I had to clear my variables if I wanted to run the loop again. I ...
imarben007's user avatar
2 votes
1 answer
229 views

I want to see the intermediate steps of my Program.I have placed Echo in places where it matters such as before plugging in a relation and before simplifying the expression,so that i can see all the ...
Irtiza's user avatar
  • 576
0 votes
0 answers
266 views

My notebook looks fine on screen, but Dataset output is truncated in printing. I've read similar queries (as long back as 6 years ago) and experimented thoroughly with no success (including all print ...
PaulCommentary's user avatar
1 vote
2 answers
1k views

Although I searched a bit on google but did not find a quick and easy answer. So suppose we have an array with, say 3 elements X[1]={a,b};X[2]={w,f,s};X[3]={t,y,u}; ...
Epsilon's user avatar
  • 1,122
0 votes
2 answers
268 views

My question essentially asks everything but I shall rephrase it to make certain it is well understood. 1. How to print all entries in rows of a column so that they align perfectly at the decimal ...
Jules Manson's user avatar
  • 2,507
3 votes
1 answer
184 views

I managed to add footers and headers to my document when I print it. But there seems to be no chance to have anything other than text. How can I add a graphics like a logo or an image? something like:...
Ralf Eichhorn's user avatar
5 votes
1 answer
221 views

I want to create a pdf file with several pages. Each page should contain only an image without any margins. It works fine when I'm exporting just one image as pdf, but some weird margins appear when I'...
Dmitriy's user avatar
  • 61