Re: How change frame width in Framed object?
- To: mathgroup at smc.vnet.net
- Subject: [mg77923] Re: How change frame width in Framed object?
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Tue, 19 Jun 2007 07:02:49 -0400 (EDT)
- Organization: The Open University, Milton Keynes, UK
- References: <f55pht$jnl$1@smc.vnet.net>
Murray Eisenberg wrote: > In Mathematica 6.0, how can I change the frame width in a Framed[expr] > object? > > I can change the color, e.g., by including the option FrameStyle->Red. > But something like > > FrameStyle->{Red,Thick} > > or > > FrameStyle->{Red,Thickness[0.8]} > > seems to have no effect. Hi Murray, The following trick might not be the most elegant, but it works: frame the framed expression and set the frame margin to zero. Framed[Framed[1/x + y], FrameMargins -> 0] Regards, Jean-Marc