\startenvironment luametatex-style % \environment luatex-style % \logo[LUAMETATEX] {\Lua Meta\TeX} % todo: use \useMPlibrary[lua] \enabletrackers[fonts.usage] \usemodule[fonts-statistics] \setuplayout [height=middle, width=middle, backspace=2cm, topspace=10mm, bottomspace=10mm, header=10mm, footer=10mm, footerdistance=10mm, headerdistance=10mm] \setuppagenumbering [alternative=doublesided] \setuptolerance [stretch,tolerant] \setuptype [lines=hyphenated] \setuptyping [lines=hyphenated] \setupitemize [each] [packed] \definesymbol[1][\Uchar"2023] \definesymbol[2][\endash] \definesymbol[3][\wait] % we want to catch it \setupitemize [each] [headcolor=maincolor, symbolcolor=maincolor, color=maincolor] \setupwhitespace [medium] \setuptabulate [blank={small,samepage}, headstyle=bold, rulecolor=maincolor, rulethickness=1pt, foregroundcolor=white, foregroundstyle=\ss\bfx\WORD, backgroundcolor=maincolor] \setupcaptions [headcolor=darkblue] \startluacode local skipped = { 'id', 'subtype', 'next', 'prev' } local function showlist(l,skipped) if l then l = table.tohash(l) if skipped then for i=1,#skipped do l[skipped[i]] = nil end end l = table.sortedkeys(l) local n = #l for i=1,n do context("%s{\\tttf %s}", (i == 1 and "") or (i == n and " and ") or ", ", l[i]) end end end function document.functions.showvalues(l) if l then local n = table.count(l) local i = 0 for k, v in table.sortedhash(l) do i = i + 1 context("%s{\\tttf %s} (%i)", (i == 1 and "") or (i == n and " and ") or ", ", v,k) end end end function document.functions.showfields(s) local t = string.split(s,',') showlist(node.fields(t[1],t[2]),skipped) end function document.functions.showid(s) local t = string.split(s,',') local i = t[1] and node.id(t[1]) local s = t[2] and node.subtype(t[2]) if s then context('{\\tttf %s}, {\\tttf %s}',i,s) else context('{\\tttf %s}',i) end end function document.functions.showsubtypes(s) showlist(node.subtypes(s)) end \stopluacode \unexpanded\def\showfields #1{\ctxlua{document.functions.showfields("#1")}} \unexpanded\def\showid #1{\ctxlua{document.functions.showid("#1")}} \unexpanded\def\showsubtypes#1{\ctxlua{document.functions.showsubtypes("#1")}} \unexpanded\def\showvalues #1{\ctxlua{document.functions.showvalues(node.values("#1"))}} \unexpanded\def\showtypes {\ctxlua{document.functions.showvalues(node.types())}} \definecolor[blue] [b=.5] \definecolor[red] [r=.5] \definecolor[green] [g=.5] %definecolor[maincolor] [b=.5] %definecolor[keptcolor] [b=.5] %definecolor[othercolor][r=.5,g=.5] \definecolor[maincolor] [b=.5] \definecolor[keptcolor] [b=.5] \definecolor[othercolor][s=.5] \writestatus{luametatex manual}{} \writestatus{luametatex manual}{defining lucodaot} \usebodyfont [lucidaot] \writestatus{luametatex manual}{defining pagella} \usebodyfont [pagella] \writestatus{luametatex manual}{defining cambria} \usebodyfont [cambria] \writestatus{luametatex manual}{defining modern} \usebodyfont [modern] \writestatus{luametatex manual}{defining dejavu} \setupbodyfont[dejavu,10pt] \writestatus{luametatex manual}{} \setuphead [chapter] [align={flushleft,broad},style=\bfd] \setuphead [section] [align={flushleft,broad},style=\bfb] \setuphead [subsection] [align={flushleft,broad},style=\bfa] \setuphead [subsubsection][align={flushleft,broad},style=\bf] \setuphead [chapter] [color=maincolor] \setuphead [section] [color=maincolor] \setuphead [subsection] [color=maincolor] \setuphead [subsubsection][color=maincolor] \setupfloats [ntop=4] \definehead [remark] [subsubsubject] \setupheadertexts [] % \setuplayout % [style=bold, % color=maincolor] \definemixedcolumns [twocolumns] [n=2, balance=yes, before=\blank, after=\blank] \definemixedcolumns [threecolumns] [twocolumns] [n=3] \definemixedcolumns [fourcolumns] [threecolumns] [n=4] % if we do this we also need to do it in table cells % % \setuptyping % [color=maincolor] % % \setuptype % [color=maincolor] \definetyping [functioncall] \startMPdefinitions color luaplanetcolor ; luaplanetcolor := \MPcolor{maincolor} ; color luaholecolor ; luaholecolor := white ; numeric luaextraangle ; luaextraangle := 0 ; numeric luaorbitfactor ; luaorbitfactor := .25 ; vardef lualogo = image ( % Graphic design by A. Nakonechnyj. Copyright (c) 1998, All rights reserved. save d, r, p ; numeric d, r, p ; d := sqrt(2)/4 ; r := 1/4 ; p := r/8 ; fill fullcircle scaled 1 withcolor luaplanetcolor ; draw fullcircle rotated 40.5 scaled (1+r) dashed evenly scaled p withpen pencircle scaled (p/2) withcolor (luaorbitfactor * luaholecolor) ; fill fullcircle scaled r shifted (d+1/8,d+1/8) rotated - luaextraangle withcolor luaplanetcolor ; fill fullcircle scaled r shifted (d-1/8,d-1/8) withcolor luaholecolor ; luaorbitfactor := .25 ; ) enddef ; \stopMPdefinitions \startuseMPgraphic{luapage} StartPage ; fill Page withcolor \MPcolor{othercolor} ; luaorbitfactor := 1 ; picture p ; p := lualogo ysized (5*\measure{paperheight}/10) ; draw p shifted - center p shifted ( \measure{spreadwidth} - .5*\measure{paperwidth} + \measure{spinewidth}, .375*\measure{paperheight} ) ; StopPage ; \stopuseMPgraphic % \starttexdefinition luaextraangle % % we can also just access the last page and so in mp directly % \ctxlua { % context(\lastpage == 0 and 0 or \realfolio*360/\lastpage) % } % \stoptexdefinition \startuseMPgraphic{luanumber} % luaextraangle := \luaextraangle; luaextraangle := if (LastPageNumber < 10) : 10 else : (RealPageNumber / LastPageNumber) * 360 fi; luaorbitfactor := 0.25 ; picture p ; p := lualogo ; setbounds p to boundingbox fullcircle ; draw p ysized 1cm ; \stopuseMPgraphic \definelayer [page] [width=\paperwidth, height=\paperheight] \setupbackgrounds [leftpage] [background=page] \setupbackgrounds [rightpage] [background=page] \definemeasure[banneroffset][\bottomspace-\footerheight-\footerdistance+2cm] \startsetups pagenumber:right \setlayerframed [page] [preset=rightbottom,x=1.0cm,y=\measure{banneroffset}] [frame=off,height=1cm,offset=overlay] {\strut\useMPgraphic{luanumber}} \setlayerframed [page] [preset=rightbottom,x=2.5cm,y=\measure{banneroffset}] [frame=off,height=1cm,width=1cm,offset=overlay, foregroundstyle=bold,foregroundcolor=maincolor] {\strut\pagenumber} \setlayerframed [page] [preset=rightbottom,x=3.5cm,y=\measure{banneroffset}] [frame=off,height=1cm,offset=overlay, foregroundstyle=bold,foregroundcolor=maincolor] {\strut\getmarking[chapter]} \stopsetups \startsetups pagenumber:left \setlayerframed [page] [preset=leftbottom,x=3.5cm,y=\measure{banneroffset}] [frame=off,height=1cm,offset=overlay, foregroundstyle=bold,foregroundcolor=maincolor] {\strut\getmarking[chapter]} \setlayerframed [page] [preset=leftbottom,x=2.5cm,y=\measure{banneroffset}] [frame=off,height=1cm,width=1cm,offset=overlay, foregroundstyle=bold,foregroundcolor=maincolor] {\strut\pagenumber} \setlayerframed [page] [preset=leftbottom,x=1.0cm,y=\measure{banneroffset}] [frame=off,height=1cm,offset=overlay] {\strut\useMPgraphic{luanumber}} \stopsetups \unexpanded\def\nonterminal#1>{\mathematics{\langle\hbox{\rm #1}\rangle}} % taco's brainwave -) .. todo: create a typing variant so that we can avoid the !crlf \newcatcodetable\syntaxcodetable \unexpanded\def\makesyntaxcodetable {\begingroup \catcode`\<=13 \catcode`\|=12 \catcode`\!= 0 \catcode`\\=12 \savecatcodetable\syntaxcodetable \endgroup} \makesyntaxcodetable \unexpanded\def\startsyntax {\begingroup\catcodetable\syntaxcodetable \dostartsyntax} \unexpanded\def\syntax {\begingroup\catcodetable\syntaxcodetable \dosyntax} \let\stopsyntax \relax \unexpanded\def\syntaxenvbody#1% {\par \tt \startnarrower % \maincolor #1 \stopnarrower \par} \unexpanded\def\syntaxbody#1% {\begingroup % \maincolor \tt #1% \endgroup} \bgroup \catcodetable\syntaxcodetable !gdef!dostartsyntax#1\stopsyntax{!let