ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* font size in math mode
@ 2010-07-23  7:23 Armin Varmaz
  2010-07-23  8:07 ` Hans Hagen
  0 siblings, 1 reply; 4+ messages in thread
From: Armin Varmaz @ 2010-07-23  7:23 UTC (permalink / raw)
  To: ntg-context

[-- Attachment #1: Type: text/html, Size: 4499 bytes --]

[-- Attachment #2: Type: text/plain, Size: 486 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: font size in math mode
  2010-07-23  7:23 font size in math mode Armin Varmaz
@ 2010-07-23  8:07 ` Hans Hagen
  2010-07-27 11:40   ` Armin Varmaz
  0 siblings, 1 reply; 4+ messages in thread
From: Hans Hagen @ 2010-07-23  8:07 UTC (permalink / raw)
  To: mailing list for ConTeXt users; +Cc: Armin Varmaz

On 23-7-2010 9:23, Armin Varmaz wrote:
> Hi guys
>
> is there a way to put the size fonts in formulas and the size of symbols in
> \mathematics to the local size font, e.g. used in a text box? I found that
> ConTeXt does not use the appropriate font size in {\tfxx } or in \tfx. below a
> mini example.
>
> what am I doing wrong? maybe I damaged my context installation somehow.
>
> Armin
>
> ******
>
> \starttext
>
> this looks normal $x$.
>
> this looks normal \mathematics{x}.
>
> {\tfxx this looks bad $x$.}
>
> {\tfxx this looks bad \mathematics{x}, too.}
>
> {\tfd interestingly this looks good \mathematics{x}.}
>
> {\tfc this looks good \mathematics{x}.}
>
> {\tfb this looks good \mathematics{x}.}
>
> {\tfa this looks good \mathematics{x}.}
>
> {\tfxx this looks bad \mathematics{x}.}
>
> \stoptext

the x sizes are just for text while the a-d sized are for titles and so

nowadays the a-d sizes could be defined in terms of larger bodyfont 
sizes as font class switching is pretty fast

for smaller sizes you can switch to a smaller bodyfont

\definealternativestyle [bigger]  [\setbigbodyfont  \tf] []
\definealternativestyle [smaller] [\setsmallbodyfont\tf] []

\starttext

{
     1\smaller this looks bad \mathematics{x}, too. \the\bodyfontsize\par
     2\smaller this looks bad \mathematics{x}, too. \the\bodyfontsize\par
     3\smaller this looks bad \mathematics{x}, too. \the\bodyfontsize\par
     4\smaller this looks bad \mathematics{x}, too. \the\bodyfontsize\par
}

{
     1\bigger this looks bad \mathematics{x}, too. \the\bodyfontsize\par
     2\bigger this looks bad \mathematics{x}, too. \the\bodyfontsize\par
     3\bigger this looks bad \mathematics{x}, too. \the\bodyfontsize\par
     4\bigger this looks bad \mathematics{x}, too. \the\bodyfontsize\par
}

i'll add the bigger and smaller shortcuts




-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: font size in math mode
  2010-07-23  8:07 ` Hans Hagen
@ 2010-07-27 11:40   ` Armin Varmaz
  2010-07-27 12:56     ` Hans Hagen
  0 siblings, 1 reply; 4+ messages in thread
From: Armin Varmaz @ 2010-07-27 11:40 UTC (permalink / raw)
  To: mailing list for ConTeXt users, Hans Hagen

Hi Hans, hi guys,


thanks for the explanation! 


Does this mean that each time I want to change the font size of the text (e.g. for a floating object or framed text) I must do this manually for mathematics? or is there a way to adopt the font size of the text to mathematics? see below for an example what I mean. Here, I used definetextbackground but the effect remains in floating objects as well. I tried different font styles and different font types, too.


Armin  

********** EXAMPLE


\definealternativestyle[ImportantStyle][{\definedfont[Kurier-Bold at 24pt]}]


\definetextbackground[zhu]
 [location=paragraph,
 background=color,backgroundcolor=orange,
 leftoffset=0.5\bodyfontsize,rightoffset=.5\bodyfontsize,
 topoffset=.5\bodyfontsize,bottomoffset=.5\bodyfontsize,
 style=ImportantStyle,
 frame=off]


\startsetups important:start
 \starttextbackground[zhu]
\stopsetups


\startsetups important:stop
 \endgraf
 \stoptextbackground
\stopsetups


\definestartstop
 [important]
 [before=\setups{important:start},
 after=\setups{important:stop}]


\starttext


this looks normal $x$.


\startimportant
this uses the environment definetextbackground \mathematics{x}.
\stopimportant
\stoptext

****** END EXAMPLE
___________________________________________________________
WEB.DE DSL ab 19,99 Euro/Monat. Bis zu 150,- Euro Startguthaben und 
50,- Euro Geldprämie inklusive! https://freundschaftswerbung.web.de
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: font size in math mode
  2010-07-27 11:40   ` Armin Varmaz
@ 2010-07-27 12:56     ` Hans Hagen
  0 siblings, 0 replies; 4+ messages in thread
From: Hans Hagen @ 2010-07-27 12:56 UTC (permalink / raw)
  To: Armin Varmaz; +Cc: mailing list for ConTeXt users

On 27-7-2010 1:40, Armin Varmaz wrote:
> Hi Hans, hi guys,
>
>
> thanks for the explanation!
>
>
> Does this mean that each time I want to change the font size of the text (e..g. for a floating object or framed text) I must do this manually for mathematics? or is there a way to adopt the font size of the text to mathematics? see below for an example what I mean. Here, I used definetextbackground but the effect remains in floating objects as well. I tried different font styles and different font types, too.

indeed, as math is using another font (or more fonts), so best then do:

\switchtobodyfont[small]\bf

or so. An other alternative is to define a few more sizes:

\setupbodyfontenvironment[default][p=0.8,q=0.6]

\definefontsize[p] \definefontsize[q]

\usetypescript[palatino]

test $x$ {\tfp test $x$} {\tfq test $x$} test




-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-07-27 12:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-07-23  7:23 font size in math mode Armin Varmaz
2010-07-23  8:07 ` Hans Hagen
2010-07-27 11:40   ` Armin Varmaz
2010-07-27 12:56     ` Hans Hagen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).