I have some rather long output from a notebook I run on a remote server. There is a time limit on processes so I typically do NotebookSave[] after any important result. However, some of these results are truncated. I would like to force these (and only these) results to be fully expanded before the notebook saves.
I am aware of the Short command and the option in preferences to define the maximum byte size of output. However, I really do not know how large (in bytes or lines) the output is going to be. (Yes, I could experiment but it seems like there should be an easier way.) I tried Short[%,Infinity] but that didn't work. Any thoughts?
Shortinstead ofSmall. – Ajasja May 18 '12 at 19:18data(eg a variable) instead of%(which is a shortcout forOut). It is the Out object that is no longer available. Try it with the example below and you will see, that even after reopening the notebook you can use show more and show less, without re-evaluating the cell. – Ajasja May 19 '12 at 06:37