RE: Controlling the size of the integral sign
- To: mathgroup at smc.vnet.net
- Subject: [mg91675] RE: [mg91664] Controlling the size of the integral sign
- From: "David Park" <djmpark at comcast.net>
- Date: Thu, 4 Sep 2008 06:38:49 -0400 (EDT)
- References: <200809031045.GAA00814@smc.vnet.net> <12524859.1220445626114.JavaMail.root@m02>
David Park wrote:
>If an integral appears inside a Grid or a Column, which has
>DefaultBaseStyle -> "Grid", it is much shorter in height than in a regular
>output expression.
>
>Regular expression:
>
>Integrate[(f[x] + g[x]), {x, a, b}]
>
>Inside a Column or Grid expression.
>
>Column[{Integrate[(f[x] + g[x]), {x, a, b}]}]
>
>If I use the option SpanMinSize it also increases the size of brackets and
>parentheses.
>
>Column[{Integrate[(f[x] + g[x]), {x, a, b}]},
> BaseStyle -> {SpanMinSize -> 2}]
>
>How can I get back the taller integral sign without changing other spanning
>characters?
>
>
>
I thought we discussed this before. GridBox has
AllowScriptLevelChange->True. So, use either:
Column[{Integrate[(f[x] + g[x]), {x, a, b}]}, AllowScriptLevelChange->False]
or
Column[{Style[Integrate[(f[x] + g[x]), {x, a, b}], ScriptLevel->0]}]
The first option above colors AllowScriptLevelChange red, but works.
Carl
Thanks Carl. At my age I'll probably ask again - unless
AllowScriptLevelChange is a named option for Column and Grid and there is a
link to it on the Column, Grid and ScriptLevel Help pages.
David Park
djmpark at comcast.net
http://home.comcast.net/~djmpark
- References:
- Controlling the size of the integral sign
- From: "David Park" <djmpark@comcast.net>
- Controlling the size of the integral sign