diff options
author | Andrew Dunning <adunning@users.noreply.github.com> | 2015-10-19 17:55:56 -0400 |
---|---|---|
committer | Andrew Dunning <adunning@users.noreply.github.com> | 2015-10-19 17:55:56 -0400 |
commit | befc9e2e848f5d0850a798e0a4944a791e4a9ecc (patch) | |
tree | cc7d03be201f1a14be9d23c35dd80d6e5a387ce6 /default.context | |
parent | 60228b40052fd4afaacd69f7d4f253d7ce045734 (diff) | |
download | pandoc-befc9e2e848f5d0850a798e0a4944a791e4a9ecc.tar.gz |
Expand ConTeXt variables; drop MkII support.
Diffstat (limited to 'default.context')
-rw-r--r-- | default.context | 99 |
1 files changed, 72 insertions, 27 deletions
diff --git a/default.context b/default.context index 1bfc6bc14..93602e65b 100644 --- a/default.context +++ b/default.context @@ -1,7 +1,3 @@ -\startmode[*mkii] - \enableregime[utf-8] - \setupcolors[state=start] -\stopmode $if(context-lang)$ \mainlanguage[$context-lang$] $endif$ @@ -9,25 +5,68 @@ $if(context-dir)$ \setupalign[$context-dir$] \setupdirections[bidi=on,method=two] $endif$ - % Enable hyperlinks -\setupinteraction[state=start, color=middleblue] - -\setuppapersize [$if(papersize)$$papersize$$else$letter$endif$][$if(papersize)$$papersize$$else$letter$endif$] -\setuplayout [width=middle, backspace=1.5in, cutspace=1.5in, - height=middle, topspace=0.75in, bottomspace=0.75in] - -\setuppagenumbering[location={footer,center}] - -\setupbodyfont[11pt] - +\setupinteraction + [state=start$if(style)$, + style=$style$$endif$$if(linkcolor)$, + color=$linkcolor$, + contrastcolor=$linkcolor$$endif$$if(title)$, + title=$title$$endif$$if(subtitle)$, + subtitle=$subtitle$$endif$$if(author)$, + author=$author$$endif$$if(keywords)$, + keyword=$keywords$$endif$] +% make chapter, section bookmarks visible when opening document +\placebookmarks[chapter,section,subsection,subsubsection][chapter,section] +\setupinteractionscreen[option=bookmark] + +$if(papersize)$ +\setuppapersize[$for(papersize)$$papersize$$sep$, + $endfor$] +$endif$ +$if(layout)$ +\setuplayout[$for(layout)$$layout$$sep$, + $endfor$] +$endif$ +$if(pagenumbering)$ +\setuppagenumbering[$for(pagenumbering)$$pagenumbering$$sep$, + $endfor$] +$endif$ +\definefontfeature[default][default][protrusion=quality,expansion=quality,onum=yes] % use microtypography +\setupalign[hz,hanging] +\setupbodyfontenvironment[default][em=italic] % use italic as em, not slanted +$if(mainfont)$ +\definefontfamily[mainfont][serif][$mainfont$] +$endif$ +$if(sansfont)$ +\definefontfamily[sansfont][sans][$sansfont$] +$endif$ +$if(monofont)$ +\definefontfamily[monofont][mono][$monofont$][features=none] +$endif$ +$if(mathfont)$ +\definefontfamily[mathfont][math][$mathfont$] +$endif$ +\setupbodyfont[mainfont$if(fontsize)$,$fontsize$$endif$] +$if(whitespace)$ +\setupwhitespace[$whitespace$] +$else$ \setupwhitespace[medium] +$endif$ +$if(interlinespace)$ +\setupinterlinespace[$interlinespace$] +$endif$ \setuphead[chapter] [style=\tfd] \setuphead[section] [style=\tfc] \setuphead[subsection] [style=\tfb] \setuphead[subsubsection][style=\bf] +$if(headertext)$ +\setupheadertexts[$headertext$] +$endif$ +$if(footertext)$ +\setupfootertexts[$footertext$] +$endif$ $if(number-sections)$ $else$ \setuphead[chapter, section, subsection, subsubsection][number=no] @@ -45,17 +84,6 @@ $endif$ \setupthinrules[width=15em] % width of horizontal rules -\setupdelimitedtext - [blockquote] - [before={\blank[medium]}, - after={\blank[medium]}, - indentnext=no, - ] - -$if(toc)$ -\setupcombinedlist[content][list={$placelist$}] - -$endif$ $for(header-includes)$ $header-includes$ $endfor$ @@ -65,6 +93,10 @@ $if(title)$ \startalignment[center] \blank[2*big] {\tfd $title$} +$if(subtitle)$ + \blank[3*medium] + {\tfa $subtitle$} +$endif$ $if(author)$ \blank[3*medium] {\tfa $for(author)$$author$$sep$\crlf $endfor$} @@ -76,11 +108,24 @@ $endif$ \blank[3*medium] \stopalignment $endif$ +$if(abstract)$ +\midaligned{\bf Abstract} +\startnarrower[2*middle] +$abstract$ +\stopnarrower +\blank[big] +$endif$ $for(include-before)$ $include-before$ $endfor$ $if(toc)$ -\placecontent +\completecontent +$endif$ +$if(lot)$ +\completelistoftables +$endif$ +$if(lof)$ +\completelistoffigures $endif$ $body$ |