Re: holding boxes verbatim
- To: mathgroup at smc.vnet.net
- Subject: [mg56248] Re: holding boxes verbatim
- From: bghiggins at ucdavis.edu
- Date: Wed, 20 Apr 2005 05:30:47 -0400 (EDT)
- References: <d42l18$3gf$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Chris, try this combination (In a notebook you will get the 2-D box form, which you can then print) HoldForm[Integrate[x^n, x]] Out[78]=HoldForm[Integrate[x^n, x]] HoldForm[Integrate[x^n, x]] /. n -> 2 Out[79]=HoldForm[Integrate[x^2, x]] ReleaseHold[HoldForm[Integrate[x^n, x]] /. n -> 2] Out[81]=x^3/3 Cheers, Brian