Changes

Jump to navigation Jump to search
m
minor adjustments, nothing new
First, have a look at the [[ConTeXt distribution's Fonts|21 provided fonts]] and the associated typescript name:
= Use one Change the provided fontsfont used in the document = To change the font used in the entire document (including headers and footers), use {{cmd|setupbodyfont}} and the associated [[ConTeXt distribution's Fonts|typescript name]]. : <texcode>\setupbodyfont[thetypescriptname]</texcode> By default, the font is used at 11pt. To change the font size, specify the font size with the the typescript name. For example, to switch to 10pt, use: : <texcode>\setupbodyfont[typescriptname, 10pt]</texcode> By default, out the serif (or roman) style of the box =font is used. To switch to sans serif style, add <code>ss</code> to {{cmd|setupbodyfont}}: : <texcode>\setupbodyfont[typescriptname, ss]</texcode> These options can be combined. So, to get sans serif font at 12pt, use: : <texcode>\setupbodyfont[typescriptname, ss, 12pt]</texcode>
; #1. Declare the font you want to use for your document with {{cmd|setupbodyfont}} and the associated [[ConTeXt distribution's Fonts|typescript name]].
:* <texcode>\setupbodyfont[thetypescriptname]</texcode>
; #2. Specify the font size
:* <texcode>\setupbodyfont[xxpt]</texcode>
To learn how to use different alternative styles of a given font, like regular / bold / italic, see the [[Font_Switching]] in the [[Basics]].
<context source=yes>
\setupbodyfont[10pt]
 
\startbuffer[line]
The quick brown fox jumps over the lazy dog
\stopbuffer
\startlines
\normal{Upright: The quick brown fox \getbuffer[line]unknown}\italicbold{Bold: The quick brown fox \getbuffer[line]unknown}\bolditalic{Italic: The quick brown fox \getbuffer[line]unknown}\bolditalic{Bolditalic: The quick brown fox \getbuffer[line]unknown}
\stoplines
</context>
<context source=yes>
\setupbodyfont[pagella,10pt]
 
\startbuffer[line]
The quick brown fox jumps over the lazy dog
\stopbuffer
\startlines
\normal{Upright: The quick brown fox \getbuffer[line]unknown}\italicbold{Bold: The quick brown fox \getbuffer[line]unknown}\bolditalic{Italic: The quick brown fox \getbuffer[line]unknown}\bolditalic{Bolditalic: The quick brown fox \getbuffer[line]unknown}
\stoplines
</context>
== Example ==
 
{{TwoColumnsUnderLevel1
|
This basic input is typeset with the default font, Latin Modern:
<context source=yes>
\setupbodyfont[12pt]
{  \setupbodyfont[7pt]\rm startbuffer[line]The quick brown fox jumps over the lazy dog}\stopbuffer \startbuffer[sample]\startTABLE \NC \type{\rmnormal} \NC \normal{\bf The quick brown fox jumps over the lazy doggetbuffer[line]} \NC \NR \NC \type{\rmitalic} \NC \italic{\it The quick brown fox jumps over the lazy doggetbuffer[line]} \NC \NR \NC \type{\bold} \NC \bold{\ss The quick brown fox jumps over the lazy doggetbuffer[line]} \NC \NR \NC \type{\ss\bf The quick brown fox jumps over the lazy dogbolditalic} \NC \bolditalic{\ssgetbuffer[line]} \it The quick brown fox jumps over the lazy dog}NC \NR\stopTABLE\stopbuffer \startlines\type{\tt The quick brown fox jumps over the lazy dogserif}\serif{\getbuffer[sample]} \type{\tt\bf The quick brown fox jumps over the lazy dogsans}\sans{\getbuffer[sample]} \type{\tt\it The quick brown fox jumps over the lazy dogmono}\mono{\getbuffer[sample]} \type{\math}Inline \math: ${x = \frac{y}{2z} + x_{\text{center}}$\}\stoplines
</context>
|
And let's view the difference with our new set of fonts:
<context source=yes>
\setupbodyfont[12pt]\definefontfamily [MyFontIdentifier] [rm] [texgyrepagella]\definefontfamily [MyFontIdentifier] [ss] [texgyreadventor]\definefontfamily [MyFontIdentifier] [tt] [texgyrecursor]\definefontfamily [MyFontIdentifier] [mm] [stixtwomath]\setupbodyfont[MyFontIdentifier, 7pt]{\rm startbuffer[line]The quick brown fox jumps over the lazy dog}\stopbuffer \startbuffer[sample]\startTABLE \NC \type{\rmnormal} \NC \normal{\bf The quick brown fox jumps over the lazy doggetbuffer[line]} \NC \NR \NC \type{\rmitalic} \NC \italic{\it The quick brown fox jumps over the lazy doggetbuffer[line]} \NC \NR \NC \type{\bold} \NC \bold{\ss The quick brown fox jumps over the lazy doggetbuffer[line]} \NC \NR \NC \type{\ss\bf The quick brown fox jumps over the lazy dogbolditalic} \NC \bolditalic{\ssgetbuffer[line]} \it The quick brown fox jumps over the lazy dog}NC \NR\stopTABLE\stopbuffer \startlines\type{\tt The quick brown fox jumps over the lazy dogserif}\serif{\getbuffer[sample]} \type{\tt\bf The quick brown fox jumps over the lazy dogsans}\sans{\getbuffer[sample]} \type{\tt\it The quick brown fox jumps over the lazy dogmono}\mono{\getbuffer[sample]} \type{\math}Inline \math: ${x = \frac{y}{2z} + x_{\text{center}}$\}\stoplines
</context>
}}
 
 
[[Category:Fonts]]

Navigation menu