MathGroup Archive 2005

[Date Index] [Thread Index] [Author Index]

Search the Archive

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


  • Prev by Date: Re: Re: Integrate is driving me crazy, please help!
  • Next by Date: Re: assigning functions
  • Previous by thread: holding boxes verbatim
  • Next by thread: Re: holding boxes verbatim