context-2015.05.18.20150601/0000755000175000017500000000000012532721337014413 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/0000755000175000017500000000000012532721331016471 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/bibtex/0000755000175000017500000000000012532721331017746 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/bibtex/bst/0000755000175000017500000000000012532721331020536 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/bibtex/bst/context/0000755000175000017500000000000012162137537022232 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/bibtex/bst/context/cont-ab.bst0000644000175000017500000005115512130411274024262 0ustar norbertnorbert% Written by Taco Hoekwater % Donated to the Public Domain. Use at your own risk. % Preliminary version, 19-aug-1999. % New 17/9/2003: 'eprint' and 'doi' tags % This style produces citations in a format the ConTeXt can handle. % It outputs a large collection of labels so that context can decide % which one to use. % % Actually, there are a number of separate bst files that change in % only two lines: the ITERATEs right before the two SORTs can % have different values, sorting by either one of % % -------------------------- cont-master.bst author % - the author (+year, title) : cont-au.bst author % - the title (+author, year) : cont-ti.bst title % - the short key a la abbrev : cont-ab.bst clabel % - nothing at all (cite order): cont-no.bst none % % % Output gives the following computed info: % % - the total number of bib entries % - the longest short label % % And per entry: % % - the key % - the entry type % - the yeardata for crossrefs % - the authordata for crossrefs % - the short key % - the .bib appearance number % Commands that may be written to the bbl file (not counting stuff the % bib database defines itself): % % \setuppublicationlist % \startpublication % \stoppublication % Field entries with a strange format/appearance: % % \artauthor, % \editor, % \author: \xxx[junior]{firstnames}[inits]{von}{lastname} % \etalchar: appears in short keys sometimes % \maybeyear: appears in \pubyear sometimes % % And these commands for the entries have only one argument, % precisely matching the corresponding field. Note that there % are more fields supported than in the standard bst files. % % \abstract % \annotate % \arttitle % \chapter % \city % \comment % \country % \crossref % \edition % \isbn % \issn % \issue % \journal % \keyword % \keywords % \lang % \month % \names % \note % \notes % \organization % \pages % \pubname % \pubyear % \series % \size % \thekey % \title % \bibtype % \volume % \eprint % \doi % \howpublished % \biburl % \lastchecked % for ieee: % \nationality % \assignee % \bibnumber % \day % \dayfiled % \monthfiled % \yearfiled % \revision ENTRY { abstract address annotate author booktitle chapter comment country doi edition editor eprint howpublished institution isbn issn journal key keyword keywords language lastchecked month names note notes number organization pages publisher school series size title type url volume year nationality assignee bibnumber day dayfiled monthfiled yearfiled revision } {} { label extra.label sort.label clabel sort.clabel ordinal.label} STRINGS { s t autype} STRINGS { last.label next.extra nlabel } STRINGS { longest.label last.sort.label} INTEGERS { longest.label.width last.extra.num ordinal.num } INTEGERS { nameptr namesleft numnames } INTEGERS { len } FUNCTION {begin.bib} { #0 'ordinal.num := preamble$ empty$ 'skip$ { preamble$ write$ newline$ } if$ "\setuppublicationlist[samplesize={" write$ longest.label "},totalnumber=" * write$ nlabel "]" * write$ newline$ } FUNCTION {end.bib} { newline$ } FUNCTION {do.out} { duplicate$ empty$ { pop$ pop$ write$} { "{" swap$ * "}" * * write$ pop$ newline$ } if$ } FUNCTION {do.t.out} { duplicate$ empty$ { pop$ pop$ write$} { "{" swap$ "t" change.case$ * "}" * * write$ pop$ newline$ } if$ } FUNCTION {format.year} { year empty$ 'skip$ { "\pubyear{" year * write$ extra.label empty$ { "}" write$ } { "\maybeyear{" extra.label * "}}" * write$ } if$ newline$ } if$ } FUNCTION {start.entry} { ordinal.num #1 + 'ordinal.num := newline$ "\startpublication[" write$ "k=" write$ cite$ "," * write$ "t=" write$ type$ "," * write$ newline$ label write$ "," write$ doi empty$ {} { "o={" write$ doi write$ "}," write$ } if$ newline$ url empty$ {} { "u={" write$ url write$ "}," write$ newline$ } if$ "n=" write$ ordinal.label write$ ",s=" write$ clabel write$ "]" write$ newline$ "" "\lang" language do.out } FUNCTION {stop.entry} { "" "\country" country do.out "" "\note" note do.out "" "\notes" notes do.out "" "\annotate" annotate do.out "" "\eprint" eprint do.out "" "\doi" doi do.out "" "\keyword" keyword do.out "" "\keywords" keywords do.out "" "\comment" comment do.out "" "\abstract" abstract do.out "" "\names" names do.out "" "\size" size do.out "" "\biburl" url do.out "" "\lastchecked" lastchecked do.out "\stoppublication" write$ newline$ } FUNCTION {not} { { #0 } { #1 } if$ } FUNCTION {and} { 'skip$ { pop$ #0 } if$ } FUNCTION {or} { { pop$ #1 } 'skip$ if$ } FUNCTION {field.or.null} { duplicate$ empty$ { pop$ "" } 'skip$ if$ } FUNCTION {format.names} { 's := 'autype := #1 'nameptr := s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { autype write$ s nameptr "{jj}" format.name$ 't := "[" t * "]" * write$ s nameptr "{ff}" format.name$ 't := "{" t * "}" * write$ s nameptr "{f}" format.name$ add.period$ 't := "[" t * "]" * write$ s nameptr "{vv}" format.name$ 't := "{" t * "}" * write$ s nameptr "{ll}" format.name$ 't := "{" t * "}" * write$ newline$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } FUNCTION {format.key} { "" "\thekey" key do.out } FUNCTION {format.artauthors} { author empty$ { format.key } { "\artauthor" author format.names } if$ } FUNCTION {format.authors} { author empty$ { format.key } { "\author" author format.names } if$ } FUNCTION {format.editors} { editor empty$ { format.key } { "\editor" editor format.names } if$ } FUNCTION {format.title} { "" "\title" title do.out "" "\isbn" isbn do.out } FUNCTION {format.t.title} { "" "\title" title do.t.out "" "\isbn" isbn do.out } FUNCTION {format.arttitle} { "" "\arttitle" title do.t.out } FUNCTION {format.journal} { "" "\journal" journal do.out "" "\issn" issn do.out } FUNCTION {tie.or.space.connect} { duplicate$ text.length$ #3 < { "~" } { " " } if$ swap$ * * } FUNCTION {either.or.check} { empty$ 'pop$ { "can't use both " swap$ * " fields in " * cite$ * warning$ } if$ } FUNCTION {format.volume} { "" "\volume" volume do.out } FUNCTION {format.volume.issue} { "" "\volume" volume do.out "" "\issue" number do.out } FUNCTION {format.number.series} { "" "\series" series do.out volume empty$ { "" "\volume" number do.out } { "" "\volume" volume do.out "" "\issue" number do.out } if$ } FUNCTION {format.edition} { "" "\edition" edition do.out "" "\month" month do.out } FUNCTION {format.pages} { "" "\pages" pages do.out } FUNCTION {format.vol.num.pages} { format.volume.issue format.pages } FUNCTION {format.vol.num.page} { format.volume.issue format.pages } FUNCTION {format.type.chapter.pages} { chapter empty$ 'format.pages { "" "\bibtype" type do.out "" "\chapter" chapter do.out } if$ format.pages } FUNCTION {format.booktitle} {"" "\title" booktitle do.out "" "\isbn" isbn do.out } FUNCTION {format.in.ed.booktitle} { booktitle empty$ 'skip$ { format.booktitle } if$ } FUNCTION {format.in.booktitle.or.series} { "" "\series" series do.out booktitle empty$ 'skip$ { editor empty$ { format.booktitle } { format.editors format.booktitle } if$ } if$ } FUNCTION {format.tr.number} {"" "\bibtype" type do.out "" "\volume" number do.out } FUNCTION {format.crossref} { "" "\crossref" crossref do.out } FUNCTION {format.book.crossref} { "" "\volume" volume do.out format.crossref } FUNCTION {format.incoll.inproc.crossref} { format.crossref } FUNCTION {article} { start.entry format.artauthors format.year format.arttitle crossref missing$ { format.journal format.vol.num.pages } { format.crossref format.pages } if$ "" "\month" month do.out stop.entry } FUNCTION {book} { start.entry author empty$ { format.editors } { format.authors } if$ format.year format.title crossref missing$ { format.number.series "" "\city" address do.out "" "\pubname" publisher do.out } { format.book.crossref } if$ format.edition stop.entry } FUNCTION {booklet} { start.entry format.authors format.year format.t.title format.key "" "\pubname" publisher do.out "" "\howpublished" howpublished do.out "" "\city" address do.out stop.entry } FUNCTION {inbook} { start.entry author empty$ { format.editors } { format.authors } if$ format.year format.title crossref missing$ { format.type.chapter.pages format.number.series "" "\city" address do.out "" "\pubname" publisher do.out } { format.type.chapter.pages format.book.crossref } if$ format.edition stop.entry } FUNCTION {incollection} { start.entry format.artauthors format.year format.arttitle format.editors crossref missing$ { format.in.ed.booktitle format.number.series "" "\city" address do.out format.edition format.type.chapter.pages } { format.incoll.inproc.crossref format.type.chapter.pages } if$ "" "\pubname" publisher do.out stop.entry } FUNCTION {inproceedings} { start.entry format.authors format.year format.arttitle crossref missing$ { format.in.booktitle.or.series format.number.series "" "\city" address do.out format.pages } { format.incoll.inproc.crossref format.pages } if$ "" "\pubname" publisher do.out "" "\organization" organization do.out stop.entry } FUNCTION {conference} { inproceedings } FUNCTION {manual} { start.entry format.authors format.year format.title "" "\organization" organization do.out "" "\city" address do.out "" "\edition" edition do.out stop.entry } FUNCTION {mastersthesis} { start.entry format.authors format.year format.t.title "" "\bibtype" type do.out "" "\pubname" school do.out "" "\month" month do.out "" "\city" address do.out stop.entry } FUNCTION {misc} { start.entry format.authors format.year format.t.title format.key "" "\city" address do.out "" "\day" day do.out "" "\month" month do.out "" "\pubname" publisher do.out "" "\howpublished" howpublished do.out stop.entry } FUNCTION {phdthesis} { start.entry format.authors format.title format.year "" "\bibtype" type do.out "" "\month" month do.out "" "\pubname" school do.out "" "\city" address do.out stop.entry } FUNCTION {proceedings} { start.entry format.editors format.year format.title format.number.series "" "\city" address do.out "" "\pubname" publisher do.out "" "\organization" organization do.out stop.entry } FUNCTION {techreport} { start.entry format.authors format.year format.t.title format.tr.number "" "\city" address do.out "" "\pubname" institution do.out stop.entry } FUNCTION {unpublished} { start.entry format.authors format.year format.t.title "" "\month" month do.out stop.entry } % 4 additions from IEEEtran FUNCTION {electronic} { start.entry format.authors format.year format.t.title "" "\month" month do.out "" "\city" address do.out "" "\organization" organization do.out "" "\howpublished" howpublished do.out stop.entry } FUNCTION {patent} { start.entry format.authors format.year format.t.title "" "\bibnumber" number do.out "" "\city" address do.out "" "\nationality" nationality do.out "" "\assignee" assignee do.out "" "\bibtype" type do.out "" "\month" month do.out "" "\monthfiled" monthfiled do.out "" "\yearfiled" yearfiled do.out "" "\day" day do.out "" "\dayfiled" dayfiled do.out stop.entry } FUNCTION {periodical} { start.entry format.editors format.year format.title format.number.series "" "\bibnumber" number do.out "" "\month" month do.out "" "\organization" organization do.out stop.entry } FUNCTION {standard} { start.entry format.authors format.year format.title "" "\bibtype" type do.out "" "\organization" organization do.out "" "\city" address do.out "" "\revision" revision do.out "" "\pubname" institution do.out "" "\howpublished" howpublished do.out "" "\bibnumber" number do.out "" "\month" month do.out stop.entry } FUNCTION {IEEEtranBSTCTL} { } FUNCTION {default.type} { misc } MACRO {jan} {"1"} MACRO {feb} {"2"} MACRO {mar} {"3"} MACRO {apr} {"4"} MACRO {may} {"5"} MACRO {jun} {"6"} MACRO {jul} {"7"} MACRO {aug} {"8"} MACRO {sep} {"9"} MACRO {oct} {"10"} MACRO {nov} {"11"} MACRO {dec} {"12"} READ FUNCTION {initialize.ordinal.label} { #0 'ordinal.num := } FUNCTION {set.ordinal.label} { #1 ordinal.num + 'ordinal.num := ordinal.num int.to.str$ 'ordinal.label := } EXECUTE {initialize.ordinal.label} ITERATE {set.ordinal.label} FUNCTION {sortify} { purify$ "l" change.case$ } FUNCTION {chop.word} { 's := 'len := s #1 len substring$ = { s len #1 + global.max$ substring$ } 's if$ } FUNCTION {format.lab.names} { 's := s #1 "{vv~}{ll}" format.name$ "{" swap$ * "}" * s num.names$ duplicate$ #1 > { pop$ "," * } { pop$ } if$ s num.names$ duplicate$ #2 > { pop$ "{}" * } { #2 < 'skip$ { s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" = { "{}" * } { s #2 "{vv~}{ll}" format.name$ "{" swap$ * "}" * * } if$ } if$ } if$ "{" swap$ * "}," * } FUNCTION {author.key.label} { author empty$ { key empty$ { "{" cite$ * "}," *} { "{" key * "}," * } if$ } { author format.lab.names } if$ } FUNCTION {author.editor.key.label} { author empty$ { editor empty$ { key empty$ { "{" cite$ * "}," *} { "{" key * "}," * } if$ } { editor format.lab.names } if$ } { author format.lab.names } if$ } FUNCTION {editor.key.label} { editor empty$ { key empty$ { "{" cite$ * "}," *} { "{" key * "}," * } if$ } { editor format.lab.names } if$ } FUNCTION {calc.label} { type$ "book" = type$ "inbook" = or 'author.editor.key.label { type$ "proceedings" = 'editor.key.label 'author.key.label if$ } if$ "a=" swap$ * "y=" * year field.or.null purify$ #-1 #4 substring$ * 'label := } INTEGERS { et.al.char.used } FUNCTION {initialize.et.al.char.used} { #0 'et.al.char.used := } EXECUTE {initialize.et.al.char.used} FUNCTION {format.clab.names} { 's := s num.names$ 'numnames := numnames #1 > { numnames #4 > { #3 'namesleft := } { numnames 'namesleft := } if$ #1 'nameptr := "" { namesleft #0 > } { nameptr numnames = { s nameptr "{ff }{vv }{ll}{ jj}" format.name$ "others" = { "{\etalchar{+}}" * #1 'et.al.char.used := } { s nameptr "{v{}}{l{}}" format.name$ * } if$ } { s nameptr "{v{}}{l{}}" format.name$ * } if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ numnames #4 > { "{\etalchar{+}}" * #1 'et.al.char.used := } 'skip$ if$ } { s #1 "{v{}}{l{}}" format.name$ duplicate$ text.length$ #2 < { pop$ s #1 "{ll}" format.name$ #3 text.prefix$ } 'skip$ if$ } if$ } FUNCTION {author.key.clabel} { author empty$ { key empty$ { cite$ #1 #3 substring$ } { key #3 text.prefix$ } if$ } { author format.clab.names } if$ } FUNCTION {author.editor.key.clabel} { author empty$ { editor empty$ { key empty$ { cite$ #1 #3 substring$ } { key #3 text.prefix$ } if$ } { editor format.clab.names } if$ } { author format.clab.names } if$ } FUNCTION {author.key.organization.clabel} { author empty$ { key empty$ { organization empty$ { cite$ #1 #3 substring$ } { "The " #4 organization chop.word #3 text.prefix$ } if$ } { key #3 text.prefix$ } if$ } { author format.clab.names } if$ } FUNCTION {editor.key.organization.clabel} { editor empty$ { key empty$ { organization empty$ { cite$ #1 #3 substring$ } { "The " #4 organization chop.word #3 text.prefix$ } if$ } { key #3 text.prefix$ } if$ } { editor format.clab.names } if$ } FUNCTION {calc.clabel} { type$ "book" = type$ "inbook" = or 'author.editor.key.clabel { type$ "proceedings" = 'editor.key.organization.clabel { type$ "manual" = 'author.key.organization.clabel 'author.key.clabel if$ } if$ } if$ duplicate$ year field.or.null purify$ #-1 #2 substring$ * 'clabel := year field.or.null purify$ #-1 #4 substring$ * sortify 'sort.clabel := } FUNCTION {sort.format.names} { 's := #1 'nameptr := "" s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { nameptr #1 > { " " * } 'skip$ if$ s nameptr "{vv{ } }{ll{ }}{ f{ }}{ jj{ }}" format.name$ 't := nameptr numnames = t "others" = and { "et al" * } { t sortify * } if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } FUNCTION {sort.format.title} { 't := "A " #2 "An " #3 "The " #4 t chop.word chop.word chop.word sortify #1 global.max$ substring$ } FUNCTION {author.sort} { author empty$ { key empty$ { "to sort, need author or key in " cite$ * warning$ } { key sortify } if$ } { author sort.format.names } if$ } FUNCTION {author.editor.sort} { author empty$ { editor empty$ { key empty$ { "to sort, need author, editor, or key in " cite$ * warning$ } { key sortify } if$ } { editor sort.format.names } if$ } { author sort.format.names } if$ } FUNCTION {editor.sort} { editor empty$ { key empty$ { "to sort, need editor or key in " cite$ * warning$ } { key sortify } if$ } { editor sort.format.names } if$ } FUNCTION {presort.title} { calc.label calc.clabel title field.or.null sort.format.title " " * #1 entry.max$ substring$ 'sort.label := sort.label 'sort.key$ := } FUNCTION {presort.author} { calc.clabel calc.label type$ "book" = type$ "inbook" = or 'author.editor.sort { type$ "proceedings" = 'editor.sort 'author.sort if$ } if$ #1 entry.max$ substring$ 'sort.label := sort.label 'sort.key$ := } FUNCTION {presort.clabel} { calc.label calc.clabel clabel sortify duplicate$ 'sort.label := #1 entry.max$ substring$ #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {presort.none} { calc.label calc.clabel "" 'sort.label := "" 'sort.key$ := } ITERATE {presort.clabel} SORT FUNCTION {initialize.extra.label.stuff} { #0 int.to.chr$ 'last.label := "" 'next.extra := #0 'last.extra.num := #0 'ordinal.num := } FUNCTION {forward.pass} { ordinal.num #1 + 'ordinal.num := ordinal.num int.to.str$ 'nlabel := last.label label = { last.extra.num #1 + 'last.extra.num := last.extra.num int.to.chr$ 'extra.label := } { "a" chr.to.int$ 'last.extra.num := "" 'extra.label := label 'last.label := } if$ } FUNCTION {reverse.pass} { next.extra "b" = { "a" 'extra.label := } 'skip$ if$ label extra.label * 'label := clabel extra.label * 'clabel := extra.label 'next.extra := clabel width$ longest.label.width > { clabel 'longest.label := clabel width$ 'longest.label.width := } 'skip$ if$ } EXECUTE {initialize.extra.label.stuff} FUNCTION {initialize.longest.label} { "" 'longest.label := #0 int.to.chr$ 'last.sort.label := "" 'next.extra := #0 'longest.label.width := #0 'last.extra.num := } EXECUTE {initialize.longest.label} ITERATE {forward.pass} REVERSE {reverse.pass} FUNCTION {bib.sort.order.author} { sort.label " " * year field.or.null sortify * " " * title field.or.null sort.format.title * #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {bib.sort.order.title} { sort.label " " * type$ "book" = type$ "inbook" = or 'author.editor.sort { type$ "proceedings" = 'editor.sort 'author.sort if$ } if$ * " " * year field.or.null sortify * #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {bib.sort.order.clabel} { sort.label " " * title field.or.null sort.format.title * #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {bib.sort.order.none} { sort.label 'sort.key$ := } ITERATE {bib.sort.order.clabel} SORT EXECUTE {begin.bib} ITERATE {call.type$} EXECUTE {end.bib} context-2015.05.18.20150601/texmf-dist/bibtex/bst/context/cont-ti.bst0000644000175000017500000005115312130411274024312 0ustar norbertnorbert% Written by Taco Hoekwater % Donated to the Public Domain. Use at your own risk. % Preliminary version, 19-aug-1999. % New 17/9/2003: 'eprint' and 'doi' tags % This style produces citations in a format the ConTeXt can handle. % It outputs a large collection of labels so that context can decide % which one to use. % % Actually, there are a number of separate bst files that change in % only two lines: the ITERATEs right before the two SORTs can % have different values, sorting by either one of % % -------------------------- cont-master.bst author % - the author (+year, title) : cont-au.bst author % - the title (+author, year) : cont-ti.bst title % - the short key a la abbrev : cont-ab.bst clabel % - nothing at all (cite order): cont-no.bst none % % % Output gives the following computed info: % % - the total number of bib entries % - the longest short label % % And per entry: % % - the key % - the entry type % - the yeardata for crossrefs % - the authordata for crossrefs % - the short key % - the .bib appearance number % Commands that may be written to the bbl file (not counting stuff the % bib database defines itself): % % \setuppublicationlist % \startpublication % \stoppublication % Field entries with a strange format/appearance: % % \artauthor, % \editor, % \author: \xxx[junior]{firstnames}[inits]{von}{lastname} % \etalchar: appears in short keys sometimes % \maybeyear: appears in \pubyear sometimes % % And these commands for the entries have only one argument, % precisely matching the corresponding field. Note that there % are more fields supported than in the standard bst files. % % \abstract % \annotate % \arttitle % \chapter % \city % \comment % \country % \crossref % \edition % \isbn % \issn % \issue % \journal % \keyword % \keywords % \lang % \month % \names % \note % \notes % \organization % \pages % \pubname % \pubyear % \series % \size % \thekey % \title % \bibtype % \volume % \eprint % \doi % \howpublished % \biburl % \lastchecked % for ieee: % \nationality % \assignee % \bibnumber % \day % \dayfiled % \monthfiled % \yearfiled % \revision ENTRY { abstract address annotate author booktitle chapter comment country doi edition editor eprint howpublished institution isbn issn journal key keyword keywords language lastchecked month names note notes number organization pages publisher school series size title type url volume year nationality assignee bibnumber day dayfiled monthfiled yearfiled revision } {} { label extra.label sort.label clabel sort.clabel ordinal.label} STRINGS { s t autype} STRINGS { last.label next.extra nlabel } STRINGS { longest.label last.sort.label} INTEGERS { longest.label.width last.extra.num ordinal.num } INTEGERS { nameptr namesleft numnames } INTEGERS { len } FUNCTION {begin.bib} { #0 'ordinal.num := preamble$ empty$ 'skip$ { preamble$ write$ newline$ } if$ "\setuppublicationlist[samplesize={" write$ longest.label "},totalnumber=" * write$ nlabel "]" * write$ newline$ } FUNCTION {end.bib} { newline$ } FUNCTION {do.out} { duplicate$ empty$ { pop$ pop$ write$} { "{" swap$ * "}" * * write$ pop$ newline$ } if$ } FUNCTION {do.t.out} { duplicate$ empty$ { pop$ pop$ write$} { "{" swap$ "t" change.case$ * "}" * * write$ pop$ newline$ } if$ } FUNCTION {format.year} { year empty$ 'skip$ { "\pubyear{" year * write$ extra.label empty$ { "}" write$ } { "\maybeyear{" extra.label * "}}" * write$ } if$ newline$ } if$ } FUNCTION {start.entry} { ordinal.num #1 + 'ordinal.num := newline$ "\startpublication[" write$ "k=" write$ cite$ "," * write$ "t=" write$ type$ "," * write$ newline$ label write$ "," write$ doi empty$ {} { "o={" write$ doi write$ "}," write$ } if$ newline$ url empty$ {} { "u={" write$ url write$ "}," write$ newline$ } if$ "n=" write$ ordinal.label write$ ",s=" write$ clabel write$ "]" write$ newline$ "" "\lang" language do.out } FUNCTION {stop.entry} { "" "\country" country do.out "" "\note" note do.out "" "\notes" notes do.out "" "\annotate" annotate do.out "" "\eprint" eprint do.out "" "\doi" doi do.out "" "\keyword" keyword do.out "" "\keywords" keywords do.out "" "\comment" comment do.out "" "\abstract" abstract do.out "" "\names" names do.out "" "\size" size do.out "" "\biburl" url do.out "" "\lastchecked" lastchecked do.out "\stoppublication" write$ newline$ } FUNCTION {not} { { #0 } { #1 } if$ } FUNCTION {and} { 'skip$ { pop$ #0 } if$ } FUNCTION {or} { { pop$ #1 } 'skip$ if$ } FUNCTION {field.or.null} { duplicate$ empty$ { pop$ "" } 'skip$ if$ } FUNCTION {format.names} { 's := 'autype := #1 'nameptr := s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { autype write$ s nameptr "{jj}" format.name$ 't := "[" t * "]" * write$ s nameptr "{ff}" format.name$ 't := "{" t * "}" * write$ s nameptr "{f}" format.name$ add.period$ 't := "[" t * "]" * write$ s nameptr "{vv}" format.name$ 't := "{" t * "}" * write$ s nameptr "{ll}" format.name$ 't := "{" t * "}" * write$ newline$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } FUNCTION {format.key} { "" "\thekey" key do.out } FUNCTION {format.artauthors} { author empty$ { format.key } { "\artauthor" author format.names } if$ } FUNCTION {format.authors} { author empty$ { format.key } { "\author" author format.names } if$ } FUNCTION {format.editors} { editor empty$ { format.key } { "\editor" editor format.names } if$ } FUNCTION {format.title} { "" "\title" title do.out "" "\isbn" isbn do.out } FUNCTION {format.t.title} { "" "\title" title do.t.out "" "\isbn" isbn do.out } FUNCTION {format.arttitle} { "" "\arttitle" title do.t.out } FUNCTION {format.journal} { "" "\journal" journal do.out "" "\issn" issn do.out } FUNCTION {tie.or.space.connect} { duplicate$ text.length$ #3 < { "~" } { " " } if$ swap$ * * } FUNCTION {either.or.check} { empty$ 'pop$ { "can't use both " swap$ * " fields in " * cite$ * warning$ } if$ } FUNCTION {format.volume} { "" "\volume" volume do.out } FUNCTION {format.volume.issue} { "" "\volume" volume do.out "" "\issue" number do.out } FUNCTION {format.number.series} { "" "\series" series do.out volume empty$ { "" "\volume" number do.out } { "" "\volume" volume do.out "" "\issue" number do.out } if$ } FUNCTION {format.edition} { "" "\edition" edition do.out "" "\month" month do.out } FUNCTION {format.pages} { "" "\pages" pages do.out } FUNCTION {format.vol.num.pages} { format.volume.issue format.pages } FUNCTION {format.vol.num.page} { format.volume.issue format.pages } FUNCTION {format.type.chapter.pages} { chapter empty$ 'format.pages { "" "\bibtype" type do.out "" "\chapter" chapter do.out } if$ format.pages } FUNCTION {format.booktitle} {"" "\title" booktitle do.out "" "\isbn" isbn do.out } FUNCTION {format.in.ed.booktitle} { booktitle empty$ 'skip$ { format.booktitle } if$ } FUNCTION {format.in.booktitle.or.series} { "" "\series" series do.out booktitle empty$ 'skip$ { editor empty$ { format.booktitle } { format.editors format.booktitle } if$ } if$ } FUNCTION {format.tr.number} {"" "\bibtype" type do.out "" "\volume" number do.out } FUNCTION {format.crossref} { "" "\crossref" crossref do.out } FUNCTION {format.book.crossref} { "" "\volume" volume do.out format.crossref } FUNCTION {format.incoll.inproc.crossref} { format.crossref } FUNCTION {article} { start.entry format.artauthors format.year format.arttitle crossref missing$ { format.journal format.vol.num.pages } { format.crossref format.pages } if$ "" "\month" month do.out stop.entry } FUNCTION {book} { start.entry author empty$ { format.editors } { format.authors } if$ format.year format.title crossref missing$ { format.number.series "" "\city" address do.out "" "\pubname" publisher do.out } { format.book.crossref } if$ format.edition stop.entry } FUNCTION {booklet} { start.entry format.authors format.year format.t.title format.key "" "\pubname" publisher do.out "" "\howpublished" howpublished do.out "" "\city" address do.out stop.entry } FUNCTION {inbook} { start.entry author empty$ { format.editors } { format.authors } if$ format.year format.title crossref missing$ { format.type.chapter.pages format.number.series "" "\city" address do.out "" "\pubname" publisher do.out } { format.type.chapter.pages format.book.crossref } if$ format.edition stop.entry } FUNCTION {incollection} { start.entry format.artauthors format.year format.arttitle format.editors crossref missing$ { format.in.ed.booktitle format.number.series "" "\city" address do.out format.edition format.type.chapter.pages } { format.incoll.inproc.crossref format.type.chapter.pages } if$ "" "\pubname" publisher do.out stop.entry } FUNCTION {inproceedings} { start.entry format.authors format.year format.arttitle crossref missing$ { format.in.booktitle.or.series format.number.series "" "\city" address do.out format.pages } { format.incoll.inproc.crossref format.pages } if$ "" "\pubname" publisher do.out "" "\organization" organization do.out stop.entry } FUNCTION {conference} { inproceedings } FUNCTION {manual} { start.entry format.authors format.year format.title "" "\organization" organization do.out "" "\city" address do.out "" "\edition" edition do.out stop.entry } FUNCTION {mastersthesis} { start.entry format.authors format.year format.t.title "" "\bibtype" type do.out "" "\pubname" school do.out "" "\month" month do.out "" "\city" address do.out stop.entry } FUNCTION {misc} { start.entry format.authors format.year format.t.title format.key "" "\city" address do.out "" "\day" day do.out "" "\month" month do.out "" "\pubname" publisher do.out "" "\howpublished" howpublished do.out stop.entry } FUNCTION {phdthesis} { start.entry format.authors format.title format.year "" "\bibtype" type do.out "" "\month" month do.out "" "\pubname" school do.out "" "\city" address do.out stop.entry } FUNCTION {proceedings} { start.entry format.editors format.year format.title format.number.series "" "\city" address do.out "" "\pubname" publisher do.out "" "\organization" organization do.out stop.entry } FUNCTION {techreport} { start.entry format.authors format.year format.t.title format.tr.number "" "\city" address do.out "" "\pubname" institution do.out stop.entry } FUNCTION {unpublished} { start.entry format.authors format.year format.t.title "" "\month" month do.out stop.entry } % 4 additions from IEEEtran FUNCTION {electronic} { start.entry format.authors format.year format.t.title "" "\month" month do.out "" "\city" address do.out "" "\organization" organization do.out "" "\howpublished" howpublished do.out stop.entry } FUNCTION {patent} { start.entry format.authors format.year format.t.title "" "\bibnumber" number do.out "" "\city" address do.out "" "\nationality" nationality do.out "" "\assignee" assignee do.out "" "\bibtype" type do.out "" "\month" month do.out "" "\monthfiled" monthfiled do.out "" "\yearfiled" yearfiled do.out "" "\day" day do.out "" "\dayfiled" dayfiled do.out stop.entry } FUNCTION {periodical} { start.entry format.editors format.year format.title format.number.series "" "\bibnumber" number do.out "" "\month" month do.out "" "\organization" organization do.out stop.entry } FUNCTION {standard} { start.entry format.authors format.year format.title "" "\bibtype" type do.out "" "\organization" organization do.out "" "\city" address do.out "" "\revision" revision do.out "" "\pubname" institution do.out "" "\howpublished" howpublished do.out "" "\bibnumber" number do.out "" "\month" month do.out stop.entry } FUNCTION {IEEEtranBSTCTL} { } FUNCTION {default.type} { misc } MACRO {jan} {"1"} MACRO {feb} {"2"} MACRO {mar} {"3"} MACRO {apr} {"4"} MACRO {may} {"5"} MACRO {jun} {"6"} MACRO {jul} {"7"} MACRO {aug} {"8"} MACRO {sep} {"9"} MACRO {oct} {"10"} MACRO {nov} {"11"} MACRO {dec} {"12"} READ FUNCTION {initialize.ordinal.label} { #0 'ordinal.num := } FUNCTION {set.ordinal.label} { #1 ordinal.num + 'ordinal.num := ordinal.num int.to.str$ 'ordinal.label := } EXECUTE {initialize.ordinal.label} ITERATE {set.ordinal.label} FUNCTION {sortify} { purify$ "l" change.case$ } FUNCTION {chop.word} { 's := 'len := s #1 len substring$ = { s len #1 + global.max$ substring$ } 's if$ } FUNCTION {format.lab.names} { 's := s #1 "{vv~}{ll}" format.name$ "{" swap$ * "}" * s num.names$ duplicate$ #1 > { pop$ "," * } { pop$ } if$ s num.names$ duplicate$ #2 > { pop$ "{}" * } { #2 < 'skip$ { s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" = { "{}" * } { s #2 "{vv~}{ll}" format.name$ "{" swap$ * "}" * * } if$ } if$ } if$ "{" swap$ * "}," * } FUNCTION {author.key.label} { author empty$ { key empty$ { "{" cite$ * "}," *} { "{" key * "}," * } if$ } { author format.lab.names } if$ } FUNCTION {author.editor.key.label} { author empty$ { editor empty$ { key empty$ { "{" cite$ * "}," *} { "{" key * "}," * } if$ } { editor format.lab.names } if$ } { author format.lab.names } if$ } FUNCTION {editor.key.label} { editor empty$ { key empty$ { "{" cite$ * "}," *} { "{" key * "}," * } if$ } { editor format.lab.names } if$ } FUNCTION {calc.label} { type$ "book" = type$ "inbook" = or 'author.editor.key.label { type$ "proceedings" = 'editor.key.label 'author.key.label if$ } if$ "a=" swap$ * "y=" * year field.or.null purify$ #-1 #4 substring$ * 'label := } INTEGERS { et.al.char.used } FUNCTION {initialize.et.al.char.used} { #0 'et.al.char.used := } EXECUTE {initialize.et.al.char.used} FUNCTION {format.clab.names} { 's := s num.names$ 'numnames := numnames #1 > { numnames #4 > { #3 'namesleft := } { numnames 'namesleft := } if$ #1 'nameptr := "" { namesleft #0 > } { nameptr numnames = { s nameptr "{ff }{vv }{ll}{ jj}" format.name$ "others" = { "{\etalchar{+}}" * #1 'et.al.char.used := } { s nameptr "{v{}}{l{}}" format.name$ * } if$ } { s nameptr "{v{}}{l{}}" format.name$ * } if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ numnames #4 > { "{\etalchar{+}}" * #1 'et.al.char.used := } 'skip$ if$ } { s #1 "{v{}}{l{}}" format.name$ duplicate$ text.length$ #2 < { pop$ s #1 "{ll}" format.name$ #3 text.prefix$ } 'skip$ if$ } if$ } FUNCTION {author.key.clabel} { author empty$ { key empty$ { cite$ #1 #3 substring$ } { key #3 text.prefix$ } if$ } { author format.clab.names } if$ } FUNCTION {author.editor.key.clabel} { author empty$ { editor empty$ { key empty$ { cite$ #1 #3 substring$ } { key #3 text.prefix$ } if$ } { editor format.clab.names } if$ } { author format.clab.names } if$ } FUNCTION {author.key.organization.clabel} { author empty$ { key empty$ { organization empty$ { cite$ #1 #3 substring$ } { "The " #4 organization chop.word #3 text.prefix$ } if$ } { key #3 text.prefix$ } if$ } { author format.clab.names } if$ } FUNCTION {editor.key.organization.clabel} { editor empty$ { key empty$ { organization empty$ { cite$ #1 #3 substring$ } { "The " #4 organization chop.word #3 text.prefix$ } if$ } { key #3 text.prefix$ } if$ } { editor format.clab.names } if$ } FUNCTION {calc.clabel} { type$ "book" = type$ "inbook" = or 'author.editor.key.clabel { type$ "proceedings" = 'editor.key.organization.clabel { type$ "manual" = 'author.key.organization.clabel 'author.key.clabel if$ } if$ } if$ duplicate$ year field.or.null purify$ #-1 #2 substring$ * 'clabel := year field.or.null purify$ #-1 #4 substring$ * sortify 'sort.clabel := } FUNCTION {sort.format.names} { 's := #1 'nameptr := "" s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { nameptr #1 > { " " * } 'skip$ if$ s nameptr "{vv{ } }{ll{ }}{ f{ }}{ jj{ }}" format.name$ 't := nameptr numnames = t "others" = and { "et al" * } { t sortify * } if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } FUNCTION {sort.format.title} { 't := "A " #2 "An " #3 "The " #4 t chop.word chop.word chop.word sortify #1 global.max$ substring$ } FUNCTION {author.sort} { author empty$ { key empty$ { "to sort, need author or key in " cite$ * warning$ } { key sortify } if$ } { author sort.format.names } if$ } FUNCTION {author.editor.sort} { author empty$ { editor empty$ { key empty$ { "to sort, need author, editor, or key in " cite$ * warning$ } { key sortify } if$ } { editor sort.format.names } if$ } { author sort.format.names } if$ } FUNCTION {editor.sort} { editor empty$ { key empty$ { "to sort, need editor or key in " cite$ * warning$ } { key sortify } if$ } { editor sort.format.names } if$ } FUNCTION {presort.title} { calc.label calc.clabel title field.or.null sort.format.title " " * #1 entry.max$ substring$ 'sort.label := sort.label 'sort.key$ := } FUNCTION {presort.author} { calc.clabel calc.label type$ "book" = type$ "inbook" = or 'author.editor.sort { type$ "proceedings" = 'editor.sort 'author.sort if$ } if$ #1 entry.max$ substring$ 'sort.label := sort.label 'sort.key$ := } FUNCTION {presort.clabel} { calc.label calc.clabel clabel sortify duplicate$ 'sort.label := #1 entry.max$ substring$ #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {presort.none} { calc.label calc.clabel "" 'sort.label := "" 'sort.key$ := } ITERATE {presort.title} SORT FUNCTION {initialize.extra.label.stuff} { #0 int.to.chr$ 'last.label := "" 'next.extra := #0 'last.extra.num := #0 'ordinal.num := } FUNCTION {forward.pass} { ordinal.num #1 + 'ordinal.num := ordinal.num int.to.str$ 'nlabel := last.label label = { last.extra.num #1 + 'last.extra.num := last.extra.num int.to.chr$ 'extra.label := } { "a" chr.to.int$ 'last.extra.num := "" 'extra.label := label 'last.label := } if$ } FUNCTION {reverse.pass} { next.extra "b" = { "a" 'extra.label := } 'skip$ if$ label extra.label * 'label := clabel extra.label * 'clabel := extra.label 'next.extra := clabel width$ longest.label.width > { clabel 'longest.label := clabel width$ 'longest.label.width := } 'skip$ if$ } EXECUTE {initialize.extra.label.stuff} FUNCTION {initialize.longest.label} { "" 'longest.label := #0 int.to.chr$ 'last.sort.label := "" 'next.extra := #0 'longest.label.width := #0 'last.extra.num := } EXECUTE {initialize.longest.label} ITERATE {forward.pass} REVERSE {reverse.pass} FUNCTION {bib.sort.order.author} { sort.label " " * year field.or.null sortify * " " * title field.or.null sort.format.title * #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {bib.sort.order.title} { sort.label " " * type$ "book" = type$ "inbook" = or 'author.editor.sort { type$ "proceedings" = 'editor.sort 'author.sort if$ } if$ * " " * year field.or.null sortify * #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {bib.sort.order.clabel} { sort.label " " * title field.or.null sort.format.title * #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {bib.sort.order.none} { sort.label 'sort.key$ := } ITERATE {bib.sort.order.title} SORT EXECUTE {begin.bib} ITERATE {call.type$} EXECUTE {end.bib} context-2015.05.18.20150601/texmf-dist/bibtex/bst/context/cont-no.bst0000644000175000017500000005115112130411274024310 0ustar norbertnorbert% Written by Taco Hoekwater % Donated to the Public Domain. Use at your own risk. % Preliminary version, 19-aug-1999. % New 17/9/2003: 'eprint' and 'doi' tags % This style produces citations in a format the ConTeXt can handle. % It outputs a large collection of labels so that context can decide % which one to use. % % Actually, there are a number of separate bst files that change in % only two lines: the ITERATEs right before the two SORTs can % have different values, sorting by either one of % % -------------------------- cont-master.bst author % - the author (+year, title) : cont-au.bst author % - the title (+author, year) : cont-ti.bst title % - the short key a la abbrev : cont-ab.bst clabel % - nothing at all (cite order): cont-no.bst none % % % Output gives the following computed info: % % - the total number of bib entries % - the longest short label % % And per entry: % % - the key % - the entry type % - the yeardata for crossrefs % - the authordata for crossrefs % - the short key % - the .bib appearance number % Commands that may be written to the bbl file (not counting stuff the % bib database defines itself): % % \setuppublicationlist % \startpublication % \stoppublication % Field entries with a strange format/appearance: % % \artauthor, % \editor, % \author: \xxx[junior]{firstnames}[inits]{von}{lastname} % \etalchar: appears in short keys sometimes % \maybeyear: appears in \pubyear sometimes % % And these commands for the entries have only one argument, % precisely matching the corresponding field. Note that there % are more fields supported than in the standard bst files. % % \abstract % \annotate % \arttitle % \chapter % \city % \comment % \country % \crossref % \edition % \isbn % \issn % \issue % \journal % \keyword % \keywords % \lang % \month % \names % \note % \notes % \organization % \pages % \pubname % \pubyear % \series % \size % \thekey % \title % \bibtype % \volume % \eprint % \doi % \howpublished % \biburl % \lastchecked % for ieee: % \nationality % \assignee % \bibnumber % \day % \dayfiled % \monthfiled % \yearfiled % \revision ENTRY { abstract address annotate author booktitle chapter comment country doi edition editor eprint howpublished institution isbn issn journal key keyword keywords language lastchecked month names note notes number organization pages publisher school series size title type url volume year nationality assignee bibnumber day dayfiled monthfiled yearfiled revision } {} { label extra.label sort.label clabel sort.clabel ordinal.label} STRINGS { s t autype} STRINGS { last.label next.extra nlabel } STRINGS { longest.label last.sort.label} INTEGERS { longest.label.width last.extra.num ordinal.num } INTEGERS { nameptr namesleft numnames } INTEGERS { len } FUNCTION {begin.bib} { #0 'ordinal.num := preamble$ empty$ 'skip$ { preamble$ write$ newline$ } if$ "\setuppublicationlist[samplesize={" write$ longest.label "},totalnumber=" * write$ nlabel "]" * write$ newline$ } FUNCTION {end.bib} { newline$ } FUNCTION {do.out} { duplicate$ empty$ { pop$ pop$ write$} { "{" swap$ * "}" * * write$ pop$ newline$ } if$ } FUNCTION {do.t.out} { duplicate$ empty$ { pop$ pop$ write$} { "{" swap$ "t" change.case$ * "}" * * write$ pop$ newline$ } if$ } FUNCTION {format.year} { year empty$ 'skip$ { "\pubyear{" year * write$ extra.label empty$ { "}" write$ } { "\maybeyear{" extra.label * "}}" * write$ } if$ newline$ } if$ } FUNCTION {start.entry} { ordinal.num #1 + 'ordinal.num := newline$ "\startpublication[" write$ "k=" write$ cite$ "," * write$ "t=" write$ type$ "," * write$ newline$ label write$ "," write$ doi empty$ {} { "o={" write$ doi write$ "}," write$ } if$ newline$ url empty$ {} { "u={" write$ url write$ "}," write$ newline$ } if$ "n=" write$ ordinal.label write$ ",s=" write$ clabel write$ "]" write$ newline$ "" "\lang" language do.out } FUNCTION {stop.entry} { "" "\country" country do.out "" "\note" note do.out "" "\notes" notes do.out "" "\annotate" annotate do.out "" "\eprint" eprint do.out "" "\doi" doi do.out "" "\keyword" keyword do.out "" "\keywords" keywords do.out "" "\comment" comment do.out "" "\abstract" abstract do.out "" "\names" names do.out "" "\size" size do.out "" "\biburl" url do.out "" "\lastchecked" lastchecked do.out "\stoppublication" write$ newline$ } FUNCTION {not} { { #0 } { #1 } if$ } FUNCTION {and} { 'skip$ { pop$ #0 } if$ } FUNCTION {or} { { pop$ #1 } 'skip$ if$ } FUNCTION {field.or.null} { duplicate$ empty$ { pop$ "" } 'skip$ if$ } FUNCTION {format.names} { 's := 'autype := #1 'nameptr := s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { autype write$ s nameptr "{jj}" format.name$ 't := "[" t * "]" * write$ s nameptr "{ff}" format.name$ 't := "{" t * "}" * write$ s nameptr "{f}" format.name$ add.period$ 't := "[" t * "]" * write$ s nameptr "{vv}" format.name$ 't := "{" t * "}" * write$ s nameptr "{ll}" format.name$ 't := "{" t * "}" * write$ newline$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } FUNCTION {format.key} { "" "\thekey" key do.out } FUNCTION {format.artauthors} { author empty$ { format.key } { "\artauthor" author format.names } if$ } FUNCTION {format.authors} { author empty$ { format.key } { "\author" author format.names } if$ } FUNCTION {format.editors} { editor empty$ { format.key } { "\editor" editor format.names } if$ } FUNCTION {format.title} { "" "\title" title do.out "" "\isbn" isbn do.out } FUNCTION {format.t.title} { "" "\title" title do.t.out "" "\isbn" isbn do.out } FUNCTION {format.arttitle} { "" "\arttitle" title do.t.out } FUNCTION {format.journal} { "" "\journal" journal do.out "" "\issn" issn do.out } FUNCTION {tie.or.space.connect} { duplicate$ text.length$ #3 < { "~" } { " " } if$ swap$ * * } FUNCTION {either.or.check} { empty$ 'pop$ { "can't use both " swap$ * " fields in " * cite$ * warning$ } if$ } FUNCTION {format.volume} { "" "\volume" volume do.out } FUNCTION {format.volume.issue} { "" "\volume" volume do.out "" "\issue" number do.out } FUNCTION {format.number.series} { "" "\series" series do.out volume empty$ { "" "\volume" number do.out } { "" "\volume" volume do.out "" "\issue" number do.out } if$ } FUNCTION {format.edition} { "" "\edition" edition do.out "" "\month" month do.out } FUNCTION {format.pages} { "" "\pages" pages do.out } FUNCTION {format.vol.num.pages} { format.volume.issue format.pages } FUNCTION {format.vol.num.page} { format.volume.issue format.pages } FUNCTION {format.type.chapter.pages} { chapter empty$ 'format.pages { "" "\bibtype" type do.out "" "\chapter" chapter do.out } if$ format.pages } FUNCTION {format.booktitle} {"" "\title" booktitle do.out "" "\isbn" isbn do.out } FUNCTION {format.in.ed.booktitle} { booktitle empty$ 'skip$ { format.booktitle } if$ } FUNCTION {format.in.booktitle.or.series} { "" "\series" series do.out booktitle empty$ 'skip$ { editor empty$ { format.booktitle } { format.editors format.booktitle } if$ } if$ } FUNCTION {format.tr.number} {"" "\bibtype" type do.out "" "\volume" number do.out } FUNCTION {format.crossref} { "" "\crossref" crossref do.out } FUNCTION {format.book.crossref} { "" "\volume" volume do.out format.crossref } FUNCTION {format.incoll.inproc.crossref} { format.crossref } FUNCTION {article} { start.entry format.artauthors format.year format.arttitle crossref missing$ { format.journal format.vol.num.pages } { format.crossref format.pages } if$ "" "\month" month do.out stop.entry } FUNCTION {book} { start.entry author empty$ { format.editors } { format.authors } if$ format.year format.title crossref missing$ { format.number.series "" "\city" address do.out "" "\pubname" publisher do.out } { format.book.crossref } if$ format.edition stop.entry } FUNCTION {booklet} { start.entry format.authors format.year format.t.title format.key "" "\pubname" publisher do.out "" "\howpublished" howpublished do.out "" "\city" address do.out stop.entry } FUNCTION {inbook} { start.entry author empty$ { format.editors } { format.authors } if$ format.year format.title crossref missing$ { format.type.chapter.pages format.number.series "" "\city" address do.out "" "\pubname" publisher do.out } { format.type.chapter.pages format.book.crossref } if$ format.edition stop.entry } FUNCTION {incollection} { start.entry format.artauthors format.year format.arttitle format.editors crossref missing$ { format.in.ed.booktitle format.number.series "" "\city" address do.out format.edition format.type.chapter.pages } { format.incoll.inproc.crossref format.type.chapter.pages } if$ "" "\pubname" publisher do.out stop.entry } FUNCTION {inproceedings} { start.entry format.authors format.year format.arttitle crossref missing$ { format.in.booktitle.or.series format.number.series "" "\city" address do.out format.pages } { format.incoll.inproc.crossref format.pages } if$ "" "\pubname" publisher do.out "" "\organization" organization do.out stop.entry } FUNCTION {conference} { inproceedings } FUNCTION {manual} { start.entry format.authors format.year format.title "" "\organization" organization do.out "" "\city" address do.out "" "\edition" edition do.out stop.entry } FUNCTION {mastersthesis} { start.entry format.authors format.year format.t.title "" "\bibtype" type do.out "" "\pubname" school do.out "" "\month" month do.out "" "\city" address do.out stop.entry } FUNCTION {misc} { start.entry format.authors format.year format.t.title format.key "" "\city" address do.out "" "\day" day do.out "" "\month" month do.out "" "\pubname" publisher do.out "" "\howpublished" howpublished do.out stop.entry } FUNCTION {phdthesis} { start.entry format.authors format.title format.year "" "\bibtype" type do.out "" "\month" month do.out "" "\pubname" school do.out "" "\city" address do.out stop.entry } FUNCTION {proceedings} { start.entry format.editors format.year format.title format.number.series "" "\city" address do.out "" "\pubname" publisher do.out "" "\organization" organization do.out stop.entry } FUNCTION {techreport} { start.entry format.authors format.year format.t.title format.tr.number "" "\city" address do.out "" "\pubname" institution do.out stop.entry } FUNCTION {unpublished} { start.entry format.authors format.year format.t.title "" "\month" month do.out stop.entry } % 4 additions from IEEEtran FUNCTION {electronic} { start.entry format.authors format.year format.t.title "" "\month" month do.out "" "\city" address do.out "" "\organization" organization do.out "" "\howpublished" howpublished do.out stop.entry } FUNCTION {patent} { start.entry format.authors format.year format.t.title "" "\bibnumber" number do.out "" "\city" address do.out "" "\nationality" nationality do.out "" "\assignee" assignee do.out "" "\bibtype" type do.out "" "\month" month do.out "" "\monthfiled" monthfiled do.out "" "\yearfiled" yearfiled do.out "" "\day" day do.out "" "\dayfiled" dayfiled do.out stop.entry } FUNCTION {periodical} { start.entry format.editors format.year format.title format.number.series "" "\bibnumber" number do.out "" "\month" month do.out "" "\organization" organization do.out stop.entry } FUNCTION {standard} { start.entry format.authors format.year format.title "" "\bibtype" type do.out "" "\organization" organization do.out "" "\city" address do.out "" "\revision" revision do.out "" "\pubname" institution do.out "" "\howpublished" howpublished do.out "" "\bibnumber" number do.out "" "\month" month do.out stop.entry } FUNCTION {IEEEtranBSTCTL} { } FUNCTION {default.type} { misc } MACRO {jan} {"1"} MACRO {feb} {"2"} MACRO {mar} {"3"} MACRO {apr} {"4"} MACRO {may} {"5"} MACRO {jun} {"6"} MACRO {jul} {"7"} MACRO {aug} {"8"} MACRO {sep} {"9"} MACRO {oct} {"10"} MACRO {nov} {"11"} MACRO {dec} {"12"} READ FUNCTION {initialize.ordinal.label} { #0 'ordinal.num := } FUNCTION {set.ordinal.label} { #1 ordinal.num + 'ordinal.num := ordinal.num int.to.str$ 'ordinal.label := } EXECUTE {initialize.ordinal.label} ITERATE {set.ordinal.label} FUNCTION {sortify} { purify$ "l" change.case$ } FUNCTION {chop.word} { 's := 'len := s #1 len substring$ = { s len #1 + global.max$ substring$ } 's if$ } FUNCTION {format.lab.names} { 's := s #1 "{vv~}{ll}" format.name$ "{" swap$ * "}" * s num.names$ duplicate$ #1 > { pop$ "," * } { pop$ } if$ s num.names$ duplicate$ #2 > { pop$ "{}" * } { #2 < 'skip$ { s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" = { "{}" * } { s #2 "{vv~}{ll}" format.name$ "{" swap$ * "}" * * } if$ } if$ } if$ "{" swap$ * "}," * } FUNCTION {author.key.label} { author empty$ { key empty$ { "{" cite$ * "}," *} { "{" key * "}," * } if$ } { author format.lab.names } if$ } FUNCTION {author.editor.key.label} { author empty$ { editor empty$ { key empty$ { "{" cite$ * "}," *} { "{" key * "}," * } if$ } { editor format.lab.names } if$ } { author format.lab.names } if$ } FUNCTION {editor.key.label} { editor empty$ { key empty$ { "{" cite$ * "}," *} { "{" key * "}," * } if$ } { editor format.lab.names } if$ } FUNCTION {calc.label} { type$ "book" = type$ "inbook" = or 'author.editor.key.label { type$ "proceedings" = 'editor.key.label 'author.key.label if$ } if$ "a=" swap$ * "y=" * year field.or.null purify$ #-1 #4 substring$ * 'label := } INTEGERS { et.al.char.used } FUNCTION {initialize.et.al.char.used} { #0 'et.al.char.used := } EXECUTE {initialize.et.al.char.used} FUNCTION {format.clab.names} { 's := s num.names$ 'numnames := numnames #1 > { numnames #4 > { #3 'namesleft := } { numnames 'namesleft := } if$ #1 'nameptr := "" { namesleft #0 > } { nameptr numnames = { s nameptr "{ff }{vv }{ll}{ jj}" format.name$ "others" = { "{\etalchar{+}}" * #1 'et.al.char.used := } { s nameptr "{v{}}{l{}}" format.name$ * } if$ } { s nameptr "{v{}}{l{}}" format.name$ * } if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ numnames #4 > { "{\etalchar{+}}" * #1 'et.al.char.used := } 'skip$ if$ } { s #1 "{v{}}{l{}}" format.name$ duplicate$ text.length$ #2 < { pop$ s #1 "{ll}" format.name$ #3 text.prefix$ } 'skip$ if$ } if$ } FUNCTION {author.key.clabel} { author empty$ { key empty$ { cite$ #1 #3 substring$ } { key #3 text.prefix$ } if$ } { author format.clab.names } if$ } FUNCTION {author.editor.key.clabel} { author empty$ { editor empty$ { key empty$ { cite$ #1 #3 substring$ } { key #3 text.prefix$ } if$ } { editor format.clab.names } if$ } { author format.clab.names } if$ } FUNCTION {author.key.organization.clabel} { author empty$ { key empty$ { organization empty$ { cite$ #1 #3 substring$ } { "The " #4 organization chop.word #3 text.prefix$ } if$ } { key #3 text.prefix$ } if$ } { author format.clab.names } if$ } FUNCTION {editor.key.organization.clabel} { editor empty$ { key empty$ { organization empty$ { cite$ #1 #3 substring$ } { "The " #4 organization chop.word #3 text.prefix$ } if$ } { key #3 text.prefix$ } if$ } { editor format.clab.names } if$ } FUNCTION {calc.clabel} { type$ "book" = type$ "inbook" = or 'author.editor.key.clabel { type$ "proceedings" = 'editor.key.organization.clabel { type$ "manual" = 'author.key.organization.clabel 'author.key.clabel if$ } if$ } if$ duplicate$ year field.or.null purify$ #-1 #2 substring$ * 'clabel := year field.or.null purify$ #-1 #4 substring$ * sortify 'sort.clabel := } FUNCTION {sort.format.names} { 's := #1 'nameptr := "" s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { nameptr #1 > { " " * } 'skip$ if$ s nameptr "{vv{ } }{ll{ }}{ f{ }}{ jj{ }}" format.name$ 't := nameptr numnames = t "others" = and { "et al" * } { t sortify * } if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } FUNCTION {sort.format.title} { 't := "A " #2 "An " #3 "The " #4 t chop.word chop.word chop.word sortify #1 global.max$ substring$ } FUNCTION {author.sort} { author empty$ { key empty$ { "to sort, need author or key in " cite$ * warning$ } { key sortify } if$ } { author sort.format.names } if$ } FUNCTION {author.editor.sort} { author empty$ { editor empty$ { key empty$ { "to sort, need author, editor, or key in " cite$ * warning$ } { key sortify } if$ } { editor sort.format.names } if$ } { author sort.format.names } if$ } FUNCTION {editor.sort} { editor empty$ { key empty$ { "to sort, need editor or key in " cite$ * warning$ } { key sortify } if$ } { editor sort.format.names } if$ } FUNCTION {presort.title} { calc.label calc.clabel title field.or.null sort.format.title " " * #1 entry.max$ substring$ 'sort.label := sort.label 'sort.key$ := } FUNCTION {presort.author} { calc.clabel calc.label type$ "book" = type$ "inbook" = or 'author.editor.sort { type$ "proceedings" = 'editor.sort 'author.sort if$ } if$ #1 entry.max$ substring$ 'sort.label := sort.label 'sort.key$ := } FUNCTION {presort.clabel} { calc.label calc.clabel clabel sortify duplicate$ 'sort.label := #1 entry.max$ substring$ #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {presort.none} { calc.label calc.clabel "" 'sort.label := "" 'sort.key$ := } ITERATE {presort.none} SORT FUNCTION {initialize.extra.label.stuff} { #0 int.to.chr$ 'last.label := "" 'next.extra := #0 'last.extra.num := #0 'ordinal.num := } FUNCTION {forward.pass} { ordinal.num #1 + 'ordinal.num := ordinal.num int.to.str$ 'nlabel := last.label label = { last.extra.num #1 + 'last.extra.num := last.extra.num int.to.chr$ 'extra.label := } { "a" chr.to.int$ 'last.extra.num := "" 'extra.label := label 'last.label := } if$ } FUNCTION {reverse.pass} { next.extra "b" = { "a" 'extra.label := } 'skip$ if$ label extra.label * 'label := clabel extra.label * 'clabel := extra.label 'next.extra := clabel width$ longest.label.width > { clabel 'longest.label := clabel width$ 'longest.label.width := } 'skip$ if$ } EXECUTE {initialize.extra.label.stuff} FUNCTION {initialize.longest.label} { "" 'longest.label := #0 int.to.chr$ 'last.sort.label := "" 'next.extra := #0 'longest.label.width := #0 'last.extra.num := } EXECUTE {initialize.longest.label} ITERATE {forward.pass} REVERSE {reverse.pass} FUNCTION {bib.sort.order.author} { sort.label " " * year field.or.null sortify * " " * title field.or.null sort.format.title * #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {bib.sort.order.title} { sort.label " " * type$ "book" = type$ "inbook" = or 'author.editor.sort { type$ "proceedings" = 'editor.sort 'author.sort if$ } if$ * " " * year field.or.null sortify * #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {bib.sort.order.clabel} { sort.label " " * title field.or.null sort.format.title * #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {bib.sort.order.none} { sort.label 'sort.key$ := } ITERATE {bib.sort.order.none} SORT EXECUTE {begin.bib} ITERATE {call.type$} EXECUTE {end.bib} context-2015.05.18.20150601/texmf-dist/bibtex/bst/context/cont-au.bst0000644000175000017500000005115512130411274024305 0ustar norbertnorbert% Written by Taco Hoekwater % Donated to the Public Domain. Use at your own risk. % Preliminary version, 19-aug-1999. % New 17/9/2003: 'eprint' and 'doi' tags % This style produces citations in a format the ConTeXt can handle. % It outputs a large collection of labels so that context can decide % which one to use. % % Actually, there are a number of separate bst files that change in % only two lines: the ITERATEs right before the two SORTs can % have different values, sorting by either one of % % -------------------------- cont-master.bst author % - the author (+year, title) : cont-au.bst author % - the title (+author, year) : cont-ti.bst title % - the short key a la abbrev : cont-ab.bst clabel % - nothing at all (cite order): cont-no.bst none % % % Output gives the following computed info: % % - the total number of bib entries % - the longest short label % % And per entry: % % - the key % - the entry type % - the yeardata for crossrefs % - the authordata for crossrefs % - the short key % - the .bib appearance number % Commands that may be written to the bbl file (not counting stuff the % bib database defines itself): % % \setuppublicationlist % \startpublication % \stoppublication % Field entries with a strange format/appearance: % % \artauthor, % \editor, % \author: \xxx[junior]{firstnames}[inits]{von}{lastname} % \etalchar: appears in short keys sometimes % \maybeyear: appears in \pubyear sometimes % % And these commands for the entries have only one argument, % precisely matching the corresponding field. Note that there % are more fields supported than in the standard bst files. % % \abstract % \annotate % \arttitle % \chapter % \city % \comment % \country % \crossref % \edition % \isbn % \issn % \issue % \journal % \keyword % \keywords % \lang % \month % \names % \note % \notes % \organization % \pages % \pubname % \pubyear % \series % \size % \thekey % \title % \bibtype % \volume % \eprint % \doi % \howpublished % \biburl % \lastchecked % for ieee: % \nationality % \assignee % \bibnumber % \day % \dayfiled % \monthfiled % \yearfiled % \revision ENTRY { abstract address annotate author booktitle chapter comment country doi edition editor eprint howpublished institution isbn issn journal key keyword keywords language lastchecked month names note notes number organization pages publisher school series size title type url volume year nationality assignee bibnumber day dayfiled monthfiled yearfiled revision } {} { label extra.label sort.label clabel sort.clabel ordinal.label} STRINGS { s t autype} STRINGS { last.label next.extra nlabel } STRINGS { longest.label last.sort.label} INTEGERS { longest.label.width last.extra.num ordinal.num } INTEGERS { nameptr namesleft numnames } INTEGERS { len } FUNCTION {begin.bib} { #0 'ordinal.num := preamble$ empty$ 'skip$ { preamble$ write$ newline$ } if$ "\setuppublicationlist[samplesize={" write$ longest.label "},totalnumber=" * write$ nlabel "]" * write$ newline$ } FUNCTION {end.bib} { newline$ } FUNCTION {do.out} { duplicate$ empty$ { pop$ pop$ write$} { "{" swap$ * "}" * * write$ pop$ newline$ } if$ } FUNCTION {do.t.out} { duplicate$ empty$ { pop$ pop$ write$} { "{" swap$ "t" change.case$ * "}" * * write$ pop$ newline$ } if$ } FUNCTION {format.year} { year empty$ 'skip$ { "\pubyear{" year * write$ extra.label empty$ { "}" write$ } { "\maybeyear{" extra.label * "}}" * write$ } if$ newline$ } if$ } FUNCTION {start.entry} { ordinal.num #1 + 'ordinal.num := newline$ "\startpublication[" write$ "k=" write$ cite$ "," * write$ "t=" write$ type$ "," * write$ newline$ label write$ "," write$ doi empty$ {} { "o={" write$ doi write$ "}," write$ } if$ newline$ url empty$ {} { "u={" write$ url write$ "}," write$ newline$ } if$ "n=" write$ ordinal.label write$ ",s=" write$ clabel write$ "]" write$ newline$ "" "\lang" language do.out } FUNCTION {stop.entry} { "" "\country" country do.out "" "\note" note do.out "" "\notes" notes do.out "" "\annotate" annotate do.out "" "\eprint" eprint do.out "" "\doi" doi do.out "" "\keyword" keyword do.out "" "\keywords" keywords do.out "" "\comment" comment do.out "" "\abstract" abstract do.out "" "\names" names do.out "" "\size" size do.out "" "\biburl" url do.out "" "\lastchecked" lastchecked do.out "\stoppublication" write$ newline$ } FUNCTION {not} { { #0 } { #1 } if$ } FUNCTION {and} { 'skip$ { pop$ #0 } if$ } FUNCTION {or} { { pop$ #1 } 'skip$ if$ } FUNCTION {field.or.null} { duplicate$ empty$ { pop$ "" } 'skip$ if$ } FUNCTION {format.names} { 's := 'autype := #1 'nameptr := s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { autype write$ s nameptr "{jj}" format.name$ 't := "[" t * "]" * write$ s nameptr "{ff}" format.name$ 't := "{" t * "}" * write$ s nameptr "{f}" format.name$ add.period$ 't := "[" t * "]" * write$ s nameptr "{vv}" format.name$ 't := "{" t * "}" * write$ s nameptr "{ll}" format.name$ 't := "{" t * "}" * write$ newline$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } FUNCTION {format.key} { "" "\thekey" key do.out } FUNCTION {format.artauthors} { author empty$ { format.key } { "\artauthor" author format.names } if$ } FUNCTION {format.authors} { author empty$ { format.key } { "\author" author format.names } if$ } FUNCTION {format.editors} { editor empty$ { format.key } { "\editor" editor format.names } if$ } FUNCTION {format.title} { "" "\title" title do.out "" "\isbn" isbn do.out } FUNCTION {format.t.title} { "" "\title" title do.t.out "" "\isbn" isbn do.out } FUNCTION {format.arttitle} { "" "\arttitle" title do.t.out } FUNCTION {format.journal} { "" "\journal" journal do.out "" "\issn" issn do.out } FUNCTION {tie.or.space.connect} { duplicate$ text.length$ #3 < { "~" } { " " } if$ swap$ * * } FUNCTION {either.or.check} { empty$ 'pop$ { "can't use both " swap$ * " fields in " * cite$ * warning$ } if$ } FUNCTION {format.volume} { "" "\volume" volume do.out } FUNCTION {format.volume.issue} { "" "\volume" volume do.out "" "\issue" number do.out } FUNCTION {format.number.series} { "" "\series" series do.out volume empty$ { "" "\volume" number do.out } { "" "\volume" volume do.out "" "\issue" number do.out } if$ } FUNCTION {format.edition} { "" "\edition" edition do.out "" "\month" month do.out } FUNCTION {format.pages} { "" "\pages" pages do.out } FUNCTION {format.vol.num.pages} { format.volume.issue format.pages } FUNCTION {format.vol.num.page} { format.volume.issue format.pages } FUNCTION {format.type.chapter.pages} { chapter empty$ 'format.pages { "" "\bibtype" type do.out "" "\chapter" chapter do.out } if$ format.pages } FUNCTION {format.booktitle} {"" "\title" booktitle do.out "" "\isbn" isbn do.out } FUNCTION {format.in.ed.booktitle} { booktitle empty$ 'skip$ { format.booktitle } if$ } FUNCTION {format.in.booktitle.or.series} { "" "\series" series do.out booktitle empty$ 'skip$ { editor empty$ { format.booktitle } { format.editors format.booktitle } if$ } if$ } FUNCTION {format.tr.number} {"" "\bibtype" type do.out "" "\volume" number do.out } FUNCTION {format.crossref} { "" "\crossref" crossref do.out } FUNCTION {format.book.crossref} { "" "\volume" volume do.out format.crossref } FUNCTION {format.incoll.inproc.crossref} { format.crossref } FUNCTION {article} { start.entry format.artauthors format.year format.arttitle crossref missing$ { format.journal format.vol.num.pages } { format.crossref format.pages } if$ "" "\month" month do.out stop.entry } FUNCTION {book} { start.entry author empty$ { format.editors } { format.authors } if$ format.year format.title crossref missing$ { format.number.series "" "\city" address do.out "" "\pubname" publisher do.out } { format.book.crossref } if$ format.edition stop.entry } FUNCTION {booklet} { start.entry format.authors format.year format.t.title format.key "" "\pubname" publisher do.out "" "\howpublished" howpublished do.out "" "\city" address do.out stop.entry } FUNCTION {inbook} { start.entry author empty$ { format.editors } { format.authors } if$ format.year format.title crossref missing$ { format.type.chapter.pages format.number.series "" "\city" address do.out "" "\pubname" publisher do.out } { format.type.chapter.pages format.book.crossref } if$ format.edition stop.entry } FUNCTION {incollection} { start.entry format.artauthors format.year format.arttitle format.editors crossref missing$ { format.in.ed.booktitle format.number.series "" "\city" address do.out format.edition format.type.chapter.pages } { format.incoll.inproc.crossref format.type.chapter.pages } if$ "" "\pubname" publisher do.out stop.entry } FUNCTION {inproceedings} { start.entry format.authors format.year format.arttitle crossref missing$ { format.in.booktitle.or.series format.number.series "" "\city" address do.out format.pages } { format.incoll.inproc.crossref format.pages } if$ "" "\pubname" publisher do.out "" "\organization" organization do.out stop.entry } FUNCTION {conference} { inproceedings } FUNCTION {manual} { start.entry format.authors format.year format.title "" "\organization" organization do.out "" "\city" address do.out "" "\edition" edition do.out stop.entry } FUNCTION {mastersthesis} { start.entry format.authors format.year format.t.title "" "\bibtype" type do.out "" "\pubname" school do.out "" "\month" month do.out "" "\city" address do.out stop.entry } FUNCTION {misc} { start.entry format.authors format.year format.t.title format.key "" "\city" address do.out "" "\day" day do.out "" "\month" month do.out "" "\pubname" publisher do.out "" "\howpublished" howpublished do.out stop.entry } FUNCTION {phdthesis} { start.entry format.authors format.title format.year "" "\bibtype" type do.out "" "\month" month do.out "" "\pubname" school do.out "" "\city" address do.out stop.entry } FUNCTION {proceedings} { start.entry format.editors format.year format.title format.number.series "" "\city" address do.out "" "\pubname" publisher do.out "" "\organization" organization do.out stop.entry } FUNCTION {techreport} { start.entry format.authors format.year format.t.title format.tr.number "" "\city" address do.out "" "\pubname" institution do.out stop.entry } FUNCTION {unpublished} { start.entry format.authors format.year format.t.title "" "\month" month do.out stop.entry } % 4 additions from IEEEtran FUNCTION {electronic} { start.entry format.authors format.year format.t.title "" "\month" month do.out "" "\city" address do.out "" "\organization" organization do.out "" "\howpublished" howpublished do.out stop.entry } FUNCTION {patent} { start.entry format.authors format.year format.t.title "" "\bibnumber" number do.out "" "\city" address do.out "" "\nationality" nationality do.out "" "\assignee" assignee do.out "" "\bibtype" type do.out "" "\month" month do.out "" "\monthfiled" monthfiled do.out "" "\yearfiled" yearfiled do.out "" "\day" day do.out "" "\dayfiled" dayfiled do.out stop.entry } FUNCTION {periodical} { start.entry format.editors format.year format.title format.number.series "" "\bibnumber" number do.out "" "\month" month do.out "" "\organization" organization do.out stop.entry } FUNCTION {standard} { start.entry format.authors format.year format.title "" "\bibtype" type do.out "" "\organization" organization do.out "" "\city" address do.out "" "\revision" revision do.out "" "\pubname" institution do.out "" "\howpublished" howpublished do.out "" "\bibnumber" number do.out "" "\month" month do.out stop.entry } FUNCTION {IEEEtranBSTCTL} { } FUNCTION {default.type} { misc } MACRO {jan} {"1"} MACRO {feb} {"2"} MACRO {mar} {"3"} MACRO {apr} {"4"} MACRO {may} {"5"} MACRO {jun} {"6"} MACRO {jul} {"7"} MACRO {aug} {"8"} MACRO {sep} {"9"} MACRO {oct} {"10"} MACRO {nov} {"11"} MACRO {dec} {"12"} READ FUNCTION {initialize.ordinal.label} { #0 'ordinal.num := } FUNCTION {set.ordinal.label} { #1 ordinal.num + 'ordinal.num := ordinal.num int.to.str$ 'ordinal.label := } EXECUTE {initialize.ordinal.label} ITERATE {set.ordinal.label} FUNCTION {sortify} { purify$ "l" change.case$ } FUNCTION {chop.word} { 's := 'len := s #1 len substring$ = { s len #1 + global.max$ substring$ } 's if$ } FUNCTION {format.lab.names} { 's := s #1 "{vv~}{ll}" format.name$ "{" swap$ * "}" * s num.names$ duplicate$ #1 > { pop$ "," * } { pop$ } if$ s num.names$ duplicate$ #2 > { pop$ "{}" * } { #2 < 'skip$ { s #2 "{ff }{vv }{ll}{ jj}" format.name$ "others" = { "{}" * } { s #2 "{vv~}{ll}" format.name$ "{" swap$ * "}" * * } if$ } if$ } if$ "{" swap$ * "}," * } FUNCTION {author.key.label} { author empty$ { key empty$ { "{" cite$ * "}," *} { "{" key * "}," * } if$ } { author format.lab.names } if$ } FUNCTION {author.editor.key.label} { author empty$ { editor empty$ { key empty$ { "{" cite$ * "}," *} { "{" key * "}," * } if$ } { editor format.lab.names } if$ } { author format.lab.names } if$ } FUNCTION {editor.key.label} { editor empty$ { key empty$ { "{" cite$ * "}," *} { "{" key * "}," * } if$ } { editor format.lab.names } if$ } FUNCTION {calc.label} { type$ "book" = type$ "inbook" = or 'author.editor.key.label { type$ "proceedings" = 'editor.key.label 'author.key.label if$ } if$ "a=" swap$ * "y=" * year field.or.null purify$ #-1 #4 substring$ * 'label := } INTEGERS { et.al.char.used } FUNCTION {initialize.et.al.char.used} { #0 'et.al.char.used := } EXECUTE {initialize.et.al.char.used} FUNCTION {format.clab.names} { 's := s num.names$ 'numnames := numnames #1 > { numnames #4 > { #3 'namesleft := } { numnames 'namesleft := } if$ #1 'nameptr := "" { namesleft #0 > } { nameptr numnames = { s nameptr "{ff }{vv }{ll}{ jj}" format.name$ "others" = { "{\etalchar{+}}" * #1 'et.al.char.used := } { s nameptr "{v{}}{l{}}" format.name$ * } if$ } { s nameptr "{v{}}{l{}}" format.name$ * } if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ numnames #4 > { "{\etalchar{+}}" * #1 'et.al.char.used := } 'skip$ if$ } { s #1 "{v{}}{l{}}" format.name$ duplicate$ text.length$ #2 < { pop$ s #1 "{ll}" format.name$ #3 text.prefix$ } 'skip$ if$ } if$ } FUNCTION {author.key.clabel} { author empty$ { key empty$ { cite$ #1 #3 substring$ } { key #3 text.prefix$ } if$ } { author format.clab.names } if$ } FUNCTION {author.editor.key.clabel} { author empty$ { editor empty$ { key empty$ { cite$ #1 #3 substring$ } { key #3 text.prefix$ } if$ } { editor format.clab.names } if$ } { author format.clab.names } if$ } FUNCTION {author.key.organization.clabel} { author empty$ { key empty$ { organization empty$ { cite$ #1 #3 substring$ } { "The " #4 organization chop.word #3 text.prefix$ } if$ } { key #3 text.prefix$ } if$ } { author format.clab.names } if$ } FUNCTION {editor.key.organization.clabel} { editor empty$ { key empty$ { organization empty$ { cite$ #1 #3 substring$ } { "The " #4 organization chop.word #3 text.prefix$ } if$ } { key #3 text.prefix$ } if$ } { editor format.clab.names } if$ } FUNCTION {calc.clabel} { type$ "book" = type$ "inbook" = or 'author.editor.key.clabel { type$ "proceedings" = 'editor.key.organization.clabel { type$ "manual" = 'author.key.organization.clabel 'author.key.clabel if$ } if$ } if$ duplicate$ year field.or.null purify$ #-1 #2 substring$ * 'clabel := year field.or.null purify$ #-1 #4 substring$ * sortify 'sort.clabel := } FUNCTION {sort.format.names} { 's := #1 'nameptr := "" s num.names$ 'numnames := numnames 'namesleft := { namesleft #0 > } { nameptr #1 > { " " * } 'skip$ if$ s nameptr "{vv{ } }{ll{ }}{ f{ }}{ jj{ }}" format.name$ 't := nameptr numnames = t "others" = and { "et al" * } { t sortify * } if$ nameptr #1 + 'nameptr := namesleft #1 - 'namesleft := } while$ } FUNCTION {sort.format.title} { 't := "A " #2 "An " #3 "The " #4 t chop.word chop.word chop.word sortify #1 global.max$ substring$ } FUNCTION {author.sort} { author empty$ { key empty$ { "to sort, need author or key in " cite$ * warning$ } { key sortify } if$ } { author sort.format.names } if$ } FUNCTION {author.editor.sort} { author empty$ { editor empty$ { key empty$ { "to sort, need author, editor, or key in " cite$ * warning$ } { key sortify } if$ } { editor sort.format.names } if$ } { author sort.format.names } if$ } FUNCTION {editor.sort} { editor empty$ { key empty$ { "to sort, need editor or key in " cite$ * warning$ } { key sortify } if$ } { editor sort.format.names } if$ } FUNCTION {presort.title} { calc.label calc.clabel title field.or.null sort.format.title " " * #1 entry.max$ substring$ 'sort.label := sort.label 'sort.key$ := } FUNCTION {presort.author} { calc.clabel calc.label type$ "book" = type$ "inbook" = or 'author.editor.sort { type$ "proceedings" = 'editor.sort 'author.sort if$ } if$ #1 entry.max$ substring$ 'sort.label := sort.label 'sort.key$ := } FUNCTION {presort.clabel} { calc.label calc.clabel clabel sortify duplicate$ 'sort.label := #1 entry.max$ substring$ #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {presort.none} { calc.label calc.clabel "" 'sort.label := "" 'sort.key$ := } ITERATE {presort.author} SORT FUNCTION {initialize.extra.label.stuff} { #0 int.to.chr$ 'last.label := "" 'next.extra := #0 'last.extra.num := #0 'ordinal.num := } FUNCTION {forward.pass} { ordinal.num #1 + 'ordinal.num := ordinal.num int.to.str$ 'nlabel := last.label label = { last.extra.num #1 + 'last.extra.num := last.extra.num int.to.chr$ 'extra.label := } { "a" chr.to.int$ 'last.extra.num := "" 'extra.label := label 'last.label := } if$ } FUNCTION {reverse.pass} { next.extra "b" = { "a" 'extra.label := } 'skip$ if$ label extra.label * 'label := clabel extra.label * 'clabel := extra.label 'next.extra := clabel width$ longest.label.width > { clabel 'longest.label := clabel width$ 'longest.label.width := } 'skip$ if$ } EXECUTE {initialize.extra.label.stuff} FUNCTION {initialize.longest.label} { "" 'longest.label := #0 int.to.chr$ 'last.sort.label := "" 'next.extra := #0 'longest.label.width := #0 'last.extra.num := } EXECUTE {initialize.longest.label} ITERATE {forward.pass} REVERSE {reverse.pass} FUNCTION {bib.sort.order.author} { sort.label " " * year field.or.null sortify * " " * title field.or.null sort.format.title * #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {bib.sort.order.title} { sort.label " " * type$ "book" = type$ "inbook" = or 'author.editor.sort { type$ "proceedings" = 'editor.sort 'author.sort if$ } if$ * " " * year field.or.null sortify * #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {bib.sort.order.clabel} { sort.label " " * title field.or.null sort.format.title * #1 entry.max$ substring$ 'sort.key$ := } FUNCTION {bib.sort.order.none} { sort.label 'sort.key$ := } ITERATE {bib.sort.order.author} SORT EXECUTE {begin.bib} ITERATE {call.type$} EXECUTE {end.bib} context-2015.05.18.20150601/texmf-dist/context/0000755000175000017500000000000012532721331020155 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/context/data/0000755000175000017500000000000012532721331021066 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/context/data/texfont/0000755000175000017500000000000012162137547022566 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/context/data/texfont/type-buy.dat0000644000175000017500000001020511244221744025025 0ustar norbertnorbert# itc officina --en=? --ve=itc --co=officina --re --en=? --ve=itc --co=officina --so=itc/officina --ma --in --en=? --ve=itc --co=officina --so=itc/officina --ca=* --pattern=ovbk_* --en=? --ve=itc --co=officina --so=itc/officina --sl=* --pattern=ovbk_* --en=? --ve=itc --co=officina --so=itc/officina --sl=* --pattern=ovb_* --en=? --ve=itc --co=officina --so=itc/officina --ca=* --pattern=owbk_* --en=? --ve=itc --co=officina --so=itc/officina --sl=* --pattern=owbk_* --en=? --ve=itc --co=officina --so=itc/officina --sl=* --pattern=owb_* # bh lucida --en=? --ve=bh --co=lucida --re --en=? --ve=bh --co=lucida --so=bh/lucida --ma --in --expert # fontfont meta --en=? --ve=fontfont --co=meta --re --en=? --ve=fontfont --co=meta --so=fontfont/meta-1 --ma --in --expert --en=? --ve=fontfont --co=meta --so=fontfont/meta-2 --ma --in --expert --en=? --ve=fontfont --co=meta --so=fontfont/meta-1 --sl=* --pattern=mtbk_* --en=? --ve=fontfont --co=meta --so=fontfont/meta-1 --sl=* --pattern=mtbd_* # lucas sun --en=? --ve=lucas --co=sun --re --en=? --ve=lucas --co=sun --so=lucas/sun --ma --in # lucas antiqua --en=? --ve=lucas --co=antiqua --re --en=? --ve=lucas --co=antiqua --so=lucas/antiqua --ma --in # lucas thesans --en=? --ve=lucas --co=thesans --re --en=? --ve=lucas --co=thesans --so=lucas/thesans --ma --in --en=? --ve=lucas --co=thesans --so=lucas/thesans --ma --in --expert # creative arcadia --en=? --ve=creative --co=arcadia --re --en=? --ve=creative --co=arcadia --so=creative/arcadia --ma --in # creative industria --en=? --ve=creative --co=industria --re --en=? --ve=creative --co=industria --so=creative/industria --ma --in # creative insignia --en=? --ve=creative --co=insignia --re --en=? --ve=creative --co=insignia --so=creative/insignia --ma --in # fontfont din --en=? --ve=fontfont --co=din --re --en=? --ve=fontfont --co=din --so=fontfont/din --ma --in # adobe myriad --en=? --so=adobe/myriad --weight=400 --width=600 MyriadMM --en=? --so=adobe/myriad --weight=700 --width=600 MyriadMM --en=? --so=adobe/myriad --weight=400 --width=600 MyriadMM-It --en=? --so=adobe/myriad --weight=700 --width=600 MyriadMM-It --en=? --ve=adobe --co=myriad --so=adobe/myriad --ma --in --pattern=MyriadMM-we* --en=? --ve=adobe --co=myriad --so=adobe/myriad --ma --in --pattern=MyriadMM-It-we* --en=? --ve=adobe --co=myriad --so=adobe/myriad --sl=* --pattern=MyriadMM-we* --en=? --ve=adobe --co=myriad --so=adobe/myriad --ca=* --pattern=MyriadMM-we* # adobe frutiger --en=? --ve=adobe --co=frutiger --re --en=? --ve=adobe --co=frutiger --so=adobe/frutiger --ma --in # itc mendoza --en=? --ve=itc --co=mendoza --re --en=? --ve=itc --co=mendoza --so=itc/mendoza --ma --in # linotype univers --en=? --ve=linotype --co=univers --re --en=? --ve=linotype --co=univers --so=linotype/univers --ma --in # linotype linoletter --en=? --ve=linotype --co=linoletter --re --en=? --ve=linotype --co=linoletter --so=linotype/linoletter --ma --in # adobe utopia # # --en=? --ve=adobe --co=utopia --re # --en=? --ve=adobe --co=utopia --so=adobe/utopia --ma --in # itc kabel --en=? --ve=itc --co=kabel --re --en=? --ve=itc --co=kabel --so=itc/kabel --ma --in # monotype sabon --en=? --ve=monotype --co=sabon --re --en=? --ve=monotype --co=sabon --so=monotype/sabon --ma --in # linotype industria --en=? --ve=linotype --co=industria --re --en=? --ve=linotype --co=industria --so=linotype/industria --ma --in # itc stone --en=? --ve=itc --co=stone --re --en=? --ve=itc --co=stone --so=itc/stone --ma --in # itc bauhaus --en=? --ve=itc --co=bauhaus --re --en=? --ve=itc --co=bauhaus --so=itc/bauhaus --ma --in --en=? --ve=itc --co=bauhaus --so=itc/bauhaus --sl=* --pattern=bh* # ef swift --en=? --ve=ef --co=swift --re --en=? --ve=ef --co=swift --so=ef/swift --ma --in --pattern=sw* # linotype optima-nova --en=? --ve=linotype --co=optima-nova --re --en=? --ve=linotype --co=optima-nova --so=linotype/optima-nova --ma --in # linotype palatino-nova --en=? --ve=linotype --co=palatino-nova --re --en=? --ve=linotype --co=palatino-nova --so=linotype/palatino-nova --ma --in # linotype syntax --en=? --ve=linotype --co=syntax --re --en=? --ve=linotype --co=syntax --so=linotype/syntax --ma --in context-2015.05.18.20150601/texmf-dist/context/data/texfont/type-ghz.dat0000644000175000017500000000236611244221744025027 0ustar norbertnorbert# Gudrun and Hermann Zapf Collection # linotype alcuin # linotype aldus # linotype ams-euler # linotype ariadne # linotype aurelia # linotype carmina # linotype colombine # linotype diotima # linotype edison # linotype itc-zapf-book # linotype itc-zapf-chancery # linotype itc-zapf-dingbats # linotype itc-zapf-international-lt # linotype kompakt # linotype zapfino --en=? --ve=linotype --co=zapfino --re --en=? --ve=linotype --co=zapfino --so=ghz/linotype-zapfino --ma --in # linotype marconi # linotype medici-script # linotype melior --en=? --ve=linotype --co=melior --re --en=? --ve=linotype --co=melior --so=ghz/melior --ma --in # linotype noris # linotype optima --en=? --ve=linotype --co=optima --re --en=? --ve=linotype --co=optima --so=ghz/optima --ma --in # linotype optima-nova --en=? --ve=linotype --co=optima-nova --re --en=? --ve=linotype --co=optima-nova --so=linotype/optima-nova --ma --in # linotype orion # linotype palatino --en=? --ve=linotype --co=palatino --re --en=? --ve=linotype --co=palatino --so=ghz/palatino --ma --in # linotype saphir # linotype shakespeare # linotype sistina # linotype smaragd # linotype vario # linotype venture-script # linotype zapf-essentials-lt # linotype zapf-renaissance-antiqua context-2015.05.18.20150601/texmf-dist/context/data/texfont/type-tmf.dat0000644000175000017500000000621411244221744025021 0ustar norbertnorbert# You can process this file as follows, using texfont.pl: # # texfont --encoding=ec --batch texfont.dat # # where 'ec' can be replaced by 'texnansi', '8r' or otherwise. # # The TEXMFTE and TEXMFGW paths are used by gwtex. # public antp --en=? --ve=public --co=antp --so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW # no longer needed, public antt # # --en=? --ve=public --co=antt --so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW # urw helvetica --en=? --ve=urw --co=helvetica --so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW # urw courier --en=? --ve=urw --co=courier --so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW # urw zapfchan --en=? --ve=urw --co=zapfchan --so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW # urw times --en=? --ve=urw --co=times --so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=urw --co=times --so=auto --ca=* utmr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=urw --co=times --so=auto --sl=* utmr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=urw --co=times --so=auto --sl=* utmb8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW # urw palatino --en=? --ve=urw --co=palatino --so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=urw --co=palatino --so=auto --ca=* uplr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=urw --co=palatino --so=auto --sl=* uplr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=urw --co=palatino --so=auto --sl=* uplb8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW # adobe utopia --en=? --ve=adobe --co=utopia --so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=adobe --co=utopia --so=auto --ca=* putr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=adobe --co=utopia --so=auto --sl=* putr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=adobe --co=utopia --so=auto --sl=* putb8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=adobe --co=utopia --so=auto --ro=TEXMFMAIN,TEXMFEXTRA,TEXMFTE,TEXMFGW --en=? --ve=adobe --co=utopia --so=auto --ca=* putr8a --ro=TEXMFMAIN,TEXMFEXTRA,TEXMFTE,TEXMFGW --en=? --ve=adobe --co=utopia --so=auto --sl=* putr8a --ro=TEXMFMAIN,TEXMFEXTRA,TEXMFTE,TEXMFGW --en=? --ve=adobe --co=utopia --so=auto --sl=* putb8a --ro=TEXMFMAIN,TEXMFEXTRA,TEXMFTE,TEXMFGW # bitstream charter --en=? --ve=bitstrea --co=charter --so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=bitstrea --co=charter --so=auto --ca=* bchr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=bitstrea --co=charter --so=auto --sl=* bchr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=bitstrea --co=charter --so=auto --sl=* bchb8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW # uwr bookman --en=? --ve=urw --co=bookman --so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=urw --co=bookman --so=auto --ca=* ubkl8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=urw --co=bookman --so=auto --sl=* ubkl8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=urw --co=bookman --so=auto --sl=* ubkd8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW # uwr schoolbook --en=? --ve=urw --co=ncntrsbk --so=auto --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=urw --co=ncntrsbk --so=auto --ca=* uncr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=urw --co=ncntrsbk --so=auto --sl=* uncr8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW --en=? --ve=urw --co=ncntrsbk --so=auto --sl=* uncb8a --ro=TEXMFMAIN,TEXMFTE,TEXMFGW context-2015.05.18.20150601/texmf-dist/context/data/texfont/type-fsf.dat0000644000175000017500000000157011244221744025011 0ustar norbertnorbert# Please use the originals instead ! ! ! ! ! # fontsite opus --en=? --ve=fontsite --co=opus --re --en=? --ve=fontsite --co=opus --so=fsf/all --ma --in --pattern=opus* --en=? --ve=fontsite --co=opus --so=fsf/all --sl=* --pattern=opusrg_* --en=? --ve=fontsite --co=opus --so=fsf/all --sl=* --pattern=opusb_* # fontsite typewriter --en=? --ve=fontsite --co=typewriter --re --en=? --ve=fontsite --co=typewriter --so=fsf/all --ma --in --pattern=type* --en=? --ve=fontsite --co=typewriter --so=fsf/all --sl=* --pattern=typerg_* --en=? --ve=fontsite --co=typewriter --so=fsf/all --sl=* --pattern=typeb_* # fontsite garamond --en=? --ve=fontsite --co=garamond --re --en=? --ve=fontsite --co=garamond --so=fsf/all --ma --in --pattern=gara* --en=? --ve=fontsite --co=garamond --so=fsf/all --sl=* --pattern=garamond* --en=? --ve=fontsite --co=garamond --so=fsf/all --sl=* --pattern=garab_* context-2015.05.18.20150601/texmf-dist/context/data/texworks/0000755000175000017500000000000012162137547022765 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/context/data/texworks/texworks-setup.ini0000644000175000017500000000002411244221744026477 0ustar norbertnorbertinipath=. libpath=. context-2015.05.18.20150601/texmf-dist/context/data/texworks/configuration/0000755000175000017500000000000012162137547025634 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/context/data/texworks/configuration/texworks-config.txt0000644000175000017500000000174411244221744031525 0ustar norbertnorbert# TeXworks: Miscellaneous configuration options that don't show up in the Preferences # Template commands to insert for files dragged into the editor window # Note that %1 represents the filename; #RET# represents a newline include-text: \include{%1}#RET# include-postscript: \includegraphics[]{%1}#RET# include-pdf: \includegraphics[]{%1}#RET# include-image: \includegraphics[]{%1}#RET# # Patterns for the Remove Aux Files command; entries are cumulative # (any occurrence of $jobname will be replaced by the root file name) cleanup-patterns: *.aux cleanup-patterns: $jobname.blg $jobname.brf $jobname.ccs $jobname.ent $jobname.fff cleanup-patterns: $jobname.glo $jobname.idx $jobname.idv $jobname.ilg $jobname.ind $jobname.ioa cleanup-patterns: $jobname.lg $jobname.lof $jobname.log $jobname.lot cleanup-patterns: $jobname.mte $jobname.mlf $jobname.out $jobname.pdfsync cleanup-patterns: $jobname.toc $jobname.ttt $jobname.wrm $jobname.xref cleanup-patterns: $jobname.4ct $jobname.4tc context-2015.05.18.20150601/texmf-dist/context/data/texworks/configuration/auto-indent-patterns.txt0000644000175000017500000000114211244221744032451 0ustar norbertnorbert# TeXworks: Patterns for auto-indent modes # Each entry consists of two fields: # "name" # "name" is a name for the mode, which will appear in the Auto-Indent submenu. # This is enclosed in "double quotes", and followed by whitespace to separate it from . # is the regular expression; if this matches the start of the current line when # is pressed, then the new line will be given the same prefix. The regex is not quoted. # (Using ^ at the start of the pattern is not strictly necessary, but improves efficiency.) # "Whitespace only" ^\s+ # "TeX comments" ^(\s+|\s*%+\s*) context-2015.05.18.20150601/texmf-dist/context/data/texworks/configuration/delimiter-pairs.txt0000644000175000017500000000032711244221744031462 0ustar norbertnorbert# TeXworks: Paired delimiters for matching/balancing # Each line gives a pair opening and closing delimiters (a single Unicode character each), # separated by whitespace. ( ) [ ] { } « » ‹ › “ †‘ ’ context-2015.05.18.20150601/texmf-dist/context/data/texworks/configuration/syntax-patterns.txt0000644000175000017500000000216011244221744031551 0ustar norbertnorbert# TeXworks: Patterns for syntax coloring # Each entry consists of three whitespace-separated fields: # # is a color name from the list defined in the SVG standard; # see http://www.w3.org/TR/SVG/types.html#ColorKeywords # is a flag controlling whether this style is subject to spell-checking; # "Y" or "y" for yes, "N" (or anything else, actually) for no. # is the regular expression to match. # Note that order of rules may be important if several rules could match at the same position; # this is why the generic "control sequence" rule comes AFTER the specific \begin/\end one. [ConTeXt TeX] darkred N [\$\{\}] darkblue N [\<\>\"\'\[\]\=\#] goldenrod N [\~\`\%\^\&\-\+\|] darkgreen N \\(?:[\w\@\?\!]+|.) darkgray N %.* [ConTeXt XML] # todo: attributes darkred N \<\?xml.*\?\> darkblue N \<\!\-\-.*\-\-\> darkblue N [\"\'] goldenrod N \<\?.*\?\> darkgreen N \<\/*[a-zA-Z\_\-]*\:*[a-zA-Z\_\-]+ darkgreen N \/\> darkgreen N \> darkred N \&[a-zA-Z\_\-]+\; # other possibilities to be added.... # [BibTeX] # [Metapost] # etc context-2015.05.18.20150601/texmf-dist/context/data/texworks/configuration/tools.ini0000644000175000017500000000131011376503616027470 0ustar norbertnorbert[001] name=ConTeXt MkIV program=mtxrun arguments=--autogenerate, --script, context, $fullname showPdf=true [002] name=ConTeXt MkIV Check program=mtxrun arguments=--autogenerate, --script, check, $fullname showPdf=false [003] name=ConTeXt MkIV Purge program=mtxrun arguments=--autogenerate, --script, context, --purgeall showPdf=false [004] name=ConTeXt MkIV Server program=cmd.exe arguments=/c, start, mtxrun, --autogenerate, --script, server, --auto showPdf=false [005] name=ConTeXt MkIV Update program=mtxrun arguments=--autogenerate, --script, update, --force, --make showPdf=false [006] name=ConTeXt MkIV Make program=mtxrun arguments=--autogenerate, --script, context, --generate, --make showPdf=false context-2015.05.18.20150601/texmf-dist/context/data/texworks/configuration/tag-patterns.txt0000644000175000017500000000252611244221744031004 0ustar norbertnorbert# TeXworks: Patterns for tag recognition # Each entry consists of two whitespace-separated fields: # # is the position in the document structure hierarchy, with 1 being the top level. # is the regular expression to match. # If there is a (capture group) in the regex, this is the fragment that will be used # as the actual tag text; if there is no group, the entire match will be used. # Patterns for ConTeXt sectioning commands: 1 ^\s*\\part\s*(?:\[[^]]*\]\s*)?\{([^}]*)\} 2 ^\s*\\chapter\s*(?:\[[^]]*\]\s*)?\{([^}]*)\} 2 ^\s*\\title\s*(?:\[[^]]*\]\s*)?\{([^}]*)\} 3 ^\s*\\section\s*(?:\[[^]]*\]\s*)?\{([^}]*)\} 3 ^\s*\\subject\s*(?:\[[^]]*\]\s*)?\{([^}]*)\} 4 ^\s*\\subsection\s*(?:\[[^]]*\]\s*)?\{([^}]*)\} 4 ^\s*\\subsubject\s*(?:\[[^]]*\]\s*)?\{([^}]*)\} 5 ^\s*\\subsubsection\s*(?:\[[^]]*\]\s*)?\{([^}]*)\} 5 ^\s*\\subsubsubject\s*(?:\[[^]]*\]\s*)?\{([^}]*)\} 6 ^\s*\\subsubsubsection\s*(?:\[[^]]*\]\s*)?\{([^}]*)\} 6 ^\s*\\subsubsubsubject\s*(?:\[[^]]*\]\s*)?\{([^}]*)\} 6 ^\s*\\subsubsubsubsection\s*(?:\[[^]]*\]\s*)?\{([^}]*)\} 6 ^\s*\\subsubsubsubsubject\s*(?:\[[^]]*\]\s*)?\{([^}]*)\} # Tags with level = 0 are special bookmarks that are separate from the hierarchy # and collected in a separate flat list. 0 ^\s*\\environment\s+([\S]+) 0 ^\s*\\component\s+([\S]+) 0 ^\s*\\project\s+([\S]+) 0 ^\s*\\product\s+([\S]+) context-2015.05.18.20150601/texmf-dist/context/data/texworks/configuration/smart-quotes-modes.txt0000644000175000017500000000060111244221744032134 0ustar norbertnorbert# TeXworks: "Smart Quotes" modes # Each mode has a label (in [square brackets]), followed by lines specifying the # behavior for each quote keystroke. These lines have three fields: # # # # separated by whitespace. # [TeX ligatures] # ' ` ' # " `` '' # [TeX commands] ' \quote{ } " \quotation{ } # [Unicode characters] # ' ‘ ’ # " “ †context-2015.05.18.20150601/texmf-dist/context/data/texworks/texworks-context.rme0000644000175000017500000000015511244221744027034 0ustar norbertnorbertThis is just a placeholder. We need to make sure that we end up here in case of multiple texworks ini files. context-2015.05.18.20150601/texmf-dist/context/data/texworks/completion/0000755000175000017500000000000012162137547025136 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/context/data/texworks/completion/tw-context.txt0000644000175000017500000000004011244221744027776 0ustar norbertnorbert%%!TEX encoding = UTF-8 Unicode context-2015.05.18.20150601/texmf-dist/context/data/texworks/TUG/0000755000175000017500000000000012162137547023424 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/context/data/texworks/TUG/TeXworks.ini0000644000175000017500000000050611376503616025714 0ustar norbertnorbert[General] launchOption=1 locale=en syntaxColoring=ConTeXt TeX autoIndent=None wrapLines=false tabWidth=32 font="Lucida Console,10,-1,5,50,0,0,0,0,0" language=None scaleOption=1 previewScale=200 magnifierSize=2 circularMagnifier=true defaultEngine=ConTeXt MkIV binaryPaths= autoHideConsole=false openDialogDir= recentFileList= context-2015.05.18.20150601/texmf-dist/context/data/scite/0000755000175000017500000000000012336474632022210 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/0000755000175000017500000000000012527212017023661 5ustar norbertnorbertcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-context.properties0000644000175000017500000005070612514560075030606 0ustar norbertnorbert# file : context.properties # version : 18 august 2003 # author : Hans Hagen / PRAGMA ADE / www.pragma-ade.com # there but not yet working: # comment.box.start.tex=\n\\starthiding\n # comment.box.middle.tex= # comment.box.end.tex=\n\\stophiding\n # comment.box.start.xml= # comment.block.start.xml= # calltip.*.end.definition=% # This is the new default for windows 2000+ per 1.56: # # if PLAT_WIN # find.command=findstr /n /s $(find.what) $(find.files) # # uncomment this (or move to user properties) if needed: # # if PLAT_WIN # find.command=fgrep -G -n $(find.what) $(find.files) # 1: better anti-aliasing on windows, also slightly diffent lineheights #~ technology=1 # not much difference # # buffered.draw=0 # two.phase.draw=0 # # no auto save: # # save.on.timer=0 # Just UTF-8 code.page=65001 output.code.page=65001 position.maximize=1 virtual.space=1 textwrapper.margin=4 textwrapper.length=68 output.wrap=0 # xml.auto.close.tags=1 # ConTeXt: suffixes (really needed) file.patterns.tex= file.patterns.latex= file.patterns.context=*.tex;*.mkii;*.mkiv;*.mkvi;*.mkix;*.mkxi; open.suffix.$(file.patterns.context)=.tex # Example : patterns file.patterns.xml= file.patterns.example=*.xml;*.xsl;*.xsd;*.fo;*.exa;*.rlb;*.rlg;*.rlv;*.rng;*.xfdf;*.xslt;*.dtd;*.lmx;*.htm;*.html;*.xhtml;*.ctx;*.export;*.svg;*.xul open.suffix.$(file.patterns.example)=.xml filter.example=eXaMpLe|$(file.patterns.example)| #~ lexer.$(file.patterns.example)=xml # Lua : patterns file.patterns.lua=*.lua;*.luc;*.cld;*.tuc;*.luj;*.lum;*.tma;*.lfg;*.luv;*.lui open.suffix.$(file.patterns.lua)=.lua filter.lua=Lua MkIV|$(file.patterns.lua)| #~ lexer.$(file.patterns.lua)=lua command.compile.$(file.patterns.lua)=mtxrun --script "$(FileNameExt)" command.go.$(file.patterns.lua)=mtxrun --script "$(FileNameExt)" # W: patterns # # file.patterns.w=*.c;*.w;*.cc;*.cpp;*.cxx;*.h;*.hh;*.hpp;*.hxx; # Test: patterns file.patterns.text=*.txt filter.text=Text |$(file.patterns.text)| # lexer.$(file.patterns.txt)=txt file.patterns.pdf=*.pdf filter.pdf=PDF |$(file.patterns.pdf)| # Commands: some scripts if PLAT_WIN name.context.console=cmd name.context.console=$(ComSpec) name.context.gsview=gsview32.exe name.context.acrobat= name.flag.pdfopen=--autopdf #~ name.flag.pdfopen=--autopdf=default if PLAT_GTK name.context.console=rxvt name.context.gsview=gv name.context.acrobat=acroread name.flag.pdfopen=--autopdf name.flag.pdfopen=--autopdf=sumatra name.metafun.console=$(name.context.console) name.example.console=$(name.context.console) name.context.mtxrun=mtxrun --autogenerate name.context.mtxrunjit=mtxrunjit --autogenerate name.context.check=$(name.context.mtxrun) --script check name.context.run=$(name.context.mtxrun) --script context $(name.flag.pdfopen) name.context.runjit=$(name.context.mtxrunjit) --script context $(name.flag.pdfopen) name.context.texshow=$(name.context.mtxrun) texshow name.context.purge=$(name.context.mtxrun) --context --purge --all name.context.showcase=$(name.context.mtxrun) --launch showcase.pdf name.example.xmlcheck=tidy -quiet -utf8 -xml -errors name.metafun.mptopdf=$(name.context.mtxrun) --script mptopdf # if needed one can set MTX_SERVER_ROOT to the root of the documentation if PLAT_WIN name.context.wwwserver=cmd /c start /min "Context Documentation" $(name.context.mtxrun) --script server --auto if PLAT_GTK name.context.wwwserver=$(name.context.mtxrun) --script server --start > ~/context-wwwserver.log & # Commands: help info, e:\websites\www.pragma-ade.com\showcase.pdf / todo: manuals command.help.$(file.patterns.context)=$(name.context.texshow) $(CurrentWord) command.help.$(file.patterns.context)=mtxrun --gethelp --url="http://localhost:31415/mtx-server-ctx-help.lua?command=%command%" --command="$(CurrentWord)" command.help.$(file.patterns.context)=mtxrun --gethelp --url="http://www.contextgarden.net/Command/%command%" --command="$(CurrentWord)" command.help.$(file.patterns.example)= command.help.$(file.patterns.metafun)= command.help.subsystem.$(file.patterns.context)=2 # Commands: tools menu extensions context.distribution.writable=1 # for the moment using subsystem 1 for perl jobs is better (otherwise dangling jobs) command.save.before=1 # xml completion xml.auto.close.tags=1 # extensions import context/scite-ctx # hard coded compile / build / go command.build.$(file.patterns.context)=$(name.context.check) $(FileNameExt) command.build.$(file.patterns.metafun)= command.build.$(file.patterns.example)=$(name.example.xmlcheck) $(FileNameExt) command.build.*.fo=$(name.example.xmlcheck) $(FileNameExt) command.compile.$(file.patterns.context)=$(name.context.run) $(FileNameExt) command.compile.$(file.patterns.metafun)=$(name.context.run) $(name.flag.pdfopen) $(FileNameExt) command.compile.$(file.patterns.example)=$(name.context.run) --forcexml $(FileNameExt) command.compile.*.fo=$(name.context.run) $(name.flag.pdfopen) --forcexml --use=foxet $(FileNameExt) command.compile.subsystem.$(file.patterns.context)=1 command.compile.subsystem.$(file.patterns.metafun)=1 command.compile.subsystem.$(file.patterns.example)=1 command.compile.subsystem.*.fo=1 if PLAT_WIN command.go.$(file.patterns.context)=$(FileName).pdf command.go.$(file.patterns.metafun)=$(FileName).pdf command.go.$(file.patterns.example)=$(FileName).pdf command.go.*.fo=$(FileName).pdf if PLAT_GTK command.go.$(file.patterns.context)=$(name.context.acrobat) $(FileName).pdf command.go.$(file.patterns.metafun)=$(name.context.acrobat) $(FileName).pdf command.go.$(file.patterns.example)=$(name.context.acrobat) $(FileName).pdf command.go.*.fo=$(name.context.acrobat) $(FileName).pdf command.go.subsystem.$(file.patterns.context)=2 command.go.subsystem.$(file.patterns.metafun)=2 command.go.subsystem.$(file.patterns.example)=2 command.go.subsystem.*.fo=2 # 0 : syntax checking command.name.0.$(file.patterns.context)=Check TeX File command.name.0.$(file.patterns.metafun)= command.name.0.$(file.patterns.example)=Check XML File command.0.$(file.patterns.context)=$(name.context.check) $(FileNameExt) command.0.$(file.patterns.metafun)= command.0.$(file.patterns.example)=$(name.example.xmlcheck) $(FileNameExt) # 1 : normal processing command.name.1.$(file.patterns.context)=Process TeX file command.name.1.$(file.patterns.metafun)=Process METAPOST File command.name.1.$(file.patterns.example)=Process XML File command.1.$(file.patterns.context)=$(name.context.run) $(FileNameExt) command.1.$(file.patterns.metafun)=$(name.context.run) $(FileNameExt) --metapost command.1.$(file.patterns.example)=$(name.context.run) $(FileNameExt) --xml command.1.subsystem.$(file.patterns.context)=1 command.1.subsystem.$(file.patterns.metafun)=1 command.1.subsystem.$(file.patterns.example)=1 command.name.29.*=Run with jit command.subsystem.29.*=1 command.29.$(file.patterns.context)=$(name.context.runjit) $(FileNameExt) command.29.$(file.patterns.metafun)=$(name.context.runjit) $(FileNameExt) --metapost command.29.$(file.patterns.exmaple)=$(name.context.runjit) $(FileNameExt) --xml command.groupundo.29.*=yes command.save.before.29.*=2 command.shortcut.29.*=Alt+F12 #~ command.name.30.*=Run with jit #~ command.subsystem.30.*=1 #~ command.30.$(file.patterns.context)=$(name.context.runjit) $(FileNameExt) #~ command.30.$(file.patterns.metafun)=$(name.context.runjit) $(FileNameExt) --metapost #~ command.30.$(file.patterns.exmaple)=$(name.context.runjit) $(FileNameExt) --xml #~ command.groupundo.30.*=yes #~ command.save.before.30.*=2 #~ command.shortcut.30.*=Alt+F7 # 2 : pdf viewing command.name.2.$(file.patterns.context)=View PDF File with GhostScript command.name.2.$(file.patterns.metafun)=View PDF File with GhostScript command.name.2.$(file.patterns.example)=View PDF File with GhostScript command.2.$(file.patterns.context)=$(name.context.gsview) $(FileDir)/$(FileName).pdf command.2.$(file.patterns.metafun)=$(name.context.gsview) $(FileDir)/$(FileName).pdf command.2.$(file.patterns.example)=$(name.context.gsview) $(FileDir)/$(FileName).pdf command.subsystem.2.$(file.patterns.context)=2 command.subsystem.2.$(file.patterns.metafun)=2 command.subsystem.2.$(file.patterns.example)=2 # 3 : clean up command.name.3.$(file.patterns.context)=Purge Files command.name.3.$(file.patterns.metafun)=Purge Files command.name.3.$(file.patterns.example)=Purge Files command.3.$(file.patterns.context)=$(name.context.purge) command.3.$(file.patterns.metafun)=$(name.context.purge) command.3.$(file.patterns.example)=$(name.context.purge) # 4 : documentation command.4.$(file.patterns.context)=$(name.context.showcase) command.4.$(file.patterns.metafun)=$(name.context.showcase) command.4.$(file.patterns.example)=$(name.context.showcase) command.name.4.$(file.patterns.context)=Show Documentation command.name.4.$(file.patterns.metafun)=Show Documentation command.name.4.$(file.patterns.example)=Show Documentation # 6 : console command.name.6=Start Console command.name.6.$(file.patterns.context)=Start Console command.name.6.$(file.patterns.metafun)=Start Console command.name.6.$(file.patterns.example)=Start Console command.6=$(name.context.console) command.6.$(file.patterns.context)=$(name.context.console) command.6.$(file.patterns.metafun)=$(name.context.console) command.6.$(file.patterns.example)=$(name.context.console) # 7 : listings command.name.7=Generate Listing command.name.7.$(file.patterns.context)=Generate Listing command.name.7.$(file.patterns.metafun)=Generate Listing command.name.7.$(file.patterns.example)=Generate Listing command.7=$(name.context.run) --extra=listing --pretty --result=$(FileName) $(FileNameExt) command.7.$(file.patterns.context)=$(name.context.run) --extra=listing --pretty --result=$(FileName) $(FileNameExt) command.7.$(file.patterns.metafun)=$(name.context.run) --extra=listing --pretty --result=$(FileName) $(FileNameExt) command.7.$(file.patterns.example)=$(name.context.run) --extra=listing --pretty --result=$(FileName) $(FileNameExt) command.7.subsystem=1 command.7.subsystem.$(file.patterns.context)=1 command.7.subsystem.$(file.patterns.metafun)=1 command.7.subsystem.$(file.patterns.example)=1 # 10: arranging command.name.10.$(file.patterns.context)=Process and Arrange command.name.10.$(file.patterns.metafun)=Process and Arrange command.name.10.$(file.patterns.example)=Process and Arrange command.10.$(file.patterns.context)=$(name.context.run) --arrange $(FileNameExt) command.10.$(file.patterns.metafun)=$(name.context.run) --mptex $(FileNameExt) command.10.$(file.patterns.example)=$(name.context.run) --arrange --xml $(FileNameExt) command.10.subsystem.$(file.patterns.context)=1 command.10.subsystem.$(file.patterns.metafun)=1 command.10.subsystem.$(file.patterns.example)=1 # 11: make command.name.11.$(file.patterns.context)=Generate Formats (pdfTeX) command.name.11.$(file.patterns.metafun)=Generate Formats command.name.11.$(file.patterns.example)=Generate Formats command.11.$(file.patterns.context)=$(name.context.run) --make --all --pdftex command.11.$(file.patterns.metafun)=$(name.context.run) --make --all command.11.$(file.patterns.example)=$(name.context.run) --make --all command.11.subsystem.$(file.patterns.context)=1 command.11.subsystem.$(file.patterns.metafun)=1 command.11.subsystem.$(file.patterns.example)=1 # 12: make command.name.12.$(file.patterns.context)=Generate Formats (luaTeX) command.12.$(file.patterns.context)=$(name.context.run) --make --all --luatex command.12.subsystem.$(file.patterns.context)=1 # 13: make command.name.13.$(file.patterns.context)=Generate Formats (XeTeX) command.13.$(file.patterns.context)=$(name.context.run) --make --all --xetex command.13.subsystem.$(file.patterns.context)=1 # 15: example command.name.15=Documentation Server command.name.15.$(file.patterns.context)=Documentation Service command.name.15.$(file.patterns.metafun)=Documentation Service command.name.15.$(file.patterns.example)=Documentation Service command.15=$(name.context.wwwserver) command.15.$(file.patterns.context)=$(name.context.wwwserver) command.15.$(file.patterns.metafun)=$(name.context.wwwserver) command.15.$(file.patterns.example)=$(name.context.wwwserver) # Editor: syntax highlighting view.indentation.guides=1 highlight.indentation.guides=1 # Editor: keys user.shortcuts=\ F12|IDM_BUILD|\ Ctrl+F12|IDM_COMPILE|\ Shift+F12|IDM_GO|\ os.x.home.end.keys=0 # Editor: fonts if PLAT_WIN font.monospace=font:Dejavu Sans Mono,size:14 font.errorfont=font:Dejavu Sans Mono,size:8 if PLAT_GTK font.monospace=font:!Dejavu Sans Mono,size:14 font.errorfont=font:!Dejavu Sans Mono,size:8 if PLAT_MAC font.monospace=font:Dejavu Sans Mono,size:14 font.errorfont=font:Dejavu Sans Mono,size:8 font.base=$(font.monospace) font.comment=$(font.monospace) font.text=$(font.monospace) font.text.comment=$(font.monospace) font.embedded.base=$(font.monospace) font.embedded.comment=$(font.monospace) font.vbs=$(font.monospace) # colors and styles colors.red=#7F0000 colors.green=#007F00 colors.blue=#00007F colors.cyan=#007F7F colors.magenta=#7F007F colors.yellow=#7F7F00 colors.white=#FFFFFF colors.light= #CFCFCF colors.grey= #808080 colors.dark= #4F4F4F colors.black= #000000 colors.selection=#F7F7F7 colors.logpanel=#E7E7E7 colors.textpanel=#CFCFCF colors.linepanel=#A7A7A7 colors.tippanel=#444444 colors.right=#0000FF colors.wrong=#FF0000 colors.teal=$(colors.cyan) colors.purple=$(colors.magenta) styles.default=fore:$(colors.black),back:$(colors.textpanel),$(font.base) styles.nothing= styles.number=fore:$(colors.cyan) styles.comment=fore:$(colors.yellow) styles.string=fore:$(colors.magenta) styles.keyword=fore:$(colors.blue),bold styles.char=fore:$(colors.magenta) styles.class=fore:$(colors.black),bold styles.constant=fore:$(colors.cyan),bold styles.definition=fore:$(colors.black),bold styles.error=fore:$(colors.red) styles.function=fore:$(colors.black),bold styles.operator=fore:$(colors.blue) styles.preproc=fore:$(colors.yellow),bold styles.tag=fore:$(colors.cyan) styles.type=fore:$(colors.blue) styles.variable=fore:$(colors.black) styles.identifier=$(styles.nothing) styles.linenumber=back:$(colors.linepanel) styles.bracelight=fore:$(colors.orange),bold styles.bracebad=fore:$(colors.orange),bold styles.indentguide=fore:$(colors.linepanel),back:$(colors.white) styles.calltip=fore:$(colors.white),back:$(colors.tippanel) styles.controlchar=$(styles.nothing) # end of colors and styles # Editor: color schemes caret.width=3 style.*.32=$(font.base),back:$(colors.textpanel) style.*.33=$(font.base),back:$(colors.linepanel) style.errorlist.32=$(font.errorfont),back:$(colors.logpanel) selection.back=#000000 # Editor: fast switching between files tabbar.visible=1 tabbar.hide.one=0 tabbar.multiline=1 buffers=100 load.on.activate=1 check.if.already.open=1 tabbar.multiline=1 # Editor: handy anyway line.margin.visible=1 #~ line.numbers=6 line.margin.width=3+ title.full.path=1 strip.trailing.spaces=1 save.session=1 save.recent=1 open.dialog.in.file.directory=1 # Editor: tabbing tabsize=4 indent.size=4 use.tabs=0 indent.automatic=1 indent.opening=0 indent.closing=0 # Editor: misc # edge.mode=0 # edge.column=80 error.marker.fore=#FFFFFF error.marker.back=#007F7F # Editor: status statusbar.visible=1 statusbar.number=1 statusbar.text.1=$(FileNameExt) | $(FileDate) $(FileTime) | line $(LineNumber) column $(ColumnNumber) | mode $(OverType) | eol $(EOLMode) | $(FileDate) $(FileTime) # Editor: searching find.files= find.what= find.replace.regexp.posix=1 find.files=*.tex *.xml *.mp if PLAT_WIN find.command=fgrep -n $(find.what) $(find.files) # todo: source.files=$(file.patterns.context);$(file.patterns.metafun);$(file.patterns.example);*.pl;*.rb;*.lua # Editor: printing if PLAT_WIN print.colour.mode=1 print.margins=750,750,750,750 print.header.format=$(FileNameExt) — Printed on $(CurrentDate), $(CurrentTime) — Page $(CurrentPage) print.footer.format=$(FilePath) — File date: $(FileDate) — File time: $(FileTime) print.header.style=font:Dejavu Sans Mono,size:10 print.footer.style=font:Dejavu Sans Mono,size:10 # Editor: processing clear.before.execute=1 wrap.output=0 if PLAT_WIN eol.mode=CRLF ensure.final.line.end=1 ensure.consistent.line.ends=1 # Editor: file type default.file.ext=.tex # Editor: auto completion autocompleteword.automatic=1 autocomplete.choose.single=0 # api.*.tex=t:\sources\cont-en-scite.api # Logging style.errorlist.32=$(font.errorfont),back:$(colors.logpanel) # Default style.errorlist.0=fore:$(colors.black) style.errorlist.1=fore:$(colors.red) style.errorlist.2=fore:$(colors.red) style.errorlist.3=fore:$(colors.red) style.errorlist.4=fore:$(colors.green) style.errorlist.5=fore:$(colors.red) style.errorlist.6=fore:$(colors.red) style.errorlist.7=fore:$(colors.red) style.errorlist.8=fore:$(colors.red) style.errorlist.9=fore:$(colors.red) style.errorlist.10=fore:$(colors.green) style.errorlist.11=fore:$(colors.blue) style.errorlist.12=fore:$(colors.cyan) style.errorlist.13=fore:$(colors.red) style.errorlist.14=fore:$(colors.red) style.errorlist.15=fore:$(colors.red) style.errorlist.16=fore:$(colors.red) # Metapost: patterns file.patterns.metafun=*.mp;*.mpx;*.mpy;*.mpii;*.mpiv filter.metafun=MetaFun|$(file.patterns.metafun)| #~ lexer.$(file.patterns.metafun)=metapost command.compile.$(file.patterns.metafun)= command.build.$(file.patterns.metafun)=$(name.context.mtxrun) --script context $(name.flag.pdfopen) $(FileNameExt) command.go.$(file.patterns.metafun)=gv $(FileName).1 command.0.$(file.patterns.metafun)= command.1.$(file.patterns.metafun)= command.2.$(file.patterns.metafun)= command.3.$(file.patterns.metafun)= command.4.$(file.patterns.metafun)= command.5.$(file.patterns.metafun)= command.6.$(file.patterns.metafun)= command.7.$(file.patterns.metafun)= command.8.$(file.patterns.metafun)= command.9.$(file.patterns.metafun)= # Shared highlighting styles.context.default=$(styles.nothing) styles.context.number=$(styles.number) styles.context.comment=$(styles.comment) styles.context.keyword=$(styles.keyword) styles.context.string=$(styles.string) styles.context.command=fore:$(colors.green),bold styles.context.preamble=$(styles.comment) styles.context.embedded=fore:$(colors.black),bold styles.context.grouping=fore:$(colors.red) styles.context.primitive=$(styles.keyword) styles.context.plain=fore:$(colors.dark),bold styles.context.user=fore:$(colors.green) styles.context.data=$(styles.constant) styles.context.special=fore:$(colors.blue) styles.context.extra=fore:$(colors.yellow) styles.context.quote=fore:$(colors.blue),bold # Metapost highlighting style.metapost.0=$(styles.context.default) style.metapost.1=$(styles.context.special) style.metapost.2=$(styles.context.grouping) style.metapost.3=$(styles.context.comment) style.metapost.4=$(styles.context.keyword) style.metapost.5=$(styles.context.default) style.metapost.6=$(styles.context.plain) style.metapost.34=$(styles.bracelight) style.metapost.35=$(styles.bracebad) # TeX highlighting style.tex.0=$(styles.context.default) style.tex.1=$(styles.context.special) style.tex.2=$(styles.context.grouping) style.tex.3=$(styles.context.comment) style.tex.4=$(styles.context.user) style.tex.34=$(styles.bracelight) style.tex.35=$(styles.bracebad) # style.tex.* : external styling happens elsewhere # style.mps.* : external styling happens elsewhere # style.cls.* : external styling happens elsewhere # Lua highlighting: # # might change as we change the cld lexer comment.block.lua=-- comment.block.at.line.start.lua=1 # braces.lua.style=10 style.lua.32=$(styles.context.default) style.lua.0=$(styles.context.default) style.lua.1=$(styles.context.comment) style.lua.2=$(styles.context.comment) style.lua.3=$(styles.context.comment) style.lua.4=$(styles.context.number) style.lua.5=$(styles.context.keyword) style.lua.6=$(styles.context.string) style.lua.7=$(styles.context.string) style.lua.8=$(styles.context.comment) style.lua.9=$(styles.context.default) style.lua.10=$(styles.context.special) style.lua.11=$(styles.context.default) style.lua.12=$(styles.context.default) style.lua.13=$(styles.context.default) style.lua.14=$(styles.context.default) style.lua.15=$(styles.context.default) style.lua.16=$(styles.context.default) style.lua.17=$(styles.context.default) style.lua.18=$(styles.context.default) style.lua.19=$(styles.context.default) style.lua.20=$(styles.context.default) style.context.34=$(styles.bracelight) style.context.35=$(styles.bracebad) # folding fold=1 fold.symbols=3 fold.margin.colour=#CCCCCC # testing caret.width = 3 selection.rectangular.switch.mouse = 1 #~ cache.layout= find.command=mtxrun --script grep "$(find.what)" "$(find.files)" context-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-metapost.properties0000644000175000017500000000350512336241772030753 0ustar norbertnorbert# file : metapost.properties # version : 18 august 2003++ # author : Hans Hagen / PRAGMA ADE / www.pragma-ade.com # Metapost: patterns file.patterns.metapost= file.patterns.metapost=*.mp;*.mpx; filter.metapost=MetaPost|$(file.patterns.metapost)| lexer.$(file.patterns.metapost)=metapost # Metapost: commands (check process view) command.compile.$(file.patterns.metapost)= command.build.$(file.patterns.metapost)=mpost $(FileNameExt) command.go.$(file.patterns.metapost)=gv $(FileName).1 command.0.$(file.patterns.metapost)= command.1.$(file.patterns.metapost)= command.2.$(file.patterns.metapost)= command.3.$(file.patterns.metapost)= command.4.$(file.patterns.metapost)= command.5.$(file.patterns.metapost)= command.6.$(file.patterns.metapost)= command.7.$(file.patterns.metapost)= command.8.$(file.patterns.metapost)= command.9.$(file.patterns.metapost)= # Metapost: highlighting style.metapost.0=fore:#7F7F00 style.metapost.0=fore:#3F3F3F style.metapost.1=fore:#007F7F style.metapost.2=fore:#7F0000 style.metapost.3=fore:#7F7F00 style.metapost.4=fore:#007F00 style.metapost.5=fore:#000000 style.metapost.6=fore:#007F00,italics style.metapost.34=fore:#00007F style.metapost.35=fore:#7F007F # Metapost: comments comment.block.metapost=% comment.block.at.line.start.metapost=1 # Metapost: lexer.metapost.interface.default # # 0 not used # 1 metapost primitives and commands # 2 metafun macros # # first lines of a metapost file are interpreted as follows: # # % interface=none|metapost|mp|metafun lexer.metapost.interface.default=1 # Metapost: lexer.metapost.comment.process # # 0 don't interpret comment # 1 color comment like source code lexer.metapost.comment.process=0 # Metapost: keywords import context/scite-context-data-metapost.properties keywords.$(file.patterns.metapost)=$(keywordclass.metapost.all) # Metapost: end of file context-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-pragma.properties0000644000175000017500000000120012336241772030354 0ustar norbertnorbert# file : pragma.properties # version : 18 august 2003 # author : Hans Hagen / PRAGMA ADE / www.pragma-ade.com # save.backup.first=1 # save.backup.once=1 # save.backup.suffix=.bak # Editor: screen position.left=0 position.top=0 position.width=1920 position.height=1160 output.horizontal.size=250 output.vertical.size=100 # Editor: filters open.filter=\ All Files (*.*)|*.*|\ $(filter.context)\ $(filter.metafun)\ $(filter.example)\ $(filter.lua)\ $(filter.text)\ $(filter.pdf)\ $(filter.cweb)\ $(filter.txt) # Editor: menus menu.language=\ TeX|tex||\ Metapost|metapost||\ XML|xml||\ Lua|lua||\ Text|txt||\ PDF|pdf||\ CWeb|cweb|| context-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-context-user.properties0000644000175000017500000000037212336241772031556 0ustar norbertnorbert# this loades the basics import context/scite-context # internal lexing import context/scite-context-internal # external lexing (tex, mps, cld/lua, xml) import context/scite-context-external # this does some tuning import context/scite-pragma context-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-context-data-tex.properties0000644000175000017500000003560012527207752032313 0ustar norbertnorbertkeywordclass.tex.aleph=\ AlephVersion Alephminorversion Alephrevision Alephversion \ Omegaminorversion Omegarevision Omegaversion boxdir pagebottomoffset \ pagerightoffset keywordclass.tex.etex=\ botmarks clubpenalties currentgrouplevel currentgrouptype \ currentifbranch currentiflevel currentiftype detokenize dimexpr \ displaywidowpenalties eTeXVersion eTeXminorversion eTeXrevision eTeXversion \ everyeof firstmarks fontchardp fontcharht fontcharic \ fontcharwd glueexpr glueshrink glueshrinkorder gluestretch \ gluestretchorder gluetomu ifcsname ifdefined iffontchar \ interactionmode interlinepenalties lastlinefit lastnodetype marks \ muexpr mutoglue numexpr pagediscards parshapedimen \ parshapeindent parshapelength predisplaydirection protected readline \ savinghyphcodes savingvdiscards scantokens showgroups showifs \ showtokens splitbotmarks splitdiscards splitfirstmarks topmarks \ tracingassigns tracinggroups tracingifs tracingnesting tracingscantokens \ unexpanded unless widowpenalties keywordclass.tex.luatex=\ Uchar Udelcode Udelcodenum Udelimiter \ Udelimiterover Udelimiterunder Umathaccent Umathaxis Umathbinbinspacing \ Umathbinclosespacing Umathbininnerspacing Umathbinopenspacing Umathbinopspacing Umathbinordspacing \ Umathbinpunctspacing Umathbinrelspacing Umathchar Umathchardef Umathcharnum \ Umathclosebinspacing Umathcloseclosespacing Umathcloseinnerspacing Umathcloseopenspacing Umathcloseopspacing \ Umathcloseordspacing Umathclosepunctspacing Umathcloserelspacing Umathcode Umathcodenum \ Umathconnectoroverlapmin Umathfractiondelsize Umathfractiondenomdown Umathfractiondenomvgap Umathfractionnumup \ Umathfractionnumvgap Umathfractionrule Umathinnerbinspacing Umathinnerclosespacing Umathinnerinnerspacing \ Umathinneropenspacing Umathinneropspacing Umathinnerordspacing Umathinnerpunctspacing Umathinnerrelspacing \ Umathlimitabovebgap Umathlimitabovekern Umathlimitabovevgap Umathlimitbelowbgap Umathlimitbelowkern \ Umathlimitbelowvgap Umathopbinspacing Umathopclosespacing Umathopenbinspacing Umathopenclosespacing \ Umathopeninnerspacing Umathopenopenspacing Umathopenopspacing Umathopenordspacing Umathopenpunctspacing \ Umathopenrelspacing Umathoperatorsize Umathopinnerspacing Umathopopenspacing Umathopopspacing \ Umathopordspacing Umathoppunctspacing Umathoprelspacing Umathordbinspacing Umathordclosespacing \ Umathordinnerspacing Umathordopenspacing Umathordopspacing Umathordordspacing Umathordpunctspacing \ Umathordrelspacing Umathoverbarkern Umathoverbarrule Umathoverbarvgap Umathoverdelimiterbgap \ Umathoverdelimitervgap Umathpunctbinspacing Umathpunctclosespacing Umathpunctinnerspacing Umathpunctopenspacing \ Umathpunctopspacing Umathpunctordspacing Umathpunctpunctspacing Umathpunctrelspacing Umathquad \ Umathradicaldegreeafter Umathradicaldegreebefore Umathradicaldegreeraise Umathradicalkern Umathradicalrule \ Umathradicalvgap Umathrelbinspacing Umathrelclosespacing Umathrelinnerspacing Umathrelopenspacing \ Umathrelopspacing Umathrelordspacing Umathrelpunctspacing Umathrelrelspacing Umathspaceafterscript \ Umathstackdenomdown Umathstacknumup Umathstackvgap Umathsubshiftdown Umathsubshiftdrop \ Umathsubsupshiftdown Umathsubsupvgap Umathsubtopmax Umathsupbottommin Umathsupshiftdrop \ Umathsupshiftup Umathsupsubbottommax Umathunderbarkern Umathunderbarrule Umathunderbarvgap \ Umathunderdelimiterbgap Umathunderdelimitervgap Uoverdelimiter Uradical Uroot \ Ustack Ustartdisplaymath Ustartmath Ustopdisplaymath Ustopmath \ Usubscript Usuperscript Uunderdelimiter alignmark aligntab \ attribute attributedef catcodetable clearmarks crampeddisplaystyle \ crampedscriptscriptstyle crampedscriptstyle crampedtextstyle fontid formatname \ gleaders ifabsdim ifabsnum ifprimitive initcatcodetable \ latelua luaescapestring luastartup luatexbanner luatexrevision \ luatexversion luafunction mathstyle nokerns noligs \ outputbox pageleftoffset pagetopoffset postexhyphenchar posthyphenchar \ preexhyphenchar prehyphenchar primitive savecatcodetable scantextokens \ suppressfontnotfounderror suppressifcsnameerror suppresslongerror suppressoutererror suppressmathparerror \ matheqnogapstep synctex keywordclass.tex.omega=\ OmegaVersion bodydir chardp charht \ charit charwd leftghost localbrokenpenalty localinterlinepenalty \ localleftbox localrightbox mathdir odelcode odelimiter \ omathaccent omathchar omathchardef omathcode oradical \ pagedir pageheight pagewidth pardir rightghost \ textdir keywordclass.tex.pdftex=\ efcode expanded ifincsname ifpdfabsdim \ ifpdfabsnum ifpdfprimitive leftmarginkern letterspacefont lpcode \ pdfadjustspacing pdfannot pdfcatalog pdfcolorstack pdfcolorstackinit \ pdfcompresslevel pdfcopyfont pdfcreationdate pdfdecimaldigits pdfdest \ pdfdestmargin pdfdraftmode pdfeachlinedepth pdfeachlineheight pdfendlink \ pdfendthread pdffirstlineheight pdffontattr pdffontexpand pdffontname \ pdffontobjnum pdffontsize pdfgamma pdfgentounicode pdfglyphtounicode \ pdfhorigin pdfignoreddimen pdfimageapplygamma pdfimagegamma pdfimagehicolor \ pdfimageresolution pdfincludechars pdfinclusioncopyfonts pdfinclusionerrorlevel pdfinfo \ pdfinsertht pdflastannot pdflastlinedepth pdflastlink pdflastobj \ pdflastxform pdflastximage pdflastximagecolordepth pdflastximagepages pdflastxpos \ pdflastypos pdflinkmargin pdfliteral pdfmapfile pdfmapline \ pdfminorversion pdfnames pdfnoligatures pdfnormaldeviate pdfobj \ pdfobjcompresslevel pdfoptionpdfminorversion pdfoutline pdfoutput pdfpageattr \ pdfpagebox pdfpageheight pdfpageref pdfpageresources pdfpagesattr \ pdfpagewidth pdfpkmode pdfpkresolution pdfprimitive pdfprotrudechars \ pdfpxdimen pdfrandomseed pdfrefobj pdfrefxform pdfrefximage \ pdfreplacefont pdfrestore pdfretval pdfsave pdfsavepos \ pdfsetmatrix pdfsetrandomseed pdfstartlink pdfstartthread pdftexbanner \ pdftexrevision pdftexversion pdfthread pdfthreadmargin pdftracingfonts \ pdftrailer pdfuniformdeviate pdfuniqueresname pdfvorigin pdfxform \ pdfxformattr pdfxformname pdfxformresources pdfximage pdfximagebbox \ quitvmode rightmarginkern rpcode tagcode keywordclass.tex.tex=\ - / AlephVersion Alephminorversion \ Alephrevision Alephversion OmegaVersion Omegaminorversion Omegarevision \ Omegaversion Udelcode Udelcodenum Udelimiter Udelimiterover \ Udelimiterunder Umathaccent Umathaxis Umathbinbinspacing Umathbinclosespacing \ Umathbininnerspacing Umathbinopenspacing Umathbinopspacing Umathbinordspacing Umathbinpunctspacing \ Umathbinrelspacing Umathchar Umathchardef Umathcharnum Umathclosebinspacing \ Umathcloseclosespacing Umathcloseinnerspacing Umathcloseopenspacing Umathcloseopspacing Umathcloseordspacing \ Umathclosepunctspacing Umathcloserelspacing Umathcode Umathcodenum Umathconnectoroverlapmin \ Umathfractiondelsize Umathfractiondenomdown Umathfractiondenomvgap Umathfractionnumup Umathfractionnumvgap \ Umathfractionrule Umathinnerbinspacing Umathinnerclosespacing Umathinnerinnerspacing Umathinneropenspacing \ Umathinneropspacing Umathinnerordspacing Umathinnerpunctspacing Umathinnerrelspacing Umathlimitabovebgap \ Umathlimitabovekern Umathlimitabovevgap Umathlimitbelowbgap Umathlimitbelowkern Umathlimitbelowvgap \ Umathopbinspacing Umathopclosespacing Umathopenbinspacing Umathopenclosespacing Umathopeninnerspacing \ Umathopenopenspacing Umathopenopspacing Umathopenordspacing Umathopenpunctspacing Umathopenrelspacing \ Umathoperatorsize Umathopinnerspacing Umathopopenspacing Umathopopspacing Umathopordspacing \ Umathoppunctspacing Umathoprelspacing Umathordbinspacing Umathordclosespacing Umathordinnerspacing \ Umathordopenspacing Umathordopspacing Umathordordspacing Umathordpunctspacing Umathordrelspacing \ Umathoverbarkern Umathoverbarrule Umathoverbarvgap Umathoverdelimiterbgap Umathoverdelimitervgap \ Umathpunctbinspacing Umathpunctclosespacing Umathpunctinnerspacing Umathpunctopenspacing Umathpunctopspacing \ Umathpunctordspacing Umathpunctpunctspacing Umathpunctrelspacing Umathquad Umathradicaldegreeafter \ Umathradicaldegreebefore Umathradicaldegreeraise Umathradicalkern Umathradicalrule Umathradicalvgap \ Umathrelbinspacing Umathrelclosespacing Umathrelinnerspacing Umathrelopenspacing Umathrelopspacing \ Umathrelordspacing Umathrelpunctspacing Umathrelrelspacing Umathspaceafterscript Umathstackdenomdown \ Umathstacknumup Umathstackvgap Umathsubshiftdown Umathsubshiftdrop Umathsubsupshiftdown \ Umathsubsupvgap Umathsubtopmax Umathsupbottommin Umathsupshiftdrop Umathsupshiftup \ Umathsupsubbottommax Umathunderbarkern Umathunderbarrule Umathunderbarvgap Umathunderdelimiterbgap \ Umathunderdelimitervgap Uoverdelimiter Uradical Uroot Ustack \ Ustartdisplaymath Ustartmath Ustopdisplaymath Ustopmath Usubscript \ Usuperscript Uunderdelimiter above abovedisplayshortskip abovedisplayskip \ abovewithdelims accent adjdemerits advance afterassignment \ aftergroup alignmark aligntab atop atopwithdelims \ attribute attributedef badness baselineskip batchmode \ begingroup belowdisplayshortskip belowdisplayskip binoppenalty bodydir \ botmark botmarks box boxdir boxmaxdepth \ brokenpenalty catcode catcodetable char chardef \ cleaders clearmarks closein closeout clubpenalties \ clubpenalty copy count countdef cr \ crampeddisplaystyle crampedscriptscriptstyle crampedscriptstyle crampedtextstyle crcr \ csname currentgrouplevel currentgrouptype currentifbranch currentiflevel \ currentiftype day deadcycles def defaulthyphenchar \ defaultskewchar delcode delimiter delimiterfactor delimitershortfall \ detokenize dimen dimendef dimexpr directlua \ discretionary displayindent displaylimits displaystyle displaywidowpenalties \ displaywidowpenalty displaywidth divide doublehyphendemerits dp \ dump eTeXVersion eTeXminorversion eTeXrevision eTeXversion \ edef efcode else emergencystretch end \ endcsname endgroup endinput endlinechar eqno \ errhelp errmessage errorcontextlines errorstopmode escapechar \ everycr everydisplay everyeof everyhbox everyjob \ everymath everypar everyvbox exhyphenchar exhyphenpenalty \ expandafter expanded fam fi finalhyphendemerits \ firstmark firstmarks floatingpenalty font fontchardp \ fontcharht fontcharic fontcharwd fontdimen fontid \ fontname formatname futurelet gdef gleaders \ global globaldefs glueexpr glueshrink glueshrinkorder \ gluestretch gluestretchorder gluetomu halign hangafter \ hangindent hbadness hbox hfil hfill \ hfilneg hfuzz hoffset holdinginserts hrule \ hsize hskip hss ht hyphenation \ hyphenchar hyphenpenalty if ifabsdim ifabsnum \ ifcase ifcat ifcsname ifdefined ifdim \ ifeof iffalse iffontchar ifhbox ifhmode \ ifincsname ifinner ifmmode ifnum ifodd \ ifpdfabsdim ifpdfabsnum ifpdfprimitive ifprimitive iftrue \ ifvbox ifvmode ifvoid ifx ignorespaces \ immediate indent initcatcodetable input inputlineno \ insert insertpenalties interactionmode interlinepenalties interlinepenalty \ jobname kern language lastbox lastkern \ lastlinefit lastnodetype lastpenalty lastskip latelua \ lccode leaders left leftghost lefthyphenmin \ leftmarginkern leftskip leqno let letterspacefont \ limits linepenalty lineskip lineskiplimit localbrokenpenalty \ localinterlinepenalty localleftbox localrightbox long looseness \ lower lowercase lpcode luaescapestring luastartup \ luatexbanner luatexrevision luatexversion mag mark \ marks mathaccent mathbin mathchar mathchardef \ mathchoice mathclose mathcode mathdir mathinner \ mathop mathopen mathord mathpunct mathrel \ mathstyle mathsurround maxdeadcycles maxdepth meaning \ medmuskip message middle mkern month \ moveleft moveright mskip muexpr multiply \ muskip muskipdef mutoglue newlinechar noalign \ noboundary noexpand noindent nokerns noligs \ nolimits nolocaldirs nolocalwhatsits nonscript nonstopmode \ nulldelimiterspace nullfont number numexpr odelcode \ odelimiter omathaccent omathchar omathchardef omathcode \ omit openin openout or oradical \ outer output outputbox outputpenalty over \ overfullrule overline overwithdelims pagebottomoffset pagedepth \ pagedir pagediscards pagefilllstretch pagefillstretch pagefilstretch \ pagegoal pageheight pageleftoffset pagerightoffset pageshrink \ pagestretch pagetopoffset pagetotal pagewidth par \ pardir parfillskip parindent parshape parshapedimen \ parshapeindent parshapelength parskip patterns pausing \ pdfadjustspacing pdfannot pdfcatalog pdfcolorstack pdfcolorstackinit \ pdfcompresslevel pdfcopyfont pdfcreationdate pdfdecimaldigits pdfdest \ pdfdestmargin pdfdraftmode pdfeachlinedepth pdfeachlineheight pdfendlink \ pdfendthread pdffirstlineheight pdffontattr pdffontexpand pdffontname \ pdffontobjnum pdffontsize pdfgamma pdfgentounicode pdfglyphtounicode \ pdfhorigin pdfignoreddimen pdfimageapplygamma pdfimagegamma pdfimagehicolor \ pdfimageresolution pdfincludechars pdfinclusioncopyfonts pdfinclusionerrorlevel pdfinfo \ pdfinsertht pdflastannot pdflastlinedepth pdflastlink pdflastobj \ pdflastxform pdflastximage pdflastximagecolordepth pdflastximagepages pdflastxpos \ pdflastypos pdflinkmargin pdfliteral pdfmapfile pdfmapline \ pdfminorversion pdfnames pdfnoligatures pdfnormaldeviate pdfobj \ pdfobjcompresslevel pdfoptionpdfminorversion pdfoutline pdfoutput pdfpageattr \ pdfpagebox pdfpageheight pdfpageref pdfpageresources pdfpagesattr \ pdfpagewidth pdfpkmode pdfpkresolution pdfprimitive pdfprotrudechars \ pdfpxdimen pdfrandomseed pdfrefobj pdfrefxform pdfrefximage \ pdfreplacefont pdfrestore pdfretval pdfsave pdfsavepos \ pdfsetmatrix pdfsetrandomseed pdfstartlink pdfstartthread pdftexbanner \ pdftexrevision pdftexversion pdfthread pdfthreadmargin pdftracingfonts \ pdftrailer pdfuniformdeviate pdfuniqueresname pdfvorigin pdfxform \ pdfxformattr pdfxformname pdfxformresources pdfximage pdfximagebbox \ penalty postdisplaypenalty postexhyphenchar posthyphenchar predisplaydirection \ predisplaypenalty predisplaysize preexhyphenchar prehyphenchar pretolerance \ prevdepth prevgraf primitive protected quitvmode \ radical raise read readline relax \ relpenalty right rightghost righthyphenmin rightmarginkern \ rightskip romannumeral rpcode savecatcodetable savinghyphcodes \ savingvdiscards scantextokens scantokens scriptfont scriptscriptfont \ scriptscriptstyle scriptspace scriptstyle scrollmode setbox \ setlanguage sfcode shipout show showbox \ showboxbreadth showboxdepth showgroups showifs showlists \ showthe showtokens skewchar skip skipdef \ spacefactor spaceskip span special splitbotmark \ splitbotmarks splitdiscards splitfirstmark splitfirstmarks splitmaxdepth \ splittopskip string suppressfontnotfounderror suppressifcsnameerror suppresslongerror \ suppressoutererror synctex tabskip tagcode textdir \ textfont textstyle the thickmuskip thinmuskip \ time toks toksdef tolerance topmark \ topmarks topskip tracingassigns tracingcommands tracinggroups \ tracingifs tracinglostchars tracingmacros tracingnesting tracingonline \ tracingoutput tracingpages tracingparagraphs tracingrestores tracingscantokens \ tracingstats uccode uchyph underline unexpanded \ unhbox unhcopy unkern unless unpenalty \ unskip unvbox unvcopy uppercase vadjust \ valign vbadness vbox vcenter vfil \ vfill vfilneg vfuzz voffset vrule \ vsize vskip vsplit vss vtop \ wd widowpenalties widowpenalty write xdef \ xleaders xspaceskip year keywordclass.tex.xetex=\ XeTeXversion context-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-tex.properties0000644000175000017500000000556612336241772027730 0ustar norbertnorbert# file : tex.properties # version : 18 august 2003 # author : Hans Hagen / PRAGMA ADE / www.pragma-ade.com # TeX users may want to use the Latin Modern Typewriter font: # # use.monospaced=1 # font.monospace=font:LMTypewriter10,size:16.5 # font.errorfont=font:LMTypewriter10,size:11.5 # # These and more presets are done in context.properties. # TeX: patterns file.patterns.tex=*.tex filter.tex=TeX|$(file.patterns.tex)| lexer.$(file.patterns.tex)=tex # TeX: commands (check process view) command.compile.$(file.patterns.tex)= command.build.$(file.patterns.tex)=tex $(FileNameExt) command.go.$(file.patterns.tex)=gv $(FileName).pdf command.0.$(file.patterns.tex)= command.1.$(file.patterns.tex)= command.2.$(file.patterns.tex)= command.3.$(file.patterns.tex)= command.4.$(file.patterns.tex)= command.5.$(file.patterns.tex)= command.6.$(file.patterns.tex)= command.7.$(file.patterns.tex)= command.8.$(file.patterns.tex)= command.9.$(file.patterns.tex)= # TeX: highlighting style.tex.0=fore:#3F3F3F style.tex.1=fore:#007F7F style.tex.2=fore:#7F0000 style.tex.3=fore:#7F7F00 style.tex.4=fore:#007F00 style.tex.34=fore:#00007F style.tex.35=fore:#7F007F # TeX: comments comment.block.tex=% comment.block.at.line.start.tex=1 # TeX: lexer.tex.interface.default # # 0 all \commands # 1 tex etex pdftex omega primitives # 2 context nl (when context.properties is loaded) # 3 context en (when context.properties is loaded) # 4 context de (when context.properties is loaded) # 5 context cz (when context.properties is loaded) # 6 context it (when context.properties is loaded) # 7 context ro (when context.properties is loaded) # 8 latex (no keywords yet; will move up) # # first lines of a tex file are interpreted as follows # # % interface=all|nl|en|de|cz|it|ro|latex lexer.tex.interface.default=0 # TeX: lexer.tex.use.keywords # # 0 don't use keyword lists # 1 use keyword lists lexer.tex.use.keywords=1 # TeX: lexer.tex.comment.process # # 0 don't interpret comment # 1 color comment like source code lexer.tex.comment.process=0 # TeX: lexer.tex.auto.if # # 0 don't handle \if # 1 treat \if as command lexer.tex.auto.if=1 # only the macros that make sense: import context/scite-context-data-tex.properties # collections keywordclass.tex.all=\ $(keywordclass.tex.tex) \ $(keywordclass.tex.etex) \ $(keywordclass.tex.pdftex) \ $(keywordclass.tex.aleph) \ $(keywordclass.tex.omega) \ $(keywordclass.tex.xetex) \ $(keywordclass.tex.plain) # keywords1 is not used since scintilla takes it from 'keywords' and # the other slots are used for context (interfaces) and slot 8 can # be used for latex but as scite ships with its own latex support # anyway so we don't bother about it here keywords.$(file.patterns.tex)=$(keywordclass.tex.all) # TeX: words word.characters.$(file.patterns.tex)=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ@\\ # TeX: end of file ././@LongLink0000644000000000000000000000015100000000000011600 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-context-data-metapost.propertiescontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-context-data-metapost.proper0000644000175000017500000001302212514560075032450 0ustar norbertnorbertkeywordclass.metapost.commands=\ upto downto beginfig endfig \ beginglyph endglyph rotatedaround reflectedabout arrowhead \ currentpen currentpicture cuttings defaultfont extra_beginfig \ extra_endfig ditto EOF down evenly \ fullcircle halfcircle identity in left \ pensquare penrazor penspec origin quartercircle \ right unitsquare up withdots abs \ bbox ceiling center cutafter cutbefore \ dir directionpoint div dotprod intersectionpoint \ inverse mod round unitvector whatever \ cutdraw draw drawarrow drawdblarrow fill \ filldraw drawdot loggingall interact tracingall \ tracingnone pickup undraw unfill unfilldraw \ buildcycle dashpattern decr dotlabel dotlabels \ drawoptions incr label labels max \ min thelabel z beginchar blacker \ capsule_end change_width define_blacker_pixels define_corrected_pixels define_good_x_pixels \ define_good_y_pixels define_horizontal_corrected_pixels define_pixels define_whole_blacker_pixels define_whole_pixels \ define_whole_vertical_blacker_pixels define_whole_vertical_pixels endchar extra_beginchar extra_endchar \ extra_setup font_coding_scheme clearxy clearit clearpen \ shipit font_extra_space exitunless relax hide \ gobble gobbled stop blankpicture counterclockwise \ tensepath takepower direction softjoin makelabel \ rotatedabout flex superellipse image nullpen \ savepen clearpen penpos penlabels range \ thru z laboff bye red \ green blue cyan magenta yellow \ black white background mm pt \ dd bp cm pc cc \ in triplet quadruplet keywordclass.metapost.disabled=\ verbatimtex troffmode keywordclass.metapost.internals=\ mitered rounded beveled butt \ squared eps epsilon infinity bboxmargin \ ahlength ahangle labeloffset dotlabeldiam defaultpen \ defaultscale join_radius charscale pen_lft pen_rt \ pen_top pen_bot keywordclass.metapost.metafont=\ autorounding beginchar blacker boundarychar \ capsule_def capsule_end change_width chardp chardx \ chardy charexists charext charht charic \ charlist charwd cull cullit currenttransform \ currentwindow define_blacker_pixels define_corrected_pixels define_good_x_pixels define_good_y_pixels \ define_horizontal_corrected_pixels define_pixels define_whole_blacker_pixels define_whole_pixels define_whole_vertical_blacker_pixels \ define_whole_vertical_pixels designsize display displaying endchar \ extensible extra_beginchar extra_endchar extra_setup fillin \ font_coding_scheme font_extra_space font_identifier font_normal_shrink font_normal_space \ font_normal_stretch font_quad font_size font_slant font_x_height \ fontdimen fontmaking gfcorners granularity grayfont \ headerbyte hppp hround imagerules italcorr \ kern labelfont ligtable lowres_fix makebox \ makegrid maketicks mode_def mode_setup nodisplays \ notransforms numspecial o_correction openit openwindow \ pixels_per_inch proofing proofoffset proofrule proofrulethickness \ rulepen screenchars screenrule screenstrokes screen_cols \ screen_rows showit slantfont smode smoothing \ titlefont totalweight tracingedges tracingpens turningcheck \ unitpixel vppp vround xoffset yoffset keywordclass.metapost.primitives=\ charcode day linecap linejoin \ miterlimit month pausing prologues showstopping \ time tracingcapsules tracingchoices mpprocset tracingcommands \ tracingequations tracinglostchars tracingmacros tracingonline tracingoutput \ tracingrestores tracingspecs tracingstats tracingtitles truecorners \ warningcheck year false nullpicture pencircle \ true and angle arclength arctime \ ASCII boolean bot char color \ cosd cycle decimal directiontime floor \ fontsize hex infont intersectiontimes known \ length llcorner lrcorner makepath makepen \ mexp mlog normaldeviate not numeric \ oct odd or path pair \ pen penoffset picture point postcontrol \ precontrol reverse rotated scaled shifted \ sind slanted sqrt str string \ subpath substring transform transformed ulcorner \ uniformdeviate unknown urcorner xpart xscaled \ xxpart xypart ypart yscaled yxpart \ yypart zscaled addto clip input \ interim let newinternal save setbounds \ shipout show showdependencies showtoken showvariable \ special begingroup endgroup of curl \ tension and controls interpath on \ off def vardef enddef expr \ suffix text primary secondary tertiary \ primarydef secondarydef tertiarydef randomseed also \ contour doublepath withcolor withcmykcolor withpen \ dashed if else elseif fi \ for endfor forever exitif within \ forsuffixes step until charlist extensible \ fontdimen headerbyte kern ligtable boundarychar \ chardp charext charht charic charwd \ designsize fontmaking charexists cullit currenttransform \ gfcorners grayfont hround imagerules lowres_fix \ nodisplays notransforms openit displaying currentwindow \ screen_rows screen_cols pixels_per_inch cull display \ openwindow numspecial totalweight autorounding fillin \ proofing tracingpens xoffset chardx granularity \ smoothing turningcheck yoffset chardy hppp \ tracingedges vppp extra_beginfig extra_endfig mpxbreak \ endinput message delimiters turningnumber errmessage \ readstring scantokens end outer inner \ write to readfrom withprescript withpostscript \ top bot lft rt ulft \ urt llft lrt redpart greenpart \ bluepart cyanpart magentapart yellowpart blackpart \ prescriptpart postscriptpart rgbcolor cmykcolor colormodel \ graypart greypart greycolor graycolor dashpart \ penpart stroked filled textual clipped \ bounded pathpart expandafter minute hour \ outputformat outputtemplate filenametemplate fontmapfile fontmapline \ fontpart fontsize glyph restoreclipcolor troffmode \ runscript maketext keywordclass.metapost.shortcuts=\ .. ... -- --- \ & \ keywordclass.metapost.tex=\ btex etex verbatimtex ././@LongLink0000644000000000000000000000015300000000000011602 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-context-data-interfaces.propertiescontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-context-data-interfaces.prop0000644000175000017500000040475012523235204032415 0ustar norbertnorbertkeywordclass.context.cs=\ CAP Cap Caps Character \ Characters Cisla KAP Kap Kaps \ MESIC MONTH Rimskecislice Romannumerals SLOVA \ SLOVO Slova Slovo VSEDNIDEN WEEKDAY \ WORD WORDS Word Words Znak \ Znaky about adaptlayout aktualnicislonadpisu aktualnidatum \ appendix arg at atleftmargin atpage \ atrightmargin background barevnalista barva bilemisto \ blackrule blackrules blank bookmark bottomspace \ bublinkovanapoveda but button bydliste bypassblocks \ cap celkovypocetstran cernalinka cernelinky chapter \ character characters chem cisla cislonadpisu \ cislopodrovnice cislorovnice cislostrany citace citovat \ clip clonefield color column comment \ comparecolorgroup comparepalet completecombinedlist completelistoffloats completelistofsorts \ completelistofsynonyms completepagenumber completeregister convertnumber copyfield \ correctwhitespace coupledocument coupledregister couplemarking couplepage \ couplepaper coupleregister crlf currentdate currentheadnumber \ cutspace date datum decouplemarking decrementnumber \ define defineblank defineblock definebodyfont definebodyfontDEF \ definebodyfontREF definebodyfontenvironment definebuffer definecolor definecolorgroup \ definecolumnbreak definecolumnset definecombination definecombinedlist defineconversion \ definedescription definedfont defineenumeration definefield definefieldstack \ definefiguresymbol definefloat definefont definefontfeature definefonthandling \ definefontsynonym defineframed defineframedtext definehead defineindentedtext \ defineinmargin defineinteractionmenu defineitemgroup definelabel definelayer \ definelayout definelist definelogo definemakeup definemarking \ definemathalignment defineoutput defineoverlay definepagebreak definepalet \ definepapersize defineparagraphs defineplacement defineprofile defineprogram \ definerawfont definereference definereferenceformat definereferencelist defineregister \ definerule definesection definesectionblock definesorting definestartstop \ definesubfield definesymbol definesynonyms definetabletemplate definetabulate \ definetext definetextposition definetextvariable definetype definetypeface \ definetyping defineversion definuj definujakcent definujbarvu \ definujblok definujbloksekce definujbuffer definujfont definujformatodkazu \ definujhbox definujhlavnipole definujinterakcnimenu definujkombinovanyseznam definujkonverzi \ definujlogo definujnadpis definujobrazeksymbol definujodkaz definujodstavce \ definujopis definujoramovani definujoramovanytext definujpaletu definujplvouciobjekt \ definujpodpole definujpole definujpopis definujpopisek definujprekryv \ definujpreskok definujprikaz definujprofil definujprogram definujprostredizakladnihofontu \ definujrejstrik definujsablonutabulky definujsekci definujseznam definujseznamodkazu \ definujskupinubarev definujstartstop definujstyl definujstylfontu definujsymbol \ definujsynonumumfontu definujsynonyma definujtabelaci definujtext definujtrideni \ definujupravu definujvelikostpapiru definujverzi definujvycet definujvystup \ definujzakladnifont definujzasobnikpoli definujznaceni definujznak delkaseznamu \ description determineheadnumber determinelistcharacteristics disableinteractionmenu dodrzujprofil \ dodrzujverzi dodrzujverziprofilu dvoustrannypapir emptylines enumeration \ externalfigure externiobraz fakt field fieldstack \ fillinfield fillinline fillinrules fillintext fitfield \ fixedspaces followprofile followprofileversion followversion footnote \ footnotetext forceblocks fraction framed framedtext \ from getbuffer getmarking getnumber godown \ goto gotobox graycolor grid hairline \ head headnumber headsym headtext hideblocks \ high hl hlavnijazyk hlavniuroven hodnotabarvy \ hodnotasedi immediatebetweenlist immediatetolist in indentation \ indenting inframed ininner inleft inline \ inmargin inneredgedistance inneredgewidth innermargindistance innermarginwidth \ inothermargin inouter inright instalacejazyka installlanguage \ interactionbar interactionbuttons interakcnilista interakcnitlacitka interaktivnimenu \ item items its jazyk jdidolu \ jdina jdinabox jdinastranu jmeno kap \ keepblocks klonujpole komponenta konvertujcislo kopirujpole \ korekcebilehomista labeling labels labeltext language \ leftaligned leg listsymbol loadsorts loadsynonyms \ logfields lohi low mainlanguage maoramovani \ mapfontsize mar marginalnilinka marginalninadpis marginalnislovo \ marginalnitext marginrule margintext marking markversion \ matematika mathematics mazaramovani mediaeval meritko \ mesic mezera midaligned mirror month \ moveformula moveongrid movesidefloat mrizka nadpis \ nadruhyokraj nalevo nalevyokraj name naokraj \ napravo napravyokraj nastavbarvu nastavbarvy nastavbilamista \ nastavblok nastavbloksekce nastavbuffer nastavcernelinky nastavcislonadpisu \ nastavcislostrany nastavcislovani nastavcislovaniodstavcu nastavcislovaniradku nastavcislovanistran \ nastavcitaci nastavdefinicipoznamekpodcarou nastavdeleniplvoucichobjektu nastavdelitko nastavdolnitexty \ nastavexterniobrazy nastavhorejsek nastavhornitexty nastavinterakci nastavinterakcnilistu \ nastavinterakcnimenu nastavinterakcniobrazovku nastavjazyk nastavkapitalky nastavkombinovanyseznam \ nastavkomentar nastavkomentarstrany nastavlegendu nastavmarginalie nastavmarginalniblok \ nastavmarginalnilinky nastavmeziradkovoumezeru nastavnadpis nastavnadpisy nastavodkazovani \ nastavodsazovani nastavodstavce nastavopis nastavoramovanetexty nastavoramovani \ nastavorez nastavotoceni nastavpaletu nastavplvouciobjekt nastavplvouciobjekty \ nastavpodcislostrany nastavpodtrzeni nastavpole nastavpolozky nastavpopisek \ nastavpopisky nastavpopisy nastavpozadi nastavpoznamkypodcarou nastavprechodstrany \ nastavpreskok nastavprofily nastavprogramy nastavprostredizakladnihofontu nastavpublikace \ nastavradkovani nastavradky nastavrastr nastavrejstrik nastavrovnice \ nastavsadusymbolu nastavsekci nastavseznam nastavseznamodkazu nastavsirkucary \ nastavsloupce nastavspodek nastavspojeni nastavsynchronizaci nastavsynchronizacnilistu \ nastavsynonyma nastavsystem nastavtab nastavtabelaci nastavtabulky \ nastavtenkelinky nastavtext nastavtexthlavicky nastavtextovelinky nastavtextpopisku \ nastavtexttexty nastavtextyupati nastavtextyzahlavi nastavtlacitka nastavtoleranci \ nastavtrideni nastavtype nastavumisteniprotejsku nastavumistovani nastavupati \ nastavupravu nastavurl nastavusporadani nastavvelikostpapiru nastavverze \ nastavvsechnapole nastavvycty nastavvyplnovelinky nastavvyplnoveradky nastavvystup \ nastavvzhled nastavzahlavi nastavzakladnifont nastavzarovnani nastavznaceni \ nastavzuzeni nastrane navigating nejakyradek nekde \ nextsection neznamo nivy nizky nocap \ noheaderandfooterlines noindenting nokap nolist nomarking \ nomoreblocks nomorefiles nop nospace note \ notopandbottomlines nowhitespace numberofsubpages numbers obrazovka \ odkaz odkaznadatum odkaznastranu odkaznatext odkazujici \ odsazenishora odsazenizleva odsazovani okr opakovat \ opis opissoubor oramovani oref orez \ otocit outeredgedistance outeredgewidth outermargindistance outermarginwidth \ overbar overbars overstrike overstrikes oznaceni \ oznacverzi packed page pagedepth pageoffset \ pagereference paragraph parovastrana part periods \ pis placebookmarks placecombinedlist placefloat placefootnotes \ placeformula placeheadnumber placeheadtext placelegend placelist \ placelistoffloats placelistofsorts placelistofsynonyms placelocalfootnotes placelogos \ placeongrid placeontopofeachother placepagenumber placerawlist placereferencelist \ placeregister placerule placesidebyside placesubformula placetextvariable \ plnezneni pol pole polozka polozky \ popisky poppisek porovnejpaletu porovnejskupinubarev position \ positiontext pozadi pozice poznamka poznamkapodcarou \ pref prelozit premistinamrizku prepninazakladnifont preskoc \ prizpusobivepole prizpusobvzhled processblocks processpage produkt \ program projekt propojeneznaceni propojenydokument propojenyrejstrik \ prostredi publication publikace quotation quote \ ran ref reference referral referraldate \ register reservefloat reset resetmarking resetnumber \ resettextcontent resetznaceni rightaligned rimskecislice romannumerals \ rotate rozdelplvouciobjekt rozmer rozpojeneznaceni roztazene \ scale schovejbloky screen section sedabarva \ seeregister selectblocks selectpaper selectversion setnumber \ settextcontent settextvariable setupalign setupanswerarea setuparranging \ setupbackground setupbackgrounds setupblackrules setupblank setupblock \ setupbodyfont setupbodyfontenvironment setupbottom setupbottomtexts setupbuffer \ setupbuttons setupcapitals setupcaption setupcaptions setupclipping \ setupcolor setupcolors setupcolumns setupcolumnset setupcolumnsetlines \ setupcolumnsetstart setupcombinations setupcombinedlist setupcomment setupdescriptions \ setupenumerations setupexternalfigures setupfield setupfields setupfillinlines \ setupfillinrules setupfloat setupfloats setupfloatsplitting setupfonthandling \ setupfontsynonym setupfooter setupfootertexts setupfootnotedefinition setupfootnotes \ setupforms setupformulas setupframed setupframedtexts setuphead \ setupheader setupheadertexts setupheadnumber setupheads setupheadtext \ setuphyphenmark setupindentedtext setupindenting setupinmargin setupinteraction \ setupinteractionbar setupinteractionmenu setupinteractionscreen setupinterlinespace setupinterlinespace2 \ setupitemgroup setupitems setuplabeltext setuplanguage setuplayout \ setuplegend setuplinenumbering setuplines setuplinewidth setuplist \ setuplistalternative setupmakeup setupmarginblocks setupmarginrules setupmarking \ setupmathalignment setupnarrower setupnumber setupnumbering setupoppositeplacing \ setupoutput setuppagenumber setuppagenumbering setuppagetransitions setuppalet \ setuppaper setuppapersize setupparagraphnumbering setupparagraphs setupplacement \ setuppositioning setupprofiles setupprograms setuppublications setupquote \ setupreferencelist setupreferencing setupregister setuprotate setuprule \ setupscreens setupsection setupsectionblock setupsorting setupspacing \ setupstartstop setupstrut setupsubpagenumber setupsymbolset setupsynchronization \ setupsynchronizationbar setupsynonyms setupsystem setuptab setuptables \ setuptabulate setuptext setuptextposition setuptextrules setuptexttexts \ setuptextvariable setupthinrules setuptolerance setuptop setuptoptexts \ setuptype setuptyping setupunderbar setupurl setupversions \ setupwhitespace showbodyfont showbodyfontenvironment showcolor showcolorgroup \ showexternalfigures showfields showframe showgrid showlayout \ showmakeup showpalet showprint showsetups showstruts \ showsymbolset sirkalevehookraje sirkalevemarginalie sirkamarginalie sirkaokraje \ sirkapapiru sirkapravehookraje sirkapravemarginalie sirkasazby sirkaseznamu \ sirkatextu sirkatiskpapiru sloupec slovovpravo someline \ somewhere sort space splitfloat spodek \ stanovcharakteristickuseznamu stanovcislonadpisu startalignment startbackground startbarva \ startbuffer startcislovaniradku startcitace startcolor startcolumnmakeup \ startcolumns startcolumnset startcombination startcomment startcomponent \ startdescription startdocument startdokument startenumeration startenvironment \ startfact startfigure startfloattext startformula startframedtext \ startglobalni starthiding startinteractionmenu startitemgroup startkodovani \ startkomponenta startkorekceradku startlegend startline startlinecorrection \ startlinenumbering startlines startlocal startlocalenvironment startlocalfootnotes \ startlokalni startlokalnipoznamkypodcarou startmakeup startmarginalniblok startmarginalnilinka \ startmarginblock startmarginrule startnamemakeup startnarrower startnezhustene \ startobraz startopposite startoverlay startoverview startpacked \ startparagraph startpositioning startpostponing startpozadi startprehled \ startprekryv startproduct startprodukt startprofil startprofile \ startproject startprojekt startprostredi startprotejsek startquotation \ startradek startradky startrastr startregister startsadasymbolu \ startsloupce startspojeni startsymbolset startsynchronizace startsynchronization \ starttable starttables starttabulate starttabulka starttabulky \ starttext starttextovalinka starttextrule starttyping startumistovani \ startunpacked startuprava startversion startverze startzarovnavani \ startzhustene startzuzeni stopalignment stopbackground stopbarva \ stopbuffer stopcislovaniradku stopcitace stopcolor stopcolumnmakeup \ stopcolumns stopcolumnset stopcombination stopcomment stopcomponent \ stopdescription stopdocument stopdokument stopenumeration stopenvironment \ stopfact stopfigure stopfloattext stopformula stopframedtext \ stopglobalni stophiding stopinteractionmenu stopitemgroup stopkodovani \ stopkomponenta stopkorekceradku stoplegend stopline stoplinecorrection \ stoplinenumbering stoplines stoplocal stoplocalenvironment stoplocalfootnotes \ stoplokalni stoplokalnipoznamkypodcarou stopmakeup stopmarginalniblok stopmarginalnilinka \ stopmarginblock stopmarginrule stopnamemakeup stopnarrower stopnezhustene \ stopopposite stopoverlay stopoverview stoppacked stopparagraph \ stoppositioning stoppostponing stoppozadi stopprehled stopprekryv \ stopproduct stopprodukt stopprofil stopprofile stopproject \ stopprojekt stopprostredi stopprotejsek stopquotation stopradek \ stopradky stoprastr stopsloupce stopspojeni stopsymbolset \ stopsynchronizace stopsynchronization stoptable stoptables stoptabulate \ stoptabulka stoptabulky stoptext stoptextovalinka stoptextrule \ stoptyping stopumistovani stopunpacked stopuprava stopversion \ stopverze stopzarovnavani stopzhustene stopzuzeni strana \ stretched sub subject subpagenumber subsection \ subsubject subsubsection subsubsubject switchtobodyfont switchtorawfont \ sym symbol synchronizacnilista synchronizationbar synchronize \ synchronizovat synonym tab tecky tenkalinka \ tenkelinky testcolumn testpage tex texthlavicky \ textovalinka textpopisku textreference textrule textvariable \ thinrule thinrules title tlacitko tlacitkomenu \ tloustkacary tooltip translate tref tvrdamezera \ tvrdemezery txt typ type typebuffer \ typefile ukazbarvu ukazexterniobrazy ukazmrizku ukaznastaveni \ ukazpaletu ukazpodpery ukazpole ukazpostredizakladnihofontu ukazramecek \ ukazsadusymbolu ukazskupinubarev ukazupravu ukazvytisk ukazvzhled \ ukazzakladnifont umistikombinovanyseznam umistilegendu umistiloga umistilokalnipoznamkypodcarou \ umistinadsebe umistinamrizku umistipodrovnici umistipoznamkypodcarou umistirejstrik \ umistirovnici umistiseznam umistivedlesebe umistizalozky underbar \ underbars urcicharakteristikurejstriku useURL useXMLfilter useblocks \ usecommands usedirectory useencoding useexternaldocument useexternalfigure \ useexternalfile useexternalfiles useexternalsoundtrack usemodule usereferences \ usespecials usesymbols usetypescript usetypescriptfile uzijJSscripts \ uzijURL uzijadresar uzijbloky uzijexternidokument uzijexterniobraz \ uzijexternisoubor uzijexternisoubory uzijexternizvuk uzijkodovani uzijmodul \ uzijmoduly uzijodkazy uzijprikazy uzijspeciality uzijsymbol \ uzijurl version verze vl vlasovalinka \ vlevo vpravo vradku vsedniden vyberbloky \ vyberpapir vyberverzi vyplnenytext vyplnovelinky vyplnovepole \ vyplnovyradek vyskahorejsku vyskapapiru vyskasazby vyskaseznamu \ vyskaspodku vyskatextu vyskatiskpapiru vyskaupati vyskazahlavi \ vysoky vyznam vzdalenosthorejsku vzdalenostlevehookraje vzdalenostlevemarginalie \ vzdalenostmarginalie vzdalenostokraje vzdalenostpravehookraje vzdalenostpravemarginalie vzdalenostspodku \ vzdalenostupati vzdalenostzahlavi weekday whitespace wordright \ writebetweenlist writetolist writetoreferencelist writetoregister zablokujinterakcnimenu \ zachovejbloky zadnamezera zadnebilemisto zadnedalsibloky zadnedalsisoubory \ zadnehorniadolniradky zadneodsazovani zadnezahlaviaupati zadneznaceni zadnyrozmer \ zadnyseznam zadnytest zalozka zapisdorejstriku zapisdoseznamu \ zapisdoseznamuodkazu zapismeziseznam zaramovani zarovnanonastred zarovnanovlevo \ zarovnanovpravo zasobnikpoli zaznamovepole zhustene ziskejbuffer \ ziskejznaceni zlomek znaceni znak znaky \ zpracujbloky zpracujstranu zrcadlit zref zvysujicicislo keywordclass.context.de=\ Buchstabe Buchstaben CAP Cap \ Caps Character Characters KAP Kap \ Kaps MONAT MONTH Roemischezahlen Romannumerals \ WEEKDAY WOCHENTAG WOERTER WORD WORDS \ WORT Woerter Word Words Wort \ Ziffern about abstandlinkerrand abstandoben abstandrechterrand \ abstandunten adaptlayout amgitterausrichten amgitterneuausrichten appendix \ arg at atleftmargin atpage atrightmargin \ aufseite ausfuellfeld ausfuelltext ausschnitt background \ bearbeitebloecke bearbeiteseite bedeutung behaltebloecke bei \ bemerkung benutzekodierung benutzespezielles benutzeverzeichnis beschrifteversion \ beschriftung bestimmekopfnummer bestimmelistencharakeristika bestimmeregistercharakteristika bildschirm \ blackrule blackrules blank blanko bookmark \ bottomspace breitelinkerrand breiterechterrand bruch buchstabe \ buchstaben but button bypassblocks cap \ chapter character characters chem clip \ clonefield color column comment comparecolorgroup \ comparepalet completecombinedlist completelistoffloats completelistofsorts completelistofsynonyms \ completepagenumber completeregister convertnumber copyfield correctwhitespace \ coupledocument coupledregister couplemarking couplepage couplepaper \ coupleregister crlf currentdate currentheadnumber cutspace \ date datum decouplemarking decrementnumber define \ defineblank defineblock definebodyfont definebodyfontDEF definebodyfontREF \ definebodyfontenvironment definebuffer definecolor definecolorgroup definecolumnbreak \ definecolumnset definecombination definecombinedlist defineconversion definedescription \ definedfont defineenumeration definefield definefieldstack definefiguresymbol \ definefloat definefont definefontfeature definefonthandling definefontsynonym \ defineframed defineframedtext definehead defineindentedtext defineinmargin \ defineinteractionmenu defineitemgroup definelabel definelayer definelayout \ definelist definelogo definemakeup definemarking definemathalignment \ defineoutput defineoverlay definepagebreak definepalet definepapersize \ defineparagraphs defineplacement defineprofile defineprogram definerawfont \ definereference definereferenceformat definereferencelist defineregister definerule \ defineschriftsynonym definesection definesectionblock definesorting definestartstop \ definesubfield definesymbol definesynonyms definetabletemplate definetabulate \ definetext definetextposition definetextvariable definetype definetypeface \ definetyping defineversion definiereabbsymbol definiereabsaetze definiereabschnitt \ definiereabschnittsblock definiereakzent definierebefehl definierebeschreibung definierebeschreibungen \ definierebeschriftung definiereblanko definiereblock definierefarbe definierefarbengruppe \ definierefeld definierefeldstapel definierefliesstext definierefliesstextumgebung definieregleitobjekt \ definierehauptfeld definierehbox definiereinteraktionsmenue definierekonversion definierelabel \ definiereliste definierelogo definieren definierenummerierung definiereoverlay \ definierepalette definierepapierformat definiereprofil definiereprogramme definierepuffer \ definierereferenz definierereferenzformat definierereferenzliste definiereregister definiereschrift \ definiereschriftstil definieresortieren definierestartstop definierestil definieresubfeld \ definieresymbol definieresynonyme definieretabellenvorlage definieretabulator definieretext \ definieretippen definiereueberschrift definiereumbruch definiereumrahmt definiereumrahmtertext \ definiereversion definierezeichen definierezusammengestellteliste description determineheadnumber \ determinelistcharacteristics dimension disableinteractionmenu doppelseite doppelseitigespapier \ drehen duennelinie duennerumriss einezeile einziehen \ emptylines entknuepfebeschriftung enumeration externalfigure externeabbildung \ farbbalken farbe farbewert feld feldstapel \ festesspatium field fieldstack fillinfield fillinline \ fillinrules fillintext fitfield fixedspaces folgeprofil \ folgeprofilversion folgeversion followprofile followprofileversion followversion \ footnote footnotetext forceblocks format formelnummer \ fraction framed framedtext from fussnote \ fusszeileabstand fusszeilenhoehe gefuelltesrechteck gefuelltezeile geg \ gesamtseitenanzahl gestreckt getbuffer getmarking getnumber \ gitter godown goto gotobox graufarbe \ grauwert graycolor grid haarlinie hairline \ hauptsprache head headnumber headsym headtext \ heutigesdatum heutigeskopfnummer hideblocks high hintergrund \ hl hoch hoeheoben hoeheunten holebeschriftung \ holepuffer imlinken imlinkenrand immaumrise immediatebetweenlist \ immediatetolist imrechten imrechtenrand imumriss in \ inaktiviereinteraktionsmenue inanderermarginale indentation indenting inframed \ ininner inleft inline inlinkermarginale inmargin \ inmarginalie inneredgedistance inneredgewidth innermargindistance innermarginwidth \ inothermargin inouter inrechtermarginale inright installieresprache \ installlanguage interactionbar interactionbuttons interaktionsbalken interaktionsknopfe \ interaktionsmenue inzeile irgendwo item items \ its kap keepblocks keindimension keinebeschriftung \ keinebloeckemehr keinedateienmehr keinekopfundfusszeilen keineliste keinspatium \ keintest keinzeilenobenundunten keinzwischenraum kleinerdurchschuss klonierefeld \ knopf komponente konvertierezahl kopf kopfniveau \ kopfnummer kopfweite kopfzeilenabstand kopfzeilenhoehe kopierefeld \ korrigierezwischenraum label labeling labels labeltext \ language leftaligned leg liniendicke linkemarginalafstand \ linkemarginalbreite linksbuendig listenbreite listenhoehe listenlaenge \ listsymbol loadsorts loadsynonyms logfields lohi \ low mainlanguage mapfontsize mar marginalafstand \ marginalbreite marginallinie marginaltext marginaltitel marginalwort \ marginrule margintext marking markversion mathematics \ mathematik maumrise mediaeval menueknopf midaligned \ mirror monat month moveformula moveongrid \ movesidefloat nachunten name navigating nextsection \ nichteinziehen nocap noheaderandfooterlines noindenting nokap \ nolist nomarking nomoreblocks nomorefiles nop \ nospace note notiz notopandbottomlines nowhitespace \ numberofsubpages numbers nummererhoehen outeredgedistance outeredgewidth \ outermargindistance outermarginwidth overbar overbars overstrike \ overstrikes packed page pagedepth pageoffset \ pagereference papierbreite papierhoehe paragraph part \ passelayoutan passendfeld periods placebookmarks placecombinedlist \ placefloat placefootnotes placeformula placeheadnumber placeheadtext \ placelegend placelist placelistoffloats placelistofsorts placelistofsynonyms \ placelocalfootnotes placelogos placeongrid placeontopofeachother placepagenumber \ placerawlist placereferencelist placeregister placerule placesidebyside \ placesubformula placetextvariable platzierebookmarks platziereformel platzierefussnoten \ platzierelegende platziereliste platzierelogo platzierelokalefussnoten platzierenebeneinander \ platziereregister platziereuntereinander platziereunterformel platzierezusammengestellteliste pos \ position positiontext posten printpapierbreite printpapierhoehe \ processblocks processpage produkt program programm \ projekt publication publikation punkt quotation \ quote ran randabstand randbreite rechteck \ rechtecke rechtemarginalafstand rechtemarginalbreite rechtsbuendig ref \ reference referenz referieren referral referraldate \ register registrierefelder reservefloat reset resetmarking \ resetnumber resettextcontent rightaligned roemischezahlen romannumerals \ rotate ruecksetzten ruecksetztenbeschriftung rumpfweite satzbreite \ satzhoehe scale schreibezumregister schreibezurliste schreibezurreferenzliste \ schreibezwischenliste screen section seeregister seite \ seitenreferenz seitenummer selectblocks selectpaper selectversion \ setnumber settext settextcontent settextvariable setupalign \ setupanswerarea setuparranging setupbackground setupbackgrounds setupblackrules \ setupblank setupblock setupbodyfont setupbodyfontenvironment setupbottom \ setupbottomtexts setupbuffer setupbuttons setupcapitals setupcaption \ setupcaptions setupclipping setupcolor setupcolors setupcolumns \ setupcolumnset setupcolumnsetlines setupcolumnsetstart setupcombinations setupcombinedlist \ setupcomment setupdescriptions setupenumerations setupexternalfigures setupfield \ setupfields setupfillinlines setupfillinrules setupfloat setupfloats \ setupfloatsplitting setupfonthandling setupfontsynonym setupfooter setupfootertexts \ setupfootnotedefinition setupfootnotes setupforms setupformulas setupframed \ setupframedtexts setuphead setupheader setupheadertexts setupheadnumber \ setupheads setupheadtext setuphyphenmark setupindentedtext setupindenting \ setupinmargin setupinteraction setupinteractionbar setupinteractionmenu setupinteractionscreen \ setupinterlinespace setupinterlinespace2 setupitemgroup setupitems setuplabeltext \ setuplanguage setuplayout setuplegend setuplinenumbering setuplines \ setuplinewidth setuplist setuplistalternative setupmakeup setupmarginblocks \ setupmarginrules setupmarking setupmathalignment setupnarrower setupnumber \ setupnumbering setupoppositeplacing setupoutput setuppagenumber setuppagenumbering \ setuppagetransitions setuppalet setuppaper setuppapersize setupparagraphnumbering \ setupparagraphs setupplacement setuppositioning setupprofiles setupprograms \ setuppublications setupquote setupreferencelist setupreferencing setupregister \ setuprotate setuprule setupscreens setupsection setupsectionblock \ setupsorting setupspacing setupstartstop setupstrut setupsubpagenumber \ setupsymbolset setupsynchronization setupsynchronizationbar setupsynonyms setupsystem \ setuptab setuptables setuptabulate setuptext setuptextposition \ setuptextrules setuptexttexts setuptextvariable setupthinrules setuptolerance \ setuptop setuptoptexts setuptype setuptyping setupunderbar \ setupurl setupversions setupwhitespace showbodyfont showbodyfontenvironment \ showcolor showcolorgroup showexternalfigures showfields showframe \ showgrid showlayout showmakeup showpalet showprint \ showsetups showstruts showsymbolset someline somewhere \ sort space spalte spatium spiegeln \ splitfloat sprache startabbildung startalignment startausrichtung \ startbackground startbuffer startcolor startcolumnmakeup startcolumns \ startcolumnset startcombination startcomment startcomponent startdescription \ startdocument startdokument startenger startenumeration startenvironment \ startfact startfarbe startfigure startfloattext startformula \ startframedtext startgegenueber startglobal startgrosserdurchschuss starthiding \ starthintergrund startinteractionmenu startitemgroup startkleinerdurchschuss startkodierung \ startkombination startkomponente startlegend startline startlinecorrection \ startlinenumbering startlines startlocal startlocalenvironment startlocalfootnotes \ startlokal startlokalefussnoten startmakeup startmarginalblock startmarginallinie \ startmarginblock startmarginrule startnamemakeup startnarrower startopposite \ startoverlay startoverview startpacked startparagraph startpositionieren \ startpositioning startpostponing startproduct startprodukt startprofil \ startprofile startproject startprojekt startquotation startraster \ startregister startspalten startsymbolset startsynchronisation startsynchronization \ starttabelle starttabellen starttable starttables starttabulate \ starttext starttextlinie starttextrule starttyping startueberblick \ startumbruch startumgebung startunpacked startversion startzeile \ startzeilen startzeilenkorrektur startzeilennumerierung startzitat stelleabsaetzeein \ stelleabsatznummerierungein stelleabschnittein stelleabschnittsblockein stelleanordnenein stelleaufzaehlungenein \ stelleausgabeein stelleausrichtungein stelleausschnittein stellebeschreibungein stellebeschriftungein \ stellebilderunterschriftein stellebildunterschriftein stellebindestrichein stelleblankoein stelleblockein \ stelledrehenein stelleduennerumrissein stelleeinziehenein stelleengerein stelleexterneabbildungenein \ stellefarbeein stellefarbenein stellefeldein stellefelderin stellefliesstextein \ stellefliesstextumgebungein stelleformelnein stellefussnotendefinitionein stellefussnotenein stellefusszeileein \ stellefusszeilentextein stellegefuelltesrechteckein stellegefuelltezeileein stellegegenueberplatzierenein stellegleitobjekteein \ stellegleitobjektein stellehintergruendeein stellehintergrundein stelleinmarginalieein stelleinteraktionein \ stelleinteraktionsbalkenein stelleinteraktionsbildschirmein stelleinteraktionsmenueein stelleknopfein stellekombinationein \ stellekommentarein stellekopfzahlein stellekopfzeileein stellekopfzeilentextein stellelabeltextein \ stellelayoutein stellelegendeein stellelinienbreiteein stellelisteein stellemarginalblockein \ stellemarginallinieein stellenobenein stellenummerierungein stellepaletteein stellepapierformatein \ stelleplatziegeteiltegleitobjekt stellepositionierenein stellepostenein stelleprofilein stelleprogrammein \ stellepublikationein stellepufferein stellerasterein stellerechteckein stellereferenzierenein \ stellereferenzlisteein stelleregisterein stelleseitenkommentarein stelleseitennummerein stelleseitennummeriernungein \ stelleseitenuebergangein stellesortierenein stellespaltenein stellespatiumein stellespracheein \ stellesymbolsetein stellesynchronisationein stellesynchronisationsbalkenein stellesynonymein stellesystemein \ stelletabein stelletabellenein stelletabulatorein stelletextein stelletextobenein \ stelletexttexteein stelletextumrissein stelletextuntenein stelletipein stelletippenein \ stelletoleranzein stelleueberschriftein stelleueberschriftenein stelleueberschrifttextein stelleumbruchein \ stelleumrahmtein stelleumrahmtetexteein stelleuntenein stelleunterseitennummerein stelleunterstreichenein \ stelleurlein stelleversalienein stelleversionein stellezeilenabstandein stellezeilenein \ stellezeilennumerierungein stellezitierenein stellezusammengestelltelisteein stellezwischenraumein stopalignment \ stopausrichtung stopbackground stopbuffer stopcolor stopcolumnmakeup \ stopcolumns stopcolumnset stopcombination stopcomment stopcomponent \ stopdescription stopdocument stopdokument stopenger stopenumeration \ stopenvironment stopfact stopfarbe stopfigure stopfloattext \ stopformula stopframedtext stopgegenueber stopglobal stopgrosserdurchschuss \ stophiding stophintergrund stopinteractionmenu stopitemgroup stopkleinerdurchschuss \ stopkodierung stopkombination stopkomponente stoplegend stopline \ stoplinecorrection stoplinenumbering stoplines stoplocal stoplocalenvironment \ stoplocalfootnotes stoplokal stoplokalefussnoten stopmakeup stopmarginalblock \ stopmarginallinie stopmarginblock stopmarginrule stopnamemakeup stopnarrower \ stopopposite stopoverlay stopoverview stoppacked stopparagraph \ stoppositionieren stoppositioning stoppostponing stopproduct stopprodukt \ stopprofil stopprofile stopproject stopprojekt stopquotation \ stopraster stopspalten stopsymbolset stopsynchronisation stopsynchronization \ stoptabelle stoptabellen stoptable stoptables stoptabulate \ stoptext stoptextlinie stoptextrule stoptyping stopueberblick \ stopumbruch stopumgebung stopunpacked stopversion stopzeile \ stopzeilen stopzeilenkorrektur stopzeilennumerierung stopzitat stretched \ sub subject subpagenumber subsection subsubject \ subsubsection subsubsubject switchtobodyfont switchtorawfont sym \ symbol synchronisationsbalken synchronisieren synchronizationbar synchronize \ synonym tab teilegleitobjekt testcolumn testpage \ tex textbreite texthoehe textlinie textreference \ textreferenz textrule textvariable thinrule thinrules \ tief tiho tip tippedatei tippen \ tippepuffer title tooltip translate txt \ typ type typebuffer typefile ueber \ ueberschrifttext uebersetzten umgebung umrahmt unbekant \ underbar underbars unterformelnummer useURL useXMLfilter \ useblocks usecommands usedirectory useencoding useexternaldocument \ useexternalfigure useexternalfile useexternalfiles useexternalsoundtrack usemodule \ usereferences usespecials usesymbols usetypescript usetypescriptfile \ verbergebloecke vergleichefarbengruppe vergleichepalette verknuepfebeschriftung verknuepfedokument \ verknuepfregister version verweis verweisdatum verwendeJSscript \ verwendeURL verwendebefehl verwendebloecke verwendeexteresdokument verwendeexterneabbildung \ verwendeexternedatei verwendeexternedateien verwendeexternestonstueck verwendemodul verwendemodule \ verwendereferenzen verwendesymbole verwendeurl vl volleswort \ von waehlebloeckeaus waehlepapieraus waehleversionaus wechselezumfliesstext \ weekday whitespace wiederholen wochentag wohnort \ wordright wortrechts writebetweenlist writetolist writetoreferencelist \ writetoregister zeigedruck zeigeeinstellungen zeigeexterneabbildungen zeigefarbe \ zeigefarbengruppe zeigefelder zeigefliesstext zeigefliesstextumgebung zeigegitter \ zeigelayout zeigepalette zeigerahmen zeigestruts zeigeumbruch \ zentriert ziffern zitat zitieren zu \ zurbox zurseite zwischenraum keywordclass.context.en=\ CAP Cap Caps Character \ Characters MONTH Numbers Romannumerals WEEKDAY \ WORD WORDS Word Words about \ adaptlayout adding appendix arg at \ atleftmargin atpage atrightmargin background backspace \ blackrule blackrules blank bookmark bottomdistance \ bottomheight bottomspace but button bypassblocks \ cap chapter character characters chem \ clip clonefield color colorbar colorvalue \ column comment comparecolorgroup comparepalet completecombinedlist \ completelistoffloats completelistofsorts completelistofsynonyms completepagenumber completeregister \ component convertnumber copyfield correctwhitespace coupledocument \ coupledregister couplemarking couplepage couplepaper coupleregister \ crlf currentdate currentheadnumber cutspace date \ decouplemarking decrementnumber define defineaccent defineblank \ defineblock definebodyfont definebodyfontDEF definebodyfontREF definebodyfontenvironment \ definebuffer definecharacter definecolor definecolorgroup definecolumnbreak \ definecolumnset definecombination definecombinedlist definecommand defineconversion \ definedescription definedfont defineenumeration definefield definefieldstack \ definefiguresymbol definefloat definefont definefontfeature definefonthandling \ definefontstyle definefontsynonym defineframed defineframedtext definehbox \ definehead defineindentedtext defineinmargin defineinteractionmenu defineitemgroup \ definelabel definelayer definelayout definelist definelogo \ definemainfield definemakeup definemarking definemathalignment defineoutput \ defineoverlay definepagebreak definepalet definepapersize defineparagraphs \ defineplacement defineprofile defineprogram definerawfont definereference \ definereferenceformat definereferencelist defineregister definerule definesection \ definesectionblock definesorting definestartstop definestyle definesubfield \ definesymbol definesynonyms definetabletemplate definetabulate definetext \ definetextbackground definetextposition definetextvariable definetype definetypeface \ definetyping defineversion description determineheadnumber determinelistcharacteristics \ determineregistercharacteristics dimension disableinteractionmenu domicile donttest \ edgedistance edgewidth emptylines enumeration environment \ externalfigure fact field fieldstack fillinfield \ fillinline fillinrules fillintext fitfield fixedspace \ fixedspaces followprofile followprofileversion followversion footerdistance \ footerheight footnote footnotetext forceblocks formulanumber \ fraction framed framedtext from getbuffer \ getmarking getnumber godown goto gotobox \ gotopage graycolor greyvalue grid hairline \ head headerdistance headerheight headlevel headnumber \ headsym headtext hideblocks high hl \ immediatebetweenlist immediatetolist in incrementnumber indentation \ indenting inframed infull ininner inleft \ inleftedge inleftmargin inline inmaframed inmargin \ inneredgedistance inneredgewidth innermargindistance innermarginwidth inothermargin \ inouter inright inrightedge inrightmargin installlanguage \ interactionbar interactionbuttons interactionmenu item items \ its keepblocks label labeling labels \ labeltext language leftaligned leftedgedistance leftedgewidth \ leftmargindistance leftmarginwidth leg linethickness listheight \ listlength listsymbol listwidth loadsorts loadsynonyms \ logfields lohi low maframed mainlanguage \ makeupheight makeupwidth mapfontsize mar margindistance \ marginrule margintext margintitle marginwidth marginword \ marking markversion mathematics mediaeval menubutton \ midaligned mirror month moveformula moveongrid \ movesidefloat name navigating nextsection nocap \ nodimension noheaderandfooterlines noindenting nolist nomarking \ nomoreblocks nomorefiles nop nospace note \ notopandbottomlines nowhitespace numberofsubpages numbers outeredgedistance \ outeredgewidth outermargindistance outermarginwidth overbar overbars \ overstrike overstrikes packed page pagedepth \ pagenumber pageoffset pagereference paperheight paperwidth \ paragraph part periods placebookmarks placecombinedlist \ placefloat placefootnotes placeformula placeheadnumber placeheadtext \ placelegend placelist placelistoffloats placelistofsorts placelistofsynonyms \ placelocalfootnotes placelogos placeongrid placeontopofeachother placepagenumber \ placerawlist placereferencelist placeregister placerule placesidebyside \ placesubformula placetextvariable position positiontext printpaperheight \ printpaperwidth processblocks processpage product program \ project publication quotation quote ran \ redo ref reference referral referraldate \ referring register remark reservefloat reset \ resetmarking resetnumber resettextcontent rightaligned rightedgedistance \ rightedgewidth rightmargindistance rightmarginwidth romannumerals rotate \ scale screen section seeregister selectblocks \ selectpaper selectversion setnumber settextcontent settextvariable \ setupalign setupanswerarea setuparranging setupbackground setupbackgrounds \ setupblackrules setupblank setupblock setupbodyfont setupbodyfontenvironment \ setupbottom setupbottomtexts setupbuffer setupbuttons setupcapitals \ setupcaption setupcaptions setupclipping setupcolor setupcolors \ setupcolumns setupcolumnset setupcolumnsetlines setupcolumnsetstart setupcombinations \ setupcombinedlist setupcomment setupdescriptions setupenumerations setupexternalfigures \ setupfield setupfields setupfillinlines setupfillinrules setupfloat \ setupfloats setupfloatsplitting setupfonthandling setupfontsynonym setupfooter \ setupfootertexts setupfootnotedefinition setupfootnotes setupforms setupformulae \ setupformulas setupframed setupframedtexts setuphead setupheader \ setupheadertexts setupheadnumber setupheads setupheadtext setuphyphenmark \ setupindentedtext setupindenting setupinmargin setupinteraction setupinteractionbar \ setupinteractionmenu setupinteractionscreen setupinterlinespace setupinterlinespace2 setupitemgroup \ setupitemizations setupitems setuplabeltext setuplanguage setuplayout \ setuplegend setuplinenumbering setuplines setuplinewidth setuplist \ setuplistalternative setupmakeup setupmarginblocks setupmarginrules setupmarking \ setupmathalignment setupnarrower setupnumber setupnumbering setupoppositeplacing \ setupoutput setuppagecomment setuppagenumber setuppagenumbering setuppagetransitions \ setuppalet setuppaper setuppapersize setupparagraphnumbering setupparagraphs \ setupplacement setuppositioning setupprofiles setupprograms setuppublications \ setupquote setupreferencelist setupreferencing setupregister setuprotate \ setuprule setupscreens setupsection setupsectionblock setupsorting \ setupspacing setupstartstop setupstrut setupsubpagenumber setupsymbolset \ setupsynchronization setupsynchronizationbar setupsynonyms setupsystem setuptab \ setuptables setuptabulate setuptext setuptextbackground setuptextposition \ setuptextrules setuptexttexts setuptextvariable setupthinrules setuptolerance \ setuptop setuptoptexts setuptype setuptyping setupunderbar \ setupurl setupversions setupwhitespace showbodyfont showbodyfontenvironment \ showcolor showcolorgroup showexternalfigures showfields showframe \ showgrid showlayout showmakeup showpalet showprint \ showsetups showstruts showsymbolset someline somewhere \ sort space splitfloat startalignment startbackground \ startbuffer startcoding startcolor startcolumnmakeup startcolumns \ startcolumnset startcombination startcomment startcomponent startdescription \ startdocument startenumeration startenvironment startfact startfigure \ startfloattext startformula startframed startframedtext startglobal \ starthiding startinteractionmenu startitemgroup startlegend startline \ startlinecorrection startlinenumbering startlines startlocal startlocalenvironment \ startlocalfootnotes startmakeup startmarginblock startmarginrule startnamemakeup \ startnarrower startopposite startoverlay startoverview startpacked \ startparagraph startpositioning startpostponing startproduct startprofile \ startproject startquotation startraster startregister startsymbolset \ startsynchronization starttable starttables starttabulate starttext \ starttextbackground starttextrule starttyping startunpacked startversion \ stopalignment stopbackground stopbuffer stopcoding stopcolor \ stopcolumnmakeup stopcolumns stopcolumnset stopcombination stopcomment \ stopcomponent stopdescription stopdocument stopenumeration stopenvironment \ stopfact stopfigure stopfloattext stopformula stopframed \ stopframedtext stopglobal stophiding stopinteractionmenu stopitemgroup \ stoplegend stopline stoplinecorrection stoplinenumbering stoplines \ stoplocal stoplocalenvironment stoplocalfootnotes stopmakeup stopmarginblock \ stopmarginrule stopnamemakeup stopnarrower stopopposite stopoverlay \ stopoverview stoppacked stopparagraph stoppositioning stoppostponing \ stopproduct stopprofile stopproject stopquotation stopraster \ stopsymbolset stopsynchronization stoptable stoptables stoptabulate \ stoptext stoptextbackground stoptextrule stoptyping stopunpacked \ stopversion stretched sub subformulanumber subject \ subpagenumber subsection subsubject subsubsection subsubsubject \ switchtobodyfont switchtorawfont sym symbol symoffset \ synchronizationbar synchronize synonym tab testcolumn \ testpage tex textheight textreference textrule \ textvariable textwidth thinrule thinrules title \ tooltip topdistance topheight topspace totalnumberofpages \ translate txt typ type typebuffer \ typefile underbar underbars unitmeaning unknown \ useJSscripts useURL useXMLfilter useblocks usecommands \ usedirectory useencoding useexternaldocument useexternalfigure useexternalfile \ useexternalfiles useexternalsoundtrack usemodule usemodules usereferences \ usespecials usesymbols usetypescript usetypescriptfile useurl \ version vl weekday whitespace wordright \ writebetweenlist writetolist writetoreferencelist writetoregister keywordclass.context.fr=\ CAP Cap Caps Caractere \ Caracteres Character Characters Chiffresromains JOURSEMAINE \ MOIS MONTH MOT MOTS Mot \ Mots Numeros Romannumerals WEEKDAY WORD \ WORDS Word Words a about \ adaptedisposition adaptlayout affectenumero affectevariabletexte ajustechamp \ alaligne alapage aligneadroite aligneagauche aligneaumilieu \ appendix arg arriereplan at atleftmargin \ atpage atrightmargin background baha barrecouleur \ barreinteraction barresynchronisation bas blackrule blackrules \ blank bookmark bouton boutonmenu boutonsinteraction \ but button bypassblocks cacheblocs cap \ caractere caracteres champ changepolicebrute changepolicecorps \ chapter character characters chem chiffresromains \ citation citer clip clonechamp clonefield \ colonne color column comment commentaire \ comparecolorgroup comparegroupecouleur comparepalet comparepalette completecombinedlist \ completelistoffloats completelistofsorts completelistofsynonyms completenumeropage completeregister \ completeregistre composant composeenalinea concernant convertitnumero \ convertnumber copitchamp copyfield correctwhitespace corrigeespaceblanc \ couleur couleurgrise coupledocument coupledregister couplemarking \ couplemarquage couplepage couplepaper couplepapier coupleregister \ coupleregistre crlf currentdate currentheadnumber cutspace \ dactylographier dans dansautremarge dansborddroit dansbordgauche \ dansdroite dansgauche dansmarge dansmargedroite dansmargegauche \ date datecourante daterecommandation de decouplemarking \ decouplemarquage decrementenumero define defineblank defineblock \ definebodyfont definebodyfontDEF definebodyfontREF definebodyfontenvironment definebuffer \ definecolor definecolorgroup definecombination definecombinedlist defineconversion \ definedescription definedfont defineenumeration definefield definefieldstack \ definefiguresymbol definefloat definefont definefontfeature definefonthandling \ definefontsynonym defineframed defineframedtext definehead defineindentedtext \ defineinteractionmenu defineitemgroup definelabel definelist definelogo \ definemakeup definemarking definemathalignment defineoutput defineoverlay \ definepalet definepapersize defineparagraphs defineplacement defineprofile \ defineprogram definereference definereferenceformat definereferencelist defineregister \ definesection definesectionblock definesorting definestartstop definesubfield \ definesymbol definesynonyms definetabletemplate definetabulate definetext \ definetype definetypeface definetyping defineversion definicaractere \ definit definitaccent definitbloc definitblocsection definitbuffer \ definitcalque definitchamp definitchampprincipal definitcommande definitconversion \ definitcouleur definitdactylo definitdansmarge definitdemarrestoppe definitdescription \ definitdisposition definitenumeration definitenvironnementpolicecorps definitetiquette definitflottant \ definitformatreference definitgroupecouleur definithbox definitjeucolonne definitliste \ definitlisteimbriquee definitlistereference definitlogo definitmakeup definitmarquage \ definitmenuinteraction definitnotepdp definitpalette definitparagraphes definitpilechamp \ definitpolice definitpolicebrute definitpolicecorps definitpositiontexte definitprofil \ definitprogramme definitreference definitregistre definitregle definitrevetement \ definitsautdecolonne definitsautdepage definitsection definitsortie definitsouschamp \ definitstyle definitstylepolice definitsymbole definitsymbolefigure definitsynonymepolice \ definitsynonymes definittabulation definittaillepapier definittete definittexte \ definittrametableau definittri definittype definitvariabletexte definitversion \ definitvide demarrealignement demarrearriereplan demarreblocmarge demarrecitation \ demarreciter demarrecodage demarrecolonnes demarrecombinaison demarrecompoetroite \ demarrecomposant demarrecorrectionligne demarrecouleur demarredegroupe demarredocument \ demarreenvironement demarrefigure demarreglobal demarregroupe demarrejeucolonne \ demarrejeusymboles demarreligne demarreligneregleetexte demarrelignes demarrelocal \ demarremakeup demarremargereglee demarrenotespdplocales demarrenumerotationligne demarreopposition \ demarrepositionnement demarreproduit demarreprofil demarreprojet demarreraster \ demarrerevetement demarresynchronisation demarretableau demarretableaux demarretexte \ demarreversion demarrevuedensemble deplaceformule deplacesurgrille description \ determinecaracteristiqueliste determinecaracteristiquesregistre determineheadnumber determinelistcharacteristics determinenumerotete \ dimension disableinteractionmenu distancebord distanceborddroit distancebordgauche \ distanceentete distanceinf distancemarge distancemargedroite distancemargegauche \ distancepdp distancesup domicile echelle ecran \ ecritdansliste ecritdanslistereference ecritentreliste ecritregistre el \ element elements emptylines enumeration environement \ espace espaceblanc espacefixe espaceinf espacesfixes \ espacesup etiquette etiquettes etire externalfigure \ fait faitreference fichierdactylo field fieldstack \ figureexterne fillinfield fillinline fillinrules fillintext \ fitfield fixedspaces followprofile followprofileversion followversion \ footnote footnotetext forceblocks forceblocs fraction \ framed framedtext from gardeblocs getbuffer \ getmarking getnumber godown goto gotobox \ graycolor grid grille groupe hairline \ haut hauteureditionpapier hauteurentete hauteurinf hauteurliste \ hauteurmakeup hauteurpapier hauteurpdp hauteursup hauteurtexte \ head headnumber headsym headtext hideblocks \ high hl immediatebetweenlist immediatetolist in \ inconnu incrementenumero indentation indenting inframed \ infull inhibemenuinteraction ininner inleft inline \ inmargin inmframed inneredgedistance inneredgewidth innermargindistance \ innermarginwidth inothermargin inouter inright installelangue \ installlanguage interactionbar interactionbuttons item items \ its joursemaine keepblocks labeling labels \ labeltext labeltexte language langue langueprincipale \ largeurbord largeurborddroit largeurbordgauche largeureditionpapier largeurligne \ largeurliste largeurmakeup largeurmarge largeurmargedroite largeurmargegauche \ largeurpapier largeurtexte leftaligned leg ligneh \ lignenoire ligneregleetexte lignesnoires listesymbole listsymbol \ llongueurliste loadsorts loadsynonyms logchamp logfields \ lohi low mainlanguage mapfontsize mar \ margereglee marginrule margintext marking markversion \ marquage marquageversion marquepage mathematics mathematique \ mediaeval menuinteraction mframed midaligned mirror \ mois month montrecadre montrechamps montrecouleur \ montredisposition montreedition montreenvironnementpolicecorps montrefiguresexternes montregrille \ montregroupecouleur montrejeusymboles montremakeup montrepalette montrepolicecorps \ montrereglages montrestruts motdroit motmarge moveongrid \ movesidefloat name navigating nextsection niveautete \ nocap noheaderandfooterlines noindenting nolist nomarking \ nombredesouspages nombretotaldepages nommacro nomoreblocks nomorefiles \ nop nospace note notepdp notopandbottomlines \ nowhitespace numbers numeroformule numeropage numeros \ numerosousformule numerotete numerotetecourant obtientmarquage oriente \ outeredgedistance outeredgewidth outermargindistance outermarginwidth overbar \ overbars overstrike overstrikes packed page \ pagedepth pagedouble pageoffset pagereference paragraph \ part pasplusdeblocs pasplusdefichiers periodes periods \ pilechamp placebookmarks placecombinedlist placecoteacote placefloat \ placeflottant placefootnotes placeformula placeformule placelegend \ placelegende placelesunsaudessusdesautres placelist placeliste placelisteinmbriquee \ placelistereference placelistoffloats placelistofsorts placelistofsynonyms placelocalfootnotes \ placelogos placemarquespages placenotespdp placenotespdplocales placenumeropage \ placenumerotete placeongrid placeontopofeachother placerawlist placereferencelist \ placeregister placeregistre placeregle placesidebyside placesousformule \ placesubformula placesurgrille placetextetete placevariabletexte position \ positionnetexte prendbuffer processblocks processpage produit \ program programme projet publication qqpart \ quotation quote ran raz razmarquage \ raznumero recommandation ref refait reference \ referencepage referencetexte referral referraldate reflete \ register reglealignement reglearrangement reglearriereplan reglearriereplans \ reglebarreinteraction reglebarresynchronisation reglebloc regleblocmarge regleblocsection \ regleboutons reglebuffer reglecapitales reglechamp reglechamps \ regleclipping reglecolonnes reglecombinaisons reglecommentaire reglecommentairepage \ reglecompoetroite reglecomposeenalinea reglecouleur reglecouleurs regledactylo \ regledansmarge regledemarrestoppe regledescriptions regledisposition regleecraninteraction \ regleecrans regleelements regleencadre regleentete regleenumerations \ regleenvironnementpolicecorps regleepaisseurligne regleespaceblanc regleespacement regleespacementinterligne \ reglefiguresexternes regleflottant regleflottants regleformulaires regleformules \ reglegroupeselements regleinf regleinteraction regleintitule regleintitules \ reglejeucolonne reglejeusymboles reglelabeltexte reglelangue reglelegende \ reglelignes reglelignesnoires reglelignesreglestexte regleliste reglelisteimbriquee \ reglelistereference reglemakeup reglemargereglee reglemarquage reglemarquagehyphenation \ reglemenuinteraction reglenotepdp reglenumero reglenumeropage reglenumerotation \ reglenumerotationligne reglenumerotationpage reglenumerotationparagraphe reglenumerotete regleoriente \ reglepalette reglepapier regleparagraphes reglepdp regleplacementopposition \ reglepolicecorps reglepositionnement reglepositiontexte regleprofils regleprogrammes \ reglepublications reglereferencage regleregistre regleregle regleremplitligne \ regleremplitlignesreglees reglesection regleseparationflottant reglesortie reglesouslignage \ reglesousnumeropage reglestrut reglesup reglesynchronisation reglesynonymes \ reglesysteme regletab regletableaux regletabulation regletaillepapier \ regletete regletetes regletexte regletextesentete regletextesinf \ regletextespdp regletextessup regletextestexte regletextetete regletolerance \ regletraitsfins regletransitionspage regletri regletype regleurl \ reglevariabletexte regleversions remplitchamp remplitligne remplitlignesreglees \ remplittexte reservefloat reset resetmarking resettextcontent \ retourarriere rightaligned romannumerals rotate sansalinea \ sansdimension sansespace sansespaceblanc sanslignesenteteetpdp sanslignessupetinf \ sansliste sansmarquage sanstest sauteblocs scale \ screen section seeregister selectblocks selectionneblocs \ selectionnepapier selectionneversion selectpaper selectversion sensunite \ separeflottant settext settextcontent setupalign setupanswerarea \ setuparranging setupbackground setupbackgrounds setupblackrules setupblank \ setupblock setupbodyfont setupbodyfontenvironment setupbottom setupbottomtexts \ setupbuffer setupbuttons setupcapitals setupcaption setupcaptions \ setupclipping setupcolor setupcolors setupcolumns setupcolumnsetlines \ setupcolumnsetstart setupcombinations setupcombinedlist setupcomment setupdescriptions \ setupenumerations setupexternalfigures setupfield setupfields setupfillinlines \ setupfillinrules setupfloat setupfloats setupfloatsplitting setupfonthandling \ setupfontsynonym setupfooter setupfootertexts setupfootnotedefinition setupfootnotes \ setupforms setupformulas setupframed setupframedtexts setuphead \ setupheader setupheadertexts setupheadnumber setupheads setupheadtext \ setuphyphenmark setupindentedtext setupindenting setupinmargin setupinteraction \ setupinteractionbar setupinteractionmenu setupinteractionscreen setupinterlinespace setupinterlinespace2 \ setupitemgroup setupitems setuplabeltext setuplanguage setuplayout \ setuplegend setuplinenumbering setuplines setuplinewidth setuplist \ setuplistalternative setupmakeup setupmarginblocks setupmarginrules setupmarking \ setupmathalignment setupnarrower setupnumbering setupoppositeplacing setupoutput \ setuppagenumber setuppagenumbering setuppagetransitions setuppalet setuppaper \ setuppapersize setupparagraphnumbering setupparagraphs setupplacement setuppositioning \ setupprofiles setupprograms setuppublications setupquote setupreferencelist \ setupreferencing setupregister setuprotate setupscreens setupsection \ setupsectionblock setupsorting setupspacing setupstrut setupsubpagenumber \ setupsymbolset setupsynchronization setupsynchronizationbar setupsynonyms setupsystem \ setuptab setuptables setuptabulate setuptext setuptextrules \ setuptexttexts setupthinrules setuptolerance setuptop setuptoptexts \ setuptype setuptyping setupunderbar setupurl setupversions \ setupwhitespace showbodyfont showbodyfontenvironment showcolor showcolorgroup \ showexternalfigures showfields showframe showgrid showlayout \ showmakeup showpalet showprint showsetups showstruts \ showsymbolset someline somewhere sort sousnumeropage \ space splitfloat startalignment startbackground startbuffer \ startcolor startcolumnmakeup startcolumns startcombination startcomment \ startcomponent startdescription startdocument startenumeration startenvironment \ startfact startfigure startfloattext startformula startframedtext \ starthiding startinteractionmenu startitemgroup startlegend startline \ startlinecorrection startlinenumbering startlines startlocal startlocalenvironment \ startlocalfootnotes startmakeup startmarginblock startmarginrule startnamemakeup \ startnarrower startopposite startoverlay startoverview startpacked \ startparagraph startpositioning startpostponing startproduct startprofile \ startproject startquotation startregister startsymbolset startsynchronization \ starttable starttables starttabulate starttextrule starttyping \ startunpacked startversion stopalignment stopbackground stopbuffer \ stopcolor stopcolumnmakeup stopcolumns stopcombination stopcomment \ stopcompoetroite stopcomponent stopdescription stopdocument stopenumeration \ stopenvironment stopfact stopfigure stopfloattext stopformula \ stopframedtext stophiding stopinteractionmenu stopitemgroup stoplegend \ stopline stoplinecorrection stoplinenumbering stoplines stoplocal \ stoplocalenvironment stoplocalfootnotes stopmakeup stopmarginblock stopmarginrule \ stopnamemakeup stopnarrower stopopposite stopoverlay stopoverview \ stoppacked stopparagraph stoppealignement stoppearriereplan stoppeblocmarge \ stoppecitation stoppecodage stoppecolonnes stoppecombinaison stoppecomposant \ stoppecorrectionligne stoppecouleur stoppedegroupe stoppedocument stoppeenvironement \ stoppeglobal stoppegroupe stoppejeucolonne stoppeligne stoppeligneregleetexte \ stoppelignes stoppelocal stoppemakeup stoppemargereglee stoppenotespdplocales \ stoppenumerotationligne stoppeopposition stoppepositionnement stoppeproduit stoppeprofil \ stoppeprojet stopperaster stopperevetement stoppesynchronisation stoppetableau \ stoppetableaux stoppetexte stoppeversion stoppevuedensemble stoppositioning \ stoppostponing stopproduct stopprofile stopproject stopquotation \ stopsymbolset stopsynchronization stoptable stoptables stoptabulate \ stoptextrule stoptyping stopunpacked stopversion stretched \ sub subject subsection subsubject subsubsection \ subsubsubject suggestion suivantprofil suivantversion suivantversionprofil \ switchtobodyfont sym symbol symbole synchronise \ synchronizationbar synchronize synonym tab tapebuffer \ testcolumn testpage tete tex textemarge \ textenotepdp textetete textreference textrule thinrule \ thinrules title titremarge tooltip traduire \ traiteblocs traitepage traitfin traitsfins translate \ txt typ type typebuffer typefile \ underbar underbars uneligne useURL useXMLfilter \ useblocks usecommands usedirectory useencoding useexternaldocument \ useexternalfigure useexternalfile useexternalfiles useexternalsoundtrack usemodule \ usereferences usespecials usesymbols usetypescript usetypescriptfile \ utiliseJSscripts utiliseURL utiliseblocs utilisechemin utilisecommandes \ utilisedocumentexterne utiliseencodage utilisefichierexterne utilisefichiersexternes utilisefigureexterne \ utilisemodule utilisemodules utilisepsiteaudioexterne utilisereferences utilisespecialites \ utilisesymboles utiliseurl va vaalaboite vaalapage \ vaenbas valeurcouleur valeurgris variabletexte version \ vide vl weekday whitespace wordright \ writebetweenlist writetolist writetoreferencelist writetoregister keywordclass.context.it=\ CAP Cap Caps Character \ Characters GIORNOSETTIMANA Lettera Lettere MESE \ MONTH Numeri Numeriromani PAROLA PAROLE \ Parola Parole Romannumerals WEEKDAY WORD \ WORDS Word Words about accoppiacarta \ accoppiadocumento accoppiamarcatura accoppiapagina accoppiaregistro adaptlayout \ adattacampo adattalayout al allineacentro allineadestra \ allineasinistra altezzacarta altezzacartastampa altezzacima altezzaelenco \ altezzafondo altezzaintestazione altezzamakeup altezzapdp altezzatesto \ ambiente ampiezzabordo ampiezzabordodestro ampiezzabordosinistro ampiezzacarta \ ampiezzacartastampa ampiezzaelenco ampiezzamakeup ampiezzamargine ampiezzamarginedestro \ ampiezzamarginesinistro ampiezzatesto ap apagina appendix \ arg at atleftmargin atpage atrightmargin \ background barracolori barrainterazione barrasincronizzazione bastablocchi \ bastafile blackrule blackrules blank bookmark \ but button bypassblocks cambiaafontdeltesto campi \ camporiempimento cap capello chapter character \ characters chem chim circondato citazione \ clip clonacampo clonefield colonna color \ colore coloregrigio column comment commento \ comparecolorgroup comparepalet completecombinedlist completelistoffloats completelistofsorts \ completelistofsynonyms completeregister componenet confrontagruppocolori confrontatavolozza \ convertinumero convertnumber copiacampo copyfield correctwhitespace \ correggispaziobianco coupledocument coupledregister couplemarking couplepage \ couplepaper coupleregister crlf currentdate currentheadnumber \ cutspace da daqualcheparte data datadioggi \ datareferral date decouplemarking decrementnumber define \ defineblank defineblock definebodyfont definebodyfontDEF definebodyfontREF \ definebodyfontenvironment definebuffer definecolor definecolorgroup definecolumnbreak \ definecombination definecombinedlist defineconversion definedescription definedfont \ defineenumeration definefield definefieldstack definefiguresymbol definefloat \ definefont definefontfeature definefonthandling definefontsynonym defineframed \ defineframedtext definehead defineindentedtext defineinmargin defineinteractionmenu \ defineitemgroup definelabel definelayer definelist definelogo \ definemakeup definemarking definemathalignment defineoutput defineoverlay \ definepagebreak definepalet definepapersize defineparagraphs defineplacement \ defineprofile defineprogram definereference definereferenceformat definereferencelist \ defineregister definesection definesectionblock definesorting definestartstop \ definesubfield definesymbol definesynonyms definetabletemplate definetabulate \ definetext definetype definetypeface definetyping defineversion \ definisci definisciaccento definisciambientefontdeltesto definisciblocco definiscibloccosezione \ definiscibuffer definiscicampo definiscicampoprincipale definiscicapoversi definiscicarattere \ definiscicolore definiscicomando definisciconversione definiscidescrizione definiscidimensionicarta \ definiscielenco definiscielencocombinato definiscienumerazione definiscietichetta definiscifigurasimbolo \ definiscifont definiscifontdeltesto definiscifontgrezzo definisciformatoriferimento definiscigruppocolonne \ definiscigruppocolori definiscihbox definisciincorniciato definisciiniziatermina definiscilayout \ definiscilinea definiscilistariferimenti definiscilogo definiscimakeup definiscimarcatura \ definiscimenuinterazione definiscimodellotabella definiscioggettomobile definisciordinamento definiscioutput \ definisciposizionetesto definisciprofilo definisciprogramma definisciregistro definisciriferimento \ definiscirigovuoto definiscisezione definiscisimbolo definiscisinonimi definiscisinonimofont \ definiscisottocampo definiscisovrapposizione definiscistackcampi definiscistile definiscistilefont \ definiscitabulato definiscitavolozza definiscitesta definiscitesto definiscitestoincorniciato \ definiscitype definiscityping definiscivariabiletesto definisciversion description \ determinacaratteristicheregistro determinacarattersticheelenco determinanumerotesta determineheadnumber determinelistcharacteristics \ dimensione disabilitamenuinterazione disableinteractionmenu distanzabordo distanzabordodestro \ distanzabordosinistro distanzacima distanzafondo distanzaintestazione distanzamargine \ distanzamarginedestro distanzamarginesinistro distanzapdp domicilio el \ elaborablocchi elaborapagina elementi elemento emptylines \ enumeration etichetta etichette externalfigure fatto \ field fieldstack figuraesterna fillinfield fillinline \ fillinrules fillintext fitfield fixedspaces followprofile \ followprofileversion followversion fondo footnote footnotetext \ forceblocks forzablocchi fraction framed framedtext \ frazione from getbuffer getmarking getnumber \ giornosettimana godown goto gotobox graycolor \ grid griglia hairline head headnumber \ headsym headtext hideblocks high hl \ ignoto immediatebetweenlist immediatetolist impaccato impostaallineamento \ impostaambientefontdeltesto impostaampiezzariga impostabarrainterazione impostabarrasincronizzazione impostablocchimargine \ impostablocco impostabloccosezione impostabuffer impostacampi impostacampo \ impostacapoversi impostacaption impostacaptions impostacima impostaclippling \ impostacolonne impostacolore impostacolori impostacombinazioni impostacommento \ impostacommentopagina impostadefinizionenotepdp impostadescrizioni impostadimensionicarta impostaelementi \ impostaelencazioni impostaelenco impostaelencocombinato impostaenumerazioni impostafigureesterne \ impostafondo impostafontdeltesto impostaforms impostaformule impostagruppocolonne \ impostaincorniciato impostainiziatermina impostainmargine impostainstestazione impostainterazione \ impostainterlinea impostalayout impostalegenda impostalinea impostalineemargine \ impostalineenere impostalineeriempimento impostalineesottili impostalineetesto impostalingua \ impostalistariferimenti impostamaiuscole impostamakeup impostamarcatura impostamenuinterazione \ impostamenzione impostanotepdp impostanumerazione impostanumerazionecapoversi impostanumerazionepagina \ impostanumerazionerighe impostanumeropagina impostanumerosottopagina impostanumerotesta impostaoggettimobili \ impostaoggettomobile impostaordinamento impostaoutput impostaparranging impostapdp \ impostapiustretto impostaposizionamento impostaposizionamentoopposti impostaposizionetesto impostaprofili \ impostaprogrammi impostapubblicazioni impostapulsanti impostaregistro impostarientro \ impostariferimento impostarighe impostarigheriempimento impostarigovuoto impostarotazione \ impostaschermi impostaschermointerazione impostasegnosillabazione impostasetsimboli impostasezione \ impostasfondi impostasfondo impostasincronizzazione impostasinonimi impostasistema \ impostasottolinea impostaspaziatura impostaspaziobianco impostaspezzamentooggettomobile impostastrut \ impostatab impostatabelle impostatabulato impostatavolozza impostatesta \ impostateste impostatesticima impostatestifondo impostatestiincorniciati impostatestiintestazioni \ impostatestipdp impostatesto impostatestoetichette impostatestointestazioni impostatestotesti \ impostatolleranza impostatransizionepagina impostatype impostatyping impostaurl \ impostavariabiletesto impostaversioni in inaltromargine incorniciato \ incrementanumero indentation indenting indestra inframed \ ininner iniziaallineamento iniziaambiente iniziabloccomargine iniziacitazione \ iniziacodifica iniziacolonne iniziacolore iniziacombinazione iniziacomponente \ iniziacorrezioneriga iniziadocumento iniziafigura iniziaglobale iniziagruppocolonne \ iniziaimpaccato inizialineamargine inizialineatesto inizialocale iniziamakeup \ inizianotepdplocali inizianumerazionerighe iniziaopposto iniziaoverview iniziapiustretto \ iniziaposizionamento iniziaprodotto iniziaprofilo iniziaprogetto iniziaraster \ iniziariga iniziarighe iniziasetsimboli iniziasfondo iniziasincronizzazione \ iniziasovrapposizione iniziatabella iniziatabelle iniziatesto iniziaunpacked \ iniziaversione inlatodestro inlatosinistro inleft inline \ inmaframed inmargin inmargine inmarginedestro inmarginesinistro \ inneredgedistance inneredgewidth innermargindistance innermarginwidth inothermargin \ inouter inriga inright insinistra installalingua \ installlanguage interactionbar interactionbuttons intorno item \ items its keepblocks labeling labels \ labeltext language leftaligned leg lettera \ lettere lineamargine lineanera lineasottile lineatesto \ lineenere lineeriempimento lineesottili lingua linguaprincipale \ listsymbol livellotesta loadsorts loadsynonyms logcampi \ logfields lohi low lunghezzaelenco maframed \ mainlanguage mapfontsize mar marcatura marcaversione \ marginrule margintext marking markversion matematica \ mathematics mediaeval menuinterattivo menzione mese \ mettielenco mettielencocombinato mettifiancoafianco mettiformula mettiingriglia \ mettilegenda mettilinea mettiloghi mettinotepdp mettinotepdplocali \ mettinumeropagina mettiregistro mettisegnalibro mettisottoformula mettiunosullaltro \ mettivariabiletesto midaligned mirror month mostraambientefontdeltesto \ mostracampi mostracolore mostracornice mostrafiguresterne mostrafontdeltesto \ mostragriglia mostragruppocolori mostraimpostazioni mostralyout mostramakeup \ mostrasetsimboli mostrastampa mostrastruts mostratavolozza moveongrid \ movesidefloat name nascondiblocchi navigating nextsection \ nientedimensioni nienteelenco nientelineecimafondo nientelineintestazionepdp nientemarcatura \ nienterientro nientespazio nientespaziobianco nocap noheaderandfooterlines \ noindenting nolist nomarking nome nomeunita \ nomoreblocks nomorefiles nop nospace nota \ notapdp note notest notopandbottomlines nowhitespace \ numberofsubpages numbers numeri numeriromani numeroformula \ numeropagina numeropaginacompleto numerosottoformula numerotesta numerotestacorrente \ numerototaledipagine outeredgedistance outeredgewidth outermargindistance outermarginwidth \ overbar overbars overstrike overstrikes packed \ page pagedepth pageoffset pagereference pagina \ paragraph paroladestra parolainmargine part passaafontgrezzo \ ped pedap periods perlungo placebookmarks \ placecombinedlist placefloat placefootnotes placeformula placelegend \ placelist placelistoffloats placelistofsorts placelistofsynonyms placelocalfootnotes \ placelogos placeongrid placeontopofeachother placerawlist placereferencelist \ placeregister placesidebyside placesubformula position posizionanumerotesta \ posizionatesto posizionatestotesta posizione prendibuffer prendimarcatura \ processblocks processpage prodotto progetto program \ programma pubblicazione publication pulsante pulsantemenu \ pulsantinterazione punti qualcheriga quotation quote \ ran ref reference referral referraldate \ referring register reimposta reimpostamarcatura reservefloat \ reset resetmarking resetnumber resettextcontent rientro \ rif rifai riferimento riferimentopagina riferimentotesto \ riflessione rigariempimento rightaligned rigovuoto romannumerals \ rotate ruota saltablocchi scala scale \ schermo screen scrividentroelenco scriviinelenco scriviinlistariferimenti \ scriviinregistro section seeregister segnalibro seguiprofilo \ seguiversione seguiversioneprofilo selectblocks selectpaper selectversion \ selezionablocchi selezionacarta selezionaversione separamarcatura setnumber \ settext settextcontent setupalign setupanswerarea setuparranging \ setupbackground setupbackgrounds setupblackrules setupblank setupblock \ setupbodyfont setupbodyfontenvironment setupbottom setupbottomtexts setupbuffer \ setupbuttons setupcapitals setupcaption setupcaptions setupclipping \ setupcolor setupcolors setupcolumns setupcolumnsetlines setupcolumnsetstart \ setupcombinations setupcombinedlist setupcomment setupdescriptions setupenumerations \ setupexternalfigures setupfield setupfields setupfillinlines setupfillinrules \ setupfloat setupfloats setupfloatsplitting setupfonthandling setupfontsynonym \ setupfooter setupfootertexts setupfootnotedefinition setupfootnotes setupforms \ setupformulas setupframed setupframedtexts setuphead setupheader \ setupheadertexts setupheadnumber setupheads setupheadtext setuphyphenmark \ setupindentedtext setupindenting setupinmargin setupinteraction setupinteractionbar \ setupinteractionmenu setupinteractionscreen setupinterlinespace setupinterlinespace2 setupitemgroup \ setupitems setuplabeltext setuplanguage setuplayout setuplegend \ setuplinenumbering setuplines setuplinewidth setuplist setuplistalternative \ setupmakeup setupmarginblocks setupmarginrules setupmarking setupmathalignment \ setupnarrower setupnumbering setupoppositeplacing setupoutput setuppagenumber \ setuppagenumbering setuppagetransitions setuppalet setuppaper setuppapersize \ setupparagraphnumbering setupparagraphs setupplacement setuppositioning setupprofiles \ setupprograms setuppublications setupquote setupreferencelist setupreferencing \ setupregister setuprotate setupscreens setupsection setupsectionblock \ setupsorting setupspacing setupstrut setupsubpagenumber setupsymbolset \ setupsynchronization setupsynchronizationbar setupsynonyms setupsystem setuptab \ setuptables setuptabulate setuptext setuptextrules setuptexttexts \ setupthinrules setuptolerance setuptop setuptoptexts setuptype \ setuptyping setupunderbar setupurl setupversions setupwhitespace \ setvariabiletesto sfondo showbodyfont showbodyfontenvironment showcolor \ showcolorgroup showexternalfigures showfields showframe showgrid \ showlayout showmakeup showpalet showprint showsetups \ showstruts showsymbolset sim simbolo sincronizza \ someline somewhere sort space spazifissi \ spazio spaziobianco spaziocima spaziodietro spaziofisso \ spaziofondo spessoreriga spezzaoggettomobile splitfloat spostaagriglia \ spostaformula stackcampi startalignment startbackground startbuffer \ startcolor startcolumnmakeup startcolumns startcombination startcomment \ startcomponent startdescription startdocument startenumeration startenvironment \ startfact startfigure startfloattext startformula startframedtext \ starthiding startinteractionmenu startitemgroup startlegend startline \ startlinecorrection startlinenumbering startlines startlocal startlocalenvironment \ startlocalfootnotes startmakeup startmarginblock startmarginrule startnamemakeup \ startnarrower startopposite startoverlay startoverview startpacked \ startparagraph startpositioning startpostponing startproduct startprofile \ startproject startquotation startregister startsymbolset startsynchronization \ starttable starttables starttabulate starttextrule starttyping \ startunpacked startversion stirato stopalignment stopbackground \ stopbuffer stopcolor stopcolumnmakeup stopcolumns stopcombination \ stopcomment stopcomponent stopdescription stopdocument stopenumeration \ stopenvironment stopfact stopfigure stopfloattext stopformula \ stopframedtext stophiding stopinteractionmenu stopitemgroup stoplegend \ stopline stoplinecorrection stoplinenumbering stoplines stoplocal \ stoplocalenvironment stoplocalfootnotes stopmakeup stopmarginblock stopmarginrule \ stopnamemakeup stopnarrower stopopposite stopoverlay stopoverview \ stoppacked stopparagraph stoppositioning stoppostponing stopproduct \ stopprofile stopproject stopquotation stopsymbolset stopsynchronization \ stoptable stoptables stoptabulate stoptextrule stoptyping \ stopunpacked stopversion stretched sub subject \ subpagenumber subsection subsubject subsubsection subsubsubject \ switchtobodyfont sym symbol synchronizationbar synchronize \ synonym tab terminaallineamento terminaambiente terminabloccomargine \ terminacitazione terminacodifica terminacolonne terminacolore terminacombinazione \ terminacomponente terminacorrezioneriga terminadocumento terminaglobale terminagruppocolonne \ terminaimpaccato terminalineamargine terminalineatesto terminalocale terminamakeup \ terminanotepdplocali terminanumerazionerighe terminaopposto terminaoverview terminapiustretto \ terminaposizionamento terminaprodotto terminaprofili terminaprogetto terminaraster \ terminariga terminarighe terminasfondo terminasincronizzazione terminasovrapposizione \ terminatabella terminatabelle terminatesto terminaunpacked terminaversioni \ testa testcolumn testoetichetta testoinmargine testoinstestazioni \ testonotapdp testoriempimento testpage tex textreference \ textrule thinrule thinrules tieniblocchi title \ titoloinmargine tooltip traduci translate txt \ typ type typebuffer typefile underbar \ underbars usaJSscripts usaURL usablocco usacartella \ usacodifica usacolonnasonoraesterna usacomandi usadocumentoesterno usafiguraesterna \ usafileesterni usafileesterno usamoduli usamodulo usariferimenti \ usasimboli usaspecialita usaurl useURL useXMLfilter \ useblocks usecommands usedirectory useencoding useexternaldocument \ useexternalfigure useexternalfile useexternalfiles useexternalsoundtrack usemodule \ usereferences usespecials usesymbols usetypescript usetypescriptfile \ vaia vaiabox vaiapagina vaigiu valorecolore \ valoregrigio variabiletesto version versione vl \ weekday whitespace wordright writebetweenlist writetolist \ writetoreferencelist writetoregister keywordclass.context.nl=\ CAP Cap Caps Character \ Characters Cijfers KAP Kap Kaps \ Letter Letters MAAND MONTH Romannumerals \ Romeins WEEKDAG WEEKDAY WOORD WOORDEN \ WORD WORDS Woord Woorden Word \ Words aantalsubpaginas about achtergrond adaptlayout \ appendix arg at atpage background \ bepaalkopnummer bepaallijstkenmerken bepaalregisterkenmerken betekenis binnenmargeafstand \ binnenmargebreedte binnenrandafstand binnenrandbreedte blackrule blackrules \ blank blanko blokje blokjes blokkeerinteractiemenu \ bodemwit bookmark bovenafstand bovenhoogte breuk \ buitenmargeafstand buitenmargebreedte buitenrandafstand buitenrandbreedte but \ button bypassblocks cap chapter character \ characters chem cijfers citaat citeer \ clip clonefield color column comment \ comparecolorgroup comparepalet completecombinedlist completelistoffloats completelistofsorts \ completelistofsynonyms completeregister converteernummer convertnumber copieerveld \ copyfield correctwhitespace corrigeerwitruimte coupledocument coupledregister \ couplemarking couplepage couplepaper coupleregister crlf \ currentdate currentheadnumber date datum decouplemarking \ define defineblank defineblock definebodyfont definebodyfontDEF \ definebodyfontREF definebodyfontenvironment definebuffer definecolor definecolorgroup \ definecombinedlist defineconversion definedescription definedfont defineenumeration \ definefield definefieldstack definefiguresymbol definefloat definefont \ definefontfeature definefonthandling definefontsynonym defineframed defineframedtext \ definehead defineindentedtext defineinteractionmenu definelabel definelist \ definelogo definemakeup definemarking defineoutput defineoverlay \ definepalet definepapersize defineparagraphs defineprofile defineprogram \ definerawfont definereference definereferenceformat definereferencelist defineregister \ definesection definesectionblock definesorting definestartstop definesubfield \ definesymbol definesynonyms definetabletemplate definetabulate definetext \ definetype definetypeface definetyping defineversion definieer \ definieeraccent definieeralineas definieerbeeldmerk definieerblanko definieerblok \ definieerbuffer definieercombinatie definieercommando definieerconversie definieerfiguursymbool \ definieerfont definieerfontstijl definieerfontsynoniem definieerhbox definieerhoofdveld \ definieeringesprongentext definieerinmarge definieerinteractiemenu definieeritemgroep definieerkadertekst \ definieerkarakter definieerkleur definieerkleurgroep definieerkolomgroep definieerkolomovergang \ definieerkop definieerkorps definieerkorpsomgeving definieerlayer definieerlayout \ definieerletter definieerlijn definieerlijst definieermarkering definieeromlijnd \ definieeropmaak definieeroverlay definieerpaginaovergang definieerpalet definieerpapierformaat \ definieerplaats definieerplaatsblok definieerprofiel definieerprogramma definieerreferentie \ definieerreferentieformaat definieerreferentielijst definieerregister definieersamengesteldelijst definieersectie \ definieersectieblok definieersorteren definieerstartstop definieersubveld definieersymbool \ definieersynoniemen definieertabelvorm definieertabulatie definieertekst definieertekstachtergrond \ definieertekstpositie definieertekstvariabele definieertype definieertypen definieeruitvoer \ definieerveld definieerveldstapel definieerversie definieerwiskundeuitlijnen description \ determineheadnumber determinelistcharacteristics dimensie directnaarlijst directtussenlijst \ disableinteractionmenu doordefinieren doorlabelen doornummeren dunnelijn \ dunnelijnen eenregel emptylines enumeration ergens \ externalfigure externfiguur field fieldstack fillinfield \ fillinline fillinrules fillintext fitfield fixedspaces \ followprofile followprofileversion followversion footnote footnotetext \ forceblocks forceerblokken formulenummer fraction framed \ framedtext from gebruikJSscripts gebruikURL gebruikXMLfilter \ gebruikblokken gebruikcommandos gebruikexterndocument gebruikexternefile gebruikexternefiles \ gebruikexternfiguur gebruikexterngeluidsfragment gebruikgebied gebruikmodule gebruikmodules \ gebruikreferenties gebruikspecials gebruiksymbolen gebruiktypescript gebruiktypescriptfile \ gebruikurl geenblokkenmeer geenbovenenonderregels geendimensie geenfilesmeer \ geenhoofdenvoetregels geenlijst geenmarkering geenspatie geentest \ geenwitruimte geg getbuffer getmarking godown \ goto gotobox graycolor grid grijskleur \ grijswaarde haalbuffer haalmarkering haalnummer haarlijn \ hairline handhaafblokken head headnumber headtext \ herhaal hideblocks high hl hoofdafstand \ hoofdhoogte hoofdtaal hoog huidigedatum huidigekopnummer \ in inanderemarge inbinnen inbuiten indentation \ indenting inframed ininner inleft inlijnd \ inline inlinker inlinkermarge inlinkerrand inmarge \ inmargin inothermargin inouter inrechter inrechtermarge \ inrechterrand inregel inright inspringen installeertaal \ installlanguage interactiebalk interactiebuttons interactiemenu interactionbar \ interactionbuttons invullijnen invulregel invultekst invulveld \ inwilijnd item items its kantlijn \ kap keepblocks kenmerk kenmerkdatum kentekstvariabeletoe \ kleur kleurenbalk kleurwaarde kloonveld kolom \ kop kopniveau kopnummer koppeldocument koppelmarkering \ koppelpagina koppelpapier koppelregister kopsym koptekst \ kopwit laag label labeling labels \ labeltekst labeltext laho language leftaligned \ leg legeregels letter letters lijndikte \ lijstbreedte lijsthoogte lijstlengte lijstsymbool linkermargeafstand \ linkermargebreedte linkerrandafstand linkerrandbreedte listsymbol loadsorts \ loadsynonyms logfields lohi low maand \ mainlanguage mapfontsize mar margeafstand margebreedte \ margetekst margetitel margewoord marginrule margintext \ markeer markeerversie marking markversion mathematics \ mediaeval menubutton midaligned mirror month \ moveongrid naam naar naarbox naarpagina \ name navigerend nextsection nietinspringen nocap \ noheaderandfooterlines noindenting nokap nolist nomarking \ nomoreblocks nomorefiles noot nop nospace \ note notopandbottomlines nowhitespace numbers omgeving \ omlaag omlijnd onbekend onderafstand onderdeel \ onderhoogte ontkoppelmarkering op opelkaar oplinkermarge \ oppagina oprechtermarge overbar overbars overstrike \ overstrikes packed page pagereference pagina \ paginadiepte paginanummer paginaoffset paginareferentie papierbreedte \ papierhoogte paragraph part paslayoutaan passeerblokken \ passendveld periods plaatsbeeldmerken plaatsbookmarks plaatsformule \ plaatskopnummer plaatskoptekst plaatslegenda plaatslijn plaatslijst \ plaatslijstmetsynoniemen plaatslokalevoetnoten plaatsnaastelkaar plaatsonderelkaar plaatsopgrid \ plaatspaginanummer plaatsplaatsblok plaatsreferentielijst plaatsregister plaatsruwelijst \ plaatssamengesteldelijst plaatssubformule plaatstekstvariabele plaatsvoetnoten placebookmarks \ placecombinedlist placefloat placefootnotes placeformula placelegend \ placelist placelistoffloats placelistofsorts placelistofsynonyms placelocalfootnotes \ placelogos placeongrid placeontopofeachother placereferencelist placeregister \ placesidebyside placesubformula position positioneer positioneertekst \ printpapierbreedte printpapierhoogte processblocks processpage produkt \ program programma projekt publicatie publication \ punten quotation quote ran randafstand \ randbreedte rechtermargeafstand rechtermargebreedte rechterrandafstand rechterrandbreedte \ ref refereer reference referentie referral \ referraldate regellinks regelmidden regelrechts register \ registreervelden reservefloat reset resetmarkering resetmarking \ resetnummer resettekstinhoud resettextcontent rightaligned romannumerals \ romeins rooster rotate roteer rugwit \ scale schaal scherm schrijfnaarlijst schrijfnaarreferentielijst \ schrijfnaarregister schrijftussenlijst screen section seeregister \ selectblocks selecteerblokken selecteerpapier selecteerversie selectpaper \ selectversion setnummer settextcontent setupalign setuparranging \ setupbackground setupbackgrounds setupblackrules setupblank setupblock \ setupbodyfont setupbodyfontenvironment setupbottom setupbottomtexts setupbuffer \ setupbuttons setupcapitals setupcaption setupcaptions setupclipping \ setupcolor setupcolors setupcolumns setupcombinations setupcombinedlist \ setupcomment setupdescriptions setupenumerations setupexternalfigures setupfield \ setupfields setupfillinlines setupfillinrules setupfloat setupfloats \ setupfloatsplitting setupfonthandling setupfontsynonym setupfooter setupfootertexts \ setupfootnotedefinition setupfootnotes setupforms setupformulas setupframed \ setupframedtexts setuphead setupheader setupheadertexts setupheadnumber \ setupheads setupheadtext setuphyphenmark setupindentedtext setupindenting \ setupinmargin setupinteraction setupinteractionbar setupinteractionmenu setupinteractionscreen \ setupinterlinespace setupinterlinespace2 setupitemgroup setupitems setuplabeltext \ setuplanguage setuplayout setuplegend setuplinenumbering setuplines \ setuplinewidth setuplist setuplistalternative setupmakeup setupmarginblocks \ setupmarginrules setupmarking setupnarrower setupnumbering setupoppositeplacing \ setupoutput setuppagenumber setuppagenumbering setuppagetransitions setuppalet \ setuppaper setuppapersize setupparagraphnumbering setupparagraphs setuppositioning \ setupprofiles setupprograms setuppublications setupquote setupreferencelist \ setupreferencing setupregister setuprotate setupscreens setupsection \ setupsectionblock setupsorting setupspacing setupstrut setupsubpagenumber \ setupsymbolset setupsynchronization setupsynchronizationbar setupsynonyms setupsystem \ setuptab setuptables setuptabulate setuptext setuptextrules \ setuptexttexts setupthinrules setuptolerance setuptop setuptoptexts \ setuptype setuptyping setupunderbar setupurl setupversions \ setupwhitespace showbodyfont showbodyfontenvironment showcolor showcolorgroup \ showexternalfigures showfields showframe showgrid showlayout \ showmakeup showpalet showprint showsetups showstruts \ showsymbolset snijwit som someline somewhere \ sort space spatie spiegel splitfloat \ splitsplaatsblok startachtergrond startalignment startbackground startbuffer \ startcitaat startcodering startcolor startcolumns startcombinatie \ startcombination startcomment startcomponent startdescription startdocument \ startenumeration startenvironment startfact startfigure startfiguur \ startfloattext startformula startframedtext startglobaal starthiding \ startinteractionmenu startitemgroup startkantlijn startkleur startkolomgroep \ startkolommen startkolomopmaak startlegend startline startlinecorrection \ startlinenumbering startlines startlocal startlocalenvironment startlocalfootnotes \ startlokaal startlokalevoetnoten startmakeup startmargeblok startmarginblock \ startmarginrule startnaast startnamemakeup startnarrower startomgeving \ startomlijnd startonderdeel startopelkaar startopmaak startopposite \ startoverlay startoverview startoverzicht startpacked startparagraph \ startpositioneren startpositioning startpostponing startproduct startprodukt \ startprofiel startprofile startproject startprojekt startquotation \ startraster startregel startregelcorrectie startregelnummeren startregels \ startregister startsmaller startsymbolset startsymboolset startsynchronisatie \ startsynchronization starttabel starttabellen starttable starttables \ starttabulate starttekst starttekstachtergrond starttekstlijn starttextrule \ starttyping startuitlijnen startunpacked startvanelkaar startversie \ startversion stelachtergrondenin stelachtergrondin stelalineasin stelantwoordgebiedin \ stelarrangerenin stelblankoin stelblokin stelblokjesin stelblokkopjein \ stelblokkopjesin stelbovenin stelboventekstenin stelbufferin stelbuttonsin \ stelciterenin stelclipin stelcombinatiesin stelcommentaarin steldoordefinierenin \ steldoornummerenin steldunnelijnenin stelexternefigurenin stelformulesin stelformulierenin \ stelhoofdin stelhoofdtekstenin stelingesprongentextin stelinmargein stelinspringenin \ stelinteractiebalkin stelinteractiein stelinteractiemenuin stelinteractieschermin stelinterliniein \ stelinvullijnenin stelinvulregelsin stelitemgroepin stelitemsin stelkadertekstenin \ stelkantlijnin stelkapitalenin stelkleurenin stelkleurin stelkolomgroepin \ stelkolomgroepregelsin stelkolomgroepstartin stelkolommenin stelkopin stelkopnummerin \ stelkoppeltekenin stelkoppenin stelkoptekstin stelkorpsin stelkorpsomgevingin \ stellabeltekstin stellayoutin stellegendain stellijndiktein stellijnin \ stellijstin stelmargeblokkenin stelmarkeringin stelnaastplaatsenin stelnummerenin \ stelnummerin stelomlijndin stelonderin stelonderstrepenin stelondertekstenin \ stelopmaakin stelopsommingenin stelpaginacommentaarin stelpaginanummerin stelpaginanummeringin \ stelpaginaovergangenin stelpaletin stelpapierformaatin stelpapierin stelparagraafnummerenin \ stelplaatsblokin stelplaatsblokkenin stelplaatsbloksplitsenin stelplaatsin stelpositionerenin \ stelprofielenin stelprogrammasin stelpublicatiesin stelrastersin stelreferentielijstin \ stelrefererenin stelregelnummerenin stelregelsin stelregisterin stelroterenin \ stelsamengesteldelijstin stelsectieblokin stelsectiein stelsmallerin stelsorterenin \ stelspatieringin stelstartstopin stelstrutin stelsubpaginanummerin stelsymboolsetin \ stelsynchronisatiebalkin stelsynchronisatiein stelsynoniemenin stelsysteemin steltaalin \ steltabellenin steltabin steltabulatiein steltekstachtergrondin steltekstin \ steltekstinhoudin steltekstlijnenin steltekstpositiein stelteksttekstenin steltekstvariabelein \ steltolerantiein steltypein steltypenin steluitlijnenin steluitvoerin \ stelurlin stelveldenin stelveldin stelversiesin stelvoetin \ stelvoetnootdefinitiein stelvoetnotenin stelvoettekstenin stelwiskundeuitlijnenin stelwitruimtein \ stopachtergrond stopalignment stopbackground stopbuffer stopcitaat \ stopcodering stopcolor stopcolumns stopcombinatie stopcombination \ stopcomment stopcomponent stopdescription stopdocument stopenumeration \ stopenvironment stopfact stopfigure stopfloattext stopformula \ stopframedtext stopglobaal stophiding stopinteractionmenu stopitemgroup \ stopkantlijn stopkleur stopkolomgroep stopkolommen stopkolomopmaak \ stoplegend stopline stoplinecorrection stoplinenumbering stoplines \ stoplocal stoplocalenvironment stoplocalfootnotes stoplokaal stoplokalevoetnoten \ stopmakeup stopmargeblok stopmarginblock stopmarginrule stopnaast \ stopnamemakeup stopnarrower stopomgeving stopomlijnd stoponderdeel \ stopopelkaar stopopmaak stopopposite stopoverlay stopoverview \ stopoverzicht stoppacked stopparagraph stoppositioneren stoppositioning \ stoppostponing stopproduct stopprodukt stopprofiel stopprofile \ stopproject stopprojekt stopquotation stopraster stopregel \ stopregelcorrectie stopregelnummeren stopregels stopsmaller stopsymbolset \ stopsynchronisatie stopsynchronization stoptabel stoptabellen stoptable \ stoptables stoptabulate stoptekst stoptekstachtergrond stoptekstlijn \ stoptextrule stoptyping stopuitlijnen stopunpacked stopvanelkaar \ stopversie stopversion stretched sub subformulenummer \ subject subpaginanummer subsection subsubject subsubsection \ subsubsubject suggestie switchnaarkorps switchtobodyfont switchtorawfont \ sym symbol symbool symoffset synchronisatiebalk \ synchroniseer synchronizationbar synchronize synonym taal \ tab tekstbreedte teksthoogte tekstlijn tekstreferentie \ tekstvariabele testkolom testpagina tex textreference \ textrule thinrule thinrules title toelichting \ tooltip toonexternefiguren toongrid tooninstellingen toonkader \ toonkleur toonkleurgroep toonkorps toonkorpsomgeving toonlayout \ toonopmaak toonpalet toonprint toonstruts toonsymboolset \ toonvelden totaalaantalpaginas translate txt typ \ type typebuffer typefile uit uitgerekt \ underbar underbars useURL useblocks usecodering \ usecommands usedirectory useencoding useexternaldocument useexternalfigure \ useexternalfile useexternalfiles useexternalsoundtrack usemodule usereferences \ usespecials usesymbols usetypescript usetypescriptfile vastespatie \ vastespaties veld veldstapel verbergblokken vergelijkkleurgroep \ vergelijkpalet verhoognummer verlaagnummer verplaatsformule verplaatsopgrid \ verplaatszijblok versie version vertaal verwerkblokken \ verwerkpagina vl voetafstand voethoogte voetnoot \ voetnoottekst volgprofiel volgprofielversie volgversie volledigepaginanummer \ volledigregister voluit weekdag weekday whitespace \ wilijnd wiskunde witruimte woonplaats woordrechts \ wordright writebetweenlist writetolist writetoreferencelist writetoregister \ zetbreedte zethoogte keywordclass.context.pe=\ CAP Cap Caps Character \ Characters MONTH Numbers Romannumerals WEEKDAY \ WORD WORDS Word Words about \ adaptlayout appendix at atpage background \ blackrule blackrules blank bookmark but \ button bypassblocks cap chapter character \ characters chem clip clonefield color \ column comment comparecolorgroup comparepalet completecombinedlist \ completelistoffloats completelistofsorts completelistofsynonyms completeregister convertnumber \ copyfield correctwhitespace coupledocument coupledregister couplemarking \ couplepage couplepaper coupleregister crlf currentdate \ currentheadnumber date decouplemarking define defineblank \ defineblock definebodyfont definebodyfontDEF definebodyfontREF definebodyfontenvironment \ definebuffer definecolor definecolorgroup definecombinedlist defineconversion \ definedescription definedfont defineenumeration definefield definefieldstack \ definefiguresymbol definefloat definefont definefontfeature definefonthandling \ definefontsynonym defineframed defineframedtext definehead defineindentedtext \ defineinteractionmenu definelabel definelist definelogo definemakeup \ definemarking defineoutput defineoverlay definepalet definepapersize \ defineparagraphs defineprofile defineprogram definereference definereferenceformat \ definereferencelist defineregister definesection definesectionblock definesorting \ definestartstop definesubfield definesymbol definesynonyms definetabletemplate \ definetabulate definetext definetype definetypeface definetyping \ defineversion description determineheadnumber determinelistcharacteristics disableinteractionmenu \ emptylines enumeration externalfigure field fieldstack \ fillinfield fillinline fillinrules fillintext fitfield \ fixedspaces followprofile followprofileversion followversion footnote \ footnotetext forceblocks fraction framed framedtext \ from getbuffer getmarking godown goto \ gotobox graycolor grid hairline head \ headnumber headtext hideblocks high hl \ in indentation indenting inframed ininner \ inleft inline inmargin inmframed inothermargin \ inouter inright installlanguage interactionbar interactionbuttons \ item items its keepblocks labeling \ labels labeltext language leftaligned listsymbol \ loadsorts loadsynonyms logfields lohi low \ mainlanguage mapfontsize mar marginrule margintext \ marking markversion mathematics mediaeval mframed \ midaligned mirror month moveongrid name \ nextsection nocap noheaderandfooterlines noindenting nolist \ nomarking nomoreblocks nomorefiles nop nospace \ note notopandbottomlines nowhitespace numbers overbar \ overbars overstrike overstrikes packed page \ pagereference paragraph part periods placebookmarks \ placecombinedlist placefloat placefootnotes placeformula placelegend \ placelist placelistoffloats placelistofsorts placelistofsynonyms placelocalfootnotes \ placelogos placeongrid placeontopofeachother placereferencelist placeregister \ placesidebyside placesubformula position processblocks processpage \ program publication quotation quote ran \ ref reference referral referraldate register \ reservefloat reset resetmarking resettextcontent rightaligned \ romannumerals rotate scale screen section \ seeregister selectblocks selectpaper selectversion settextcontent \ setupalign setupanswerarea setuparranging setupbackground setupbackgrounds \ setupblackrules setupblank setupblock setupbodyfont setupbodyfontenvironment \ setupbottom setupbottomtexts setupbuffer setupbuttons setupcapitals \ setupcaption setupcaptions setupclipping setupcolor setupcolors \ setupcolumns setupcombinations setupcombinedlist setupcomment setupdescriptions \ setupenumerations setupexternalfigures setupfield setupfields setupfillinlines \ setupfillinrules setupfloat setupfloats setupfloatsplitting setupfonthandling \ setupfontsynonym setupfooter setupfootertexts setupfootnotedefinition setupfootnotes \ setupforms setupformulas setupframed setupframedtexts setuphead \ setupheader setupheadertexts setupheadnumber setupheads setupheadtext \ setuphyphenmark setupindentedtext setupindenting setupinmargin setupinteraction \ setupinteractionbar setupinteractionmenu setupinteractionscreen setupinterlinespace setupinterlinespace2 \ setupitemgroup setupitems setuplabeltext setuplanguage setuplayout \ setuplegend setuplinenumbering setuplines setuplinewidth setuplist \ setuplistalternative setupmakeup setupmarginblocks setupmarginrules setupmarking \ setupnarrower setupnumbering setupoppositeplacing setupoutput setuppagenumber \ setuppagenumbering setuppagetransitions setuppalet setuppaper setuppapersize \ setupparagraphnumbering setupparagraphs setuppositioning setupprofiles setupprograms \ setuppublications setupquote setupreferencelist setupreferencing setupregister \ setuprotate setupscreens setupsection setupsectionblock setupsorting \ setupspacing setupstrut setupsubpagenumber setupsymbolset setupsynchronization \ setupsynchronizationbar setupsynonyms setupsystem setuptab setuptables \ setuptabulate setuptext setuptextrules setuptexttexts setupthinrules \ setuptolerance setuptop setuptoptexts setuptype setuptyping \ setupunderbar setupurl setupversions setupwhitespace showbodyfont \ showbodyfontenvironment showcolor showcolorgroup showexternalfigures showfields \ showframe showgrid showlayout showmakeup showpalet \ showprint showsetups showstruts showsymbolset someline \ somewhere sort space splitfloat startalignment \ startbackground startbuffer startcolor startcolumns startcombination \ startcomment startcomponent startdescription startdocument startenumeration \ startenvironment startfact startfigure startfloattext startformula \ startframedtext starthiding startinteractionmenu startitemgroup startlegend \ startline startlinecorrection startlinenumbering startlines startlocal \ startlocalenvironment startlocalfootnotes startmakeup startmarginblock startmarginrule \ startnamemakeup startnarrower startopposite startoverlay startoverview \ startpacked startparagraph startpositioning startpostponing startproduct \ startprofile startproject startquotation startraster startregister \ startsymbolset startsynchronization starttable starttables starttabulate \ starttextrule starttyping startunpacked startversion stopalignment \ stopbackground stopbuffer stopcolor stopcolumns stopcombination \ stopcomment stopcomponent stopdescription stopdocument stopenumeration \ stopenvironment stopfact stopfigure stopfloattext stopformula \ stopframedtext stophiding stopinteractionmenu stopitemgroup stoplegend \ stopline stoplinecorrection stoplinenumbering stoplines stoplocal \ stoplocalenvironment stoplocalfootnotes stopmakeup stopmarginblock stopmarginrule \ stopnamemakeup stopnarrower stopopposite stopoverlay stopoverview \ stoppacked stopparagraph stoppositioning stoppostponing stopproduct \ stopprofile stopproject stopquotation stopraster stopsymbolset \ stopsynchronization stoptable stoptables stoptabulate stoptextrule \ stoptyping stopunpacked stopversion stretched sub \ subject subsection subsubject subsubsection subsubsubject \ switchtobodyfont sym symbol synchronizationbar synchronize \ synonym tab tex textreference textrule \ thinrule thinrules title tooltip translate \ txt typ type typebuffer typefile \ underbar underbars useJSscripts useURL useXMLfilter \ useblocks usecommands usedirectory useencoding useexternaldocument \ useexternalfigure useexternalfile useexternalfiles useexternalsoundtrack usemodule \ usereferences usespecials usesymbols usetypescript usetypescriptfile \ useurl version vl weekday whitespace \ wordright writebetweenlist writetolist writetoreferencelist writetoregister \ Ø¢ÙØ³Øªâ€ŒØµÙحه آیتم آیتمها آینه اجباربلوکها \ Ø§Ø±ØªÙØ§Ø¹â€ŒØ¢Ø±Ø§ÛŒØ´ Ø§Ø±ØªÙØ§Ø¹â€ŒØ¨Ø§Ù„ا Ø§Ø±ØªÙØ§Ø¹â€ŒØ¨Ø±Ú¯ Ø§Ø±ØªÙØ§Ø¹â€ŒØªÙ‡â€ŒØ¨Ø±Ú¯ Ø§Ø±ØªÙØ§Ø¹â€ŒØ®Ø· \ Ø§Ø±ØªÙØ§Ø¹â€ŒØ³Ø±Ø¨Ø±Ú¯ Ø§Ø±ØªÙØ§Ø¹â€ŒÙ…تن Ø§Ø±ØªÙØ§Ø¹â€ŒÙ¾Ø§ÛŒÛŒÙ† از ازکارانداختن‌منوی‌پانل \ Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒØ¨Ù„وکها Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒØ¯Ø³ØªØ®Ø·â€ŒØªØ§ÛŒÙ¾ Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒØ±Ù…زینه Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒØ´Ú©Ù„‌خارجی Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙرمانها \ Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ‚طعه‌موزیک‌خارجی Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ…دول Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ…دولها Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ…رجعها Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ…سیر \ Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ†Ù…ادها Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ†ÙˆØ´ØªØ§Ø±Ø®Ø§Ø±Ø¬ÛŒ Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙˆÛŒÚ˜Ú¯ÛŒÙ‡Ø§ Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ¾Ø±ÙˆÙ†Ø¯Ù‡â€ŒØ®Ø§Ø±Ø¬ÛŒ Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ¾Ø±ÙˆÙ†Ø¯Ù‡â€ŒØ¯Ø³ØªØ®Ø·â€ŒØªØ§ÛŒÙ¾ \ Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ¾Ø±ÙˆÙ†Ø¯Ù‡â€ŒÙ‡Ø§ÛŒâ€ŒØ®Ø§Ø±Ø¬ÛŒ اعدادلاتین Ø§ÙØ²ÙˆØ¯Ù† اما امتحان‌نکن \ انتخاب‌برگ انتخاب‌بلوکها انتخاب‌نسخه انتقال‌به‌توری Ø§Ù†ØªÙ‚Ø§Ù„â€ŒÙØ±Ù…ول \ انتقال‌کنار‌شناور انجام‌دوباره بارگذاری‌آرایش بارگذاری‌آیتمها بارگذاری‌ارجاع \ بارگذاری‌اندازه‌برگ بارگذاری‌باریکتر Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØ¨Ø§ÙØ± بارگذاری‌بالا بارگذاری‌بخش \ بارگذاری‌بردباری بارگذاری‌برنامه‌ها بارگذاری‌برگ بارگذاری‌بست بارگذاری‌بلوک \ بارگذاری‌بلوکهای‌حاشیه بارگذاری‌بلوک‌بخش بارگذاری‌تایپ بارگذاری‌تایپ‌کردن بارگذاری‌تب \ بارگذاری‌ترتیب بارگذاری‌ترکیب‌ها بارگذاری‌تطابق بارگذاری‌تعریÙ‌پانوشت بارگذاری‌تنظیم \ بارگذاری‌تنظیم‌ریاضی بارگذاری‌ته‌برگ Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØªÙˆØ±ÙØªÚ¯ÛŒ بارگذاری‌توضیح Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØªÙˆØ¶ÛŒØ­â€ŒØµÙØ­Ù‡ \ بارگذاری‌ثبت بارگذاری‌جانشانی بارگذاری‌جدولها بارگذاری‌جدول‌بندی بارگذاری‌خالی \ بارگذاری‌خروجی بارگذاری‌خط بارگذاری‌خطها بارگذاری‌خطهای‌حاشیه بارگذاری‌خطهای‌سیاه \ بارگذاری‌خطهای‌متن بارگذاری‌خطهای‌مجموعه‌ستون بارگذاری‌خطها‌ی‌نازک بارگذاری‌درج‌درخطها بارگذاری‌درج‌مخال٠\ بارگذاری‌درون‌حاشیه بارگذاری‌دوران بارگذاری‌دکمه‌ها بارگذاری‌راهنما بارگذاری‌رنگ \ بارگذاری‌رنگها بارگذاری‌زبان بارگذاری‌ستونها بارگذاری‌سر بارگذاری‌سربرگ \ بارگذاری‌سرها بارگذاری‌سیستم بارگذاری‌شرح بارگذاری‌شرحها بارگذاری‌شروع‌مجموعه‌ستون \ بارگذاری‌شروع‌پایان بارگذاری‌شماره Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØ´Ù…Ø§Ø±Ù‡â€ŒØ²ÛŒØ±ØµÙØ­Ù‡ بارگذاری‌شماره‌سر Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØ´Ù…Ø§Ø±Ù‡â€ŒØµÙØ­Ù‡ \ بارگذاری‌شماره‌گذاری بارگذاری‌شماره‌گذاریها Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØ´Ù…Ø§Ø±Ù‡â€ŒÚ¯Ø°Ø§Ø±ÛŒâ€ŒØµÙØ­Ù‡ بارگذاری‌شماره‌گذاری‌پاراگرا٠بارگذاری‌شماره‌‌گذاری‌خط \ بارگذاری‌شناور بارگذاری‌شناورها Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØ´Ú©Ø§ÙØªÙ†â€ŒØ´Ù†Ø§ÙˆØ±Ù‡Ø§ بارگذاری‌شکلهای‌خارجی بارگذاری‌طرح \ بارگذاری‌طرح‌بندی بارگذاری‌عرض‌خط Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒÙØ§ØµÙ„ه‌بین‌خط Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒÙØ±Ù…ولها Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒÙØ¶Ø§ÛŒâ€ŒØ³Ùید \ Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒÙØ¶Ø§â€ŒÚ¯Ø°Ø§Ø±ÛŒ بارگذاری‌قالبی بارگذاری‌قلم‌متن بارگذاری‌لوح بارگذاری‌لیست \ بارگذاری‌لیست‌ترکیبی بارگذاری‌لیست‌مرجع بارگذاری‌مترادÙها بارگذاری‌متغیر‌متن بارگذاری‌متن \ بارگذاری‌متنهای‌بالا بارگذاری‌متن‌سر بارگذاری‌متن‌سربرگ بارگذاری‌متن‌قالبی بارگذاری‌متن‌متنها \ بارگذاری‌متن‌پانوشت بارگذاری‌متن‌پایین بارگذاری‌مجموعه‌ستون بارگذاری‌مجموعه‌نماد بارگذاری‌محیط‌قلم‌متن \ بارگذاری‌منوی‌پانل بارگذاری‌مکان‌متن بارگذاری‌مکان‌گذاری بارگذاری‌میدان بارگذاری‌میدانها \ بارگذاری‌میله‌تطابق بارگذاری‌میله‌زیر بارگذاری‌میله‌پانل بارگذاری‌نسخه‌ها بارگذاری‌نشانه‌شکستن \ بارگذاری‌نشانه‌گذاری بارگذاری‌نشرها بارگذاری‌نقل بارگذاری‌پاراگراÙها بارگذاری‌پانل \ بارگذاری‌پانوشتها بارگذاری‌پایین بارگذاری‌پرده‌ها بارگذاری‌پرده‌پانل Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒÙ¾Ø±ÙˆÙØ§ÛŒÙ„ها \ بارگذاری‌پرکردن‌خطها بارگذاری‌پس‌زمینه بارگذاری‌پس‌زمینه‌ها بارگذاری‌چیدن Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒÚ¯Ø°Ø§Ø±ØµÙØ­Ù‡ \ بارگذاری‌گروههای‌آیتم بارگذاری‌گروه‌آیتم بازنشانی بازنشانی‌شماره بازنشانی‌متن \ بازنشانی‌نشانه‌گذاری باگذاری‌متن‌برچسب بدون‌بعد بدون‌بلوکهای‌بیشتر Ø¨Ø¯ÙˆÙ†â€ŒØªÙˆØ±ÙØªÚ¯ÛŒ \ بدون‌خط‌بالاوپایین بدون‌خط‌سروته‌برگ Ø¨Ø¯ÙˆÙ†â€ŒÙØ§ÛŒÙ„های‌بیشتر Ø¨Ø¯ÙˆÙ†â€ŒÙØ¶Ø§ Ø¨Ø¯ÙˆÙ†â€ŒÙØ¶Ø§ÛŒâ€ŒØ³Ùید \ بدون‌لیست بدون‌نشانه‌گذاری برنامه بروبه بروبه‌جعبه \ Ø¨Ø±ÙˆØ¨Ù‡â€ŒØµÙØ­Ù‡ بروپایین برچسب برچسبها بعد \ بلند بلوکهای‌پردازش بلوکها‌پنهان بنویس‌بین‌لیست بنویس‌درثبت \ بنویس‌درلیست‌مرجع بنویس‌در‌لیست تاریخ تاریخ‌جاری تاریخ‌رجوع \ تایپ ØªØ§ÛŒÙ¾â€ŒØ¨Ø§ÙØ± تایپ‌پرونده تب ترجمه \ تطابق تعری٠تعریÙ‌آرایش تعریÙ‌آرم تعریÙ‌الگوی‌جدول \ تعریÙ‌اندازه‌برگ تعریÙâ€ŒØ¨Ø§ÙØ± تعریÙ‌بخش تعریÙ‌برنامه تعریÙ‌برچسب \ تعریÙ‌بلوک تعریÙ‌بلوک‌بخش تعریÙ‌تایپ تعریÙ‌تایپ‌کردن تعریÙ‌تبدیل \ تعریÙ‌ترتیب تعریÙ‌ترکیب تعریÙ‌تنظیم‌ریاضی تعریÙ‌توده‌میدان تعریÙ‌ثبت \ تعریÙ‌جانشانی تعریÙ‌جدول‌بندی تعریÙ‌جعبه‌‌اÙÙ‚ÛŒ تعریÙ‌حر٠تعریÙ‌خالی \ تعریÙ‌خروجی تعریÙ‌خط‌حائل تعریÙ‌درون‌حاشیه تعریÙ‌رنگ تعریÙ‌زیرمیدان \ تعریÙ‌سبک تعریÙ‌سبک‌قلم تعریÙ‌سر تعریÙ‌شرح تعریÙ‌شروع‌پایان \ تعریÙ‌شماره‌بندی تعریÙ‌شمایل‌مرجع تعریÙ‌شناور تعریÙ‌شکستن‌ستون تعریÙâ€ŒØ´Ú©Ø³Øªâ€ŒØµÙØ­Ù‡ \ تعریÙ‌طرح‌بندی تعریÙâ€ŒÙØ±Ù…ان تعریÙ‌قالبی تعریÙ‌قلم تعریÙ‌قلم‌خام \ تعریÙ‌قلم‌متن تعریÙ‌لایه تعریÙ‌لهجه تعریÙ‌لوح تعریÙ‌لیست \ تعریÙ‌لیست‌ترکیبی تعریÙ‌لیست‌مرجع تعریÙ‌مترادÙها تعریÙ‌مترادÙ‌قلم تعریÙ‌متغیرمتن \ تعریÙ‌متن تعریÙ‌متن‌قالبی تعریÙ‌مجموعه‌ستون تعریÙ‌محیط‌قلم‌بدنه تعریÙ‌مرجع \ تعریÙ‌منوی‌پانل تعریÙ‌مکان‌متن تعریÙ‌میدان تعریÙ‌میدان‌اصلی تعریÙ‌نسخه \ تعریÙ‌نشانه‌گذاری تعریÙ‌نماد تعریÙ‌نمادشکل تعریÙ‌پاراگراÙها تعریÙâ€ŒÙ¾Ø±ÙˆÙØ§ÛŒÙ„ \ تعریÙ‌پوشش تعریÙ‌گروه‌آیتم تعریÙ‌گروه‌رنگ تعیین‌شماره تعیین‌شماره‌سر \ تعیین‌متغیر‌متن تعیین‌محتوای‌متن تعیین‌مشخصات‌ثبت تعیین‌مشخصات‌لیست تغییربه‌قلم‌بدنه \ تغییربه‌قلم‌خام تنظیم‌راست تنظیم‌طرح‌بندی تنظیم‌وسط توجه \ ØªÙˆØ±ÙØªÚ¯ÛŒ توری تولید تک ثبت‌زوج \ ثبت‌کامل جداسازی‌نشانه‌گذاری حاش حر٠حرÙها \ Ø­ÙØ¸â€ŒØ¨Ù„وکها حقیقت خالی خطهای‌سیاه خطهای‌نازک \ خطها‌خالی خط‌حاشیه خط‌سیاه خط‌متن خط‌مو \ خط‌نازک خ‌ا خ‌ع در درج‌آرمها \ درج‌ثبت درج‌خط درج‌درخط درج‌درخطها درج‌درمتن \ درج‌درمیدان درج‌در‌بالای‌یکدیگر درج‌در‌توری درج‌راهنما Ø¯Ø±Ø¬â€ŒØ²ÛŒØ±ÙØ±Ù…ول \ درج‌شماره‌سر Ø¯Ø±Ø¬â€ŒØ´Ù…Ø§Ø±Ù‡â€ŒØµÙØ­Ù‡ درج‌شناور Ø¯Ø±Ø¬â€ŒÙØ±Ù…ول درج‌لیست \ درج‌لیست‌خام درج‌لیست‌مختلط درج‌لیست‌مرجع درج‌متغیرمتن درج‌متن‌سر \ درج‌پانوشتها درج‌پانوشتهای‌موضعی درج‌چوب‌خط درج‌کنار‌به‌کنار درحاشیه \ درحاشیه‌دیگر درحاشیه‌راست درحاشیه‌چپ درخارجی درخط \ درداخلی درراست Ø¯Ø±ØµÙØ­Ù‡ درقالبی درلبه‌راست \ درلبه‌چپ درمورد درون درپر درچپ \ Ø¯Ø±ÛŒØ§ÙØªâ€ŒØ¨Ø§Ùر Ø¯Ø±ÛŒØ§ÙØªâ€ŒØ´Ù…اره Ø¯Ø±ÛŒØ§ÙØªâ€ŒÙ†Ø´Ø§Ù†Ù‡ دوران دکمه \ دکمه‌منو دکمه‌پانل رج رجوع رنگ \ رنگ‌خاکستری Ø±ÙˆØ²Ù‡ÙØªÙ‡ ریاضی زبان زبان‌اصلی \ ستون ستون‌امتحان سر سرپوش‌کوچک‌نه شروع‌آرایش \ شروع‌آرایش‌ستون شروع‌باریکتر شروع‌بازبینی شروع‌بلوک‌حاشیه شروع‌ترکیب \ شروع‌تصحیح‌خط شروع‌تطابق شروع‌تنظیم شروع‌تولید شروع‌جدول \ شروع‌جدولها شروع‌خط شروع‌خطها شروع‌خط‌حاشیه شروع‌خط‌متن \ شروع‌رنگ شروع‌ستونها شروع‌سراسری شروع‌شماره‌گذاری‌خط شروع‌شکل \ Ø´Ø±ÙˆØ¹â€ŒØºÛŒØ±â€ŒÙØ´Ø±Ø¯Ù‡ Ø´Ø±ÙˆØ¹â€ŒÙØ´Ø±Ø¯Ù‡ شروع‌متن شروع‌مجموعه‌ستون شروع‌مجموعه‌نماد \ شروع‌محیط شروع‌مخال٠شروع‌موضعی شروع‌مولÙÙ‡ شروع‌مکان‌گذاری \ شروع‌نسخه شروع‌نقل‌قول شروع‌نوشتار شروع‌پانوشتهای‌موضعی Ø´Ø±ÙˆØ¹â€ŒÙ¾Ø±ÙˆÙØ§ÛŒÙ„ \ شروع‌پروژه شروع‌پس‌زمینه شروع‌پوشش شروع‌کد Ø´Ù…Ø§Ø±Ù‡â€ŒØ§ÙØ²Ø§ÛŒØ´ \ Ø´Ù…Ø§Ø±Ù‡â€ŒØ²ÛŒØ±ØµÙØ­Ù‡ Ø´Ù…Ø§Ø±Ù‡â€ŒØ²ÛŒØ±ÙØ±Ù…ول شماره‌سر شماره‌سرجاری Ø´Ù…Ø§Ø±Ù‡â€ŒØµÙØ­Ù‡ \ Ø´Ù…Ø§Ø±Ù‡â€ŒØµÙØ­Ù‡â€ŒÚ©Ø§Ù…Ù„ Ø´Ù…Ø§Ø±Ù‡â€ŒÙØ±Ù…ول شماره‌مبدل شماره‌ها شماره‌کاهش \ Ø´Ù…Ø§Ø±Ù‡â€ŒÚ©Ù„â€ŒØµÙØ­Ù‡â€ŒÙ‡Ø§ Ø´Ú©Ø§ÙØªÙ†â€ŒØ´Ù†Ø§ÙˆØ± شکل‌خارجی ØµÙØ­Ù‡ ØµÙØ­Ù‡â€ŒØªØ³Øª \ ØµÙØ­Ù‡â€ŒØ²ÙˆØ¬ ØµÙØ­Ù‡â€ŒÙ¾Ø±Ø¯Ø§Ø²Ø´ طول‌لیست عبوربلوکها عرض‌آرایش \ عرض‌برگ عرض‌حاشیه عرض‌حاشیه‌خارجی عرض‌حاشیه‌داخلی عرض‌حاشیه‌راست \ عرض‌حاشیه‌چپ عرض‌خط عرض‌لبه عرض‌لبه‌خارجی عرض‌لبه‌داخلی \ عرض‌لبه‌راست عرض‌لبه‌چپ عرض‌لیست عرض‌متن Ø¹Ù…Ù‚â€ŒØµÙØ­Ù‡ \ عنوان‌حاشیه ÙØ§ØµÙ„ه‌بالا ÙØ§ØµÙ„ه‌ته‌برگ ÙØ§ØµÙ„ه‌حاشیه ÙØ§ØµÙ„ه‌حاشیه‌خارجی \ ÙØ§ØµÙ„ه‌حاشیه‌داخلی ÙØ§ØµÙ„ه‌حاشیه‌راست ÙØ§ØµÙ„ه‌حاشیه‌چپ ÙØ§ØµÙ„ه‌سربرگ ÙØ§ØµÙ„ه‌لبه \ ÙØ§ØµÙ„ه‌لبه‌خارجی ÙØ§ØµÙ„ه‌لبه‌داخلی ÙØ§ØµÙ„ه‌لبه‌راست ÙØ§ØµÙ„ه‌لبه‌چپ ÙØ§ØµÙ„ه‌پایین \ ÙØ§ØµÙ„ه‌پشت ÙØ´Ø±Ø¯Ù‡ ÙØ¶Ø§ ÙØ¶Ø§Ù‡Ø§ÛŒâ€ŒØ«Ø§Ø¨Øª ÙØ¶Ø§ÛŒâ€ŒØ¨Ø§Ù„ا \ ÙØ¶Ø§ÛŒâ€ŒØ¨Ø±Ø´ ÙØ¶Ø§ÛŒâ€ŒØ«Ø§Ø¨Øª ÙØ¶Ø§ÛŒâ€ŒØ³Ùید ÙØ¶Ø§ÛŒâ€ŒØ³Ùیدصحیح ÙØ¶Ø§ÛŒâ€ŒÙ¾Ø§ÛŒÛŒÙ† \ Ùوری‌به‌لیست Ùوری‌بین‌لیست قالبی لوح‌مقایسه ماه \ متغیر متن متن‌برچسب متن‌حاشیه متن‌سر متن‌پانوشت \ محیط مراجعه مرجع Ù…Ø±Ø¬Ø¹â€ŒØµÙØ­Ù‡ مرجع‌متن \ مرحله‌سر مسکن معنی‌واحد مقایسه‌گروه‌رنگ مقدارخاکستری \ مقداررنگ مقیاس منÙÛŒ منوی‌پانل مولÙÙ‡ \ مکان مکان‌متن میدان میدانهای‌گزارش میدان‌شبیه‌سازی \ میدان‌پشته میدان‌کپی میله‌تطابق میله‌رنگ میله‌پانل \ ناشناس نام‌ماکرو نسخه نسخه‌نشانه نشانه‌گذاری \ نشانه‌گذاری‌زوج نشر نصب‌زبان نقطه‌ها نقل \ نقل‌قول نم نماد نمادسر نمادلیست \ نمایش‌آرایش نمایش‌بارگذاریها نمایش‌بستها نمایش‌توری نمایش‌رنگ \ نمایش‌شکلهای‌خارجی نمایش‌طرح‌بندی نمایش‌قالب نمایش‌قلم‌بدنه نمایش‌لوح \ نمایش‌مجموعه‌علامت نمایش‌محیط‌قلم‌بدنه نمایش‌میدانها نمایش‌چاپ نمایش‌گروه‌رنگ \ نوشتارزوج هدایت پا پابا پانوشت \ پایان‌آرایش پایان‌آرایش‌ستون پایان‌بازبینی پایان‌بلوک‌حاشیه پایان‌ترکیب \ پایان‌تصحیح‌خط پایان‌تطابق پایان‌تنظیم پایان‌تولید پایان‌جدول \ پایان‌جدولها پایان‌خط پایان‌خطها پایان‌خط‌حاشیه پایان‌خط‌متن \ پایان‌رنگ پایان‌ستونها پایان‌سراسری پایان‌شماره‌گذاری‌خط Ù¾Ø§ÛŒØ§Ù†â€ŒØºÛŒØ±ÙØ´Ø±Ø¯Ù‡ \ Ù¾Ø§ÛŒØ§Ù†â€ŒÙØ´Ø±Ø¯Ù‡ پایان‌متن پایان‌مجموعه‌ستون پایان‌محیط پایان‌مخال٠\ پایان‌موضعی پایان‌مولÙÙ‡ پایان‌مکان‌گذاری پایان‌نازکتر پایان‌نسخه \ پایان‌نقل‌قول پایان‌نوشتار پایان‌پانوشتهای‌موضعی Ù¾Ø§ÛŒØ§Ù†â€ŒÙ¾Ø±ÙˆÙØ§ÛŒÙ„ پایان‌پروژه \ پایان‌پس‌زمینه پایان‌پوشش پایان‌کد پایین پرده \ پروژه پرکردن‌میدان پس‌زمینه پیروی‌نسخه Ù¾ÛŒØ±ÙˆÛŒâ€ŒÙ†Ø³Ø®Ù‡â€ŒÙ¾Ø±ÙˆÙØ§ÛŒÙ„ \ Ù¾ÛŒØ±ÙˆÛŒâ€ŒÙ¾Ø±ÙˆÙØ§ÛŒÙ„ Ú†Ø§Ù¾â€ŒØ§Ø±ØªÙØ§Ø¹â€ŒØ¨Ø±Ú¯ چاپ‌عرض‌برگ چوبخط چپ‌چین \ کاغذزوج کسر کشیده کلمه‌حاشیه کلمه‌راست \ گیره یادداشت یک‌جا یک‌خط keywordclass.context.ro=\ CAP CUVANT CUVINTE Cap \ Caps Character Characters Cuvant Cuvinte \ KAP Kap Kaps LUNA Litera \ Litere MONTH Numere Numereromane Romannumerals \ WEEKDAY WORD WORDS Word Words \ ZIDINSAPTAMANA about adapteazaaspect adaptlayout adubuffer \ adumarcaje afiseazaaspect afiseazacampuri afiseazaculoare afiseazafiguriexterne \ afiseazafonttext afiseazagrid afiseazagrupculoare afiseazamakeup afiseazamediufonttext \ afiseazapaleta afiseazarama afiseazasetari afiseazasetsimboluri afiseazastruts \ afiseazatiparire aliniat aliniatcentru aliniatdreapta aliniatstanga \ appendix arg ascundeblocuri at atleftmargin \ atpage atrightmargin background baraculoare barainteractiune \ barasincronizare blackrule blackrules blanc blank \ bookmark but butoaneinteractiune buton butonmeniu \ button bypassblocks camp campumplere cap \ chapter character characters chem citat \ clip cloneazacamp clonefield coloana color \ column comment comparagrupculoare comparapaleta comparecolorgroup \ comparepalet completeazanumarpagina completecombinedlist completelistoffloats completelistofsorts \ completelistofsynonyms completeregister componenta convertestenumar convertnumber \ copiazacamp copyfield corecteazaspatiualb correctwhitespace coupledocument \ coupledregister couplemarking couplepage couplepaper coupleregister \ crlf culoare culoaregri cupleazadocument cupleazamarcaje \ cupleazaregistru currentdate currentheadnumber cutspace cuvantdreapta \ cuvantmarginal data datacurenta datareferit date \ decouplemarking decrementnumber decupleazamarcaje define defineblank \ defineblock definebodyfont definebodyfontDEF definebodyfontREF definebodyfontenvironment \ definebuffer definecolor definecolorgroup definecolumnbreak definecolumnset \ definecombination definecombinedlist defineconversion definedescription definedfont \ defineenumeration definefield definefieldstack definefiguresymbol definefloat \ definefont definefontfeature definefonthandling definefontsynonym defineframed \ defineframedtext definehead defineindentedtext defineinmargin defineinteractionmenu \ defineitemgroup definelabel definelayer definelayout definelist \ definelogo definemakeup definemarking definemathalignment defineoutput \ defineoverlay definepagebreak definepalet definepapersize defineparagraphs \ defineplacement defineprofile defineprogram definereference definereferenceformat \ definereferencelist defineregister definesection definesectionblock definesorting \ definestartstop defineste definesteaccent definesteantet definesteblanc \ definestebloc definesteblocsectiune definestebuffer definestecamp definestecampprincipal \ definestecaracter definestecomanda definesteconversie definesteculoare definestedescriere \ definestedimensiunehartie definesteenumerare definesteeticheta definestefloat definestefont \ definestefontraw definestefonttext definesteformatreferinte definestegrupculori definestehbox \ definesteinconjurare definestelista definestelistacombinata definestelistareferinte definestelogo \ definestemakeup definestemarcaje definestemediulfonttext definestemeniuinteractiune definesteoutput \ definesteoverlay definestepaleta definesteparagraf definestepozitietext definesteprofil \ definesteprogram definestereferinte definesteregistru definesterigla definestesablontabel \ definestesectiune definestesimbol definestesimbolfigura definestesinonim definestesinonimfont \ definestesortare definestestartstop definestestil definestestilfont definestestivacampuri \ definestesubcamp definestetabulatori definestetext definestetexteinconjurate definestetextinconjurat \ definestetyping definestevariabilatext definesteversiune definesubfield definesymbol \ definesynonyms definetabletemplate definetabulate definetext definetype \ definetypeface definetyping defineversion description despre \ determinacaracteristicilelistei determinacaracteristiciregistru determinanumartitlu determineheadnumber determinelistcharacteristics \ dezactiveazameniuinteractiune dimensiune din disableinteractionmenu distantaantet \ distantacolt distantacoltdreapta distantacoltstanga distantajos distantamargine \ distantamarginedreapta distantamarginestanga distantasubsol distantasus domiciliu \ dute dutebox dutepagina ecran el \ element emptylines enumeration eticheta etichete \ externalfigure fact faraaliniat faradimensiune farafisiere \ faraliniiantetsisubsol faraliniisussijos faralista faramarcaje faraspatiu \ faraspatiualb field fieldstack figuraexterna fillinfield \ fillinline fillinrules fillintext firdepar fitfield \ fixedspaces followprofile followprofileversion followversion folosesteURL \ folosestebloc folosestecodificarea folosestecomenzi folosestedirector folosestedocumentextern \ folosestefiguraexterna folosestefisiereexterne folosestefisierextern folosestemodul folosestemodule \ folosestemuzicaexterna folosestereferinte folosestescriptJS folosestesimboluri folosestespeciale \ folosesteurl footnote footnotetext forceblocks forteazablocuri \ fractie fraction framed framedtext from \ fundal gatablocuri getbuffer getmarking getnumber \ godown goto gotobox graycolor grid \ grosimelinie hairline hartiedubla head headnumber \ headsym headtext hideblocks high hl \ immediatebetweenlist immediatetolist impachetat impartefloat in \ inalt inaltamargine inaltimeantet inaltimehartie inaltimehartieimprimanta \ inaltimejos inaltimelista inaltimemakeup inaltimesubsol inaltimesus \ inaltimetext indentation indenting indreapta inframed \ ininner injos inleft inline inlinie \ inmaframed inmargin inmargineadreapta inmargineastanga inneredgedistance \ inneredgewidth innermargindistance innermarginwidth inothermargin inouter \ inparteadreapta inparteastanga inright instalarelimba installlanguage \ instanga interactionbar interactionbuttons intins item \ items its jos jossus kap \ keepblocks la labeling labels labeltext \ language lapagina latimecoltdreapta latimecoltstanga latimecolturi \ latimehartie latimehartieimprimanta latimelista latimemakeup latimemargine \ latimemarginedreapta latimemarginestanga latimetext leftaligned leg \ limba limbaprincipala liniemargine linieneagra liniesubtire \ linieumplere liniinegre liniisubtiri listsymbol litera \ litere loadsorts loadsynonyms logcampuri logfields \ lohi low luna lungimelista maframed \ mainlanguage mapfontsize mar marcaje marcheazaversiune \ marginal marginrule margintext marking markversion \ matematica mathematics mediaeval mediu meniuinteractiune \ midaligned minicitat mirror month moveformula \ moveongrid movesidefloat mutapegrid name navigating \ necunoscut nextsection niveltitlu nocap noheaderandfooterlines \ noindenting nokap nolist nomarking nomoreblocks \ nomorefiles nop nospace nota notasubsol \ note notopandbottomlines nowhitespace numarformula numarincrement \ numarpagina numarsubformula numartitlu numartitlucurent numartotalpagini \ numberofsubpages numbers nume numere numereromane \ numeunitate nutesta olinie outeredgedistance outeredgewidth \ outermargindistance outermarginwidth overbar overbars overstrike \ overstrikes packed page pagedepth pageoffset \ pagereference pagina paginadubla paragraph part \ pastreazablocuri pelung periods placebookmarks placecombinedlist \ placefloat placefootnotes placeformula placeheadnumber placeheadtext \ placelegend placelist placelistoffloats placelistofsorts placelistofsynonyms \ placelocalfootnotes placelogos placeongrid placeontopofeachother placerawlist \ placereferencelist placeregister placesidebyside placesubformula plaseazapegrid \ plaseazasemnecarte position potrivestecamp pozitie pozitietext \ proceseazabloc proceseazapagina processblocks processpage produs \ program proiect publicatie publication puncte \ punedeasuprafiecareia punefatainfata puneformula punelegenda punelista \ punelistacombinata punelogouri punenotesubsol punenotesubsollocale punenumarpagina \ puneregistru punerigla punesubformula punevariabilatext quotation \ quote ran ref refa reference \ referinta referintapagina referintatext referit referral \ referraldate referring reflexie register remarca \ reservefloat reset reseteazamarcaje resetmarking resetnumber \ resettextcontent rightaligned riglatext rigleumplere romannumerals \ rotate roteste saripesteblocuri scala scale \ screen scriebuffer scrieinlista scrieinlistareferinte scrieinregistru \ scrieintreliste section seeregister selectblocks selecteazablocuri \ selecteazahartie selecteazaversiune selectpaper selectversion semncarte \ setarebarasincronizare setareitemization setarelimba setareoutput setarepozitie \ setaresincronizare seteazaaliniat seteazaalinierea seteazaantet seteazaaranjareapag \ seteazaaspect seteazabarainteractiune seteazablanc seteazabloc seteazablocsectiune \ seteazablocurimarginale seteazabuffer seteazabutoane seteazacamp seteazacampuri \ seteazaclipping seteazacoloane seteazacombinari seteazacomentariu seteazacomentariupagina \ seteazaculoare seteazaculori seteazadefinireanotasubsol seteazadescriere seteazadimensiunihartie \ seteazaecrane seteazaecraninteractiune seteazaelemente seteazaenumerare seteazafiguriexterne \ seteazafloat seteazafloats seteazafonttext seteazaformulare seteazaformule \ seteazafundal seteazafundaluri seteazagrosimelinie seteazaimpartireafloat seteazainconjurat \ seteazaingust seteazainteractiunea seteazajos seteazalegenda seteazalegendele \ seteazaliniesilabe seteazaliniesubtire seteazalinii seteazaliniimargine seteazaliniinegre \ seteazaliniiumplere seteazalista seteazalistacombinata seteazalistareferinte seteazamajuscule \ seteazamakeup seteazamarcaje seteazamarginal seteazamediulfonttext seteazameniuinteractiune \ seteazaminicitat seteazanotasubsol seteazanumarpagina seteazanumarsubpagina seteazanumartitlu \ seteazanumerotare seteazanumerotarelinii seteazanumerotarepagina seteazanumerotareparagrafe seteazapaleta \ seteazaparagrafe seteazaplasareaopozita seteazapozitietext seteazaprofile seteazaprograme \ seteazapublicatii seteazareferinte seteazaregistru seteazarigla seteazarigletext \ seteazarigleumplere seteazarotare seteazasectiune seteazasimbol seteazasinonime \ seteazasistem seteazasortare seteazaspatiu seteazaspatiualb seteazaspatiuinterliniar \ seteazastrut seteazasublinie seteazasubsol seteazasus seteazatab \ seteazatabele seteazatabulatori seteazatext seteazatexteantet seteazatextejos \ seteazatextesubsol seteazatextesus seteazatextetext seteazatexteticheta seteazatexttitlu \ seteazatitlu seteazatitluri seteazatoleranta seteazatranzitiepagina seteazatype \ seteazatyping seteazaurl seteazavariabilatext seteazaversiuni setnumber \ settextcontent setupalign setupanswerarea setuparranging setupbackground \ setupbackgrounds setupblackrules setupblank setupblock setupbodyfont \ setupbodyfontenvironment setupbottom setupbottomtexts setupbuffer setupbuttons \ setupcapitals setupcaption setupcaptions setupclipping setupcolor \ setupcolors setupcolumns setupcolumnset setupcolumnsetlines setupcolumnsetstart \ setupcombinations setupcombinedlist setupcomment setupdescriptions setupenumerations \ setupexternalfigures setupfield setupfields setupfillinlines setupfillinrules \ setupfloat setupfloats setupfloatsplitting setupfonthandling setupfontsynonym \ setupfooter setupfootertexts setupfootnotedefinition setupfootnotes setupforms \ setupformulas setupframed setupframedtexts setuphead setupheader \ setupheadertexts setupheadnumber setupheads setupheadtext setuphyphenmark \ setupindentedtext setupindenting setupinmargin setupinteraction setupinteractionbar \ setupinteractionmenu setupinteractionscreen setupinterlinespace setupinterlinespace2 setupitemgroup \ setupitems setuplabeltext setuplanguage setuplayout setuplegend \ setuplinenumbering setuplines setuplinewidth setuplist setuplistalternative \ setupmakeup setupmarginblocks setupmarginrules setupmarking setupmathalignment \ setupnarrower setupnumber setupnumbering setupoppositeplacing setupoutput \ setuppagenumber setuppagenumbering setuppagetransitions setuppalet setuppaper \ setuppapersize setupparagraphnumbering setupparagraphs setupplacement setuppositioning \ setupprofiles setupprograms setuppublications setupquote setupreferencelist \ setupreferencing setupregister setuprotate setupscreens setupsection \ setupsectionblock setupsorting setupspacing setupstartstop setupstrut \ setupsubpagenumber setupsymbolset setupsynchronization setupsynchronizationbar setupsynonyms \ setupsystem setuptab setuptables setuptabulate setuptext \ setuptextrules setuptexttexts setupthinrules setuptolerance setuptop \ setuptoptexts setuptype setuptyping setupunderbar setupurl \ setupversions setupwhitespace setvariabilatext showbodyfont showbodyfontenvironment \ showcolor showcolorgroup showexternalfigures showfields showframe \ showgrid showlayout showmakeup showpalet showprint \ showsetups showstruts showsymbolset sim simbol \ sincronizeaza someline somewhere sort space \ spatiifixate spatiu spatiualb spatiufixat spatiujos \ spatiuspate spatiusus splitfloat startalignment startaliniere \ startbackground startblocmarginal startbuffer startcitat startcodificare \ startcoloane startcolor startcolumnmakeup startcolumns startcolumnset \ startcombinare startcombination startcomment startcomponent startcomponenta \ startcorectielinie startculoare startdescription startdocument startenumeration \ startenvironment startfact startfigura startfigure startfloattext \ startformula startframedtext startfundal startglobal starthiding \ startimpachetat startingust startinteractionmenu startitemgroup startlegend \ startline startlinecorrection startlinenumbering startlines startlinie \ startliniemargine startlinii startlocal startlocalenvironment startlocalfootnotes \ startmakeup startmarginblock startmarginrule startmediu startnamemakeup \ startnarrower startneimpachetat startnotesubsollocale startnumerotarelinii startopozit \ startopposite startoverlay startoverview startpacked startparagraph \ startpositioning startpostponing startpozitionare startproduct startprodus \ startprofil startprofile startproiect startproject startquotation \ startraster startregister startriglatext startsetsimboluri startsincronizare \ startsymbolset startsynchronization starttabel starttabele starttable \ starttables starttabulate starttext starttextrule starttyping \ startunpacked startversion startversiune stivacampuri stopalignment \ stopaliniere stopbackground stopblobal stopblocmarginal stopbuffer \ stopcitat stopcodificare stopcoloane stopcolor stopcolumnmakeup \ stopcolumns stopcolumnset stopcombinare stopcombination stopcomment \ stopcomponent stopcomponenta stopcorectielinie stopculoare stopdescription \ stopdocument stopenumeration stopenvironment stopfact stopfigure \ stopfloattext stopformula stopframedtext stopfundal stophiding \ stopimpachetat stopingust stopinteractionmenu stopitemgroup stoplegend \ stopline stoplinecorrection stoplinenumbering stoplines stoplinie \ stopliniemargine stoplinii stoplocal stoplocalenvironment stoplocalfootnotes \ stopmakeup stopmarginblock stopmarginrule stopmediu stopnamemakeup \ stopnarrower stopneimpachetat stopnotesubsollocale stopnumerotarelinii stopopozit \ stopopposite stopoverlay stopoverview stoppacked stopparagraph \ stoppositioning stoppostponing stoppozitionare stopproduct stopprodus \ stopprofil stopprofile stopproiect stopproject stopquotation \ stopraster stopriglatext stopsincronizare stopsymbolset stopsynchronization \ stoptabel stoptabele stoptable stoptables stoptabulate \ stoptext stoptextrule stoptyping stopunpacked stopversion \ stopversiune stretched sub subject subpagenumber \ subsection subsubject subsubsection subsubsubject switchtobodyfont \ sym symbol synchronizationbar synchronize synonym \ tab testcolumn testpage tex texteticheta \ textmarginal textreference textrule texttitlu textumplere \ thinrule thinrules title titlu titlumarginal \ tooltip traduce translate trecilafontraw trecilafonttext \ txt typ type typebuffer typefile \ underbar underbars undeva urmeazaprofil urmeazaversiune \ urmeazaversiuneprofil useURL useXMLfilter useblocks usecommands \ usedirectory useencoding useexternaldocument useexternalfigure useexternalfile \ useexternalfiles useexternalsoundtrack usemodule usereferences usespecials \ usesymbols usetypescript usetypescriptfile valoareculoare valoaregri \ variabilatext version versiune vl weekday \ whitespace wordright writebetweenlist writetolist writetoreferencelist \ writetoregister zidinsaptamana context-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-ctx-example.properties0000644000175000017500000000114512336241772031344 0ustar norbertnorbertcommand.25.$(file.patterns.example)=insert_template $(ctx.template.list.example) ctx.template.list.example=\ bold=font.bold.example|\ emphasized=font.emphasized.example|\ |\ inline math=math.inline.example|\ display math=math.display.example|\ |\ itemize=structure.itemize.example ctx.template.font.bold.example=? ctx.template.font.emphasized.example=? ctx.template.math.inline.example=? ctx.template.math.display.example=? ctx.template.structure.itemize.example=\ \n\ ?\n\ ?\n\ ?\n\ \n ././@LongLink0000644000000000000000000000015000000000000011577 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-context-data-metafun.propertiescontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-context-data-metafun.propert0000644000175000017500000000614212514560075032444 0ustar norbertnorbertkeywordclass.metafun.commands=\ transparency sqr log ln \ exp inv pow pi radian \ tand cotd sin cos tan \ cot atan asin acos invsin \ invcos invtan acosh asinh sinh \ cosh zmod paired tripled unitcircle \ fulldiamond unitdiamond fullsquare llcircle lrcircle \ urcircle ulcircle tcircle bcircle lcircle \ rcircle lltriangle lrtriangle urtriangle ultriangle \ uptriangle downtriangle lefttriangle righttriangle triangle \ smoothed cornered superellipsed randomized squeezed \ enlonged shortened punked curved unspiked \ simplified blownup stretched enlarged leftenlarged \ topenlarged rightenlarged bottomenlarged crossed laddered \ randomshifted interpolated paralleled cutends peepholed \ llenlarged lrenlarged urenlarged ulenlarged llmoved \ lrmoved urmoved ulmoved rightarrow leftarrow \ centerarrow boundingbox innerboundingbox outerboundingbox pushboundingbox \ popboundingbox bottomboundary leftboundary topboundary rightboundary \ xsized ysized xysized sized xyscaled \ intersection_point intersection_found penpoint bbwidth bbheight \ withshade withcircularshade withlinearshade defineshade shaded \ shadedinto withshadecolors withshadedomain withshademethod withshadefactor \ withshadevector withshadecenter cmyk spotcolor multitonecolor \ namedcolor drawfill undrawfill inverted uncolored \ softened grayed greyed onlayer along \ graphictext loadfigure externalfigure figure register \ withmask bitmapimage colordecimals ddecimal dddecimal \ ddddecimal textext thetextext rawtextext textextoffset \ verbatim thelabel label autoalign transparent \ withtransparency property properties withproperties asgroup \ infont space crlf dquote percent \ SPACE CRLF DQUOTE PERCENT grayscale \ greyscale withgray withgrey colorpart readfile \ clearxy unitvector center epsed anchored \ originpath infinite break xstretched ystretched \ snapped pathconnectors function constructedfunction constructedpath \ constructedpairs straightfunction straightpath straightpairs curvedfunction \ curvedpath curvedpairs evenly oddly condition \ pushcurrentpicture popcurrentpicture arrowpath tensecircle roundedsquare \ colortype whitecolor blackcolor basiccolors normalfill \ normaldraw visualizepaths naturalizepaths drawboundary drawwholepath \ visualizeddraw visualizedfill draworigin drawboundingbox drawpath \ drawpoint drawpoints drawcontrolpoints drawcontrollines drawpointlabels \ drawlineoptions drawpointoptions drawcontroloptions drawlabeloptions draworiginoptions \ drawboundoptions drawpathoptions resetdrawoptions undashed decorated \ redecorated undecorated passvariable passarrayvariable tostring \ format formatted startpassingvariable stoppassingvariable eofill \ eoclip area keywordclass.metafun.internals=\ nocolormodel greycolormodel graycolormodel rgbcolormodel \ cmykcolormodel shadefactor textextoffset normaltransparent multiplytransparent \ screentransparent overlaytransparent softlighttransparent hardlighttransparent colordodgetransparent \ colorburntransparent darkentransparent lightentransparent differencetransparent exclusiontransparent \ huetransparent saturationtransparent colortransparent luminositytransparent metapostversion \ maxdimensions context-2015.05.18.20150601/texmf-dist/context/data/scite/context/scite-ctx.properties0000644000175000017500000001072712336241772027721 0ustar norbertnorbert# author # # Hans Hagen - PRAGMA ADE - www.pragma-ade.com # # environment variable # # CTXSPELLPATH=t:/spell # # auto language detection # # % version =1.0 language=uk # ext.lua.auto.reload=1 ext.lua.startup.script=$(SciteDefaultHome)/context/scite-ctx.lua #~ extension.$(file.patterns.context)=scite-ctx.lua #~ extension.$(file.patterns.example)=scite-ctx.lua #~ ext.lua.reset=1 #~ ext.lua.auto.reload=1 #~ ext.lua.startup.script=t:/lua/scite-ctx.lua ctx.menulist.default=\ wrap=wrap_text|\ unwrap=unwrap_text|\ sort=sort_text|\ add=add_text|\ check=check_text|\ reset=reset_text|\ strip=toggle_strip ctx.menulist.context=\ wrap=wrap_text|\ unwrap=unwrap_text|\ sort=sort_text|\ document=document_text|\ quote=quote_text|\ compound=compound_text|\ add=add_text|\ check=check_text|\ reset=reset_text|\ strip=toggle_strip ctx.menulist.example=\ wrap=wrap_text|\ unwrap=unwrap_text|\ sort=sort_text|\ uncomment=uncomment_xml|\ document=document_text|\ quote=quote_text|\ compound=compound_text|\ add=add_text|\ check=check_text|\ reset=reset_text|\ strip=toggle_strip ctx.wraptext.length=80 ctx.spellcheck.language=auto ctx.spellcheck.wordsize=4 ctx.spellcheck.wordpath=ENV(CTXSPELLPATH) ctx.spellcheck.wordfile.all=spell-uk.txt,spell-nl.txt ctx.spellcheck.wordfile.uk=spell-uk.txt ctx.spellcheck.wordfile.nl=spell-nl.txt ctx.spellcheck.wordsize.uk=4 ctx.spellcheck.wordsize.nl=4 ctx.helpinfo=\ Shift + F11 pop up menu with ctx options|\ |\ Ctrl + B check spelling|\ Ctrl + M wrap text (auto indent)|\ Ctrl + R reset spelling results|\ Ctrl + I insert template|\ Ctrl + E open log file|\ Ctrl + + toggle strip|\ |\ F7 / F12 check (or process)|\ Ctrl + F7 / F12 process|\ Alt + F7 / F12 process with jit|\ shift + F7 / F12 launch command.name.21.$(file.patterns.context)=CTX Action List command.subsystem.21.$(file.patterns.context)=3 command.21.$(file.patterns.context)=show_menu $(ctx.menulist.context) command.groupundo.21.$(file.patterns.context)=yes command.save.before.21.$(file.patterns.context)=2 command.shortcut.21.$(file.patterns.context)=Shift+F11 command.name.21.$(file.patterns.example)=CTX Action List command.subsystem.21.$(file.patterns.example)=3 command.21.$(file.patterns.example)=show_menu $(ctx.menulist.example) command.groupundo.21.$(file.patterns.example)=yes command.save.before.21.$(file.patterns.example)=2 command.shortcut.21.$(file.patterns.example)=Shift+F11 #~ command.name.21.*=CTX Action List #~ command.subsystem.21.*=3 #~ command.21.*=show_menu $(ctx.menulist.default) #~ command.groupundo.21.*=yes #~ command.save.before.21.*=2 #~ command.shortcut.21.*=Shift+F11 command.name.22.*=CTX Check Text command.subsystem.22.*=3 command.22.*=check_text command.groupundo.22.*=yes command.save.before.22.*=2 command.shortcut.22.*=Ctrl+B command.name.23.*=CTX Wrap Text command.subsystem.23.*=3 command.23.*=wrap_text command.groupundo.23.*=yes command.save.before.23.*=2 command.shortcut.23.*=Ctrl+M command.name.24.*=CTX Reset Text command.subsystem.24.*=3 command.24.*=reset_text command.groupundo.24.*=yes command.save.before.24.*=2 command.shortcut.24.*=Ctrl+R command.name.25.*=CTX Template command.subsystem.25.*=3 command.save.before.25.*=2 command.groupundo.25.*=yes command.shortcut.25.*=Ctrl+I # command.25.$(file.patterns.context)=insert_template $(ctx.template.list.context) # command.25.$(file.patterns.example)=insert_template $(ctx.template.list.example) # # ctx.template.list.example=\ # foo=mathadore.foo|\ # bar=mathadore.bar # # ctx.template.mathadore.foo.file=./ctx-templates/foo.xml # ctx.template.mathadore.bar.data=bar bar bar # # paths: ./ctx-templates, ../ctx-templates, ../../ctx-templates command.name.26.*=Open Logfile command.subsystem.26.*=3 command.26.*=open_log command.save.before.26.*=2 command.groupundo.26.*=yes command.shortcut.26.*=Ctrl+E import context/scite-ctx-context import context/scite-ctx-example ctx.template.scan=yes ctx.template.rescan=no ctx.template.suffix.tex=tex ctx.template.suffix.xml=xml command.name.27.*=XML Uncomment command.subsystem.27.*=3 command.27.*=uncomment_xml command.save.before.27.*=2 command.groupundo.27.*=yes command.name.28.*=Language Strip command.subsystem.28.*=3 command.28.*=toggle_strip command.save.before.28.*=2 command.shortcut.28.*=Ctrl++ context-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/0000755000175000017500000000000012524220613025161 5ustar norbertnorbert././@LongLink0000644000000000000000000000015200000000000011601 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf-xref.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf-xre0000644000175000017500000000241612336241772032372 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer for pdf xref", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } -- no longer used: nesting lexers with whitespace in start/stop is unreliable local P, R = lpeg.P, lpeg.R local lexer = require("lexer") local context = lexer.context local patterns = context.patterns local token = lexer.token local pdfxreflexer = lexer.new("pdfxref","scite-context-lexer-pdf-xref") local whitespace = pdfxreflexer.whitespace local spacing = patterns.spacing local cardinal = patterns.cardinal local alpha = patterns.alpha local t_spacing = token(whitespace, spacing) local p_xref = P("xref") local t_xref = token("keyword",p_xref) * token("number", cardinal * spacing * cardinal * spacing) local t_number = token("number", cardinal * spacing * cardinal * spacing) * token("keyword", alpha) pdfxreflexer._rules = { { "whitespace", t_spacing }, { "xref", t_xref }, { "number", t_number }, } pdfxreflexer._tokenstyles = context.styleset return pdfxreflexer context-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-tex.lua0000644000175000017500000004735012524220440032377 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer for context", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } -- maybe: _LINEBYLINE variant for large files (no nesting) -- maybe: protected_macros --[[ experiment dd 2009/10/28 .. todo: -- figure out if tabs instead of splits are possible -- locate an option to enter name in file dialogue (like windows permits) -- figure out why loading a file fails -- we cannot print to the log pane -- we cannot access props["keywordclass.macros.context.en"] -- lexer.get_property only handles integers -- we cannot run a command to get the location of mult-def.lua -- local interface = props["keywordclass.macros.context.en"] -- local interface = lexer.get_property("keywordclass.macros.context.en","") ]]-- local global, string, table, lpeg = _G, string, table, lpeg local P, R, S, V, C, Cmt, Cp, Cc, Ct = lpeg.P, lpeg.R, lpeg.S, lpeg.V, lpeg.C, lpeg.Cmt, lpeg.Cp, lpeg.Cc, lpeg.Ct local type, next = type, next local find, match, lower, upper = string.find, string.match, string.lower, string.upper local lexer = require("lexer") local context = lexer.context local patterns = context.patterns local inform = context.inform local token = lexer.token local exact_match = lexer.exact_match local contextlexer = lexer.new("tex","scite-context-lexer-tex") local whitespace = contextlexer.whitespace local cldlexer = lexer.load("scite-context-lexer-cld") local mpslexer = lexer.load("scite-context-lexer-mps") local commands = { en = { } } local primitives = { } local helpers = { } local constants = { } do -- todo: only once, store in global -- commands helpers primitives local definitions = context.loaddefinitions("scite-context-data-interfaces") if definitions then local list = { } for interface, list in next, definitions do list[#list+1] = interface local c = { } for i=1,#list do c[list[i]] = true end if interface ~= "en" then list = definitions.en if list then for i=1,#list do c[list[i]] = true end end end commands[interface] = c end inform("context user interfaces '%s' supported",table.concat(list," ")) end local definitions = context.loaddefinitions("scite-context-data-context") local overloaded = { } if definitions then helpers = definitions.helpers or { } constants = definitions.constants or { } for i=1,#helpers do overloaded[helpers[i]] = true end for i=1,#constants do overloaded[constants[i]] = true end end local definitions = context.loaddefinitions("scite-context-data-tex") if definitions then local function add(data,normal) for k, v in next, data do if v ~= "/" and v ~= "-" then if not overloaded[v] then primitives[#primitives+1] = v end if normal then v = "normal" .. v if not overloaded[v] then primitives[#primitives+1] = v end end end end end add(definitions.tex,true) add(definitions.etex,true) add(definitions.pdftex,true) add(definitions.aleph,true) add(definitions.omega,true) add(definitions.luatex,true) add(definitions.xetex,true) end end local currentcommands = commands.en or { } local cstoken = R("az","AZ","\127\255") + S("@!?_") local knowncommand = Cmt(cstoken^1, function(_,i,s) return currentcommands[s] and i end) local utfchar = context.utfchar local wordtoken = context.patterns.wordtoken local iwordtoken = context.patterns.iwordtoken local wordpattern = context.patterns.wordpattern local iwordpattern = context.patterns.iwordpattern local invisibles = context.patterns.invisibles local checkedword = context.checkedword local styleofword = context.styleofword local setwordlist = context.setwordlist local validwords = false local validminimum = 3 -- % language=uk -- fails (empty loop message) ... latest lpeg issue? local knownpreamble = Cmt(P("% "), function(input,i,_) -- todo : utfbomb, was #P("% ") if i < 10 then validwords, validminimum = false, 3 local s, e, word = find(input,"^(.+)[\n\r]",i) -- combine with match if word then local interface = match(word,"interface=([a-z]+)") if interface and #interface == 2 then inform("enabling context user interface '%s'",interface) currentcommands = commands[interface] or commands.en or { } end local language = match(word,"language=([a-z]+)") validwords, validminimum = setwordlist(language) end end return false end) -- -- the token list contains { "style", endpos } entries -- -- -- -- in principle this is faster but it is also crash sensitive for large files -- local constants_hash = { } for i=1,#constants do constants_hash [constants [i]] = true end -- local helpers_hash = { } for i=1,#helpers do helpers_hash [helpers [i]] = true end -- local primitives_hash = { } for i=1,#primitives do primitives_hash[primitives[i]] = true end -- local specialword = Ct( P("\\") * Cmt( C(cstoken^1), function(input,i,s) -- if currentcommands[s] then -- return true, "command", i -- elseif constants_hash[s] then -- return true, "data", i -- elseif helpers_hash[s] then -- return true, "plain", i -- elseif primitives_hash[s] then -- return true, "primitive", i -- else -- if starts with if then primitive -- return true, "user", i -- end -- end) ) -- local specialword = P("\\") * Cmt( C(cstoken^1), function(input,i,s) -- if currentcommands[s] then -- return true, { "command", i } -- elseif constants_hash[s] then -- return true, { "data", i } -- elseif helpers_hash[s] then -- return true, { "plain", i } -- elseif primitives_hash[s] then -- return true, { "primitive", i } -- else -- if starts with if then primitive -- return true, { "user", i } -- end -- end) -- experiment: keep space with whatever ... less tables -- 10pt local commentline = P("%") * (1-S("\n\r"))^0 local endline = S("\n\r")^1 local space = patterns.space -- S(" \n\r\t\f\v") local any = patterns.any local backslash = P("\\") local hspace = S(" \t") local p_spacing = space^1 local p_rest = any local p_preamble = knownpreamble local p_comment = commentline ----- p_command = backslash * knowncommand ----- p_constant = backslash * exact_match(constants) ----- p_helper = backslash * exact_match(helpers) ----- p_primitive = backslash * exact_match(primitives) local p_command = backslash * lexer.helpers.utfchartabletopattern(currentcommands) * #(1-cstoken) local p_constant = backslash * lexer.helpers.utfchartabletopattern(constants) * #(1-cstoken) local p_helper = backslash * lexer.helpers.utfchartabletopattern(helpers) * #(1-cstoken) local p_primitive = backslash * lexer.helpers.utfchartabletopattern(primitives) * #(1-cstoken) local p_ifprimitive = P("\\if") * cstoken^1 local p_csname = backslash * (cstoken^1 + P(1)) local p_grouping = S("{$}") local p_special = S("#()[]<>=\"") local p_extra = S("`~%^&_-+/\'|") local p_text = iwordtoken^1 --maybe add punctuation and space local p_reserved = backslash * ( P("??") + R("az") * P("!") ) * cstoken^1 local p_number = context.patterns.real local p_unit = P("pt") + P("bp") + P("sp") + P("mm") + P("cm") + P("cc") + P("dd") -- no looking back = #(1-S("[=")) * cstoken^3 * #(1-S("=]")) -- This one gives stack overflows: -- -- local p_word = Cmt(iwordpattern, function(_,i,s) -- if validwords then -- return checkedword(validwords,validminimum,s,i) -- else -- -- return true, { "text", i } -- return true, "text", i -- end -- end) -- -- So we use this one instead: ----- p_word = Ct( iwordpattern / function(s) return styleofword(validwords,validminimum,s) end * Cp() ) -- the function can be inlined local p_word = iwordpattern / function(s) return styleofword(validwords,validminimum,s) end * Cp() -- the function can be inlined ----- p_text = (1 - p_grouping - p_special - p_extra - backslash - space + hspace)^1 -- keep key pressed at end-of syst-aux.mkiv: -- -- 0 : 15 sec -- 1 : 13 sec -- 2 : 10 sec -- -- the problem is that quite some style subtables get generated so collapsing ranges helps local option = 1 if option == 1 then p_comment = p_comment^1 p_grouping = p_grouping^1 p_special = p_special^1 p_extra = p_extra^1 p_command = p_command^1 p_constant = p_constant^1 p_helper = p_helper^1 p_primitive = p_primitive^1 p_ifprimitive = p_ifprimitive^1 p_reserved = p_reserved^1 elseif option == 2 then local included = space^0 p_comment = (p_comment * included)^1 p_grouping = (p_grouping * included)^1 p_special = (p_special * included)^1 p_extra = (p_extra * included)^1 p_command = (p_command * included)^1 p_constant = (p_constant * included)^1 p_helper = (p_helper * included)^1 p_primitive = (p_primitive * included)^1 p_ifprimitive = (p_ifprimitive * included)^1 p_reserved = (p_reserved * included)^1 end local p_invisible = invisibles^1 local spacing = token(whitespace, p_spacing ) local rest = token("default", p_rest ) local preamble = token("preamble", p_preamble ) local comment = token("comment", p_comment ) local command = token("command", p_command ) local constant = token("data", p_constant ) local helper = token("plain", p_helper ) local primitive = token("primitive", p_primitive ) local ifprimitive = token("primitive", p_ifprimitive) local reserved = token("reserved", p_reserved ) local csname = token("user", p_csname ) local grouping = token("grouping", p_grouping ) local number = token("number", p_number ) * token("constant", p_unit ) local special = token("special", p_special ) local reserved = token("reserved", p_reserved ) -- reserved internal preproc local extra = token("extra", p_extra ) local invisible = token("invisible", p_invisible ) local text = token("default", p_text ) local word = p_word ----- startluacode = token("grouping", P("\\startluacode")) ----- stopluacode = token("grouping", P("\\stopluacode")) local luastatus = false local luatag = nil local lualevel = 0 local function startdisplaylua(_,i,s) luatag = s luastatus = "display" cldlexer._directives.cld_inline = false return true end local function stopdisplaylua(_,i,s) local ok = luatag == s if ok then cldlexer._directives.cld_inline = false luastatus = false end return ok end local function startinlinelua(_,i,s) if luastatus == "display" then return false elseif not luastatus then luastatus = "inline" cldlexer._directives.cld_inline = true lualevel = 1 return true else-- if luastatus == "inline" then lualevel = lualevel + 1 return true end end local function stopinlinelua_b(_,i,s) -- { if luastatus == "display" then return false elseif luastatus == "inline" then lualevel = lualevel + 1 -- ? return false else return true end end local function stopinlinelua_e(_,i,s) -- } if luastatus == "display" then return false elseif luastatus == "inline" then lualevel = lualevel - 1 local ok = lualevel <= 0 -- was 0 if ok then cldlexer._directives.cld_inline = false luastatus = false end return ok else return true end end contextlexer._reset_parser = function() luastatus = false luatag = nil lualevel = 0 end local luaenvironment = P("lua") * (P("setups") + P("code") + P(true)) + P("ctxfunction") * (P("definition") + P(true)) local inlinelua = P("\\") * ( P("ctx") * (P("lua") + P("command") + P("late") * (P("lua") + P("command")) + P("function")) + P("cld") * (P("command") + P("context")) + P("luaexpr") + (P("direct") + P("late")) * P("lua") ) local startlua = P("\\start") * Cmt(luaenvironment,startdisplaylua) + P("") * Cmt(P(true),stopdisplaylua) + Cmt(P("{"),stopinlinelua_b) + Cmt(P("}"),stopinlinelua_e) local startluacode = token("embedded", startlua) local stopluacode = #stoplua * token("embedded", stoplua) local luacall = P("clf_") * R("az","__","AZ")^1 local metafuncall = ( P("reusable") + P("usable") + P("unique") + P("use") + P("reuse") ) * ("MPgraphic") + P("uniqueMPpagegraphic") + P("MPpositiongraphic") local metafunenvironment = metafuncall -- ( P("use") + P("reusable") + P("unique") ) * ("MPgraphic") + P("MP") * ( P("code")+ P("page") + P("inclusions") + P("initializations") + P("definitions") + P("extensions") + P("graphic") + P("calculation") ) local startmetafun = P("\\start") * metafunenvironment local stopmetafun = P("\\stop") * metafunenvironment -- todo match start ----- subsystem = token("embedded", P("\\xml") * R("az")^1 + (P("\\st") * (P("art") + P("op")) * P("xmlsetups"))) local subsystemtags = P("xml") + P("btx") -- will be pluggable or maybe even a proper list of valid commands local subsystemmacro = P("\\") * (subsystemtags * R("az")^1 + (R("az")-subsystemtags)^1 * subsystemtags * R("az")^1) local subsystem = token("embedded", subsystemmacro) local openargument = token("special", P("{")) local closeargument = token("special", P("}")) local argumentcontent = token("default",(1-P("}"))^0) -- maybe space needs a treatment local metafunarguments = (spacing^0 * openargument * argumentcontent * closeargument)^-2 local startmetafuncode = token("embedded", startmetafun) * metafunarguments local stopmetafuncode = token("embedded", stopmetafun) local callers = token("embedded", P("\\") * metafuncall) * metafunarguments + token("embedded", P("\\") * luacall) lexer.embed_lexer(contextlexer, cldlexer, startluacode, stopluacode) lexer.embed_lexer(contextlexer, mpslexer, startmetafuncode, stopmetafuncode) contextlexer._rules = { { "whitespace", spacing }, { "preamble", preamble }, { "word", word }, { "text", text }, -- non words { "comment", comment }, { "constant", constant }, -- { "subsystem", subsystem }, { "callers", callers }, { "helper", helper }, { "command", command }, { "primitive", primitive }, { "ifprimitive", ifprimitive }, { "subsystem", subsystem }, { "reserved", reserved }, { "csname", csname }, -- { "whatever", specialword }, -- not yet, crashes { "grouping", grouping }, -- { "number", number }, { "special", special }, { "extra", extra }, { "invisible", invisible }, { "rest", rest }, } -- Watch the text grabber, after all, we're talking mostly of text (beware, -- no punctuation here as it can be special). We might go for utf here. local web = lexer.loadluafile("scite-context-lexer-web-snippets") if web then lexer.inform("supporting web snippets in tex lexer") contextlexer._rules_web = { { "whitespace", spacing }, { "text", text }, -- non words { "comment", comment }, { "constant", constant }, { "callers", callers }, { "helper", helper }, { "command", command }, { "primitive", primitive }, { "ifprimitive", ifprimitive }, { "reserved", reserved }, { "csname", csname }, { "grouping", grouping }, { "special", special }, { "extra", extra }, { "invisible", invisible }, { "web", web.pattern }, { "rest", rest }, } else lexer.report("not supporting web snippets in tex lexer") contextlexer._rules_web = { { "whitespace", spacing }, { "text", text }, -- non words { "comment", comment }, { "constant", constant }, { "callers", callers }, { "helper", helper }, { "command", command }, { "primitive", primitive }, { "ifprimitive", ifprimitive }, { "reserved", reserved }, { "csname", csname }, { "grouping", grouping }, { "special", special }, { "extra", extra }, { "invisible", invisible }, { "rest", rest }, } end contextlexer._tokenstyles = context.styleset local environment = { ["\\start"] = 1, ["\\stop"] = -1, -- ["\\begin"] = 1, ["\\end" ] = -1, } -- local block = { -- ["\\begin"] = 1, ["\\end" ] = -1, -- } local group = { ["{"] = 1, ["}"] = -1, } contextlexer._foldpattern = P("\\" ) * (P("start") + P("stop")) + S("{}") -- separate entry else interference contextlexer._foldsymbols = { -- these need to be style references .. todo: multiple styles _patterns = { "\\start", "\\stop", -- regular environments -- "\\begin", "\\end", -- (moveable) blocks "[{}]", }, ["command"] = environment, ["constant"] = environment, ["data"] = environment, ["user"] = environment, ["embedded"] = environment, ["helper"] = environment, ["plain"] = environment, ["grouping"] = group, } -- context.inspect(contextlexer) return contextlexer context-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/themes/0000755000175000017500000000000012336245662026462 5ustar norbertnorbert././@LongLink0000644000000000000000000000015000000000000011577 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/themes/scite-context-theme.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/themes/scite-context-theme.0000644000175000017500000001353012336241772032354 0ustar norbertnorbertlocal info = { version = 1.002, comment = "theme for scintilla lpeg lexer for context/metafun", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } -- context_path = string.split(os.resultof("mtxrun --find-file context.mkiv"))[1] or "" -- What used to be proper Lua definitions are in 3.42 SciTE properties although -- integration is still somewhat half. Also, the indexed style specification is -- now a hash (which indeed makes more sense). However, the question is: am I -- going to rewrite the style bit? It anyway makes more sense to keep this file -- somewhat neutral as we no longer need to be compatible. However, we cannot be -- sure of helpers being present yet when this file is loaded, so we are somewhat -- crippled. On the other hand, I don't see other schemes being used with the -- context lexers. -- The next kludge is no longer needed which is good! -- -- if GTK then -- WIN32 GTK OSX CURSES -- font_name = '!' .. font_name -- end -- I need to play with these, some work ok: -- -- eolfilled noteolfilled -- characterset:u|l -- visible notvisible -- changeable notchangeable (this way we can protect styles, e.g. preamble?) -- hotspot nothotspot local font_name = 'Dejavu Sans Mono' local font_size = '14' local colors = { red = { '7F', '00', '00' }, green = { '00', '7F', '00' }, blue = { '00', '00', '7F' }, cyan = { '00', '7F', '7F' }, magenta = { '7F', '00', '7F' }, yellow = { '7F', '7F', '00' }, orange = { 'B0', '7F', '00' }, -- white = { 'FF', 'FF', 'FF' }, light = { 'CF', 'CF', 'CF' }, grey = { '80', '80', '80' }, dark = { '4F', '4F', '4F' }, black = { '00', '00', '00' }, -- selection = { 'F7', 'F7', 'F7' }, logpanel = { 'E7', 'E7', 'E7' }, textpanel = { 'CF', 'CF', 'CF' }, linepanel = { 'A7', 'A7', 'A7' }, tippanel = { '44', '44', '44' }, -- right = { '00', '00', 'FF' }, wrong = { 'FF', '00', '00' }, } local styles = { ["whitespace"] = { }, ["default"] = { font = font_name, size = font_size, fore = colors.black, back = colors.textpanel }, ["default"] = { font = font_name, size = font_size, fore = colors.black }, ["number"] = { fore = colors.cyan }, ["comment"] = { fore = colors.yellow }, ["keyword"] = { fore = colors.blue, bold = true }, ["string"] = { fore = colors.magenta }, -- ["preproc"] = { fore = colors.yellow, bold = true }, ["error"] = { fore = colors.red }, ["label"] = { fore = colors.red, bold = true }, ["nothing"] = { }, ["class"] = { fore = colors.black, bold = true }, ["function"] = { fore = colors.black, bold = true }, ["constant"] = { fore = colors.cyan, bold = true }, ["operator"] = { fore = colors.blue }, ["regex"] = { fore = colors.magenta }, ["preprocessor"] = { fore = colors.yellow, bold = true }, ["tag"] = { fore = colors.cyan }, ["type"] = { fore = colors.blue }, ["variable"] = { fore = colors.black }, ["identifier"] = { }, ["linenumber"] = { back = colors.linepanel }, ["bracelight"] = { fore = colors.orange, bold = true }, ["bracebad"] = { fore = colors.orange, bold = true }, ["controlchar"] = { }, ["indentguide"] = { fore = colors.linepanel, back = colors.white }, ["calltip"] = { fore = colors.white, back = colors.tippanel }, ["invisible"] = { back = colors.orange }, ["quote"] = { fore = colors.blue, bold = true }, ["special"] = { fore = colors.blue }, ["extra"] = { fore = colors.yellow }, ["embedded"] = { fore = colors.black, bold = true }, ["char"] = { fore = colors.magenta }, ["reserved"] = { fore = colors.magenta, bold = true }, ["definition"] = { fore = colors.black, bold = true }, ["okay"] = { fore = colors.dark }, ["warning"] = { fore = colors.orange }, ["standout"] = { fore = colors.orange, bold = true }, ["command"] = { fore = colors.green, bold = true }, ["internal"] = { fore = colors.orange, bold = true }, ["preamble"] = { fore = colors.yellow }, ["grouping"] = { fore = colors.red }, ["primitive"] = { fore = colors.blue, bold = true }, ["plain"] = { fore = colors.dark, bold = true }, ["user"] = { fore = colors.green }, ["data"] = { fore = colors.cyan, bold = true }, -- equal to default: ["text"] = { font = font_name, size = font_size, fore = colors.black, back = colors.textpanel }, ["text"] = { font = font_name, size = font_size, fore = colors.black }, } local properties = { ["fold.by.parsing"] = 1, ["fold.by.indentation"] = 0, ["fold.by.line"] = 0, ["fold.line.comments"] = 0, -- ["lexer.context.log"] = 1, -- log errors and warnings ["lexer.context.trace"] = 0, -- show loading, initializations etc ["lexer.context.detail"] = 0, -- show more detail when tracing ["lexer.context.show"] = 0, -- show result of lexing ["lexer.context.collapse"] = 0, -- make lexing results somewhat more efficient ["lexer.context.inspect"] = 0, -- show some info about lexer (styles and so) -- -- ["lexer.context.log"] = 1, -- log errors and warnings -- ["lexer.context.trace"] = 1, -- show loading, initializations etc } local lexer = lexer or require("lexer") local context = lexer.context if context then context.inform("loading context (style) properties") if context.registerstyles then context.registerstyles(styles) end if context.registerproperties then context.registerproperties(properties) end end ././@LongLink0000644000000000000000000000015400000000000011603 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf-object.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf-obj0000644000175000017500000001400712336241772032345 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer for pdf objects", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } -- no longer used: nesting lexers with whitespace in start/stop is unreliable local P, R, S, C, V = lpeg.P, lpeg.R, lpeg.S, lpeg.C, lpeg.V local lexer = require("lexer") local context = lexer.context local patterns = context.patterns local token = lexer.token local pdfobjectlexer = lexer.new("pdfobj","scite-context-lexer-pdf-object") local whitespace = pdfobjectlexer.whitespace local space = patterns.space local spacing = patterns.spacing local nospacing = patterns.nospacing local anything = patterns.anything local newline = patterns.eol local real = patterns.real local cardinal = patterns.cardinal local lparent = P("(") local rparent = P(")") local langle = P("<") local rangle = P(">") local escape = P("\\") local unicodetrigger = P("feff") local nametoken = 1 - space - S("<>/[]()") local name = P("/") * nametoken^1 local p_string = P { ( escape * anything + lparent * V(1) * rparent + (1 - rparent) )^0 } local t_spacing = token(whitespace, spacing) local t_spaces = token(whitespace, spacing)^0 local t_rest = token("default", nospacing) -- anything local p_stream = P("stream") local p_endstream = P("endstream") local p_obj = P("obj") local p_endobj = P("endobj") local p_reference = P("R") local p_objectnumber = patterns.cardinal local p_comment = P("%") * (1-S("\n\r"))^0 local t_string = token("quote", lparent) * token("string", p_string) * token("quote", rparent) local t_unicode = token("quote", langle) * token("plain", unicodetrigger) * token("string", (1-rangle)^1) * token("quote", rangle) local t_whatsit = token("quote", langle) * token("string", (1-rangle)^1) * token("quote", rangle) local t_keyword = token("command", name) local t_constant = token("constant", name) local t_number = token("number", real) -- t_reference = token("number", cardinal) -- * t_spacing -- * token("number", cardinal) local t_reserved = token("number", P("true") + P("false") + P("NULL")) local t_reference = token("warning", cardinal) * t_spacing * token("warning", cardinal) * t_spacing * token("keyword", p_reference) local t_comment = token("comment", p_comment) local t_openobject = token("warning", p_objectnumber * spacing) -- * t_spacing * token("warning", p_objectnumber * spacing) -- * t_spacing * token("keyword", p_obj) local t_closeobject = token("keyword", p_endobj) local t_opendictionary = token("grouping", P("<<")) local t_closedictionary = token("grouping", P(">>")) local t_openarray = token("grouping", P("[")) local t_closearray = token("grouping", P("]")) -- todo: comment local t_stream = token("keyword", p_stream) -- * token("default", newline * (1-newline*p_endstream*newline)^1 * newline) -- * token("text", (1 - p_endstream)^1) * (token("text", (1 - p_endstream-spacing)^1) + t_spacing)^1 * token("keyword", p_endstream) local t_dictionary = { "dictionary", dictionary = t_opendictionary * (t_spaces * t_keyword * t_spaces * V("whatever"))^0 * t_spaces * t_closedictionary, array = t_openarray * (t_spaces * V("whatever"))^0 * t_spaces * t_closearray, whatever = V("dictionary") + V("array") + t_constant + t_reference + t_string + t_unicode + t_number + t_reserved + t_whatsit, } ----- t_object = { "object", -- weird that we need to catch the end here (probably otherwise an invalid lpeg) ----- object = t_spaces * (V("dictionary") * t_spaces * t_stream^-1 + V("array") + V("number") + t_spaces) * t_spaces * t_closeobject, ----- dictionary = t_opendictionary * (t_spaces * t_keyword * t_spaces * V("whatever"))^0 * t_spaces * t_closedictionary, ----- array = t_openarray * (t_spaces * V("whatever"))^0 * t_spaces * t_closearray, ----- whatever = V("dictionary") + V("array") + t_constant + t_reference + t_string + t_unicode + t_number + t_reserved + t_whatsit, ----- number = t_number, ----- } local t_object = { "object", -- weird that we need to catch the end here (probably otherwise an invalid lpeg) dictionary = t_dictionary.dictionary, array = t_dictionary.array, whatever = t_dictionary.whatever, object = t_openobject^-1 * t_spaces * (V("dictionary") * t_spaces * t_stream^-1 + V("array") + V("number") + t_spaces) * t_spaces * t_closeobject, number = t_number, } pdfobjectlexer._shared = { dictionary = t_dictionary, object = t_object, stream = t_stream, } pdfobjectlexer._rules = { { "whitespace", t_spacing }, -- in fact, here we don't want whitespace as it's top level lexer work { "object", t_object }, } pdfobjectlexer._tokenstyles = context.styleset return pdfobjectlexer ././@LongLink0000644000000000000000000000015300000000000011602 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-cdata.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-cda0000644000175000017500000000157712336241772032361 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer for xml cdata", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } local P = lpeg.P local lexer = require("lexer") local context = lexer.context local patterns = context.patterns local token = lexer.token local xmlcdatalexer = lexer.new("xml-cdata","scite-context-lexer-xml-cdata") local whitespace = xmlcdatalexer.whitespace local space = patterns.space local nospace = 1 - space - P("]]>") local t_spaces = token(whitespace, space ^1) local t_cdata = token("comment", nospace^1) xmlcdatalexer._rules = { { "whitespace", t_spaces }, { "cdata", t_cdata }, } xmlcdatalexer._tokenstyles = context.styleset return xmlcdatalexer context-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-cld.lua0000644000175000017500000000136112336241772032345 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer for cld", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } local lexer = require("lexer") local context = lexer.context local patterns = context.patterns local cldlexer = lexer.new("cld","scite-context-lexer-cld") local lualexer = lexer.load("scite-context-lexer-lua") -- can probably be done nicer now, a bit of a hack cldlexer._rules = lualexer._rules_cld cldlexer._tokenstyles = lualexer._tokenstyles cldlexer._foldsymbols = lualexer._foldsymbols cldlexer._directives = lualexer._directives return cldlexer context-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-pdf.lua0000644000175000017500000002012312336241772032351 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer for pdf", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } -- pdf is normally startic .. i.e. not edited so we don't really -- need embedded lexers. local P, R, S, V = lpeg.P, lpeg.R, lpeg.S, lpeg.V local lexer = require("lexer") local context = lexer.context local patterns = context.patterns local token = lexer.token local pdflexer = lexer.new("pdf","scite-context-lexer-pdf") local whitespace = pdflexer.whitespace ----- pdfobjectlexer = lexer.load("scite-context-lexer-pdf-object") ----- pdfxreflexer = lexer.load("scite-context-lexer-pdf-xref") local anything = patterns.anything local space = patterns.space local spacing = patterns.spacing local nospacing = patterns.nospacing local anything = patterns.anything local restofline = patterns.restofline local t_whitespace = token(whitespace, spacing) local t_spacing = token("default", spacing) ----- t_rest = token("default", nospacing) local t_rest = token("default", anything) local p_comment = P("%") * restofline local t_comment = token("comment", p_comment) -- whatever local space = patterns.space local spacing = patterns.spacing local nospacing = patterns.nospacing local anything = patterns.anything local newline = patterns.eol local real = patterns.real local cardinal = patterns.cardinal local alpha = patterns.alpha local lparent = P("(") local rparent = P(")") local langle = P("<") local rangle = P(">") local escape = P("\\") local unicodetrigger = P("feff") local nametoken = 1 - space - S("<>/[]()") local name = P("/") * nametoken^1 local p_string = P { ( escape * anything + lparent * V(1) * rparent + (1 - rparent) )^0 } local t_spacing = token("default", spacing) local t_spaces = token("default", spacing)^0 local t_rest = token("default", nospacing) -- anything local p_stream = P("stream") local p_endstream = P("endstream") local p_obj = P("obj") local p_endobj = P("endobj") local p_reference = P("R") local p_objectnumber = patterns.cardinal local p_comment = P("%") * (1-S("\n\r"))^0 local t_string = token("quote", lparent) * token("string", p_string) * token("quote", rparent) local t_unicode = token("quote", langle) * token("plain", unicodetrigger) * token("string", (1-rangle)^1) * token("quote", rangle) local t_whatsit = token("quote", langle) * token("string", (1-rangle)^1) * token("quote", rangle) local t_keyword = token("command", name) local t_constant = token("constant", name) local t_number = token("number", real) -- t_reference = token("number", cardinal) -- * t_spacing -- * token("number", cardinal) local t_reserved = token("number", P("true") + P("false") + P("NULL")) -- t_reference = token("warning", cardinal * spacing * cardinal * spacing) -- * token("keyword", p_reference) local t_reference = token("warning", cardinal) * t_spacing * token("warning", cardinal) * t_spacing * token("keyword", p_reference) local t_comment = token("comment", p_comment) local t_openobject = token("warning", p_objectnumber) * t_spacing * token("warning", p_objectnumber) * t_spacing * token("keyword", p_obj) -- t_openobject = token("warning", p_objectnumber * spacing) -- * token("warning", p_objectnumber * spacing) -- * token("keyword", p_obj) local t_closeobject = token("keyword", p_endobj) local t_opendictionary = token("grouping", P("<<")) local t_closedictionary = token("grouping", P(">>")) local t_openarray = token("grouping", P("[")) local t_closearray = token("grouping", P("]")) local t_stream = token("keyword", p_stream) * token("text", (1 - p_endstream)^1) * token("keyword", p_endstream) local t_dictionary = { "dictionary", dictionary = t_opendictionary * (t_spaces * t_keyword * t_spaces * V("whatever"))^0 * t_spaces * t_closedictionary, array = t_openarray * (t_spaces * V("whatever"))^0 * t_spaces * t_closearray, whatever = V("dictionary") + V("array") + t_constant + t_reference + t_string + t_unicode + t_number + t_reserved + t_whatsit, } local t_object = { "object", -- weird that we need to catch the end here (probably otherwise an invalid lpeg) dictionary = t_dictionary.dictionary, array = t_dictionary.array, whatever = t_dictionary.whatever, object = t_openobject * t_spaces * (V("dictionary")^-1 * t_spaces * t_stream^-1 + V("array") + V("number") + t_spaces) * t_spaces * t_closeobject, number = t_number, } -- objects ... sometimes NUL characters play havoc ... and in xref we have -- issues with embedded lexers that have spaces in the start and stop -- conditions and this cannot be handled well either ... so, an imperfect -- solution ... but anyway, there is not that much that can end up in -- the root of the tree see we're sort of safe local p_trailer = P("trailer") local t_trailer = token("keyword", p_trailer) * t_spacing * t_dictionary -- t_trailer = token("keyword", p_trailer * spacing) -- * t_dictionary local p_startxref = P("startxref") local t_startxref = token("keyword", p_startxref) * t_spacing * token("number", cardinal) -- t_startxref = token("keyword", p_startxref * spacing) -- * token("number", cardinal) local p_xref = P("xref") local t_xref = token("keyword",p_xref) * t_spacing * token("number", cardinal) * t_spacing * token("number", cardinal) * spacing -- t_xref = token("keyword",p_xref) -- * token("number", spacing * cardinal * spacing * cardinal * spacing) local t_number = token("number", cardinal) * t_spacing * token("number", cardinal) * t_spacing * token("keyword", S("fn")) -- t_number = token("number", cardinal * spacing * cardinal * spacing) -- * token("keyword", S("fn")) pdflexer._rules = { { "whitespace", t_whitespace }, { "object", t_object }, { "comment", t_comment }, { "trailer", t_trailer }, { "startxref", t_startxref }, { "xref", t_xref }, { "number", t_number }, { "rest", t_rest }, } pdflexer._tokenstyles = context.styleset -- lexer.inspect(pdflexer) -- collapser: obj endobj stream endstream pdflexer._foldpattern = p_obj + p_endobj + p_stream + p_endstream pdflexer._foldsymbols = { ["keyword"] = { ["obj"] = 1, ["endobj"] = -1, ["stream"] = 1, ["endstream"] = -1, }, } return pdflexer ././@LongLink0000644000000000000000000000015500000000000011604 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-comment.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-com0000644000175000017500000000164412336241772032403 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer for xml comments", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } local P = lpeg.P local lexer = require("lexer") local context = lexer.context local patterns = context.patterns local token = lexer.token local xmlcommentlexer = lexer.new("xml-comment","scite-context-lexer-xml-comment") local whitespace = xmlcommentlexer.whitespace local space = patterns.space local nospace = 1 - space - P("-->") local t_spaces = token(whitespace, space ^1) local t_comment = token("comment", nospace^1) xmlcommentlexer._rules = { { "whitespace", t_spaces }, { "comment", t_comment }, } xmlcommentlexer._tokenstyles = context.styleset return xmlcommentlexer ././@LongLink0000644000000000000000000000016000000000000011600 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-lua-longstring.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-lua-lon0000644000175000017500000000157012336241772032374 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer for lua longstrings", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } local lexer = require("lexer") -- require("scite-context-lexer") local context = lexer.context local patterns = context.patterns local token = lexer.token local stringlexer = lexer.new("lua-longstring","scite-context-lexer-lua-longstring") local whitespace = stringlexer.whitespace local space = patterns.space local nospace = 1 - space local p_spaces = token(whitespace, space ^1) local p_string = token("string", nospace^1) stringlexer._rules = { { "whitespace", p_spaces }, { "string", p_string }, } stringlexer._tokenstyles = context.styleset return stringlexer ././@LongLink0000644000000000000000000000015600000000000011605 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-web-snippets.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-web-sni0000644000175000017500000000660212336241772032372 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer for web snippets", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } local P, R, S, C, Cg, Cb, Cs, Cmt, lpegmatch = lpeg.P, lpeg.R, lpeg.S, lpeg.C, lpeg.Cg, lpeg.Cb, lpeg.Cs, lpeg.Cmt, lpeg.match local lexer = require("lexer") local context = lexer.context local patterns = context.patterns local token = lexer.token local websnippets = { } local space = patterns.space -- S(" \n\r\t\f\v") local any = patterns.any local restofline = patterns.restofline local startofline = patterns.startofline local squote = P("'") local dquote = P('"') local period = P(".") local t_whitespace = token(whitespace, space^1) local t_spacing = token("default", space^1) local t_rest = token("default", any) -- the web subset local p_beginofweb = P("@") local p_endofweb = P("@>") -- @, @/ @| @# @+ @; @[ @] local p_directive_1 = p_beginofweb * S(",/|#+;[]") local t_directive_1 = token("label",p_directive_1) -- @.text @>(monospaced) -- @:text @>(macro driven) -- @= verbose@> -- @! underlined @> -- @t text @> (hbox) -- @q ignored @> local p_typeset = p_beginofweb * S(".:=!tq") local t_typeset = token("label",p_typeset) * token("warning",(1-p_endofweb)^1) * token("label",p_endofweb) -- @^index@> local p_index = p_beginofweb * P("^") local t_index = token("label",p_index) * token("function",(1-p_endofweb)^1) * token("label",p_endofweb) -- @f text renderclass local p_render = p_beginofweb * S("f") local t_render = token("label",p_render) * t_spacing * token("warning",(1-space)^1) * t_spacing * token("label",(1-space)^1) -- @s idem -- @p idem -- @& strip (spaces before) -- @h local p_directive_2 = p_beginofweb * S("sp&h") local t_directive_2 = token("label",p_directive_2) -- @< ... @> [=|+=|] -- @(foo@> local p_reference = p_beginofweb * S("<(") local t_reference = token("label",p_reference) * token("function",(1-p_endofweb)^1) * token("label",p_endofweb * (P("+=") + P("="))^-1) -- @'char' (ascii code) local p_character = p_beginofweb * S("'") local t_character = token("label",p_character) * token("reserved",(1-squote)^1) * token("label",squote) -- @l nonascii local p_nonascii = p_beginofweb * S("l") local t_nonascii = token("label",p_nonascii) * t_spacing * token("reserved",(1-space)^1) -- @x @y @z changefile -- @i webfile local p_filename = p_beginofweb * S("xyzi") local t_filename = token("label",p_filename) * t_spacing * token("reserved",(1-space)^1) -- @@ escape local p_escape = p_beginofweb * p_beginofweb local t_escape = token("text",p_escape) -- structure -- @* title. -- local p_section = p_beginofweb * P("*")^1 -- local t_section = token("label",p_section) * t_spacing * token("function",(1-period)^1) * token("label",period) -- @ explanation -- local p_explanation = p_beginofweb -- local t_explanation = token("label",p_explanation) * t_spacing^1 -- @d macro -- local p_macro = p_beginofweb * P("d") -- local t_macro = token("label",p_macro) -- @c code -- local p_code = p_beginofweb * P("c") -- local t_code = token("label",p_code) websnippets.pattern = P ( t_typeset + t_index + t_render + t_reference + t_filename + t_directive_1 + t_directive_2 + t_character + t_nonascii + t_escape ) return websnippets ././@LongLink0000644000000000000000000000014700000000000011605 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-dummy.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-dummy.l0000644000175000017500000000200512514560075032402 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer that triggers whitespace backtracking", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } -- the lexer dll doesn't backtrack when there is no embedded lexer so -- we need to trigger that, for instance in the bibtex lexer, but still -- we get failed lexing local lexer = require("lexer") local context = lexer.context local patterns = context.patterns local token = lexer.token local dummylexer = lexer.new("dummy","scite-context-lexer-dummy") local whitespace = dummylexer.whitespace local space = patterns.space local nospace = (1-space) local t_spacing = token(whitespace, space ^1) local t_rest = token("default", nospace^1) dummylexer._rules = { { "whitespace", t_spacing }, { "rest", t_rest }, } dummylexer._tokenstyles = context.styleset return dummylexer context-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/data/0000755000175000017500000000000012527212017026074 5ustar norbertnorbert././@LongLink0000644000000000000000000000015100000000000011600 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/data/scite-context-data-tex.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/data/scite-context-data-tex0000644000175000017500000004312612527207752032335 0ustar norbertnorbertreturn { ["aleph"]={ "AlephVersion", "Alephminorversion", "Alephrevision", "Alephversion", "Omegaminorversion", "Omegarevision", "Omegaversion", "boxdir", "pagebottomoffset", "pagerightoffset" }, ["etex"]={ "botmarks", "clubpenalties", "currentgrouplevel", "currentgrouptype", "currentifbranch", "currentiflevel", "currentiftype", "detokenize", "dimexpr", "displaywidowpenalties", "eTeXVersion", "eTeXminorversion", "eTeXrevision", "eTeXversion", "everyeof", "firstmarks", "fontchardp", "fontcharht", "fontcharic", "fontcharwd", "glueexpr", "glueshrink", "glueshrinkorder", "gluestretch", "gluestretchorder", "gluetomu", "ifcsname", "ifdefined", "iffontchar", "interactionmode", "interlinepenalties", "lastlinefit", "lastnodetype", "marks", "muexpr", "mutoglue", "numexpr", "pagediscards", "parshapedimen", "parshapeindent", "parshapelength", "predisplaydirection", "protected", "readline", "savinghyphcodes", "savingvdiscards", "scantokens", "showgroups", "showifs", "showtokens", "splitbotmarks", "splitdiscards", "splitfirstmarks", "topmarks", "tracingassigns", "tracinggroups", "tracingifs", "tracingnesting", "tracingscantokens", "unexpanded", "unless", "widowpenalties" }, ["luatex"]={ "Uchar", "Udelcode", "Udelcodenum", "Udelimiter", "Udelimiterover", "Udelimiterunder", "Umathaccent", "Umathaxis", "Umathbinbinspacing", "Umathbinclosespacing", "Umathbininnerspacing", "Umathbinopenspacing", "Umathbinopspacing", "Umathbinordspacing", "Umathbinpunctspacing", "Umathbinrelspacing", "Umathchar", "Umathchardef", "Umathcharnum", "Umathclosebinspacing", "Umathcloseclosespacing", "Umathcloseinnerspacing", "Umathcloseopenspacing", "Umathcloseopspacing", "Umathcloseordspacing", "Umathclosepunctspacing", "Umathcloserelspacing", "Umathcode", "Umathcodenum", "Umathconnectoroverlapmin", "Umathfractiondelsize", "Umathfractiondenomdown", "Umathfractiondenomvgap", "Umathfractionnumup", "Umathfractionnumvgap", "Umathfractionrule", "Umathinnerbinspacing", "Umathinnerclosespacing", "Umathinnerinnerspacing", "Umathinneropenspacing", "Umathinneropspacing", "Umathinnerordspacing", "Umathinnerpunctspacing", "Umathinnerrelspacing", "Umathlimitabovebgap", "Umathlimitabovekern", "Umathlimitabovevgap", "Umathlimitbelowbgap", "Umathlimitbelowkern", "Umathlimitbelowvgap", "Umathopbinspacing", "Umathopclosespacing", "Umathopenbinspacing", "Umathopenclosespacing", "Umathopeninnerspacing", "Umathopenopenspacing", "Umathopenopspacing", "Umathopenordspacing", "Umathopenpunctspacing", "Umathopenrelspacing", "Umathoperatorsize", "Umathopinnerspacing", "Umathopopenspacing", "Umathopopspacing", "Umathopordspacing", "Umathoppunctspacing", "Umathoprelspacing", "Umathordbinspacing", "Umathordclosespacing", "Umathordinnerspacing", "Umathordopenspacing", "Umathordopspacing", "Umathordordspacing", "Umathordpunctspacing", "Umathordrelspacing", "Umathoverbarkern", "Umathoverbarrule", "Umathoverbarvgap", "Umathoverdelimiterbgap", "Umathoverdelimitervgap", "Umathpunctbinspacing", "Umathpunctclosespacing", "Umathpunctinnerspacing", "Umathpunctopenspacing", "Umathpunctopspacing", "Umathpunctordspacing", "Umathpunctpunctspacing", "Umathpunctrelspacing", "Umathquad", "Umathradicaldegreeafter", "Umathradicaldegreebefore", "Umathradicaldegreeraise", "Umathradicalkern", "Umathradicalrule", "Umathradicalvgap", "Umathrelbinspacing", "Umathrelclosespacing", "Umathrelinnerspacing", "Umathrelopenspacing", "Umathrelopspacing", "Umathrelordspacing", "Umathrelpunctspacing", "Umathrelrelspacing", "Umathspaceafterscript", "Umathstackdenomdown", "Umathstacknumup", "Umathstackvgap", "Umathsubshiftdown", "Umathsubshiftdrop", "Umathsubsupshiftdown", "Umathsubsupvgap", "Umathsubtopmax", "Umathsupbottommin", "Umathsupshiftdrop", "Umathsupshiftup", "Umathsupsubbottommax", "Umathunderbarkern", "Umathunderbarrule", "Umathunderbarvgap", "Umathunderdelimiterbgap", "Umathunderdelimitervgap", "Uoverdelimiter", "Uradical", "Uroot", "Ustack", "Ustartdisplaymath", "Ustartmath", "Ustopdisplaymath", "Ustopmath", "Usubscript", "Usuperscript", "Uunderdelimiter", "alignmark", "aligntab", "attribute", "attributedef", "catcodetable", "clearmarks", "crampeddisplaystyle", "crampedscriptscriptstyle", "crampedscriptstyle", "crampedtextstyle", "fontid", "formatname", "gleaders", "ifabsdim", "ifabsnum", "ifprimitive", "initcatcodetable", "latelua", "luaescapestring", "luastartup", "luatexbanner", "luatexrevision", "luatexversion", "luafunction", "mathstyle", "nokerns", "noligs", "outputbox", "pageleftoffset", "pagetopoffset", "postexhyphenchar", "posthyphenchar", "preexhyphenchar", "prehyphenchar", "primitive", "savecatcodetable", "scantextokens", "suppressfontnotfounderror", "suppressifcsnameerror", "suppresslongerror", "suppressoutererror", "suppressmathparerror", "matheqnogapstep", "synctex" }, ["omega"]={ "OmegaVersion", "bodydir", "chardp", "charht", "charit", "charwd", "leftghost", "localbrokenpenalty", "localinterlinepenalty", "localleftbox", "localrightbox", "mathdir", "odelcode", "odelimiter", "omathaccent", "omathchar", "omathchardef", "omathcode", "oradical", "pagedir", "pageheight", "pagewidth", "pardir", "rightghost", "textdir" }, ["pdftex"]={ "efcode", "expanded", "ifincsname", "ifpdfabsdim", "ifpdfabsnum", "ifpdfprimitive", "leftmarginkern", "letterspacefont", "lpcode", "pdfadjustspacing", "pdfannot", "pdfcatalog", "pdfcolorstack", "pdfcolorstackinit", "pdfcompresslevel", "pdfcopyfont", "pdfcreationdate", "pdfdecimaldigits", "pdfdest", "pdfdestmargin", "pdfdraftmode", "pdfeachlinedepth", "pdfeachlineheight", "pdfendlink", "pdfendthread", "pdffirstlineheight", "pdffontattr", "pdffontexpand", "pdffontname", "pdffontobjnum", "pdffontsize", "pdfgamma", "pdfgentounicode", "pdfglyphtounicode", "pdfhorigin", "pdfignoreddimen", "pdfimageapplygamma", "pdfimagegamma", "pdfimagehicolor", "pdfimageresolution", "pdfincludechars", "pdfinclusioncopyfonts", "pdfinclusionerrorlevel", "pdfinfo", "pdfinsertht", "pdflastannot", "pdflastlinedepth", "pdflastlink", "pdflastobj", "pdflastxform", "pdflastximage", "pdflastximagecolordepth", "pdflastximagepages", "pdflastxpos", "pdflastypos", "pdflinkmargin", "pdfliteral", "pdfmapfile", "pdfmapline", "pdfminorversion", "pdfnames", "pdfnoligatures", "pdfnormaldeviate", "pdfobj", "pdfobjcompresslevel", "pdfoptionpdfminorversion", "pdfoutline", "pdfoutput", "pdfpageattr", "pdfpagebox", "pdfpageheight", "pdfpageref", "pdfpageresources", "pdfpagesattr", "pdfpagewidth", "pdfpkmode", "pdfpkresolution", "pdfprimitive", "pdfprotrudechars", "pdfpxdimen", "pdfrandomseed", "pdfrefobj", "pdfrefxform", "pdfrefximage", "pdfreplacefont", "pdfrestore", "pdfretval", "pdfsave", "pdfsavepos", "pdfsetmatrix", "pdfsetrandomseed", "pdfstartlink", "pdfstartthread", "pdftexbanner", "pdftexrevision", "pdftexversion", "pdfthread", "pdfthreadmargin", "pdftracingfonts", "pdftrailer", "pdfuniformdeviate", "pdfuniqueresname", "pdfvorigin", "pdfxform", "pdfxformattr", "pdfxformname", "pdfxformresources", "pdfximage", "pdfximagebbox", "quitvmode", "rightmarginkern", "rpcode", "tagcode" }, ["tex"]={ "-", "/", "AlephVersion", "Alephminorversion", "Alephrevision", "Alephversion", "OmegaVersion", "Omegaminorversion", "Omegarevision", "Omegaversion", "Udelcode", "Udelcodenum", "Udelimiter", "Udelimiterover", "Udelimiterunder", "Umathaccent", "Umathaxis", "Umathbinbinspacing", "Umathbinclosespacing", "Umathbininnerspacing", "Umathbinopenspacing", "Umathbinopspacing", "Umathbinordspacing", "Umathbinpunctspacing", "Umathbinrelspacing", "Umathchar", "Umathchardef", "Umathcharnum", "Umathclosebinspacing", "Umathcloseclosespacing", "Umathcloseinnerspacing", "Umathcloseopenspacing", "Umathcloseopspacing", "Umathcloseordspacing", "Umathclosepunctspacing", "Umathcloserelspacing", "Umathcode", "Umathcodenum", "Umathconnectoroverlapmin", "Umathfractiondelsize", "Umathfractiondenomdown", "Umathfractiondenomvgap", "Umathfractionnumup", "Umathfractionnumvgap", "Umathfractionrule", "Umathinnerbinspacing", "Umathinnerclosespacing", "Umathinnerinnerspacing", "Umathinneropenspacing", "Umathinneropspacing", "Umathinnerordspacing", "Umathinnerpunctspacing", "Umathinnerrelspacing", "Umathlimitabovebgap", "Umathlimitabovekern", "Umathlimitabovevgap", "Umathlimitbelowbgap", "Umathlimitbelowkern", "Umathlimitbelowvgap", "Umathopbinspacing", "Umathopclosespacing", "Umathopenbinspacing", "Umathopenclosespacing", "Umathopeninnerspacing", "Umathopenopenspacing", "Umathopenopspacing", "Umathopenordspacing", "Umathopenpunctspacing", "Umathopenrelspacing", "Umathoperatorsize", "Umathopinnerspacing", "Umathopopenspacing", "Umathopopspacing", "Umathopordspacing", "Umathoppunctspacing", "Umathoprelspacing", "Umathordbinspacing", "Umathordclosespacing", "Umathordinnerspacing", "Umathordopenspacing", "Umathordopspacing", "Umathordordspacing", "Umathordpunctspacing", "Umathordrelspacing", "Umathoverbarkern", "Umathoverbarrule", "Umathoverbarvgap", "Umathoverdelimiterbgap", "Umathoverdelimitervgap", "Umathpunctbinspacing", "Umathpunctclosespacing", "Umathpunctinnerspacing", "Umathpunctopenspacing", "Umathpunctopspacing", "Umathpunctordspacing", "Umathpunctpunctspacing", "Umathpunctrelspacing", "Umathquad", "Umathradicaldegreeafter", "Umathradicaldegreebefore", "Umathradicaldegreeraise", "Umathradicalkern", "Umathradicalrule", "Umathradicalvgap", "Umathrelbinspacing", "Umathrelclosespacing", "Umathrelinnerspacing", "Umathrelopenspacing", "Umathrelopspacing", "Umathrelordspacing", "Umathrelpunctspacing", "Umathrelrelspacing", "Umathspaceafterscript", "Umathstackdenomdown", "Umathstacknumup", "Umathstackvgap", "Umathsubshiftdown", "Umathsubshiftdrop", "Umathsubsupshiftdown", "Umathsubsupvgap", "Umathsubtopmax", "Umathsupbottommin", "Umathsupshiftdrop", "Umathsupshiftup", "Umathsupsubbottommax", "Umathunderbarkern", "Umathunderbarrule", "Umathunderbarvgap", "Umathunderdelimiterbgap", "Umathunderdelimitervgap", "Uoverdelimiter", "Uradical", "Uroot", "Ustack", "Ustartdisplaymath", "Ustartmath", "Ustopdisplaymath", "Ustopmath", "Usubscript", "Usuperscript", "Uunderdelimiter", "above", "abovedisplayshortskip", "abovedisplayskip", "abovewithdelims", "accent", "adjdemerits", "advance", "afterassignment", "aftergroup", "alignmark", "aligntab", "atop", "atopwithdelims", "attribute", "attributedef", "badness", "baselineskip", "batchmode", "begingroup", "belowdisplayshortskip", "belowdisplayskip", "binoppenalty", "bodydir", "botmark", "botmarks", "box", "boxdir", "boxmaxdepth", "brokenpenalty", "catcode", "catcodetable", "char", "chardef", "cleaders", "clearmarks", "closein", "closeout", "clubpenalties", "clubpenalty", "copy", "count", "countdef", "cr", "crampeddisplaystyle", "crampedscriptscriptstyle", "crampedscriptstyle", "crampedtextstyle", "crcr", "csname", "currentgrouplevel", "currentgrouptype", "currentifbranch", "currentiflevel", "currentiftype", "day", "deadcycles", "def", "defaulthyphenchar", "defaultskewchar", "delcode", "delimiter", "delimiterfactor", "delimitershortfall", "detokenize", "dimen", "dimendef", "dimexpr", "directlua", "discretionary", "displayindent", "displaylimits", "displaystyle", "displaywidowpenalties", "displaywidowpenalty", "displaywidth", "divide", "doublehyphendemerits", "dp", "dump", "eTeXVersion", "eTeXminorversion", "eTeXrevision", "eTeXversion", "edef", "efcode", "else", "emergencystretch", "end", "endcsname", "endgroup", "endinput", "endlinechar", "eqno", "errhelp", "errmessage", "errorcontextlines", "errorstopmode", "escapechar", "everycr", "everydisplay", "everyeof", "everyhbox", "everyjob", "everymath", "everypar", "everyvbox", "exhyphenchar", "exhyphenpenalty", "expandafter", "expanded", "fam", "fi", "finalhyphendemerits", "firstmark", "firstmarks", "floatingpenalty", "font", "fontchardp", "fontcharht", "fontcharic", "fontcharwd", "fontdimen", "fontid", "fontname", "formatname", "futurelet", "gdef", "gleaders", "global", "globaldefs", "glueexpr", "glueshrink", "glueshrinkorder", "gluestretch", "gluestretchorder", "gluetomu", "halign", "hangafter", "hangindent", "hbadness", "hbox", "hfil", "hfill", "hfilneg", "hfuzz", "hoffset", "holdinginserts", "hrule", "hsize", "hskip", "hss", "ht", "hyphenation", "hyphenchar", "hyphenpenalty", "if", "ifabsdim", "ifabsnum", "ifcase", "ifcat", "ifcsname", "ifdefined", "ifdim", "ifeof", "iffalse", "iffontchar", "ifhbox", "ifhmode", "ifincsname", "ifinner", "ifmmode", "ifnum", "ifodd", "ifpdfabsdim", "ifpdfabsnum", "ifpdfprimitive", "ifprimitive", "iftrue", "ifvbox", "ifvmode", "ifvoid", "ifx", "ignorespaces", "immediate", "indent", "initcatcodetable", "input", "inputlineno", "insert", "insertpenalties", "interactionmode", "interlinepenalties", "interlinepenalty", "jobname", "kern", "language", "lastbox", "lastkern", "lastlinefit", "lastnodetype", "lastpenalty", "lastskip", "latelua", "lccode", "leaders", "left", "leftghost", "lefthyphenmin", "leftmarginkern", "leftskip", "leqno", "let", "letterspacefont", "limits", "linepenalty", "lineskip", "lineskiplimit", "localbrokenpenalty", "localinterlinepenalty", "localleftbox", "localrightbox", "long", "looseness", "lower", "lowercase", "lpcode", "luaescapestring", "luastartup", "luatexbanner", "luatexrevision", "luatexversion", "mag", "mark", "marks", "mathaccent", "mathbin", "mathchar", "mathchardef", "mathchoice", "mathclose", "mathcode", "mathdir", "mathinner", "mathop", "mathopen", "mathord", "mathpunct", "mathrel", "mathstyle", "mathsurround", "maxdeadcycles", "maxdepth", "meaning", "medmuskip", "message", "middle", "mkern", "month", "moveleft", "moveright", "mskip", "muexpr", "multiply", "muskip", "muskipdef", "mutoglue", "newlinechar", "noalign", "noboundary", "noexpand", "noindent", "nokerns", "noligs", "nolimits", "nolocaldirs", "nolocalwhatsits", "nonscript", "nonstopmode", "nulldelimiterspace", "nullfont", "number", "numexpr", "odelcode", "odelimiter", "omathaccent", "omathchar", "omathchardef", "omathcode", "omit", "openin", "openout", "or", "oradical", "outer", "output", "outputbox", "outputpenalty", "over", "overfullrule", "overline", "overwithdelims", "pagebottomoffset", "pagedepth", "pagedir", "pagediscards", "pagefilllstretch", "pagefillstretch", "pagefilstretch", "pagegoal", "pageheight", "pageleftoffset", "pagerightoffset", "pageshrink", "pagestretch", "pagetopoffset", "pagetotal", "pagewidth", "par", "pardir", "parfillskip", "parindent", "parshape", "parshapedimen", "parshapeindent", "parshapelength", "parskip", "patterns", "pausing", "pdfadjustspacing", "pdfannot", "pdfcatalog", "pdfcolorstack", "pdfcolorstackinit", "pdfcompresslevel", "pdfcopyfont", "pdfcreationdate", "pdfdecimaldigits", "pdfdest", "pdfdestmargin", "pdfdraftmode", "pdfeachlinedepth", "pdfeachlineheight", "pdfendlink", "pdfendthread", "pdffirstlineheight", "pdffontattr", "pdffontexpand", "pdffontname", "pdffontobjnum", "pdffontsize", "pdfgamma", "pdfgentounicode", "pdfglyphtounicode", "pdfhorigin", "pdfignoreddimen", "pdfimageapplygamma", "pdfimagegamma", "pdfimagehicolor", "pdfimageresolution", "pdfincludechars", "pdfinclusioncopyfonts", "pdfinclusionerrorlevel", "pdfinfo", "pdfinsertht", "pdflastannot", "pdflastlinedepth", "pdflastlink", "pdflastobj", "pdflastxform", "pdflastximage", "pdflastximagecolordepth", "pdflastximagepages", "pdflastxpos", "pdflastypos", "pdflinkmargin", "pdfliteral", "pdfmapfile", "pdfmapline", "pdfminorversion", "pdfnames", "pdfnoligatures", "pdfnormaldeviate", "pdfobj", "pdfobjcompresslevel", "pdfoptionpdfminorversion", "pdfoutline", "pdfoutput", "pdfpageattr", "pdfpagebox", "pdfpageheight", "pdfpageref", "pdfpageresources", "pdfpagesattr", "pdfpagewidth", "pdfpkmode", "pdfpkresolution", "pdfprimitive", "pdfprotrudechars", "pdfpxdimen", "pdfrandomseed", "pdfrefobj", "pdfrefxform", "pdfrefximage", "pdfreplacefont", "pdfrestore", "pdfretval", "pdfsave", "pdfsavepos", "pdfsetmatrix", "pdfsetrandomseed", "pdfstartlink", "pdfstartthread", "pdftexbanner", "pdftexrevision", "pdftexversion", "pdfthread", "pdfthreadmargin", "pdftracingfonts", "pdftrailer", "pdfuniformdeviate", "pdfuniqueresname", "pdfvorigin", "pdfxform", "pdfxformattr", "pdfxformname", "pdfxformresources", "pdfximage", "pdfximagebbox", "penalty", "postdisplaypenalty", "postexhyphenchar", "posthyphenchar", "predisplaydirection", "predisplaypenalty", "predisplaysize", "preexhyphenchar", "prehyphenchar", "pretolerance", "prevdepth", "prevgraf", "primitive", "protected", "quitvmode", "radical", "raise", "read", "readline", "relax", "relpenalty", "right", "rightghost", "righthyphenmin", "rightmarginkern", "rightskip", "romannumeral", "rpcode", "savecatcodetable", "savinghyphcodes", "savingvdiscards", "scantextokens", "scantokens", "scriptfont", "scriptscriptfont", "scriptscriptstyle", "scriptspace", "scriptstyle", "scrollmode", "setbox", "setlanguage", "sfcode", "shipout", "show", "showbox", "showboxbreadth", "showboxdepth", "showgroups", "showifs", "showlists", "showthe", "showtokens", "skewchar", "skip", "skipdef", "spacefactor", "spaceskip", "span", "special", "splitbotmark", "splitbotmarks", "splitdiscards", "splitfirstmark", "splitfirstmarks", "splitmaxdepth", "splittopskip", "string", "suppressfontnotfounderror", "suppressifcsnameerror", "suppresslongerror", "suppressoutererror", "synctex", "tabskip", "tagcode", "textdir", "textfont", "textstyle", "the", "thickmuskip", "thinmuskip", "time", "toks", "toksdef", "tolerance", "topmark", "topmarks", "topskip", "tracingassigns", "tracingcommands", "tracinggroups", "tracingifs", "tracinglostchars", "tracingmacros", "tracingnesting", "tracingonline", "tracingoutput", "tracingpages", "tracingparagraphs", "tracingrestores", "tracingscantokens", "tracingstats", "uccode", "uchyph", "underline", "unexpanded", "unhbox", "unhcopy", "unkern", "unless", "unpenalty", "unskip", "unvbox", "unvcopy", "uppercase", "vadjust", "valign", "vbadness", "vbox", "vcenter", "vfil", "vfill", "vfilneg", "vfuzz", "voffset", "vrule", "vsize", "vskip", "vsplit", "vss", "vtop", "wd", "widowpenalties", "widowpenalty", "write", "xdef", "xleaders", "xspaceskip", "year" }, ["xetex"]={ "XeTeXversion" }, }././@LongLink0000644000000000000000000000015500000000000011604 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/data/scite-context-data-context.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/data/scite-context-data-con0000644000175000017500000004227412527207752032317 0ustar norbertnorbertreturn { ["constants"]={ "zerocount", "minusone", "minustwo", "plusone", "plustwo", "plusthree", "plusfour", "plusfive", "plussix", "plusseven", "pluseight", "plusnine", "plusten", "plussixteen", "plushundred", "plusthousand", "plustenthousand", "plustwentythousand", "medcard", "maxcard", "maxcardminusone", "zeropoint", "onepoint", "halfapoint", "onebasepoint", "maxdimen", "scaledpoint", "thousandpoint", "points", "halfpoint", "zeroskip", "zeromuskip", "onemuskip", "pluscxxvii", "pluscxxviii", "pluscclv", "pluscclvi", "normalpagebox", "endoflinetoken", "outputnewlinechar", "emptytoks", "empty", "undefined", "voidbox", "emptybox", "emptyvbox", "emptyhbox", "bigskipamount", "medskipamount", "smallskipamount", "fmtname", "fmtversion", "texengine", "texenginename", "texengineversion", "luatexengine", "pdftexengine", "xetexengine", "unknownengine", "activecatcode", "bgroup", "egroup", "endline", "conditionaltrue", "conditionalfalse", "attributeunsetvalue", "uprotationangle", "rightrotationangle", "downrotationangle", "leftrotationangle", "inicatcodes", "ctxcatcodes", "texcatcodes", "notcatcodes", "txtcatcodes", "vrbcatcodes", "prtcatcodes", "nilcatcodes", "luacatcodes", "tpacatcodes", "tpbcatcodes", "xmlcatcodes", "ctdcatcodes", "escapecatcode", "begingroupcatcode", "endgroupcatcode", "mathshiftcatcode", "alignmentcatcode", "endoflinecatcode", "parametercatcode", "superscriptcatcode", "subscriptcatcode", "ignorecatcode", "spacecatcode", "lettercatcode", "othercatcode", "activecatcode", "commentcatcode", "invalidcatcode", "tabasciicode", "newlineasciicode", "formfeedasciicode", "endoflineasciicode", "endoffileasciicode", "spaceasciicode", "hashasciicode", "dollarasciicode", "commentasciicode", "ampersandasciicode", "colonasciicode", "backslashasciicode", "circumflexasciicode", "underscoreasciicode", "leftbraceasciicode", "barasciicode", "rightbraceasciicode", "tildeasciicode", "delasciicode", "lessthanasciicode", "morethanasciicode", "doublecommentsignal", "atsignasciicode", "exclamationmarkasciicode", "questionmarkasciicode", "doublequoteasciicode", "singlequoteasciicode", "forwardslashasciicode", "primeasciicode", "hyphenasciicode", "activemathcharcode", "activetabtoken", "activeformfeedtoken", "activeendoflinetoken", "batchmodecode", "nonstopmodecode", "scrollmodecode", "errorstopmodecode", "bottomlevelgroupcode", "simplegroupcode", "hboxgroupcode", "adjustedhboxgroupcode", "vboxgroupcode", "vtopgroupcode", "aligngroupcode", "noaligngroupcode", "outputgroupcode", "mathgroupcode", "discretionarygroupcode", "insertgroupcode", "vcentergroupcode", "mathchoicegroupcode", "semisimplegroupcode", "mathshiftgroupcode", "mathleftgroupcode", "vadjustgroupcode", "charnodecode", "hlistnodecode", "vlistnodecode", "rulenodecode", "insertnodecode", "marknodecode", "adjustnodecode", "ligaturenodecode", "discretionarynodecode", "whatsitnodecode", "mathnodecode", "gluenodecode", "kernnodecode", "penaltynodecode", "unsetnodecode", "mathsnodecode", "charifcode", "catifcode", "numifcode", "dimifcode", "oddifcode", "vmodeifcode", "hmodeifcode", "mmodeifcode", "innerifcode", "voidifcode", "hboxifcode", "vboxifcode", "xifcode", "eofifcode", "trueifcode", "falseifcode", "caseifcode", "definedifcode", "csnameifcode", "fontcharifcode", "fontslantperpoint", "fontinterwordspace", "fontinterwordstretch", "fontinterwordshrink", "fontexheight", "fontemwidth", "fontextraspace", "slantperpoint", "interwordspace", "interwordstretch", "interwordshrink", "exheight", "emwidth", "extraspace", "mathsupdisplay", "mathsupnormal", "mathsupcramped", "mathsubnormal", "mathsubcombined", "mathaxisheight", "muquad", "startmode", "stopmode", "startnotmode", "stopnotmode", "startmodeset", "stopmodeset", "doifmode", "doifelsemode", "doifmodeelse", "doifnotmode", "startmodeset", "stopmodeset", "startallmodes", "stopallmodes", "startnotallmodes", "stopnotallmodes", "doifallmodes", "doifelseallmodes", "doifallmodeselse", "doifnotallmodes", "startenvironment", "stopenvironment", "environment", "startcomponent", "stopcomponent", "component", "startproduct", "stopproduct", "product", "startproject", "stopproject", "project", "starttext", "stoptext", "startnotext", "stopnotext", "startdocument", "stopdocument", "documentvariable", "setupdocument", "startmodule", "stopmodule", "usemodule", "usetexmodule", "useluamodule", "setupmodule", "currentmoduleparameter", "moduleparameter", "everystarttext", "everystoptext", "startTEXpage", "stopTEXpage", "enablemode", "disablemode", "preventmode", "definemode", "globalenablemode", "globaldisablemode", "globalpreventmode", "pushmode", "popmode", "typescriptone", "typescripttwo", "typescriptthree", "mathsizesuffix", "mathordcode", "mathopcode", "mathbincode", "mathrelcode", "mathopencode", "mathclosecode", "mathpunctcode", "mathalphacode", "mathinnercode", "mathnothingcode", "mathlimopcode", "mathnolopcode", "mathboxcode", "mathchoicecode", "mathaccentcode", "mathradicalcode", "constantnumber", "constantnumberargument", "constantdimen", "constantdimenargument", "constantemptyargument", "continueifinputfile", "luastringsep", "!!bs", "!!es", "lefttorightmark", "righttoleftmark", "breakablethinspace", "nobreakspace", "nonbreakablespace", "narrownobreakspace", "zerowidthnobreakspace", "ideographicspace", "ideographichalffillspace", "twoperemspace", "threeperemspace", "fourperemspace", "fiveperemspace", "sixperemspace", "figurespace", "punctuationspace", "hairspace", "zerowidthspace", "zerowidthnonjoiner", "zerowidthjoiner", "zwnj", "zwj", "optionalspace", "asciispacechar" }, ["helpers"]={ "startsetups", "stopsetups", "startxmlsetups", "stopxmlsetups", "startluasetups", "stopluasetups", "starttexsetups", "stoptexsetups", "startrawsetups", "stoprawsetups", "startlocalsetups", "stoplocalsetups", "starttexdefinition", "stoptexdefinition", "starttexcode", "stoptexcode", "startcontextcode", "stopcontextcode", "startcontextdefinitioncode", "stopcontextdefinitioncode", "texdefinition", "doifelsesetups", "doifsetupselse", "doifsetups", "doifnotsetups", "setup", "setups", "texsetup", "xmlsetup", "luasetup", "directsetup", "fastsetup", "doifelsecommandhandler", "doifcommandhandlerelse", "doifnotcommandhandler", "doifcommandhandler", "newmode", "setmode", "resetmode", "newsystemmode", "setsystemmode", "resetsystemmode", "pushsystemmode", "popsystemmode", "booleanmodevalue", "newcount", "newdimen", "newskip", "newmuskip", "newbox", "newtoks", "newread", "newwrite", "newmarks", "newinsert", "newattribute", "newif", "newlanguage", "newfamily", "newfam", "newhelp", "then", "begcsname", "strippedcsname", "checkedstrippedcsname", "firstargumentfalse", "firstargumenttrue", "secondargumentfalse", "secondargumenttrue", "thirdargumentfalse", "thirdargumenttrue", "fourthargumentfalse", "fourthargumenttrue", "fifthargumentfalse", "fifthsargumenttrue", "sixthargumentfalse", "sixtsargumenttrue", "doglobal", "dodoglobal", "redoglobal", "resetglobal", "donothing", "dontcomplain", "forgetall", "donetrue", "donefalse", "inlineordisplaymath", "indisplaymath", "forcedisplaymath", "startforceddisplaymath", "stopforceddisplaymath", "reqno", "htdp", "unvoidbox", "hfilll", "vfilll", "mathbox", "mathlimop", "mathnolop", "mathnothing", "mathalpha", "currentcatcodetable", "defaultcatcodetable", "catcodetablename", "newcatcodetable", "startcatcodetable", "stopcatcodetable", "startextendcatcodetable", "stopextendcatcodetable", "pushcatcodetable", "popcatcodetable", "restorecatcodes", "setcatcodetable", "letcatcodecommand", "defcatcodecommand", "uedcatcodecommand", "hglue", "vglue", "hfillneg", "vfillneg", "hfilllneg", "vfilllneg", "ruledhss", "ruledhfil", "ruledhfill", "ruledhfilneg", "ruledhfillneg", "normalhfillneg", "ruledvss", "ruledvfil", "ruledvfill", "ruledvfilneg", "ruledvfillneg", "normalvfillneg", "ruledhbox", "ruledvbox", "ruledvtop", "ruledvcenter", "ruledmbox", "ruledhskip", "ruledvskip", "ruledkern", "ruledmskip", "ruledmkern", "ruledhglue", "ruledvglue", "normalhglue", "normalvglue", "ruledpenalty", "filledhboxb", "filledhboxr", "filledhboxg", "filledhboxc", "filledhboxm", "filledhboxy", "filledhboxk", "scratchcounter", "globalscratchcounter", "scratchdimen", "globalscratchdimen", "scratchskip", "globalscratchskip", "scratchmuskip", "globalscratchmuskip", "scratchtoks", "globalscratchtoks", "scratchbox", "globalscratchbox", "normalbaselineskip", "normallineskip", "normallineskiplimit", "availablehsize", "localhsize", "setlocalhsize", "distributedhsize", "hsizefraction", "nextbox", "dowithnextbox", "dowithnextboxcs", "dowithnextboxcontent", "dowithnextboxcontentcs", "scratchwidth", "scratchheight", "scratchdepth", "scratchoffset", "scratchdistance", "scratchhsize", "scratchvsize", "scratchxoffset", "scratchyoffset", "scratchhoffset", "scratchvoffset", "scratchxposition", "scratchyposition", "scratchtopoffset", "scratchbottomoffset", "scratchleftoffset", "scratchrightoffset", "scratchcounterone", "scratchcountertwo", "scratchcounterthree", "scratchdimenone", "scratchdimentwo", "scratchdimenthree", "scratchskipone", "scratchskiptwo", "scratchskipthree", "scratchmuskipone", "scratchmuskiptwo", "scratchmuskipthree", "scratchtoksone", "scratchtokstwo", "scratchtoksthree", "scratchboxone", "scratchboxtwo", "scratchboxthree", "scratchnx", "scratchny", "scratchmx", "scratchmy", "scratchunicode", "scratchleftskip", "scratchrightskip", "scratchtopskip", "scratchbottomskip", "doif", "doifnot", "doifelse", "doifinset", "doifnotinset", "doifelseinset", "doifinsetelse", "doifelsenextchar", "doifnextcharelse", "doifelsenextoptional", "doifnextoptionalelse", "doifelsenextoptionalcs", "doifnextoptionalcselse", "doifelsefastoptionalcheck", "doiffastoptionalcheckelse", "doifelsenextbgroup", "doifnextbgroupelse", "doifelsenextbgroupcs", "doifnextbgroupcselse", "doifelsenextparenthesis", "doifnextparenthesiselse", "doifelseundefined", "doifundefinedelse", "doifelsedefined", "doifdefinedelse", "doifundefined", "doifdefined", "doifelsevalue", "doifvalue", "doifnotvalue", "doifnothing", "doifsomething", "doifelsenothing", "doifnothingelse", "doifelsesomething", "doifsomethingelse", "doifvaluenothing", "doifvaluesomething", "doifelsevaluenothing", "doifvaluenothingelse", "doifelsedimension", "doifdimensionelse", "doifelsenumber", "doifnumberelse", "doifnumber", "doifnotnumber", "doifelsecommon", "doifcommonelse", "doifcommon", "doifnotcommon", "doifinstring", "doifnotinstring", "doifelseinstring", "doifinstringelse", "doifelseassignment", "doifassignmentelse", "docheckassignment", "tracingall", "tracingnone", "loggingall", "removetoks", "appendtoks", "prependtoks", "appendtotoks", "prependtotoks", "to", "endgraf", "endpar", "everyendpar", "reseteverypar", "finishpar", "empty", "null", "space", "quad", "enspace", "nbsp", "obeyspaces", "obeylines", "obeyedspace", "obeyedline", "obeyedtab", "obeyedpage", "normalspace", "executeifdefined", "singleexpandafter", "doubleexpandafter", "tripleexpandafter", "dontleavehmode", "removelastspace", "removeunwantedspaces", "keepunwantedspaces", "removepunctuation", "wait", "writestatus", "define", "defineexpandable", "redefine", "setmeasure", "setemeasure", "setgmeasure", "setxmeasure", "definemeasure", "freezemeasure", "measure", "measured", "installcorenamespace", "getvalue", "getuvalue", "setvalue", "setevalue", "setgvalue", "setxvalue", "letvalue", "letgvalue", "resetvalue", "undefinevalue", "ignorevalue", "setuvalue", "setuevalue", "setugvalue", "setuxvalue", "globallet", "glet", "udef", "ugdef", "uedef", "uxdef", "checked", "unique", "getparameters", "geteparameters", "getgparameters", "getxparameters", "forgetparameters", "copyparameters", "getdummyparameters", "dummyparameter", "directdummyparameter", "setdummyparameter", "letdummyparameter", "usedummystyleandcolor", "usedummystyleparameter", "usedummycolorparameter", "processcommalist", "processcommacommand", "quitcommalist", "quitprevcommalist", "processaction", "processallactions", "processfirstactioninset", "processallactionsinset", "unexpanded", "expanded", "startexpanded", "stopexpanded", "protected", "protect", "unprotect", "firstofoneargument", "firstoftwoarguments", "secondoftwoarguments", "firstofthreearguments", "secondofthreearguments", "thirdofthreearguments", "firstoffourarguments", "secondoffourarguments", "thirdoffourarguments", "fourthoffourarguments", "firstoffivearguments", "secondoffivearguments", "thirdoffivearguments", "fourthoffivearguments", "fifthoffivearguments", "firstofsixarguments", "secondofsixarguments", "thirdofsixarguments", "fourthofsixarguments", "fifthofsixarguments", "sixthofsixarguments", "firstofoneunexpanded", "firstoftwounexpanded", "secondoftwounexpanded", "firstofthreeunexpanded", "secondofthreeunexpanded", "thirdofthreeunexpanded", "gobbleoneargument", "gobbletwoarguments", "gobblethreearguments", "gobblefourarguments", "gobblefivearguments", "gobblesixarguments", "gobblesevenarguments", "gobbleeightarguments", "gobbleninearguments", "gobbletenarguments", "gobbleoneoptional", "gobbletwooptionals", "gobblethreeoptionals", "gobblefouroptionals", "gobblefiveoptionals", "dorecurse", "doloop", "exitloop", "dostepwiserecurse", "recurselevel", "recursedepth", "dofastloopcs", "dowith", "newconstant", "setnewconstant", "setconstant", "setconstantvalue", "newconditional", "settrue", "setfalse", "settruevalue", "setfalsevalue", "newmacro", "setnewmacro", "newfraction", "newsignal", "dosingleempty", "dodoubleempty", "dotripleempty", "doquadrupleempty", "doquintupleempty", "dosixtupleempty", "doseventupleempty", "dosingleargument", "dodoubleargument", "dotripleargument", "doquadrupleargument", "doquintupleargument", "dosixtupleargument", "doseventupleargument", "dosinglegroupempty", "dodoublegroupempty", "dotriplegroupempty", "doquadruplegroupempty", "doquintuplegroupempty", "permitspacesbetweengroups", "dontpermitspacesbetweengroups", "nopdfcompression", "maximumpdfcompression", "normalpdfcompression", "modulonumber", "dividenumber", "getfirstcharacter", "doifelsefirstchar", "doiffirstcharelse", "startnointerference", "stopnointerference", "twodigits", "threedigits", "leftorright", "offinterlineskip", "oninterlineskip", "nointerlineskip", "strut", "halfstrut", "quarterstrut", "depthstrut", "setstrut", "strutbox", "strutht", "strutdp", "strutwd", "struthtdp", "begstrut", "endstrut", "lineheight", "ordordspacing", "ordopspacing", "ordbinspacing", "ordrelspacing", "ordopenspacing", "ordclosespacing", "ordpunctspacing", "ordinnerspacing", "opordspacing", "opopspacing", "opbinspacing", "oprelspacing", "opopenspacing", "opclosespacing", "oppunctspacing", "opinnerspacing", "binordspacing", "binopspacing", "binbinspacing", "binrelspacing", "binopenspacing", "binclosespacing", "binpunctspacing", "bininnerspacing", "relordspacing", "relopspacing", "relbinspacing", "relrelspacing", "relopenspacing", "relclosespacing", "relpunctspacing", "relinnerspacing", "openordspacing", "openopspacing", "openbinspacing", "openrelspacing", "openopenspacing", "openclosespacing", "openpunctspacing", "openinnerspacing", "closeordspacing", "closeopspacing", "closebinspacing", "closerelspacing", "closeopenspacing", "closeclosespacing", "closepunctspacing", "closeinnerspacing", "punctordspacing", "punctopspacing", "punctbinspacing", "punctrelspacing", "punctopenspacing", "punctclosespacing", "punctpunctspacing", "punctinnerspacing", "innerordspacing", "inneropspacing", "innerbinspacing", "innerrelspacing", "inneropenspacing", "innerclosespacing", "innerpunctspacing", "innerinnerspacing", "normalreqno", "startimath", "stopimath", "normalstartimath", "normalstopimath", "startdmath", "stopdmath", "normalstartdmath", "normalstopdmath", "uncramped", "cramped", "triggermathstyle", "mathstylefont", "mathsmallstylefont", "mathstyleface", "mathsmallstyleface", "mathstylecommand", "mathpalette", "mathstylehbox", "mathstylevbox", "mathstylevcenter", "mathstylevcenteredhbox", "mathstylevcenteredvbox", "mathtext", "setmathsmalltextbox", "setmathtextbox", "pushmathstyle", "popmathstyle", "triggerdisplaystyle", "triggertextstyle", "triggerscriptstyle", "triggerscriptscriptstyle", "triggeruncrampedstyle", "triggercrampedstyle", "triggersmallstyle", "triggeruncrampedsmallstyle", "triggercrampedsmallstyle", "triggerbigstyle", "triggeruncrampedbigstyle", "triggercrampedbigstyle", "luaexpr", "expelsedoif", "expdoif", "expdoifnot", "expdoifelsecommon", "expdoifcommonelse", "expdoifelseinset", "expdoifinsetelse", "ctxdirectlua", "ctxlatelua", "ctxsprint", "ctxwrite", "ctxcommand", "ctxdirectcommand", "ctxlatecommand", "ctxreport", "ctxlua", "luacode", "lateluacode", "directluacode", "registerctxluafile", "ctxloadluafile", "luaversion", "luamajorversion", "luaminorversion", "ctxluacode", "luaconditional", "luaexpanded", "startluaparameterset", "stopluaparameterset", "luaparameterset", "definenamedlua", "obeylualines", "obeyluatokens", "startluacode", "stopluacode", "startlua", "stoplua", "startctxfunction", "stopctxfunction", "ctxfunction", "startctxfunctiondefinition", "stopctxfunctiondefinition", "installctxfunction", "carryoverpar", "assumelongusagecs", "Umathbotaccent", "righttolefthbox", "lefttorighthbox", "righttoleftvbox", "lefttorightvbox", "righttoleftvtop", "lefttorightvtop", "rtlhbox", "ltrhbox", "rtlvbox", "ltrvbox", "rtlvtop", "ltrvtop", "autodirhbox", "autodirvbox", "autodirvtop", "lefttoright", "righttoleft", "synchronizelayoutdirection", "synchronizedisplaydirection", "synchronizeinlinedirection", "lesshyphens", "morehyphens", "nohyphens", "dohyphens", "Ucheckedstartdisplaymath", "Ucheckedstopdisplaymath", "nobreak", "allowbreak", "goodbreak" }, }././@LongLink0000644000000000000000000000015500000000000011604 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/data/scite-context-data-metafun.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/data/scite-context-data-met0000644000175000017500000000740012514560075032311 0ustar norbertnorbertreturn { ["commands"]={ "transparency", "sqr", "log", "ln", "exp", "inv", "pow", "pi", "radian", "tand", "cotd", "sin", "cos", "tan", "cot", "atan", "asin", "acos", "invsin", "invcos", "invtan", "acosh", "asinh", "sinh", "cosh", "zmod", "paired", "tripled", "unitcircle", "fulldiamond", "unitdiamond", "fullsquare", "llcircle", "lrcircle", "urcircle", "ulcircle", "tcircle", "bcircle", "lcircle", "rcircle", "lltriangle", "lrtriangle", "urtriangle", "ultriangle", "uptriangle", "downtriangle", "lefttriangle", "righttriangle", "triangle", "smoothed", "cornered", "superellipsed", "randomized", "squeezed", "enlonged", "shortened", "punked", "curved", "unspiked", "simplified", "blownup", "stretched", "enlarged", "leftenlarged", "topenlarged", "rightenlarged", "bottomenlarged", "crossed", "laddered", "randomshifted", "interpolated", "paralleled", "cutends", "peepholed", "llenlarged", "lrenlarged", "urenlarged", "ulenlarged", "llmoved", "lrmoved", "urmoved", "ulmoved", "rightarrow", "leftarrow", "centerarrow", "boundingbox", "innerboundingbox", "outerboundingbox", "pushboundingbox", "popboundingbox", "bottomboundary", "leftboundary", "topboundary", "rightboundary", "xsized", "ysized", "xysized", "sized", "xyscaled", "intersection_point", "intersection_found", "penpoint", "bbwidth", "bbheight", "withshade", "withcircularshade", "withlinearshade", "defineshade", "shaded", "shadedinto", "withshadecolors", "withshadedomain", "withshademethod", "withshadefactor", "withshadevector", "withshadecenter", "cmyk", "spotcolor", "multitonecolor", "namedcolor", "drawfill", "undrawfill", "inverted", "uncolored", "softened", "grayed", "greyed", "onlayer", "along", "graphictext", "loadfigure", "externalfigure", "figure", "register", "withmask", "bitmapimage", "colordecimals", "ddecimal", "dddecimal", "ddddecimal", "textext", "thetextext", "rawtextext", "textextoffset", "verbatim", "thelabel", "label", "autoalign", "transparent", "withtransparency", "property", "properties", "withproperties", "asgroup", "infont", "space", "crlf", "dquote", "percent", "SPACE", "CRLF", "DQUOTE", "PERCENT", "grayscale", "greyscale", "withgray", "withgrey", "colorpart", "readfile", "clearxy", "unitvector", "center", "epsed", "anchored", "originpath", "infinite", "break", "xstretched", "ystretched", "snapped", "pathconnectors", "function", "constructedfunction", "constructedpath", "constructedpairs", "straightfunction", "straightpath", "straightpairs", "curvedfunction", "curvedpath", "curvedpairs", "evenly", "oddly", "condition", "pushcurrentpicture", "popcurrentpicture", "arrowpath", "tensecircle", "roundedsquare", "colortype", "whitecolor", "blackcolor", "basiccolors", "normalfill", "normaldraw", "visualizepaths", "naturalizepaths", "drawboundary", "drawwholepath", "visualizeddraw", "visualizedfill", "draworigin", "drawboundingbox", "drawpath", "drawpoint", "drawpoints", "drawcontrolpoints", "drawcontrollines", "drawpointlabels", "drawlineoptions", "drawpointoptions", "drawcontroloptions", "drawlabeloptions", "draworiginoptions", "drawboundoptions", "drawpathoptions", "resetdrawoptions", "undashed", "decorated", "redecorated", "undecorated", "passvariable", "passarrayvariable", "tostring", "format", "formatted", "startpassingvariable", "stoppassingvariable", "eofill", "eoclip", "area" }, ["internals"]={ "nocolormodel", "greycolormodel", "graycolormodel", "rgbcolormodel", "cmykcolormodel", "shadefactor", "textextoffset", "normaltransparent", "multiplytransparent", "screentransparent", "overlaytransparent", "softlighttransparent", "hardlighttransparent", "colordodgetransparent", "colorburntransparent", "darkentransparent", "lightentransparent", "differencetransparent", "exclusiontransparent", "huetransparent", "saturationtransparent", "colortransparent", "luminositytransparent", "metapostversion", "maxdimensions" }, }././@LongLink0000644000000000000000000000016000000000000011600 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/data/scite-context-data-interfaces.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/data/scite-context-data-int0000644000175000017500000046216412523235204032323 0ustar norbertnorbertreturn { ["cs"]={ "CAP", "Cap", "Caps", "Character", "Characters", "Cisla", "KAP", "Kap", "Kaps", "MESIC", "MONTH", "Rimskecislice", "Romannumerals", "SLOVA", "SLOVO", "Slova", "Slovo", "VSEDNIDEN", "WEEKDAY", "WORD", "WORDS", "Word", "Words", "Znak", "Znaky", "about", "adaptlayout", "aktualnicislonadpisu", "aktualnidatum", "appendix", "arg", "at", "atleftmargin", "atpage", "atrightmargin", "background", "barevnalista", "barva", "bilemisto", "blackrule", "blackrules", "blank", "bookmark", "bottomspace", "bublinkovanapoveda", "but", "button", "bydliste", "bypassblocks", "cap", "celkovypocetstran", "cernalinka", "cernelinky", "chapter", "character", "characters", "chem", "cisla", "cislonadpisu", "cislopodrovnice", "cislorovnice", "cislostrany", "citace", "citovat", "clip", "clonefield", "color", "column", "comment", "comparecolorgroup", "comparepalet", "completecombinedlist", "completelistoffloats", "completelistofsorts", "completelistofsynonyms", "completepagenumber", "completeregister", "convertnumber", "copyfield", "correctwhitespace", "coupledocument", "coupledregister", "couplemarking", "couplepage", "couplepaper", "coupleregister", "crlf", "currentdate", "currentheadnumber", "cutspace", "date", "datum", "decouplemarking", "decrementnumber", "define", "defineblank", "defineblock", "definebodyfont", "definebodyfontDEF", "definebodyfontREF", "definebodyfontenvironment", "definebuffer", "definecolor", "definecolorgroup", "definecolumnbreak", "definecolumnset", "definecombination", "definecombinedlist", "defineconversion", "definedescription", "definedfont", "defineenumeration", "definefield", "definefieldstack", "definefiguresymbol", "definefloat", "definefont", "definefontfeature", "definefonthandling", "definefontsynonym", "defineframed", "defineframedtext", "definehead", "defineindentedtext", "defineinmargin", "defineinteractionmenu", "defineitemgroup", "definelabel", "definelayer", "definelayout", "definelist", "definelogo", "definemakeup", "definemarking", "definemathalignment", "defineoutput", "defineoverlay", "definepagebreak", "definepalet", "definepapersize", "defineparagraphs", "defineplacement", "defineprofile", "defineprogram", "definerawfont", "definereference", "definereferenceformat", "definereferencelist", "defineregister", "definerule", "definesection", "definesectionblock", "definesorting", "definestartstop", "definesubfield", "definesymbol", "definesynonyms", "definetabletemplate", "definetabulate", "definetext", "definetextposition", "definetextvariable", "definetype", "definetypeface", "definetyping", "defineversion", "definuj", "definujakcent", "definujbarvu", "definujblok", "definujbloksekce", "definujbuffer", "definujfont", "definujformatodkazu", "definujhbox", "definujhlavnipole", "definujinterakcnimenu", "definujkombinovanyseznam", "definujkonverzi", "definujlogo", "definujnadpis", "definujobrazeksymbol", "definujodkaz", "definujodstavce", "definujopis", "definujoramovani", "definujoramovanytext", "definujpaletu", "definujplvouciobjekt", "definujpodpole", "definujpole", "definujpopis", "definujpopisek", "definujprekryv", "definujpreskok", "definujprikaz", "definujprofil", "definujprogram", "definujprostredizakladnihofontu", "definujrejstrik", "definujsablonutabulky", "definujsekci", "definujseznam", "definujseznamodkazu", "definujskupinubarev", "definujstartstop", "definujstyl", "definujstylfontu", "definujsymbol", "definujsynonumumfontu", "definujsynonyma", "definujtabelaci", "definujtext", "definujtrideni", "definujupravu", "definujvelikostpapiru", "definujverzi", "definujvycet", "definujvystup", "definujzakladnifont", "definujzasobnikpoli", "definujznaceni", "definujznak", "delkaseznamu", "description", "determineheadnumber", "determinelistcharacteristics", "disableinteractionmenu", "dodrzujprofil", "dodrzujverzi", "dodrzujverziprofilu", "dvoustrannypapir", "emptylines", "enumeration", "externalfigure", "externiobraz", "fakt", "field", "fieldstack", "fillinfield", "fillinline", "fillinrules", "fillintext", "fitfield", "fixedspaces", "followprofile", "followprofileversion", "followversion", "footnote", "footnotetext", "forceblocks", "fraction", "framed", "framedtext", "from", "getbuffer", "getmarking", "getnumber", "godown", "goto", "gotobox", "graycolor", "grid", "hairline", "head", "headnumber", "headsym", "headtext", "hideblocks", "high", "hl", "hlavnijazyk", "hlavniuroven", "hodnotabarvy", "hodnotasedi", "immediatebetweenlist", "immediatetolist", "in", "indentation", "indenting", "inframed", "ininner", "inleft", "inline", "inmargin", "inneredgedistance", "inneredgewidth", "innermargindistance", "innermarginwidth", "inothermargin", "inouter", "inright", "instalacejazyka", "installlanguage", "interactionbar", "interactionbuttons", "interakcnilista", "interakcnitlacitka", "interaktivnimenu", "item", "items", "its", "jazyk", "jdidolu", "jdina", "jdinabox", "jdinastranu", "jmeno", "kap", "keepblocks", "klonujpole", "komponenta", "konvertujcislo", "kopirujpole", "korekcebilehomista", "labeling", "labels", "labeltext", "language", "leftaligned", "leg", "listsymbol", "loadsorts", "loadsynonyms", "logfields", "lohi", "low", "mainlanguage", "maoramovani", "mapfontsize", "mar", "marginalnilinka", "marginalninadpis", "marginalnislovo", "marginalnitext", "marginrule", "margintext", "marking", "markversion", "matematika", "mathematics", "mazaramovani", "mediaeval", "meritko", "mesic", "mezera", "midaligned", "mirror", "month", "moveformula", "moveongrid", "movesidefloat", "mrizka", "nadpis", "nadruhyokraj", "nalevo", "nalevyokraj", "name", "naokraj", "napravo", "napravyokraj", "nastavbarvu", "nastavbarvy", "nastavbilamista", "nastavblok", "nastavbloksekce", "nastavbuffer", "nastavcernelinky", "nastavcislonadpisu", "nastavcislostrany", "nastavcislovani", "nastavcislovaniodstavcu", "nastavcislovaniradku", "nastavcislovanistran", "nastavcitaci", "nastavdefinicipoznamekpodcarou", "nastavdeleniplvoucichobjektu", "nastavdelitko", "nastavdolnitexty", "nastavexterniobrazy", "nastavhorejsek", "nastavhornitexty", "nastavinterakci", "nastavinterakcnilistu", "nastavinterakcnimenu", "nastavinterakcniobrazovku", "nastavjazyk", "nastavkapitalky", "nastavkombinovanyseznam", "nastavkomentar", "nastavkomentarstrany", "nastavlegendu", "nastavmarginalie", "nastavmarginalniblok", "nastavmarginalnilinky", "nastavmeziradkovoumezeru", "nastavnadpis", "nastavnadpisy", "nastavodkazovani", "nastavodsazovani", "nastavodstavce", "nastavopis", "nastavoramovanetexty", "nastavoramovani", "nastavorez", "nastavotoceni", "nastavpaletu", "nastavplvouciobjekt", "nastavplvouciobjekty", "nastavpodcislostrany", "nastavpodtrzeni", "nastavpole", "nastavpolozky", "nastavpopisek", "nastavpopisky", "nastavpopisy", "nastavpozadi", "nastavpoznamkypodcarou", "nastavprechodstrany", "nastavpreskok", "nastavprofily", "nastavprogramy", "nastavprostredizakladnihofontu", "nastavpublikace", "nastavradkovani", "nastavradky", "nastavrastr", "nastavrejstrik", "nastavrovnice", "nastavsadusymbolu", "nastavsekci", "nastavseznam", "nastavseznamodkazu", "nastavsirkucary", "nastavsloupce", "nastavspodek", "nastavspojeni", "nastavsynchronizaci", "nastavsynchronizacnilistu", "nastavsynonyma", "nastavsystem", "nastavtab", "nastavtabelaci", "nastavtabulky", "nastavtenkelinky", "nastavtext", "nastavtexthlavicky", "nastavtextovelinky", "nastavtextpopisku", "nastavtexttexty", "nastavtextyupati", "nastavtextyzahlavi", "nastavtlacitka", "nastavtoleranci", "nastavtrideni", "nastavtype", "nastavumisteniprotejsku", "nastavumistovani", "nastavupati", "nastavupravu", "nastavurl", "nastavusporadani", "nastavvelikostpapiru", "nastavverze", "nastavvsechnapole", "nastavvycty", "nastavvyplnovelinky", "nastavvyplnoveradky", "nastavvystup", "nastavvzhled", "nastavzahlavi", "nastavzakladnifont", "nastavzarovnani", "nastavznaceni", "nastavzuzeni", "nastrane", "navigating", "nejakyradek", "nekde", "nextsection", "neznamo", "nivy", "nizky", "nocap", "noheaderandfooterlines", "noindenting", "nokap", "nolist", "nomarking", "nomoreblocks", "nomorefiles", "nop", "nospace", "note", "notopandbottomlines", "nowhitespace", "numberofsubpages", "numbers", "obrazovka", "odkaz", "odkaznadatum", "odkaznastranu", "odkaznatext", "odkazujici", "odsazenishora", "odsazenizleva", "odsazovani", "okr", "opakovat", "opis", "opissoubor", "oramovani", "oref", "orez", "otocit", "outeredgedistance", "outeredgewidth", "outermargindistance", "outermarginwidth", "overbar", "overbars", "overstrike", "overstrikes", "oznaceni", "oznacverzi", "packed", "page", "pagedepth", "pageoffset", "pagereference", "paragraph", "parovastrana", "part", "periods", "pis", "placebookmarks", "placecombinedlist", "placefloat", "placefootnotes", "placeformula", "placeheadnumber", "placeheadtext", "placelegend", "placelist", "placelistoffloats", "placelistofsorts", "placelistofsynonyms", "placelocalfootnotes", "placelogos", "placeongrid", "placeontopofeachother", "placepagenumber", "placerawlist", "placereferencelist", "placeregister", "placerule", "placesidebyside", "placesubformula", "placetextvariable", "plnezneni", "pol", "pole", "polozka", "polozky", "popisky", "poppisek", "porovnejpaletu", "porovnejskupinubarev", "position", "positiontext", "pozadi", "pozice", "poznamka", "poznamkapodcarou", "pref", "prelozit", "premistinamrizku", "prepninazakladnifont", "preskoc", "prizpusobivepole", "prizpusobvzhled", "processblocks", "processpage", "produkt", "program", "projekt", "propojeneznaceni", "propojenydokument", "propojenyrejstrik", "prostredi", "publication", "publikace", "quotation", "quote", "ran", "ref", "reference", "referral", "referraldate", "register", "reservefloat", "reset", "resetmarking", "resetnumber", "resettextcontent", "resetznaceni", "rightaligned", "rimskecislice", "romannumerals", "rotate", "rozdelplvouciobjekt", "rozmer", "rozpojeneznaceni", "roztazene", "scale", "schovejbloky", "screen", "section", "sedabarva", "seeregister", "selectblocks", "selectpaper", "selectversion", "setnumber", "settextcontent", "settextvariable", "setupalign", "setupanswerarea", "setuparranging", "setupbackground", "setupbackgrounds", "setupblackrules", "setupblank", "setupblock", "setupbodyfont", "setupbodyfontenvironment", "setupbottom", "setupbottomtexts", "setupbuffer", "setupbuttons", "setupcapitals", "setupcaption", "setupcaptions", "setupclipping", "setupcolor", "setupcolors", "setupcolumns", "setupcolumnset", "setupcolumnsetlines", "setupcolumnsetstart", "setupcombinations", "setupcombinedlist", "setupcomment", "setupdescriptions", "setupenumerations", "setupexternalfigures", "setupfield", "setupfields", "setupfillinlines", "setupfillinrules", "setupfloat", "setupfloats", "setupfloatsplitting", "setupfonthandling", "setupfontsynonym", "setupfooter", "setupfootertexts", "setupfootnotedefinition", "setupfootnotes", "setupforms", "setupformulas", "setupframed", "setupframedtexts", "setuphead", "setupheader", "setupheadertexts", "setupheadnumber", "setupheads", "setupheadtext", "setuphyphenmark", "setupindentedtext", "setupindenting", "setupinmargin", "setupinteraction", "setupinteractionbar", "setupinteractionmenu", "setupinteractionscreen", "setupinterlinespace", "setupinterlinespace2", "setupitemgroup", "setupitems", "setuplabeltext", "setuplanguage", "setuplayout", "setuplegend", "setuplinenumbering", "setuplines", "setuplinewidth", "setuplist", "setuplistalternative", "setupmakeup", "setupmarginblocks", "setupmarginrules", "setupmarking", "setupmathalignment", "setupnarrower", "setupnumber", "setupnumbering", "setupoppositeplacing", "setupoutput", "setuppagenumber", "setuppagenumbering", "setuppagetransitions", "setuppalet", "setuppaper", "setuppapersize", "setupparagraphnumbering", "setupparagraphs", "setupplacement", "setuppositioning", "setupprofiles", "setupprograms", "setuppublications", "setupquote", "setupreferencelist", "setupreferencing", "setupregister", "setuprotate", "setuprule", "setupscreens", "setupsection", "setupsectionblock", "setupsorting", "setupspacing", "setupstartstop", "setupstrut", "setupsubpagenumber", "setupsymbolset", "setupsynchronization", "setupsynchronizationbar", "setupsynonyms", "setupsystem", "setuptab", "setuptables", "setuptabulate", "setuptext", "setuptextposition", "setuptextrules", "setuptexttexts", "setuptextvariable", "setupthinrules", "setuptolerance", "setuptop", "setuptoptexts", "setuptype", "setuptyping", "setupunderbar", "setupurl", "setupversions", "setupwhitespace", "showbodyfont", "showbodyfontenvironment", "showcolor", "showcolorgroup", "showexternalfigures", "showfields", "showframe", "showgrid", "showlayout", "showmakeup", "showpalet", "showprint", "showsetups", "showstruts", "showsymbolset", "sirkalevehookraje", "sirkalevemarginalie", "sirkamarginalie", "sirkaokraje", "sirkapapiru", "sirkapravehookraje", "sirkapravemarginalie", "sirkasazby", "sirkaseznamu", "sirkatextu", "sirkatiskpapiru", "sloupec", "slovovpravo", "someline", "somewhere", "sort", "space", "splitfloat", "spodek", "stanovcharakteristickuseznamu", "stanovcislonadpisu", "startalignment", "startbackground", "startbarva", "startbuffer", "startcislovaniradku", "startcitace", "startcolor", "startcolumnmakeup", "startcolumns", "startcolumnset", "startcombination", "startcomment", "startcomponent", "startdescription", "startdocument", "startdokument", "startenumeration", "startenvironment", "startfact", "startfigure", "startfloattext", "startformula", "startframedtext", "startglobalni", "starthiding", "startinteractionmenu", "startitemgroup", "startkodovani", "startkomponenta", "startkorekceradku", "startlegend", "startline", "startlinecorrection", "startlinenumbering", "startlines", "startlocal", "startlocalenvironment", "startlocalfootnotes", "startlokalni", "startlokalnipoznamkypodcarou", "startmakeup", "startmarginalniblok", "startmarginalnilinka", "startmarginblock", "startmarginrule", "startnamemakeup", "startnarrower", "startnezhustene", "startobraz", "startopposite", "startoverlay", "startoverview", "startpacked", "startparagraph", "startpositioning", "startpostponing", "startpozadi", "startprehled", "startprekryv", "startproduct", "startprodukt", "startprofil", "startprofile", "startproject", "startprojekt", "startprostredi", "startprotejsek", "startquotation", "startradek", "startradky", "startrastr", "startregister", "startsadasymbolu", "startsloupce", "startspojeni", "startsymbolset", "startsynchronizace", "startsynchronization", "starttable", "starttables", "starttabulate", "starttabulka", "starttabulky", "starttext", "starttextovalinka", "starttextrule", "starttyping", "startumistovani", "startunpacked", "startuprava", "startversion", "startverze", "startzarovnavani", "startzhustene", "startzuzeni", "stopalignment", "stopbackground", "stopbarva", "stopbuffer", "stopcislovaniradku", "stopcitace", "stopcolor", "stopcolumnmakeup", "stopcolumns", "stopcolumnset", "stopcombination", "stopcomment", "stopcomponent", "stopdescription", "stopdocument", "stopdokument", "stopenumeration", "stopenvironment", "stopfact", "stopfigure", "stopfloattext", "stopformula", "stopframedtext", "stopglobalni", "stophiding", "stopinteractionmenu", "stopitemgroup", "stopkodovani", "stopkomponenta", "stopkorekceradku", "stoplegend", "stopline", "stoplinecorrection", "stoplinenumbering", "stoplines", "stoplocal", "stoplocalenvironment", "stoplocalfootnotes", "stoplokalni", "stoplokalnipoznamkypodcarou", "stopmakeup", "stopmarginalniblok", "stopmarginalnilinka", "stopmarginblock", "stopmarginrule", "stopnamemakeup", "stopnarrower", "stopnezhustene", "stopopposite", "stopoverlay", "stopoverview", "stoppacked", "stopparagraph", "stoppositioning", "stoppostponing", "stoppozadi", "stopprehled", "stopprekryv", "stopproduct", "stopprodukt", "stopprofil", "stopprofile", "stopproject", "stopprojekt", "stopprostredi", "stopprotejsek", "stopquotation", "stopradek", "stopradky", "stoprastr", "stopsloupce", "stopspojeni", "stopsymbolset", "stopsynchronizace", "stopsynchronization", "stoptable", "stoptables", "stoptabulate", "stoptabulka", "stoptabulky", "stoptext", "stoptextovalinka", "stoptextrule", "stoptyping", "stopumistovani", "stopunpacked", "stopuprava", "stopversion", "stopverze", "stopzarovnavani", "stopzhustene", "stopzuzeni", "strana", "stretched", "sub", "subject", "subpagenumber", "subsection", "subsubject", "subsubsection", "subsubsubject", "switchtobodyfont", "switchtorawfont", "sym", "symbol", "synchronizacnilista", "synchronizationbar", "synchronize", "synchronizovat", "synonym", "tab", "tecky", "tenkalinka", "tenkelinky", "testcolumn", "testpage", "tex", "texthlavicky", "textovalinka", "textpopisku", "textreference", "textrule", "textvariable", "thinrule", "thinrules", "title", "tlacitko", "tlacitkomenu", "tloustkacary", "tooltip", "translate", "tref", "tvrdamezera", "tvrdemezery", "txt", "typ", "type", "typebuffer", "typefile", "ukazbarvu", "ukazexterniobrazy", "ukazmrizku", "ukaznastaveni", "ukazpaletu", "ukazpodpery", "ukazpole", "ukazpostredizakladnihofontu", "ukazramecek", "ukazsadusymbolu", "ukazskupinubarev", "ukazupravu", "ukazvytisk", "ukazvzhled", "ukazzakladnifont", "umistikombinovanyseznam", "umistilegendu", "umistiloga", "umistilokalnipoznamkypodcarou", "umistinadsebe", "umistinamrizku", "umistipodrovnici", "umistipoznamkypodcarou", "umistirejstrik", "umistirovnici", "umistiseznam", "umistivedlesebe", "umistizalozky", "underbar", "underbars", "urcicharakteristikurejstriku", "useURL", "useXMLfilter", "useblocks", "usecommands", "usedirectory", "useencoding", "useexternaldocument", "useexternalfigure", "useexternalfile", "useexternalfiles", "useexternalsoundtrack", "usemodule", "usereferences", "usespecials", "usesymbols", "usetypescript", "usetypescriptfile", "uzijJSscripts", "uzijURL", "uzijadresar", "uzijbloky", "uzijexternidokument", "uzijexterniobraz", "uzijexternisoubor", "uzijexternisoubory", "uzijexternizvuk", "uzijkodovani", "uzijmodul", "uzijmoduly", "uzijodkazy", "uzijprikazy", "uzijspeciality", "uzijsymbol", "uzijurl", "version", "verze", "vl", "vlasovalinka", "vlevo", "vpravo", "vradku", "vsedniden", "vyberbloky", "vyberpapir", "vyberverzi", "vyplnenytext", "vyplnovelinky", "vyplnovepole", "vyplnovyradek", "vyskahorejsku", "vyskapapiru", "vyskasazby", "vyskaseznamu", "vyskaspodku", "vyskatextu", "vyskatiskpapiru", "vyskaupati", "vyskazahlavi", "vysoky", "vyznam", "vzdalenosthorejsku", "vzdalenostlevehookraje", "vzdalenostlevemarginalie", "vzdalenostmarginalie", "vzdalenostokraje", "vzdalenostpravehookraje", "vzdalenostpravemarginalie", "vzdalenostspodku", "vzdalenostupati", "vzdalenostzahlavi", "weekday", "whitespace", "wordright", "writebetweenlist", "writetolist", "writetoreferencelist", "writetoregister", "zablokujinterakcnimenu", "zachovejbloky", "zadnamezera", "zadnebilemisto", "zadnedalsibloky", "zadnedalsisoubory", "zadnehorniadolniradky", "zadneodsazovani", "zadnezahlaviaupati", "zadneznaceni", "zadnyrozmer", "zadnyseznam", "zadnytest", "zalozka", "zapisdorejstriku", "zapisdoseznamu", "zapisdoseznamuodkazu", "zapismeziseznam", "zaramovani", "zarovnanonastred", "zarovnanovlevo", "zarovnanovpravo", "zasobnikpoli", "zaznamovepole", "zhustene", "ziskejbuffer", "ziskejznaceni", "zlomek", "znaceni", "znak", "znaky", "zpracujbloky", "zpracujstranu", "zrcadlit", "zref", "zvysujicicislo" }, ["de"]={ "Buchstabe", "Buchstaben", "CAP", "Cap", "Caps", "Character", "Characters", "KAP", "Kap", "Kaps", "MONAT", "MONTH", "Roemischezahlen", "Romannumerals", "WEEKDAY", "WOCHENTAG", "WOERTER", "WORD", "WORDS", "WORT", "Woerter", "Word", "Words", "Wort", "Ziffern", "about", "abstandlinkerrand", "abstandoben", "abstandrechterrand", "abstandunten", "adaptlayout", "amgitterausrichten", "amgitterneuausrichten", "appendix", "arg", "at", "atleftmargin", "atpage", "atrightmargin", "aufseite", "ausfuellfeld", "ausfuelltext", "ausschnitt", "background", "bearbeitebloecke", "bearbeiteseite", "bedeutung", "behaltebloecke", "bei", "bemerkung", "benutzekodierung", "benutzespezielles", "benutzeverzeichnis", "beschrifteversion", "beschriftung", "bestimmekopfnummer", "bestimmelistencharakeristika", "bestimmeregistercharakteristika", "bildschirm", "blackrule", "blackrules", "blank", "blanko", "bookmark", "bottomspace", "breitelinkerrand", "breiterechterrand", "bruch", "buchstabe", "buchstaben", "but", "button", "bypassblocks", "cap", "chapter", "character", "characters", "chem", "clip", "clonefield", "color", "column", "comment", "comparecolorgroup", "comparepalet", "completecombinedlist", "completelistoffloats", "completelistofsorts", "completelistofsynonyms", "completepagenumber", "completeregister", "convertnumber", "copyfield", "correctwhitespace", "coupledocument", "coupledregister", "couplemarking", "couplepage", "couplepaper", "coupleregister", "crlf", "currentdate", "currentheadnumber", "cutspace", "date", "datum", "decouplemarking", "decrementnumber", "define", "defineblank", "defineblock", "definebodyfont", "definebodyfontDEF", "definebodyfontREF", "definebodyfontenvironment", "definebuffer", "definecolor", "definecolorgroup", "definecolumnbreak", "definecolumnset", "definecombination", "definecombinedlist", "defineconversion", "definedescription", "definedfont", "defineenumeration", "definefield", "definefieldstack", "definefiguresymbol", "definefloat", "definefont", "definefontfeature", "definefonthandling", "definefontsynonym", "defineframed", "defineframedtext", "definehead", "defineindentedtext", "defineinmargin", "defineinteractionmenu", "defineitemgroup", "definelabel", "definelayer", "definelayout", "definelist", "definelogo", "definemakeup", "definemarking", "definemathalignment", "defineoutput", "defineoverlay", "definepagebreak", "definepalet", "definepapersize", "defineparagraphs", "defineplacement", "defineprofile", "defineprogram", "definerawfont", "definereference", "definereferenceformat", "definereferencelist", "defineregister", "definerule", "defineschriftsynonym", "definesection", "definesectionblock", "definesorting", "definestartstop", "definesubfield", "definesymbol", "definesynonyms", "definetabletemplate", "definetabulate", "definetext", "definetextposition", "definetextvariable", "definetype", "definetypeface", "definetyping", "defineversion", "definiereabbsymbol", "definiereabsaetze", "definiereabschnitt", "definiereabschnittsblock", "definiereakzent", "definierebefehl", "definierebeschreibung", "definierebeschreibungen", "definierebeschriftung", "definiereblanko", "definiereblock", "definierefarbe", "definierefarbengruppe", "definierefeld", "definierefeldstapel", "definierefliesstext", "definierefliesstextumgebung", "definieregleitobjekt", "definierehauptfeld", "definierehbox", "definiereinteraktionsmenue", "definierekonversion", "definierelabel", "definiereliste", "definierelogo", "definieren", "definierenummerierung", "definiereoverlay", "definierepalette", "definierepapierformat", "definiereprofil", "definiereprogramme", "definierepuffer", "definierereferenz", "definierereferenzformat", "definierereferenzliste", "definiereregister", "definiereschrift", "definiereschriftstil", "definieresortieren", "definierestartstop", "definierestil", "definieresubfeld", "definieresymbol", "definieresynonyme", "definieretabellenvorlage", "definieretabulator", "definieretext", "definieretippen", "definiereueberschrift", "definiereumbruch", "definiereumrahmt", "definiereumrahmtertext", "definiereversion", "definierezeichen", "definierezusammengestellteliste", "description", "determineheadnumber", "determinelistcharacteristics", "dimension", "disableinteractionmenu", "doppelseite", "doppelseitigespapier", "drehen", "duennelinie", "duennerumriss", "einezeile", "einziehen", "emptylines", "entknuepfebeschriftung", "enumeration", "externalfigure", "externeabbildung", "farbbalken", "farbe", "farbewert", "feld", "feldstapel", "festesspatium", "field", "fieldstack", "fillinfield", "fillinline", "fillinrules", "fillintext", "fitfield", "fixedspaces", "folgeprofil", "folgeprofilversion", "folgeversion", "followprofile", "followprofileversion", "followversion", "footnote", "footnotetext", "forceblocks", "format", "formelnummer", "fraction", "framed", "framedtext", "from", "fussnote", "fusszeileabstand", "fusszeilenhoehe", "gefuelltesrechteck", "gefuelltezeile", "geg", "gesamtseitenanzahl", "gestreckt", "getbuffer", "getmarking", "getnumber", "gitter", "godown", "goto", "gotobox", "graufarbe", "grauwert", "graycolor", "grid", "haarlinie", "hairline", "hauptsprache", "head", "headnumber", "headsym", "headtext", "heutigesdatum", "heutigeskopfnummer", "hideblocks", "high", "hintergrund", "hl", "hoch", "hoeheoben", "hoeheunten", "holebeschriftung", "holepuffer", "imlinken", "imlinkenrand", "immaumrise", "immediatebetweenlist", "immediatetolist", "imrechten", "imrechtenrand", "imumriss", "in", "inaktiviereinteraktionsmenue", "inanderermarginale", "indentation", "indenting", "inframed", "ininner", "inleft", "inline", "inlinkermarginale", "inmargin", "inmarginalie", "inneredgedistance", "inneredgewidth", "innermargindistance", "innermarginwidth", "inothermargin", "inouter", "inrechtermarginale", "inright", "installieresprache", "installlanguage", "interactionbar", "interactionbuttons", "interaktionsbalken", "interaktionsknopfe", "interaktionsmenue", "inzeile", "irgendwo", "item", "items", "its", "kap", "keepblocks", "keindimension", "keinebeschriftung", "keinebloeckemehr", "keinedateienmehr", "keinekopfundfusszeilen", "keineliste", "keinspatium", "keintest", "keinzeilenobenundunten", "keinzwischenraum", "kleinerdurchschuss", "klonierefeld", "knopf", "komponente", "konvertierezahl", "kopf", "kopfniveau", "kopfnummer", "kopfweite", "kopfzeilenabstand", "kopfzeilenhoehe", "kopierefeld", "korrigierezwischenraum", "label", "labeling", "labels", "labeltext", "language", "leftaligned", "leg", "liniendicke", "linkemarginalafstand", "linkemarginalbreite", "linksbuendig", "listenbreite", "listenhoehe", "listenlaenge", "listsymbol", "loadsorts", "loadsynonyms", "logfields", "lohi", "low", "mainlanguage", "mapfontsize", "mar", "marginalafstand", "marginalbreite", "marginallinie", "marginaltext", "marginaltitel", "marginalwort", "marginrule", "margintext", "marking", "markversion", "mathematics", "mathematik", "maumrise", "mediaeval", "menueknopf", "midaligned", "mirror", "monat", "month", "moveformula", "moveongrid", "movesidefloat", "nachunten", "name", "navigating", "nextsection", "nichteinziehen", "nocap", "noheaderandfooterlines", "noindenting", "nokap", "nolist", "nomarking", "nomoreblocks", "nomorefiles", "nop", "nospace", "note", "notiz", "notopandbottomlines", "nowhitespace", "numberofsubpages", "numbers", "nummererhoehen", "outeredgedistance", "outeredgewidth", "outermargindistance", "outermarginwidth", "overbar", "overbars", "overstrike", "overstrikes", "packed", "page", "pagedepth", "pageoffset", "pagereference", "papierbreite", "papierhoehe", "paragraph", "part", "passelayoutan", "passendfeld", "periods", "placebookmarks", "placecombinedlist", "placefloat", "placefootnotes", "placeformula", "placeheadnumber", "placeheadtext", "placelegend", "placelist", "placelistoffloats", "placelistofsorts", "placelistofsynonyms", "placelocalfootnotes", "placelogos", "placeongrid", "placeontopofeachother", "placepagenumber", "placerawlist", "placereferencelist", "placeregister", "placerule", "placesidebyside", "placesubformula", "placetextvariable", "platzierebookmarks", "platziereformel", "platzierefussnoten", "platzierelegende", "platziereliste", "platzierelogo", "platzierelokalefussnoten", "platzierenebeneinander", "platziereregister", "platziereuntereinander", "platziereunterformel", "platzierezusammengestellteliste", "pos", "position", "positiontext", "posten", "printpapierbreite", "printpapierhoehe", "processblocks", "processpage", "produkt", "program", "programm", "projekt", "publication", "publikation", "punkt", "quotation", "quote", "ran", "randabstand", "randbreite", "rechteck", "rechtecke", "rechtemarginalafstand", "rechtemarginalbreite", "rechtsbuendig", "ref", "reference", "referenz", "referieren", "referral", "referraldate", "register", "registrierefelder", "reservefloat", "reset", "resetmarking", "resetnumber", "resettextcontent", "rightaligned", "roemischezahlen", "romannumerals", "rotate", "ruecksetzten", "ruecksetztenbeschriftung", "rumpfweite", "satzbreite", "satzhoehe", "scale", "schreibezumregister", "schreibezurliste", "schreibezurreferenzliste", "schreibezwischenliste", "screen", "section", "seeregister", "seite", "seitenreferenz", "seitenummer", "selectblocks", "selectpaper", "selectversion", "setnumber", "settext", "settextcontent", "settextvariable", "setupalign", "setupanswerarea", "setuparranging", "setupbackground", "setupbackgrounds", "setupblackrules", "setupblank", "setupblock", "setupbodyfont", "setupbodyfontenvironment", "setupbottom", "setupbottomtexts", "setupbuffer", "setupbuttons", "setupcapitals", "setupcaption", "setupcaptions", "setupclipping", "setupcolor", "setupcolors", "setupcolumns", "setupcolumnset", "setupcolumnsetlines", "setupcolumnsetstart", "setupcombinations", "setupcombinedlist", "setupcomment", "setupdescriptions", "setupenumerations", "setupexternalfigures", "setupfield", "setupfields", "setupfillinlines", "setupfillinrules", "setupfloat", "setupfloats", "setupfloatsplitting", "setupfonthandling", "setupfontsynonym", "setupfooter", "setupfootertexts", "setupfootnotedefinition", "setupfootnotes", "setupforms", "setupformulas", "setupframed", "setupframedtexts", "setuphead", "setupheader", "setupheadertexts", "setupheadnumber", "setupheads", "setupheadtext", "setuphyphenmark", "setupindentedtext", "setupindenting", "setupinmargin", "setupinteraction", "setupinteractionbar", "setupinteractionmenu", "setupinteractionscreen", "setupinterlinespace", "setupinterlinespace2", "setupitemgroup", "setupitems", "setuplabeltext", "setuplanguage", "setuplayout", "setuplegend", "setuplinenumbering", "setuplines", "setuplinewidth", "setuplist", "setuplistalternative", "setupmakeup", "setupmarginblocks", "setupmarginrules", "setupmarking", "setupmathalignment", "setupnarrower", "setupnumber", "setupnumbering", "setupoppositeplacing", "setupoutput", "setuppagenumber", "setuppagenumbering", "setuppagetransitions", "setuppalet", "setuppaper", "setuppapersize", "setupparagraphnumbering", "setupparagraphs", "setupplacement", "setuppositioning", "setupprofiles", "setupprograms", "setuppublications", "setupquote", "setupreferencelist", "setupreferencing", "setupregister", "setuprotate", "setuprule", "setupscreens", "setupsection", "setupsectionblock", "setupsorting", "setupspacing", "setupstartstop", "setupstrut", "setupsubpagenumber", "setupsymbolset", "setupsynchronization", "setupsynchronizationbar", "setupsynonyms", "setupsystem", "setuptab", "setuptables", "setuptabulate", "setuptext", "setuptextposition", "setuptextrules", "setuptexttexts", "setuptextvariable", "setupthinrules", "setuptolerance", "setuptop", "setuptoptexts", "setuptype", "setuptyping", "setupunderbar", "setupurl", "setupversions", "setupwhitespace", "showbodyfont", "showbodyfontenvironment", "showcolor", "showcolorgroup", "showexternalfigures", "showfields", "showframe", "showgrid", "showlayout", "showmakeup", "showpalet", "showprint", "showsetups", "showstruts", "showsymbolset", "someline", "somewhere", "sort", "space", "spalte", "spatium", "spiegeln", "splitfloat", "sprache", "startabbildung", "startalignment", "startausrichtung", "startbackground", "startbuffer", "startcolor", "startcolumnmakeup", "startcolumns", "startcolumnset", "startcombination", "startcomment", "startcomponent", "startdescription", "startdocument", "startdokument", "startenger", "startenumeration", "startenvironment", "startfact", "startfarbe", "startfigure", "startfloattext", "startformula", "startframedtext", "startgegenueber", "startglobal", "startgrosserdurchschuss", "starthiding", "starthintergrund", "startinteractionmenu", "startitemgroup", "startkleinerdurchschuss", "startkodierung", "startkombination", "startkomponente", "startlegend", "startline", "startlinecorrection", "startlinenumbering", "startlines", "startlocal", "startlocalenvironment", "startlocalfootnotes", "startlokal", "startlokalefussnoten", "startmakeup", "startmarginalblock", "startmarginallinie", "startmarginblock", "startmarginrule", "startnamemakeup", "startnarrower", "startopposite", "startoverlay", "startoverview", "startpacked", "startparagraph", "startpositionieren", "startpositioning", "startpostponing", "startproduct", "startprodukt", "startprofil", "startprofile", "startproject", "startprojekt", "startquotation", "startraster", "startregister", "startspalten", "startsymbolset", "startsynchronisation", "startsynchronization", "starttabelle", "starttabellen", "starttable", "starttables", "starttabulate", "starttext", "starttextlinie", "starttextrule", "starttyping", "startueberblick", "startumbruch", "startumgebung", "startunpacked", "startversion", "startzeile", "startzeilen", "startzeilenkorrektur", "startzeilennumerierung", "startzitat", "stelleabsaetzeein", "stelleabsatznummerierungein", "stelleabschnittein", "stelleabschnittsblockein", "stelleanordnenein", "stelleaufzaehlungenein", "stelleausgabeein", "stelleausrichtungein", "stelleausschnittein", "stellebeschreibungein", "stellebeschriftungein", "stellebilderunterschriftein", "stellebildunterschriftein", "stellebindestrichein", "stelleblankoein", "stelleblockein", "stelledrehenein", "stelleduennerumrissein", "stelleeinziehenein", "stelleengerein", "stelleexterneabbildungenein", "stellefarbeein", "stellefarbenein", "stellefeldein", "stellefelderin", "stellefliesstextein", "stellefliesstextumgebungein", "stelleformelnein", "stellefussnotendefinitionein", "stellefussnotenein", "stellefusszeileein", "stellefusszeilentextein", "stellegefuelltesrechteckein", "stellegefuelltezeileein", "stellegegenueberplatzierenein", "stellegleitobjekteein", "stellegleitobjektein", "stellehintergruendeein", "stellehintergrundein", "stelleinmarginalieein", "stelleinteraktionein", "stelleinteraktionsbalkenein", "stelleinteraktionsbildschirmein", "stelleinteraktionsmenueein", "stelleknopfein", "stellekombinationein", "stellekommentarein", "stellekopfzahlein", "stellekopfzeileein", "stellekopfzeilentextein", "stellelabeltextein", "stellelayoutein", "stellelegendeein", "stellelinienbreiteein", "stellelisteein", "stellemarginalblockein", "stellemarginallinieein", "stellenobenein", "stellenummerierungein", "stellepaletteein", "stellepapierformatein", "stelleplatziegeteiltegleitobjekt", "stellepositionierenein", "stellepostenein", "stelleprofilein", "stelleprogrammein", "stellepublikationein", "stellepufferein", "stellerasterein", "stellerechteckein", "stellereferenzierenein", "stellereferenzlisteein", "stelleregisterein", "stelleseitenkommentarein", "stelleseitennummerein", "stelleseitennummeriernungein", "stelleseitenuebergangein", "stellesortierenein", "stellespaltenein", "stellespatiumein", "stellespracheein", "stellesymbolsetein", "stellesynchronisationein", "stellesynchronisationsbalkenein", "stellesynonymein", "stellesystemein", "stelletabein", "stelletabellenein", "stelletabulatorein", "stelletextein", "stelletextobenein", "stelletexttexteein", "stelletextumrissein", "stelletextuntenein", "stelletipein", "stelletippenein", "stelletoleranzein", "stelleueberschriftein", "stelleueberschriftenein", "stelleueberschrifttextein", "stelleumbruchein", "stelleumrahmtein", "stelleumrahmtetexteein", "stelleuntenein", "stelleunterseitennummerein", "stelleunterstreichenein", "stelleurlein", "stelleversalienein", "stelleversionein", "stellezeilenabstandein", "stellezeilenein", "stellezeilennumerierungein", "stellezitierenein", "stellezusammengestelltelisteein", "stellezwischenraumein", "stopalignment", "stopausrichtung", "stopbackground", "stopbuffer", "stopcolor", "stopcolumnmakeup", "stopcolumns", "stopcolumnset", "stopcombination", "stopcomment", "stopcomponent", "stopdescription", "stopdocument", "stopdokument", "stopenger", "stopenumeration", "stopenvironment", "stopfact", "stopfarbe", "stopfigure", "stopfloattext", "stopformula", "stopframedtext", "stopgegenueber", "stopglobal", "stopgrosserdurchschuss", "stophiding", "stophintergrund", "stopinteractionmenu", "stopitemgroup", "stopkleinerdurchschuss", "stopkodierung", "stopkombination", "stopkomponente", "stoplegend", "stopline", "stoplinecorrection", "stoplinenumbering", "stoplines", "stoplocal", "stoplocalenvironment", "stoplocalfootnotes", "stoplokal", "stoplokalefussnoten", "stopmakeup", "stopmarginalblock", "stopmarginallinie", "stopmarginblock", "stopmarginrule", "stopnamemakeup", "stopnarrower", "stopopposite", "stopoverlay", "stopoverview", "stoppacked", "stopparagraph", "stoppositionieren", "stoppositioning", "stoppostponing", "stopproduct", "stopprodukt", "stopprofil", "stopprofile", "stopproject", "stopprojekt", "stopquotation", "stopraster", "stopspalten", "stopsymbolset", "stopsynchronisation", "stopsynchronization", "stoptabelle", "stoptabellen", "stoptable", "stoptables", "stoptabulate", "stoptext", "stoptextlinie", "stoptextrule", "stoptyping", "stopueberblick", "stopumbruch", "stopumgebung", "stopunpacked", "stopversion", "stopzeile", "stopzeilen", "stopzeilenkorrektur", "stopzeilennumerierung", "stopzitat", "stretched", "sub", "subject", "subpagenumber", "subsection", "subsubject", "subsubsection", "subsubsubject", "switchtobodyfont", "switchtorawfont", "sym", "symbol", "synchronisationsbalken", "synchronisieren", "synchronizationbar", "synchronize", "synonym", "tab", "teilegleitobjekt", "testcolumn", "testpage", "tex", "textbreite", "texthoehe", "textlinie", "textreference", "textreferenz", "textrule", "textvariable", "thinrule", "thinrules", "tief", "tiho", "tip", "tippedatei", "tippen", "tippepuffer", "title", "tooltip", "translate", "txt", "typ", "type", "typebuffer", "typefile", "ueber", "ueberschrifttext", "uebersetzten", "umgebung", "umrahmt", "unbekant", "underbar", "underbars", "unterformelnummer", "useURL", "useXMLfilter", "useblocks", "usecommands", "usedirectory", "useencoding", "useexternaldocument", "useexternalfigure", "useexternalfile", "useexternalfiles", "useexternalsoundtrack", "usemodule", "usereferences", "usespecials", "usesymbols", "usetypescript", "usetypescriptfile", "verbergebloecke", "vergleichefarbengruppe", "vergleichepalette", "verknuepfebeschriftung", "verknuepfedokument", "verknuepfregister", "version", "verweis", "verweisdatum", "verwendeJSscript", "verwendeURL", "verwendebefehl", "verwendebloecke", "verwendeexteresdokument", "verwendeexterneabbildung", "verwendeexternedatei", "verwendeexternedateien", "verwendeexternestonstueck", "verwendemodul", "verwendemodule", "verwendereferenzen", "verwendesymbole", "verwendeurl", "vl", "volleswort", "von", "waehlebloeckeaus", "waehlepapieraus", "waehleversionaus", "wechselezumfliesstext", "weekday", "whitespace", "wiederholen", "wochentag", "wohnort", "wordright", "wortrechts", "writebetweenlist", "writetolist", "writetoreferencelist", "writetoregister", "zeigedruck", "zeigeeinstellungen", "zeigeexterneabbildungen", "zeigefarbe", "zeigefarbengruppe", "zeigefelder", "zeigefliesstext", "zeigefliesstextumgebung", "zeigegitter", "zeigelayout", "zeigepalette", "zeigerahmen", "zeigestruts", "zeigeumbruch", "zentriert", "ziffern", "zitat", "zitieren", "zu", "zurbox", "zurseite", "zwischenraum" }, ["en"]={ "CAP", "Cap", "Caps", "Character", "Characters", "MONTH", "Numbers", "Romannumerals", "WEEKDAY", "WORD", "WORDS", "Word", "Words", "about", "adaptlayout", "adding", "appendix", "arg", "at", "atleftmargin", "atpage", "atrightmargin", "background", "backspace", "blackrule", "blackrules", "blank", "bookmark", "bottomdistance", "bottomheight", "bottomspace", "but", "button", "bypassblocks", "cap", "chapter", "character", "characters", "chem", "clip", "clonefield", "color", "colorbar", "colorvalue", "column", "comment", "comparecolorgroup", "comparepalet", "completecombinedlist", "completelistoffloats", "completelistofsorts", "completelistofsynonyms", "completepagenumber", "completeregister", "component", "convertnumber", "copyfield", "correctwhitespace", "coupledocument", "coupledregister", "couplemarking", "couplepage", "couplepaper", "coupleregister", "crlf", "currentdate", "currentheadnumber", "cutspace", "date", "decouplemarking", "decrementnumber", "define", "defineaccent", "defineblank", "defineblock", "definebodyfont", "definebodyfontDEF", "definebodyfontREF", "definebodyfontenvironment", "definebuffer", "definecharacter", "definecolor", "definecolorgroup", "definecolumnbreak", "definecolumnset", "definecombination", "definecombinedlist", "definecommand", "defineconversion", "definedescription", "definedfont", "defineenumeration", "definefield", "definefieldstack", "definefiguresymbol", "definefloat", "definefont", "definefontfeature", "definefonthandling", "definefontstyle", "definefontsynonym", "defineframed", "defineframedtext", "definehbox", "definehead", "defineindentedtext", "defineinmargin", "defineinteractionmenu", "defineitemgroup", "definelabel", "definelayer", "definelayout", "definelist", "definelogo", "definemainfield", "definemakeup", "definemarking", "definemathalignment", "defineoutput", "defineoverlay", "definepagebreak", "definepalet", "definepapersize", "defineparagraphs", "defineplacement", "defineprofile", "defineprogram", "definerawfont", "definereference", "definereferenceformat", "definereferencelist", "defineregister", "definerule", "definesection", "definesectionblock", "definesorting", "definestartstop", "definestyle", "definesubfield", "definesymbol", "definesynonyms", "definetabletemplate", "definetabulate", "definetext", "definetextbackground", "definetextposition", "definetextvariable", "definetype", "definetypeface", "definetyping", "defineversion", "description", "determineheadnumber", "determinelistcharacteristics", "determineregistercharacteristics", "dimension", "disableinteractionmenu", "domicile", "donttest", "edgedistance", "edgewidth", "emptylines", "enumeration", "environment", "externalfigure", "fact", "field", "fieldstack", "fillinfield", "fillinline", "fillinrules", "fillintext", "fitfield", "fixedspace", "fixedspaces", "followprofile", "followprofileversion", "followversion", "footerdistance", "footerheight", "footnote", "footnotetext", "forceblocks", "formulanumber", "fraction", "framed", "framedtext", "from", "getbuffer", "getmarking", "getnumber", "godown", "goto", "gotobox", "gotopage", "graycolor", "greyvalue", "grid", "hairline", "head", "headerdistance", "headerheight", "headlevel", "headnumber", "headsym", "headtext", "hideblocks", "high", "hl", "immediatebetweenlist", "immediatetolist", "in", "incrementnumber", "indentation", "indenting", "inframed", "infull", "ininner", "inleft", "inleftedge", "inleftmargin", "inline", "inmaframed", "inmargin", "inneredgedistance", "inneredgewidth", "innermargindistance", "innermarginwidth", "inothermargin", "inouter", "inright", "inrightedge", "inrightmargin", "installlanguage", "interactionbar", "interactionbuttons", "interactionmenu", "item", "items", "its", "keepblocks", "label", "labeling", "labels", "labeltext", "language", "leftaligned", "leftedgedistance", "leftedgewidth", "leftmargindistance", "leftmarginwidth", "leg", "linethickness", "listheight", "listlength", "listsymbol", "listwidth", "loadsorts", "loadsynonyms", "logfields", "lohi", "low", "maframed", "mainlanguage", "makeupheight", "makeupwidth", "mapfontsize", "mar", "margindistance", "marginrule", "margintext", "margintitle", "marginwidth", "marginword", "marking", "markversion", "mathematics", "mediaeval", "menubutton", "midaligned", "mirror", "month", "moveformula", "moveongrid", "movesidefloat", "name", "navigating", "nextsection", "nocap", "nodimension", "noheaderandfooterlines", "noindenting", "nolist", "nomarking", "nomoreblocks", "nomorefiles", "nop", "nospace", "note", "notopandbottomlines", "nowhitespace", "numberofsubpages", "numbers", "outeredgedistance", "outeredgewidth", "outermargindistance", "outermarginwidth", "overbar", "overbars", "overstrike", "overstrikes", "packed", "page", "pagedepth", "pagenumber", "pageoffset", "pagereference", "paperheight", "paperwidth", "paragraph", "part", "periods", "placebookmarks", "placecombinedlist", "placefloat", "placefootnotes", "placeformula", "placeheadnumber", "placeheadtext", "placelegend", "placelist", "placelistoffloats", "placelistofsorts", "placelistofsynonyms", "placelocalfootnotes", "placelogos", "placeongrid", "placeontopofeachother", "placepagenumber", "placerawlist", "placereferencelist", "placeregister", "placerule", "placesidebyside", "placesubformula", "placetextvariable", "position", "positiontext", "printpaperheight", "printpaperwidth", "processblocks", "processpage", "product", "program", "project", "publication", "quotation", "quote", "ran", "redo", "ref", "reference", "referral", "referraldate", "referring", "register", "remark", "reservefloat", "reset", "resetmarking", "resetnumber", "resettextcontent", "rightaligned", "rightedgedistance", "rightedgewidth", "rightmargindistance", "rightmarginwidth", "romannumerals", "rotate", "scale", "screen", "section", "seeregister", "selectblocks", "selectpaper", "selectversion", "setnumber", "settextcontent", "settextvariable", "setupalign", "setupanswerarea", "setuparranging", "setupbackground", "setupbackgrounds", "setupblackrules", "setupblank", "setupblock", "setupbodyfont", "setupbodyfontenvironment", "setupbottom", "setupbottomtexts", "setupbuffer", "setupbuttons", "setupcapitals", "setupcaption", "setupcaptions", "setupclipping", "setupcolor", "setupcolors", "setupcolumns", "setupcolumnset", "setupcolumnsetlines", "setupcolumnsetstart", "setupcombinations", "setupcombinedlist", "setupcomment", "setupdescriptions", "setupenumerations", "setupexternalfigures", "setupfield", "setupfields", "setupfillinlines", "setupfillinrules", "setupfloat", "setupfloats", "setupfloatsplitting", "setupfonthandling", "setupfontsynonym", "setupfooter", "setupfootertexts", "setupfootnotedefinition", "setupfootnotes", "setupforms", "setupformulae", "setupformulas", "setupframed", "setupframedtexts", "setuphead", "setupheader", "setupheadertexts", "setupheadnumber", "setupheads", "setupheadtext", "setuphyphenmark", "setupindentedtext", "setupindenting", "setupinmargin", "setupinteraction", "setupinteractionbar", "setupinteractionmenu", "setupinteractionscreen", "setupinterlinespace", "setupinterlinespace2", "setupitemgroup", "setupitemizations", "setupitems", "setuplabeltext", "setuplanguage", "setuplayout", "setuplegend", "setuplinenumbering", "setuplines", "setuplinewidth", "setuplist", "setuplistalternative", "setupmakeup", "setupmarginblocks", "setupmarginrules", "setupmarking", "setupmathalignment", "setupnarrower", "setupnumber", "setupnumbering", "setupoppositeplacing", "setupoutput", "setuppagecomment", "setuppagenumber", "setuppagenumbering", "setuppagetransitions", "setuppalet", "setuppaper", "setuppapersize", "setupparagraphnumbering", "setupparagraphs", "setupplacement", "setuppositioning", "setupprofiles", "setupprograms", "setuppublications", "setupquote", "setupreferencelist", "setupreferencing", "setupregister", "setuprotate", "setuprule", "setupscreens", "setupsection", "setupsectionblock", "setupsorting", "setupspacing", "setupstartstop", "setupstrut", "setupsubpagenumber", "setupsymbolset", "setupsynchronization", "setupsynchronizationbar", "setupsynonyms", "setupsystem", "setuptab", "setuptables", "setuptabulate", "setuptext", "setuptextbackground", "setuptextposition", "setuptextrules", "setuptexttexts", "setuptextvariable", "setupthinrules", "setuptolerance", "setuptop", "setuptoptexts", "setuptype", "setuptyping", "setupunderbar", "setupurl", "setupversions", "setupwhitespace", "showbodyfont", "showbodyfontenvironment", "showcolor", "showcolorgroup", "showexternalfigures", "showfields", "showframe", "showgrid", "showlayout", "showmakeup", "showpalet", "showprint", "showsetups", "showstruts", "showsymbolset", "someline", "somewhere", "sort", "space", "splitfloat", "startalignment", "startbackground", "startbuffer", "startcoding", "startcolor", "startcolumnmakeup", "startcolumns", "startcolumnset", "startcombination", "startcomment", "startcomponent", "startdescription", "startdocument", "startenumeration", "startenvironment", "startfact", "startfigure", "startfloattext", "startformula", "startframed", "startframedtext", "startglobal", "starthiding", "startinteractionmenu", "startitemgroup", "startlegend", "startline", "startlinecorrection", "startlinenumbering", "startlines", "startlocal", "startlocalenvironment", "startlocalfootnotes", "startmakeup", "startmarginblock", "startmarginrule", "startnamemakeup", "startnarrower", "startopposite", "startoverlay", "startoverview", "startpacked", "startparagraph", "startpositioning", "startpostponing", "startproduct", "startprofile", "startproject", "startquotation", "startraster", "startregister", "startsymbolset", "startsynchronization", "starttable", "starttables", "starttabulate", "starttext", "starttextbackground", "starttextrule", "starttyping", "startunpacked", "startversion", "stopalignment", "stopbackground", "stopbuffer", "stopcoding", "stopcolor", "stopcolumnmakeup", "stopcolumns", "stopcolumnset", "stopcombination", "stopcomment", "stopcomponent", "stopdescription", "stopdocument", "stopenumeration", "stopenvironment", "stopfact", "stopfigure", "stopfloattext", "stopformula", "stopframed", "stopframedtext", "stopglobal", "stophiding", "stopinteractionmenu", "stopitemgroup", "stoplegend", "stopline", "stoplinecorrection", "stoplinenumbering", "stoplines", "stoplocal", "stoplocalenvironment", "stoplocalfootnotes", "stopmakeup", "stopmarginblock", "stopmarginrule", "stopnamemakeup", "stopnarrower", "stopopposite", "stopoverlay", "stopoverview", "stoppacked", "stopparagraph", "stoppositioning", "stoppostponing", "stopproduct", "stopprofile", "stopproject", "stopquotation", "stopraster", "stopsymbolset", "stopsynchronization", "stoptable", "stoptables", "stoptabulate", "stoptext", "stoptextbackground", "stoptextrule", "stoptyping", "stopunpacked", "stopversion", "stretched", "sub", "subformulanumber", "subject", "subpagenumber", "subsection", "subsubject", "subsubsection", "subsubsubject", "switchtobodyfont", "switchtorawfont", "sym", "symbol", "symoffset", "synchronizationbar", "synchronize", "synonym", "tab", "testcolumn", "testpage", "tex", "textheight", "textreference", "textrule", "textvariable", "textwidth", "thinrule", "thinrules", "title", "tooltip", "topdistance", "topheight", "topspace", "totalnumberofpages", "translate", "txt", "typ", "type", "typebuffer", "typefile", "underbar", "underbars", "unitmeaning", "unknown", "useJSscripts", "useURL", "useXMLfilter", "useblocks", "usecommands", "usedirectory", "useencoding", "useexternaldocument", "useexternalfigure", "useexternalfile", "useexternalfiles", "useexternalsoundtrack", "usemodule", "usemodules", "usereferences", "usespecials", "usesymbols", "usetypescript", "usetypescriptfile", "useurl", "version", "vl", "weekday", "whitespace", "wordright", "writebetweenlist", "writetolist", "writetoreferencelist", "writetoregister" }, ["fr"]={ "CAP", "Cap", "Caps", "Caractere", "Caracteres", "Character", "Characters", "Chiffresromains", "JOURSEMAINE", "MOIS", "MONTH", "MOT", "MOTS", "Mot", "Mots", "Numeros", "Romannumerals", "WEEKDAY", "WORD", "WORDS", "Word", "Words", "a", "about", "adaptedisposition", "adaptlayout", "affectenumero", "affectevariabletexte", "ajustechamp", "alaligne", "alapage", "aligneadroite", "aligneagauche", "aligneaumilieu", "appendix", "arg", "arriereplan", "at", "atleftmargin", "atpage", "atrightmargin", "background", "baha", "barrecouleur", "barreinteraction", "barresynchronisation", "bas", "blackrule", "blackrules", "blank", "bookmark", "bouton", "boutonmenu", "boutonsinteraction", "but", "button", "bypassblocks", "cacheblocs", "cap", "caractere", "caracteres", "champ", "changepolicebrute", "changepolicecorps", "chapter", "character", "characters", "chem", "chiffresromains", "citation", "citer", "clip", "clonechamp", "clonefield", "colonne", "color", "column", "comment", "commentaire", "comparecolorgroup", "comparegroupecouleur", "comparepalet", "comparepalette", "completecombinedlist", "completelistoffloats", "completelistofsorts", "completelistofsynonyms", "completenumeropage", "completeregister", "completeregistre", "composant", "composeenalinea", "concernant", "convertitnumero", "convertnumber", "copitchamp", "copyfield", "correctwhitespace", "corrigeespaceblanc", "couleur", "couleurgrise", "coupledocument", "coupledregister", "couplemarking", "couplemarquage", "couplepage", "couplepaper", "couplepapier", "coupleregister", "coupleregistre", "crlf", "currentdate", "currentheadnumber", "cutspace", "dactylographier", "dans", "dansautremarge", "dansborddroit", "dansbordgauche", "dansdroite", "dansgauche", "dansmarge", "dansmargedroite", "dansmargegauche", "date", "datecourante", "daterecommandation", "de", "decouplemarking", "decouplemarquage", "decrementenumero", "define", "defineblank", "defineblock", "definebodyfont", "definebodyfontDEF", "definebodyfontREF", "definebodyfontenvironment", "definebuffer", "definecolor", "definecolorgroup", "definecombination", "definecombinedlist", "defineconversion", "definedescription", "definedfont", "defineenumeration", "definefield", "definefieldstack", "definefiguresymbol", "definefloat", "definefont", "definefontfeature", "definefonthandling", "definefontsynonym", "defineframed", "defineframedtext", "definehead", "defineindentedtext", "defineinteractionmenu", "defineitemgroup", "definelabel", "definelist", "definelogo", "definemakeup", "definemarking", "definemathalignment", "defineoutput", "defineoverlay", "definepalet", "definepapersize", "defineparagraphs", "defineplacement", "defineprofile", "defineprogram", "definereference", "definereferenceformat", "definereferencelist", "defineregister", "definesection", "definesectionblock", "definesorting", "definestartstop", "definesubfield", "definesymbol", "definesynonyms", "definetabletemplate", "definetabulate", "definetext", "definetype", "definetypeface", "definetyping", "defineversion", "definicaractere", "definit", "definitaccent", "definitbloc", "definitblocsection", "definitbuffer", "definitcalque", "definitchamp", "definitchampprincipal", "definitcommande", "definitconversion", "definitcouleur", "definitdactylo", "definitdansmarge", "definitdemarrestoppe", "definitdescription", "definitdisposition", "definitenumeration", "definitenvironnementpolicecorps", "definitetiquette", "definitflottant", "definitformatreference", "definitgroupecouleur", "definithbox", "definitjeucolonne", "definitliste", "definitlisteimbriquee", "definitlistereference", "definitlogo", "definitmakeup", "definitmarquage", "definitmenuinteraction", "definitnotepdp", "definitpalette", "definitparagraphes", "definitpilechamp", "definitpolice", "definitpolicebrute", "definitpolicecorps", "definitpositiontexte", "definitprofil", "definitprogramme", "definitreference", "definitregistre", "definitregle", "definitrevetement", "definitsautdecolonne", "definitsautdepage", "definitsection", "definitsortie", "definitsouschamp", "definitstyle", "definitstylepolice", "definitsymbole", "definitsymbolefigure", "definitsynonymepolice", "definitsynonymes", "definittabulation", "definittaillepapier", "definittete", "definittexte", "definittrametableau", "definittri", "definittype", "definitvariabletexte", "definitversion", "definitvide", "demarrealignement", "demarrearriereplan", "demarreblocmarge", "demarrecitation", "demarreciter", "demarrecodage", "demarrecolonnes", "demarrecombinaison", "demarrecompoetroite", "demarrecomposant", "demarrecorrectionligne", "demarrecouleur", "demarredegroupe", "demarredocument", "demarreenvironement", "demarrefigure", "demarreglobal", "demarregroupe", "demarrejeucolonne", "demarrejeusymboles", "demarreligne", "demarreligneregleetexte", "demarrelignes", "demarrelocal", "demarremakeup", "demarremargereglee", "demarrenotespdplocales", "demarrenumerotationligne", "demarreopposition", "demarrepositionnement", "demarreproduit", "demarreprofil", "demarreprojet", "demarreraster", "demarrerevetement", "demarresynchronisation", "demarretableau", "demarretableaux", "demarretexte", "demarreversion", "demarrevuedensemble", "deplaceformule", "deplacesurgrille", "description", "determinecaracteristiqueliste", "determinecaracteristiquesregistre", "determineheadnumber", "determinelistcharacteristics", "determinenumerotete", "dimension", "disableinteractionmenu", "distancebord", "distanceborddroit", "distancebordgauche", "distanceentete", "distanceinf", "distancemarge", "distancemargedroite", "distancemargegauche", "distancepdp", "distancesup", "domicile", "echelle", "ecran", "ecritdansliste", "ecritdanslistereference", "ecritentreliste", "ecritregistre", "el", "element", "elements", "emptylines", "enumeration", "environement", "espace", "espaceblanc", "espacefixe", "espaceinf", "espacesfixes", "espacesup", "etiquette", "etiquettes", "etire", "externalfigure", "fait", "faitreference", "fichierdactylo", "field", "fieldstack", "figureexterne", "fillinfield", "fillinline", "fillinrules", "fillintext", "fitfield", "fixedspaces", "followprofile", "followprofileversion", "followversion", "footnote", "footnotetext", "forceblocks", "forceblocs", "fraction", "framed", "framedtext", "from", "gardeblocs", "getbuffer", "getmarking", "getnumber", "godown", "goto", "gotobox", "graycolor", "grid", "grille", "groupe", "hairline", "haut", "hauteureditionpapier", "hauteurentete", "hauteurinf", "hauteurliste", "hauteurmakeup", "hauteurpapier", "hauteurpdp", "hauteursup", "hauteurtexte", "head", "headnumber", "headsym", "headtext", "hideblocks", "high", "hl", "immediatebetweenlist", "immediatetolist", "in", "inconnu", "incrementenumero", "indentation", "indenting", "inframed", "infull", "inhibemenuinteraction", "ininner", "inleft", "inline", "inmargin", "inmframed", "inneredgedistance", "inneredgewidth", "innermargindistance", "innermarginwidth", "inothermargin", "inouter", "inright", "installelangue", "installlanguage", "interactionbar", "interactionbuttons", "item", "items", "its", "joursemaine", "keepblocks", "labeling", "labels", "labeltext", "labeltexte", "language", "langue", "langueprincipale", "largeurbord", "largeurborddroit", "largeurbordgauche", "largeureditionpapier", "largeurligne", "largeurliste", "largeurmakeup", "largeurmarge", "largeurmargedroite", "largeurmargegauche", "largeurpapier", "largeurtexte", "leftaligned", "leg", "ligneh", "lignenoire", "ligneregleetexte", "lignesnoires", "listesymbole", "listsymbol", "llongueurliste", "loadsorts", "loadsynonyms", "logchamp", "logfields", "lohi", "low", "mainlanguage", "mapfontsize", "mar", "margereglee", "marginrule", "margintext", "marking", "markversion", "marquage", "marquageversion", "marquepage", "mathematics", "mathematique", "mediaeval", "menuinteraction", "mframed", "midaligned", "mirror", "mois", "month", "montrecadre", "montrechamps", "montrecouleur", "montredisposition", "montreedition", "montreenvironnementpolicecorps", "montrefiguresexternes", "montregrille", "montregroupecouleur", "montrejeusymboles", "montremakeup", "montrepalette", "montrepolicecorps", "montrereglages", "montrestruts", "motdroit", "motmarge", "moveongrid", "movesidefloat", "name", "navigating", "nextsection", "niveautete", "nocap", "noheaderandfooterlines", "noindenting", "nolist", "nomarking", "nombredesouspages", "nombretotaldepages", "nommacro", "nomoreblocks", "nomorefiles", "nop", "nospace", "note", "notepdp", "notopandbottomlines", "nowhitespace", "numbers", "numeroformule", "numeropage", "numeros", "numerosousformule", "numerotete", "numerotetecourant", "obtientmarquage", "oriente", "outeredgedistance", "outeredgewidth", "outermargindistance", "outermarginwidth", "overbar", "overbars", "overstrike", "overstrikes", "packed", "page", "pagedepth", "pagedouble", "pageoffset", "pagereference", "paragraph", "part", "pasplusdeblocs", "pasplusdefichiers", "periodes", "periods", "pilechamp", "placebookmarks", "placecombinedlist", "placecoteacote", "placefloat", "placeflottant", "placefootnotes", "placeformula", "placeformule", "placelegend", "placelegende", "placelesunsaudessusdesautres", "placelist", "placeliste", "placelisteinmbriquee", "placelistereference", "placelistoffloats", "placelistofsorts", "placelistofsynonyms", "placelocalfootnotes", "placelogos", "placemarquespages", "placenotespdp", "placenotespdplocales", "placenumeropage", "placenumerotete", "placeongrid", "placeontopofeachother", "placerawlist", "placereferencelist", "placeregister", "placeregistre", "placeregle", "placesidebyside", "placesousformule", "placesubformula", "placesurgrille", "placetextetete", "placevariabletexte", "position", "positionnetexte", "prendbuffer", "processblocks", "processpage", "produit", "program", "programme", "projet", "publication", "qqpart", "quotation", "quote", "ran", "raz", "razmarquage", "raznumero", "recommandation", "ref", "refait", "reference", "referencepage", "referencetexte", "referral", "referraldate", "reflete", "register", "reglealignement", "reglearrangement", "reglearriereplan", "reglearriereplans", "reglebarreinteraction", "reglebarresynchronisation", "reglebloc", "regleblocmarge", "regleblocsection", "regleboutons", "reglebuffer", "reglecapitales", "reglechamp", "reglechamps", "regleclipping", "reglecolonnes", "reglecombinaisons", "reglecommentaire", "reglecommentairepage", "reglecompoetroite", "reglecomposeenalinea", "reglecouleur", "reglecouleurs", "regledactylo", "regledansmarge", "regledemarrestoppe", "regledescriptions", "regledisposition", "regleecraninteraction", "regleecrans", "regleelements", "regleencadre", "regleentete", "regleenumerations", "regleenvironnementpolicecorps", "regleepaisseurligne", "regleespaceblanc", "regleespacement", "regleespacementinterligne", "reglefiguresexternes", "regleflottant", "regleflottants", "regleformulaires", "regleformules", "reglegroupeselements", "regleinf", "regleinteraction", "regleintitule", "regleintitules", "reglejeucolonne", "reglejeusymboles", "reglelabeltexte", "reglelangue", "reglelegende", "reglelignes", "reglelignesnoires", "reglelignesreglestexte", "regleliste", "reglelisteimbriquee", "reglelistereference", "reglemakeup", "reglemargereglee", "reglemarquage", "reglemarquagehyphenation", "reglemenuinteraction", "reglenotepdp", "reglenumero", "reglenumeropage", "reglenumerotation", "reglenumerotationligne", "reglenumerotationpage", "reglenumerotationparagraphe", "reglenumerotete", "regleoriente", "reglepalette", "reglepapier", "regleparagraphes", "reglepdp", "regleplacementopposition", "reglepolicecorps", "reglepositionnement", "reglepositiontexte", "regleprofils", "regleprogrammes", "reglepublications", "reglereferencage", "regleregistre", "regleregle", "regleremplitligne", "regleremplitlignesreglees", "reglesection", "regleseparationflottant", "reglesortie", "reglesouslignage", "reglesousnumeropage", "reglestrut", "reglesup", "reglesynchronisation", "reglesynonymes", "reglesysteme", "regletab", "regletableaux", "regletabulation", "regletaillepapier", "regletete", "regletetes", "regletexte", "regletextesentete", "regletextesinf", "regletextespdp", "regletextessup", "regletextestexte", "regletextetete", "regletolerance", "regletraitsfins", "regletransitionspage", "regletri", "regletype", "regleurl", "reglevariabletexte", "regleversions", "remplitchamp", "remplitligne", "remplitlignesreglees", "remplittexte", "reservefloat", "reset", "resetmarking", "resettextcontent", "retourarriere", "rightaligned", "romannumerals", "rotate", "sansalinea", "sansdimension", "sansespace", "sansespaceblanc", "sanslignesenteteetpdp", "sanslignessupetinf", "sansliste", "sansmarquage", "sanstest", "sauteblocs", "scale", "screen", "section", "seeregister", "selectblocks", "selectionneblocs", "selectionnepapier", "selectionneversion", "selectpaper", "selectversion", "sensunite", "separeflottant", "settext", "settextcontent", "setupalign", "setupanswerarea", "setuparranging", "setupbackground", "setupbackgrounds", "setupblackrules", "setupblank", "setupblock", "setupbodyfont", "setupbodyfontenvironment", "setupbottom", "setupbottomtexts", "setupbuffer", "setupbuttons", "setupcapitals", "setupcaption", "setupcaptions", "setupclipping", "setupcolor", "setupcolors", "setupcolumns", "setupcolumnsetlines", "setupcolumnsetstart", "setupcombinations", "setupcombinedlist", "setupcomment", "setupdescriptions", "setupenumerations", "setupexternalfigures", "setupfield", "setupfields", "setupfillinlines", "setupfillinrules", "setupfloat", "setupfloats", "setupfloatsplitting", "setupfonthandling", "setupfontsynonym", "setupfooter", "setupfootertexts", "setupfootnotedefinition", "setupfootnotes", "setupforms", "setupformulas", "setupframed", "setupframedtexts", "setuphead", "setupheader", "setupheadertexts", "setupheadnumber", "setupheads", "setupheadtext", "setuphyphenmark", "setupindentedtext", "setupindenting", "setupinmargin", "setupinteraction", "setupinteractionbar", "setupinteractionmenu", "setupinteractionscreen", "setupinterlinespace", "setupinterlinespace2", "setupitemgroup", "setupitems", "setuplabeltext", "setuplanguage", "setuplayout", "setuplegend", "setuplinenumbering", "setuplines", "setuplinewidth", "setuplist", "setuplistalternative", "setupmakeup", "setupmarginblocks", "setupmarginrules", "setupmarking", "setupmathalignment", "setupnarrower", "setupnumbering", "setupoppositeplacing", "setupoutput", "setuppagenumber", "setuppagenumbering", "setuppagetransitions", "setuppalet", "setuppaper", "setuppapersize", "setupparagraphnumbering", "setupparagraphs", "setupplacement", "setuppositioning", "setupprofiles", "setupprograms", "setuppublications", "setupquote", "setupreferencelist", "setupreferencing", "setupregister", "setuprotate", "setupscreens", "setupsection", "setupsectionblock", "setupsorting", "setupspacing", "setupstrut", "setupsubpagenumber", "setupsymbolset", "setupsynchronization", "setupsynchronizationbar", "setupsynonyms", "setupsystem", "setuptab", "setuptables", "setuptabulate", "setuptext", "setuptextrules", "setuptexttexts", "setupthinrules", "setuptolerance", "setuptop", "setuptoptexts", "setuptype", "setuptyping", "setupunderbar", "setupurl", "setupversions", "setupwhitespace", "showbodyfont", "showbodyfontenvironment", "showcolor", "showcolorgroup", "showexternalfigures", "showfields", "showframe", "showgrid", "showlayout", "showmakeup", "showpalet", "showprint", "showsetups", "showstruts", "showsymbolset", "someline", "somewhere", "sort", "sousnumeropage", "space", "splitfloat", "startalignment", "startbackground", "startbuffer", "startcolor", "startcolumnmakeup", "startcolumns", "startcombination", "startcomment", "startcomponent", "startdescription", "startdocument", "startenumeration", "startenvironment", "startfact", "startfigure", "startfloattext", "startformula", "startframedtext", "starthiding", "startinteractionmenu", "startitemgroup", "startlegend", "startline", "startlinecorrection", "startlinenumbering", "startlines", "startlocal", "startlocalenvironment", "startlocalfootnotes", "startmakeup", "startmarginblock", "startmarginrule", "startnamemakeup", "startnarrower", "startopposite", "startoverlay", "startoverview", "startpacked", "startparagraph", "startpositioning", "startpostponing", "startproduct", "startprofile", "startproject", "startquotation", "startregister", "startsymbolset", "startsynchronization", "starttable", "starttables", "starttabulate", "starttextrule", "starttyping", "startunpacked", "startversion", "stopalignment", "stopbackground", "stopbuffer", "stopcolor", "stopcolumnmakeup", "stopcolumns", "stopcombination", "stopcomment", "stopcompoetroite", "stopcomponent", "stopdescription", "stopdocument", "stopenumeration", "stopenvironment", "stopfact", "stopfigure", "stopfloattext", "stopformula", "stopframedtext", "stophiding", "stopinteractionmenu", "stopitemgroup", "stoplegend", "stopline", "stoplinecorrection", "stoplinenumbering", "stoplines", "stoplocal", "stoplocalenvironment", "stoplocalfootnotes", "stopmakeup", "stopmarginblock", "stopmarginrule", "stopnamemakeup", "stopnarrower", "stopopposite", "stopoverlay", "stopoverview", "stoppacked", "stopparagraph", "stoppealignement", "stoppearriereplan", "stoppeblocmarge", "stoppecitation", "stoppecodage", "stoppecolonnes", "stoppecombinaison", "stoppecomposant", "stoppecorrectionligne", "stoppecouleur", "stoppedegroupe", "stoppedocument", "stoppeenvironement", "stoppeglobal", "stoppegroupe", "stoppejeucolonne", "stoppeligne", "stoppeligneregleetexte", "stoppelignes", "stoppelocal", "stoppemakeup", "stoppemargereglee", "stoppenotespdplocales", "stoppenumerotationligne", "stoppeopposition", "stoppepositionnement", "stoppeproduit", "stoppeprofil", "stoppeprojet", "stopperaster", "stopperevetement", "stoppesynchronisation", "stoppetableau", "stoppetableaux", "stoppetexte", "stoppeversion", "stoppevuedensemble", "stoppositioning", "stoppostponing", "stopproduct", "stopprofile", "stopproject", "stopquotation", "stopsymbolset", "stopsynchronization", "stoptable", "stoptables", "stoptabulate", "stoptextrule", "stoptyping", "stopunpacked", "stopversion", "stretched", "sub", "subject", "subsection", "subsubject", "subsubsection", "subsubsubject", "suggestion", "suivantprofil", "suivantversion", "suivantversionprofil", "switchtobodyfont", "sym", "symbol", "symbole", "synchronise", "synchronizationbar", "synchronize", "synonym", "tab", "tapebuffer", "testcolumn", "testpage", "tete", "tex", "textemarge", "textenotepdp", "textetete", "textreference", "textrule", "thinrule", "thinrules", "title", "titremarge", "tooltip", "traduire", "traiteblocs", "traitepage", "traitfin", "traitsfins", "translate", "txt", "typ", "type", "typebuffer", "typefile", "underbar", "underbars", "uneligne", "useURL", "useXMLfilter", "useblocks", "usecommands", "usedirectory", "useencoding", "useexternaldocument", "useexternalfigure", "useexternalfile", "useexternalfiles", "useexternalsoundtrack", "usemodule", "usereferences", "usespecials", "usesymbols", "usetypescript", "usetypescriptfile", "utiliseJSscripts", "utiliseURL", "utiliseblocs", "utilisechemin", "utilisecommandes", "utilisedocumentexterne", "utiliseencodage", "utilisefichierexterne", "utilisefichiersexternes", "utilisefigureexterne", "utilisemodule", "utilisemodules", "utilisepsiteaudioexterne", "utilisereferences", "utilisespecialites", "utilisesymboles", "utiliseurl", "va", "vaalaboite", "vaalapage", "vaenbas", "valeurcouleur", "valeurgris", "variabletexte", "version", "vide", "vl", "weekday", "whitespace", "wordright", "writebetweenlist", "writetolist", "writetoreferencelist", "writetoregister" }, ["it"]={ "CAP", "Cap", "Caps", "Character", "Characters", "GIORNOSETTIMANA", "Lettera", "Lettere", "MESE", "MONTH", "Numeri", "Numeriromani", "PAROLA", "PAROLE", "Parola", "Parole", "Romannumerals", "WEEKDAY", "WORD", "WORDS", "Word", "Words", "about", "accoppiacarta", "accoppiadocumento", "accoppiamarcatura", "accoppiapagina", "accoppiaregistro", "adaptlayout", "adattacampo", "adattalayout", "al", "allineacentro", "allineadestra", "allineasinistra", "altezzacarta", "altezzacartastampa", "altezzacima", "altezzaelenco", "altezzafondo", "altezzaintestazione", "altezzamakeup", "altezzapdp", "altezzatesto", "ambiente", "ampiezzabordo", "ampiezzabordodestro", "ampiezzabordosinistro", "ampiezzacarta", "ampiezzacartastampa", "ampiezzaelenco", "ampiezzamakeup", "ampiezzamargine", "ampiezzamarginedestro", "ampiezzamarginesinistro", "ampiezzatesto", "ap", "apagina", "appendix", "arg", "at", "atleftmargin", "atpage", "atrightmargin", "background", "barracolori", "barrainterazione", "barrasincronizzazione", "bastablocchi", "bastafile", "blackrule", "blackrules", "blank", "bookmark", "but", "button", "bypassblocks", "cambiaafontdeltesto", "campi", "camporiempimento", "cap", "capello", "chapter", "character", "characters", "chem", "chim", "circondato", "citazione", "clip", "clonacampo", "clonefield", "colonna", "color", "colore", "coloregrigio", "column", "comment", "commento", "comparecolorgroup", "comparepalet", "completecombinedlist", "completelistoffloats", "completelistofsorts", "completelistofsynonyms", "completeregister", "componenet", "confrontagruppocolori", "confrontatavolozza", "convertinumero", "convertnumber", "copiacampo", "copyfield", "correctwhitespace", "correggispaziobianco", "coupledocument", "coupledregister", "couplemarking", "couplepage", "couplepaper", "coupleregister", "crlf", "currentdate", "currentheadnumber", "cutspace", "da", "daqualcheparte", "data", "datadioggi", "datareferral", "date", "decouplemarking", "decrementnumber", "define", "defineblank", "defineblock", "definebodyfont", "definebodyfontDEF", "definebodyfontREF", "definebodyfontenvironment", "definebuffer", "definecolor", "definecolorgroup", "definecolumnbreak", "definecombination", "definecombinedlist", "defineconversion", "definedescription", "definedfont", "defineenumeration", "definefield", "definefieldstack", "definefiguresymbol", "definefloat", "definefont", "definefontfeature", "definefonthandling", "definefontsynonym", "defineframed", "defineframedtext", "definehead", "defineindentedtext", "defineinmargin", "defineinteractionmenu", "defineitemgroup", "definelabel", "definelayer", "definelist", "definelogo", "definemakeup", "definemarking", "definemathalignment", "defineoutput", "defineoverlay", "definepagebreak", "definepalet", "definepapersize", "defineparagraphs", "defineplacement", "defineprofile", "defineprogram", "definereference", "definereferenceformat", "definereferencelist", "defineregister", "definesection", "definesectionblock", "definesorting", "definestartstop", "definesubfield", "definesymbol", "definesynonyms", "definetabletemplate", "definetabulate", "definetext", "definetype", "definetypeface", "definetyping", "defineversion", "definisci", "definisciaccento", "definisciambientefontdeltesto", "definisciblocco", "definiscibloccosezione", "definiscibuffer", "definiscicampo", "definiscicampoprincipale", "definiscicapoversi", "definiscicarattere", "definiscicolore", "definiscicomando", "definisciconversione", "definiscidescrizione", "definiscidimensionicarta", "definiscielenco", "definiscielencocombinato", "definiscienumerazione", "definiscietichetta", "definiscifigurasimbolo", "definiscifont", "definiscifontdeltesto", "definiscifontgrezzo", "definisciformatoriferimento", "definiscigruppocolonne", "definiscigruppocolori", "definiscihbox", "definisciincorniciato", "definisciiniziatermina", "definiscilayout", "definiscilinea", "definiscilistariferimenti", "definiscilogo", "definiscimakeup", "definiscimarcatura", "definiscimenuinterazione", "definiscimodellotabella", "definiscioggettomobile", "definisciordinamento", "definiscioutput", "definisciposizionetesto", "definisciprofilo", "definisciprogramma", "definisciregistro", "definisciriferimento", "definiscirigovuoto", "definiscisezione", "definiscisimbolo", "definiscisinonimi", "definiscisinonimofont", "definiscisottocampo", "definiscisovrapposizione", "definiscistackcampi", "definiscistile", "definiscistilefont", "definiscitabulato", "definiscitavolozza", "definiscitesta", "definiscitesto", "definiscitestoincorniciato", "definiscitype", "definiscityping", "definiscivariabiletesto", "definisciversion", "description", "determinacaratteristicheregistro", "determinacarattersticheelenco", "determinanumerotesta", "determineheadnumber", "determinelistcharacteristics", "dimensione", "disabilitamenuinterazione", "disableinteractionmenu", "distanzabordo", "distanzabordodestro", "distanzabordosinistro", "distanzacima", "distanzafondo", "distanzaintestazione", "distanzamargine", "distanzamarginedestro", "distanzamarginesinistro", "distanzapdp", "domicilio", "el", "elaborablocchi", "elaborapagina", "elementi", "elemento", "emptylines", "enumeration", "etichetta", "etichette", "externalfigure", "fatto", "field", "fieldstack", "figuraesterna", "fillinfield", "fillinline", "fillinrules", "fillintext", "fitfield", "fixedspaces", "followprofile", "followprofileversion", "followversion", "fondo", "footnote", "footnotetext", "forceblocks", "forzablocchi", "fraction", "framed", "framedtext", "frazione", "from", "getbuffer", "getmarking", "getnumber", "giornosettimana", "godown", "goto", "gotobox", "graycolor", "grid", "griglia", "hairline", "head", "headnumber", "headsym", "headtext", "hideblocks", "high", "hl", "ignoto", "immediatebetweenlist", "immediatetolist", "impaccato", "impostaallineamento", "impostaambientefontdeltesto", "impostaampiezzariga", "impostabarrainterazione", "impostabarrasincronizzazione", "impostablocchimargine", "impostablocco", "impostabloccosezione", "impostabuffer", "impostacampi", "impostacampo", "impostacapoversi", "impostacaption", "impostacaptions", "impostacima", "impostaclippling", "impostacolonne", "impostacolore", "impostacolori", "impostacombinazioni", "impostacommento", "impostacommentopagina", "impostadefinizionenotepdp", "impostadescrizioni", "impostadimensionicarta", "impostaelementi", "impostaelencazioni", "impostaelenco", "impostaelencocombinato", "impostaenumerazioni", "impostafigureesterne", "impostafondo", "impostafontdeltesto", "impostaforms", "impostaformule", "impostagruppocolonne", "impostaincorniciato", "impostainiziatermina", "impostainmargine", "impostainstestazione", "impostainterazione", "impostainterlinea", "impostalayout", "impostalegenda", "impostalinea", "impostalineemargine", "impostalineenere", "impostalineeriempimento", "impostalineesottili", "impostalineetesto", "impostalingua", "impostalistariferimenti", "impostamaiuscole", "impostamakeup", "impostamarcatura", "impostamenuinterazione", "impostamenzione", "impostanotepdp", "impostanumerazione", "impostanumerazionecapoversi", "impostanumerazionepagina", "impostanumerazionerighe", "impostanumeropagina", "impostanumerosottopagina", "impostanumerotesta", "impostaoggettimobili", "impostaoggettomobile", "impostaordinamento", "impostaoutput", "impostaparranging", "impostapdp", "impostapiustretto", "impostaposizionamento", "impostaposizionamentoopposti", "impostaposizionetesto", "impostaprofili", "impostaprogrammi", "impostapubblicazioni", "impostapulsanti", "impostaregistro", "impostarientro", "impostariferimento", "impostarighe", "impostarigheriempimento", "impostarigovuoto", "impostarotazione", "impostaschermi", "impostaschermointerazione", "impostasegnosillabazione", "impostasetsimboli", "impostasezione", "impostasfondi", "impostasfondo", "impostasincronizzazione", "impostasinonimi", "impostasistema", "impostasottolinea", "impostaspaziatura", "impostaspaziobianco", "impostaspezzamentooggettomobile", "impostastrut", "impostatab", "impostatabelle", "impostatabulato", "impostatavolozza", "impostatesta", "impostateste", "impostatesticima", "impostatestifondo", "impostatestiincorniciati", "impostatestiintestazioni", "impostatestipdp", "impostatesto", "impostatestoetichette", "impostatestointestazioni", "impostatestotesti", "impostatolleranza", "impostatransizionepagina", "impostatype", "impostatyping", "impostaurl", "impostavariabiletesto", "impostaversioni", "in", "inaltromargine", "incorniciato", "incrementanumero", "indentation", "indenting", "indestra", "inframed", "ininner", "iniziaallineamento", "iniziaambiente", "iniziabloccomargine", "iniziacitazione", "iniziacodifica", "iniziacolonne", "iniziacolore", "iniziacombinazione", "iniziacomponente", "iniziacorrezioneriga", "iniziadocumento", "iniziafigura", "iniziaglobale", "iniziagruppocolonne", "iniziaimpaccato", "inizialineamargine", "inizialineatesto", "inizialocale", "iniziamakeup", "inizianotepdplocali", "inizianumerazionerighe", "iniziaopposto", "iniziaoverview", "iniziapiustretto", "iniziaposizionamento", "iniziaprodotto", "iniziaprofilo", "iniziaprogetto", "iniziaraster", "iniziariga", "iniziarighe", "iniziasetsimboli", "iniziasfondo", "iniziasincronizzazione", "iniziasovrapposizione", "iniziatabella", "iniziatabelle", "iniziatesto", "iniziaunpacked", "iniziaversione", "inlatodestro", "inlatosinistro", "inleft", "inline", "inmaframed", "inmargin", "inmargine", "inmarginedestro", "inmarginesinistro", "inneredgedistance", "inneredgewidth", "innermargindistance", "innermarginwidth", "inothermargin", "inouter", "inriga", "inright", "insinistra", "installalingua", "installlanguage", "interactionbar", "interactionbuttons", "intorno", "item", "items", "its", "keepblocks", "labeling", "labels", "labeltext", "language", "leftaligned", "leg", "lettera", "lettere", "lineamargine", "lineanera", "lineasottile", "lineatesto", "lineenere", "lineeriempimento", "lineesottili", "lingua", "linguaprincipale", "listsymbol", "livellotesta", "loadsorts", "loadsynonyms", "logcampi", "logfields", "lohi", "low", "lunghezzaelenco", "maframed", "mainlanguage", "mapfontsize", "mar", "marcatura", "marcaversione", "marginrule", "margintext", "marking", "markversion", "matematica", "mathematics", "mediaeval", "menuinterattivo", "menzione", "mese", "mettielenco", "mettielencocombinato", "mettifiancoafianco", "mettiformula", "mettiingriglia", "mettilegenda", "mettilinea", "mettiloghi", "mettinotepdp", "mettinotepdplocali", "mettinumeropagina", "mettiregistro", "mettisegnalibro", "mettisottoformula", "mettiunosullaltro", "mettivariabiletesto", "midaligned", "mirror", "month", "mostraambientefontdeltesto", "mostracampi", "mostracolore", "mostracornice", "mostrafiguresterne", "mostrafontdeltesto", "mostragriglia", "mostragruppocolori", "mostraimpostazioni", "mostralyout", "mostramakeup", "mostrasetsimboli", "mostrastampa", "mostrastruts", "mostratavolozza", "moveongrid", "movesidefloat", "name", "nascondiblocchi", "navigating", "nextsection", "nientedimensioni", "nienteelenco", "nientelineecimafondo", "nientelineintestazionepdp", "nientemarcatura", "nienterientro", "nientespazio", "nientespaziobianco", "nocap", "noheaderandfooterlines", "noindenting", "nolist", "nomarking", "nome", "nomeunita", "nomoreblocks", "nomorefiles", "nop", "nospace", "nota", "notapdp", "note", "notest", "notopandbottomlines", "nowhitespace", "numberofsubpages", "numbers", "numeri", "numeriromani", "numeroformula", "numeropagina", "numeropaginacompleto", "numerosottoformula", "numerotesta", "numerotestacorrente", "numerototaledipagine", "outeredgedistance", "outeredgewidth", "outermargindistance", "outermarginwidth", "overbar", "overbars", "overstrike", "overstrikes", "packed", "page", "pagedepth", "pageoffset", "pagereference", "pagina", "paragraph", "paroladestra", "parolainmargine", "part", "passaafontgrezzo", "ped", "pedap", "periods", "perlungo", "placebookmarks", "placecombinedlist", "placefloat", "placefootnotes", "placeformula", "placelegend", "placelist", "placelistoffloats", "placelistofsorts", "placelistofsynonyms", "placelocalfootnotes", "placelogos", "placeongrid", "placeontopofeachother", "placerawlist", "placereferencelist", "placeregister", "placesidebyside", "placesubformula", "position", "posizionanumerotesta", "posizionatesto", "posizionatestotesta", "posizione", "prendibuffer", "prendimarcatura", "processblocks", "processpage", "prodotto", "progetto", "program", "programma", "pubblicazione", "publication", "pulsante", "pulsantemenu", "pulsantinterazione", "punti", "qualcheriga", "quotation", "quote", "ran", "ref", "reference", "referral", "referraldate", "referring", "register", "reimposta", "reimpostamarcatura", "reservefloat", "reset", "resetmarking", "resetnumber", "resettextcontent", "rientro", "rif", "rifai", "riferimento", "riferimentopagina", "riferimentotesto", "riflessione", "rigariempimento", "rightaligned", "rigovuoto", "romannumerals", "rotate", "ruota", "saltablocchi", "scala", "scale", "schermo", "screen", "scrividentroelenco", "scriviinelenco", "scriviinlistariferimenti", "scriviinregistro", "section", "seeregister", "segnalibro", "seguiprofilo", "seguiversione", "seguiversioneprofilo", "selectblocks", "selectpaper", "selectversion", "selezionablocchi", "selezionacarta", "selezionaversione", "separamarcatura", "setnumber", "settext", "settextcontent", "setupalign", "setupanswerarea", "setuparranging", "setupbackground", "setupbackgrounds", "setupblackrules", "setupblank", "setupblock", "setupbodyfont", "setupbodyfontenvironment", "setupbottom", "setupbottomtexts", "setupbuffer", "setupbuttons", "setupcapitals", "setupcaption", "setupcaptions", "setupclipping", "setupcolor", "setupcolors", "setupcolumns", "setupcolumnsetlines", "setupcolumnsetstart", "setupcombinations", "setupcombinedlist", "setupcomment", "setupdescriptions", "setupenumerations", "setupexternalfigures", "setupfield", "setupfields", "setupfillinlines", "setupfillinrules", "setupfloat", "setupfloats", "setupfloatsplitting", "setupfonthandling", "setupfontsynonym", "setupfooter", "setupfootertexts", "setupfootnotedefinition", "setupfootnotes", "setupforms", "setupformulas", "setupframed", "setupframedtexts", "setuphead", "setupheader", "setupheadertexts", "setupheadnumber", "setupheads", "setupheadtext", "setuphyphenmark", "setupindentedtext", "setupindenting", "setupinmargin", "setupinteraction", "setupinteractionbar", "setupinteractionmenu", "setupinteractionscreen", "setupinterlinespace", "setupinterlinespace2", "setupitemgroup", "setupitems", "setuplabeltext", "setuplanguage", "setuplayout", "setuplegend", "setuplinenumbering", "setuplines", "setuplinewidth", "setuplist", "setuplistalternative", "setupmakeup", "setupmarginblocks", "setupmarginrules", "setupmarking", "setupmathalignment", "setupnarrower", "setupnumbering", "setupoppositeplacing", "setupoutput", "setuppagenumber", "setuppagenumbering", "setuppagetransitions", "setuppalet", "setuppaper", "setuppapersize", "setupparagraphnumbering", "setupparagraphs", "setupplacement", "setuppositioning", "setupprofiles", "setupprograms", "setuppublications", "setupquote", "setupreferencelist", "setupreferencing", "setupregister", "setuprotate", "setupscreens", "setupsection", "setupsectionblock", "setupsorting", "setupspacing", "setupstrut", "setupsubpagenumber", "setupsymbolset", "setupsynchronization", "setupsynchronizationbar", "setupsynonyms", "setupsystem", "setuptab", "setuptables", "setuptabulate", "setuptext", "setuptextrules", "setuptexttexts", "setupthinrules", "setuptolerance", "setuptop", "setuptoptexts", "setuptype", "setuptyping", "setupunderbar", "setupurl", "setupversions", "setupwhitespace", "setvariabiletesto", "sfondo", "showbodyfont", "showbodyfontenvironment", "showcolor", "showcolorgroup", "showexternalfigures", "showfields", "showframe", "showgrid", "showlayout", "showmakeup", "showpalet", "showprint", "showsetups", "showstruts", "showsymbolset", "sim", "simbolo", "sincronizza", "someline", "somewhere", "sort", "space", "spazifissi", "spazio", "spaziobianco", "spaziocima", "spaziodietro", "spaziofisso", "spaziofondo", "spessoreriga", "spezzaoggettomobile", "splitfloat", "spostaagriglia", "spostaformula", "stackcampi", "startalignment", "startbackground", "startbuffer", "startcolor", "startcolumnmakeup", "startcolumns", "startcombination", "startcomment", "startcomponent", "startdescription", "startdocument", "startenumeration", "startenvironment", "startfact", "startfigure", "startfloattext", "startformula", "startframedtext", "starthiding", "startinteractionmenu", "startitemgroup", "startlegend", "startline", "startlinecorrection", "startlinenumbering", "startlines", "startlocal", "startlocalenvironment", "startlocalfootnotes", "startmakeup", "startmarginblock", "startmarginrule", "startnamemakeup", "startnarrower", "startopposite", "startoverlay", "startoverview", "startpacked", "startparagraph", "startpositioning", "startpostponing", "startproduct", "startprofile", "startproject", "startquotation", "startregister", "startsymbolset", "startsynchronization", "starttable", "starttables", "starttabulate", "starttextrule", "starttyping", "startunpacked", "startversion", "stirato", "stopalignment", "stopbackground", "stopbuffer", "stopcolor", "stopcolumnmakeup", "stopcolumns", "stopcombination", "stopcomment", "stopcomponent", "stopdescription", "stopdocument", "stopenumeration", "stopenvironment", "stopfact", "stopfigure", "stopfloattext", "stopformula", "stopframedtext", "stophiding", "stopinteractionmenu", "stopitemgroup", "stoplegend", "stopline", "stoplinecorrection", "stoplinenumbering", "stoplines", "stoplocal", "stoplocalenvironment", "stoplocalfootnotes", "stopmakeup", "stopmarginblock", "stopmarginrule", "stopnamemakeup", "stopnarrower", "stopopposite", "stopoverlay", "stopoverview", "stoppacked", "stopparagraph", "stoppositioning", "stoppostponing", "stopproduct", "stopprofile", "stopproject", "stopquotation", "stopsymbolset", "stopsynchronization", "stoptable", "stoptables", "stoptabulate", "stoptextrule", "stoptyping", "stopunpacked", "stopversion", "stretched", "sub", "subject", "subpagenumber", "subsection", "subsubject", "subsubsection", "subsubsubject", "switchtobodyfont", "sym", "symbol", "synchronizationbar", "synchronize", "synonym", "tab", "terminaallineamento", "terminaambiente", "terminabloccomargine", "terminacitazione", "terminacodifica", "terminacolonne", "terminacolore", "terminacombinazione", "terminacomponente", "terminacorrezioneriga", "terminadocumento", "terminaglobale", "terminagruppocolonne", "terminaimpaccato", "terminalineamargine", "terminalineatesto", "terminalocale", "terminamakeup", "terminanotepdplocali", "terminanumerazionerighe", "terminaopposto", "terminaoverview", "terminapiustretto", "terminaposizionamento", "terminaprodotto", "terminaprofili", "terminaprogetto", "terminaraster", "terminariga", "terminarighe", "terminasfondo", "terminasincronizzazione", "terminasovrapposizione", "terminatabella", "terminatabelle", "terminatesto", "terminaunpacked", "terminaversioni", "testa", "testcolumn", "testoetichetta", "testoinmargine", "testoinstestazioni", "testonotapdp", "testoriempimento", "testpage", "tex", "textreference", "textrule", "thinrule", "thinrules", "tieniblocchi", "title", "titoloinmargine", "tooltip", "traduci", "translate", "txt", "typ", "type", "typebuffer", "typefile", "underbar", "underbars", "usaJSscripts", "usaURL", "usablocco", "usacartella", "usacodifica", "usacolonnasonoraesterna", "usacomandi", "usadocumentoesterno", "usafiguraesterna", "usafileesterni", "usafileesterno", "usamoduli", "usamodulo", "usariferimenti", "usasimboli", "usaspecialita", "usaurl", "useURL", "useXMLfilter", "useblocks", "usecommands", "usedirectory", "useencoding", "useexternaldocument", "useexternalfigure", "useexternalfile", "useexternalfiles", "useexternalsoundtrack", "usemodule", "usereferences", "usespecials", "usesymbols", "usetypescript", "usetypescriptfile", "vaia", "vaiabox", "vaiapagina", "vaigiu", "valorecolore", "valoregrigio", "variabiletesto", "version", "versione", "vl", "weekday", "whitespace", "wordright", "writebetweenlist", "writetolist", "writetoreferencelist", "writetoregister" }, ["nl"]={ "CAP", "Cap", "Caps", "Character", "Characters", "Cijfers", "KAP", "Kap", "Kaps", "Letter", "Letters", "MAAND", "MONTH", "Romannumerals", "Romeins", "WEEKDAG", "WEEKDAY", "WOORD", "WOORDEN", "WORD", "WORDS", "Woord", "Woorden", "Word", "Words", "aantalsubpaginas", "about", "achtergrond", "adaptlayout", "appendix", "arg", "at", "atpage", "background", "bepaalkopnummer", "bepaallijstkenmerken", "bepaalregisterkenmerken", "betekenis", "binnenmargeafstand", "binnenmargebreedte", "binnenrandafstand", "binnenrandbreedte", "blackrule", "blackrules", "blank", "blanko", "blokje", "blokjes", "blokkeerinteractiemenu", "bodemwit", "bookmark", "bovenafstand", "bovenhoogte", "breuk", "buitenmargeafstand", "buitenmargebreedte", "buitenrandafstand", "buitenrandbreedte", "but", "button", "bypassblocks", "cap", "chapter", "character", "characters", "chem", "cijfers", "citaat", "citeer", "clip", "clonefield", "color", "column", "comment", "comparecolorgroup", "comparepalet", "completecombinedlist", "completelistoffloats", "completelistofsorts", "completelistofsynonyms", "completeregister", "converteernummer", "convertnumber", "copieerveld", "copyfield", "correctwhitespace", "corrigeerwitruimte", "coupledocument", "coupledregister", "couplemarking", "couplepage", "couplepaper", "coupleregister", "crlf", "currentdate", "currentheadnumber", "date", "datum", "decouplemarking", "define", "defineblank", "defineblock", "definebodyfont", "definebodyfontDEF", "definebodyfontREF", "definebodyfontenvironment", "definebuffer", "definecolor", "definecolorgroup", "definecombinedlist", "defineconversion", "definedescription", "definedfont", "defineenumeration", "definefield", "definefieldstack", "definefiguresymbol", "definefloat", "definefont", "definefontfeature", "definefonthandling", "definefontsynonym", "defineframed", "defineframedtext", "definehead", "defineindentedtext", "defineinteractionmenu", "definelabel", "definelist", "definelogo", "definemakeup", "definemarking", "defineoutput", "defineoverlay", "definepalet", "definepapersize", "defineparagraphs", "defineprofile", "defineprogram", "definerawfont", "definereference", "definereferenceformat", "definereferencelist", "defineregister", "definesection", "definesectionblock", "definesorting", "definestartstop", "definesubfield", "definesymbol", "definesynonyms", "definetabletemplate", "definetabulate", "definetext", "definetype", "definetypeface", "definetyping", "defineversion", "definieer", "definieeraccent", "definieeralineas", "definieerbeeldmerk", "definieerblanko", "definieerblok", "definieerbuffer", "definieercombinatie", "definieercommando", "definieerconversie", "definieerfiguursymbool", "definieerfont", "definieerfontstijl", "definieerfontsynoniem", "definieerhbox", "definieerhoofdveld", "definieeringesprongentext", "definieerinmarge", "definieerinteractiemenu", "definieeritemgroep", "definieerkadertekst", "definieerkarakter", "definieerkleur", "definieerkleurgroep", "definieerkolomgroep", "definieerkolomovergang", "definieerkop", "definieerkorps", "definieerkorpsomgeving", "definieerlayer", "definieerlayout", "definieerletter", "definieerlijn", "definieerlijst", "definieermarkering", "definieeromlijnd", "definieeropmaak", "definieeroverlay", "definieerpaginaovergang", "definieerpalet", "definieerpapierformaat", "definieerplaats", "definieerplaatsblok", "definieerprofiel", "definieerprogramma", "definieerreferentie", "definieerreferentieformaat", "definieerreferentielijst", "definieerregister", "definieersamengesteldelijst", "definieersectie", "definieersectieblok", "definieersorteren", "definieerstartstop", "definieersubveld", "definieersymbool", "definieersynoniemen", "definieertabelvorm", "definieertabulatie", "definieertekst", "definieertekstachtergrond", "definieertekstpositie", "definieertekstvariabele", "definieertype", "definieertypen", "definieeruitvoer", "definieerveld", "definieerveldstapel", "definieerversie", "definieerwiskundeuitlijnen", "description", "determineheadnumber", "determinelistcharacteristics", "dimensie", "directnaarlijst", "directtussenlijst", "disableinteractionmenu", "doordefinieren", "doorlabelen", "doornummeren", "dunnelijn", "dunnelijnen", "eenregel", "emptylines", "enumeration", "ergens", "externalfigure", "externfiguur", "field", "fieldstack", "fillinfield", "fillinline", "fillinrules", "fillintext", "fitfield", "fixedspaces", "followprofile", "followprofileversion", "followversion", "footnote", "footnotetext", "forceblocks", "forceerblokken", "formulenummer", "fraction", "framed", "framedtext", "from", "gebruikJSscripts", "gebruikURL", "gebruikXMLfilter", "gebruikblokken", "gebruikcommandos", "gebruikexterndocument", "gebruikexternefile", "gebruikexternefiles", "gebruikexternfiguur", "gebruikexterngeluidsfragment", "gebruikgebied", "gebruikmodule", "gebruikmodules", "gebruikreferenties", "gebruikspecials", "gebruiksymbolen", "gebruiktypescript", "gebruiktypescriptfile", "gebruikurl", "geenblokkenmeer", "geenbovenenonderregels", "geendimensie", "geenfilesmeer", "geenhoofdenvoetregels", "geenlijst", "geenmarkering", "geenspatie", "geentest", "geenwitruimte", "geg", "getbuffer", "getmarking", "godown", "goto", "gotobox", "graycolor", "grid", "grijskleur", "grijswaarde", "haalbuffer", "haalmarkering", "haalnummer", "haarlijn", "hairline", "handhaafblokken", "head", "headnumber", "headtext", "herhaal", "hideblocks", "high", "hl", "hoofdafstand", "hoofdhoogte", "hoofdtaal", "hoog", "huidigedatum", "huidigekopnummer", "in", "inanderemarge", "inbinnen", "inbuiten", "indentation", "indenting", "inframed", "ininner", "inleft", "inlijnd", "inline", "inlinker", "inlinkermarge", "inlinkerrand", "inmarge", "inmargin", "inothermargin", "inouter", "inrechter", "inrechtermarge", "inrechterrand", "inregel", "inright", "inspringen", "installeertaal", "installlanguage", "interactiebalk", "interactiebuttons", "interactiemenu", "interactionbar", "interactionbuttons", "invullijnen", "invulregel", "invultekst", "invulveld", "inwilijnd", "item", "items", "its", "kantlijn", "kap", "keepblocks", "kenmerk", "kenmerkdatum", "kentekstvariabeletoe", "kleur", "kleurenbalk", "kleurwaarde", "kloonveld", "kolom", "kop", "kopniveau", "kopnummer", "koppeldocument", "koppelmarkering", "koppelpagina", "koppelpapier", "koppelregister", "kopsym", "koptekst", "kopwit", "laag", "label", "labeling", "labels", "labeltekst", "labeltext", "laho", "language", "leftaligned", "leg", "legeregels", "letter", "letters", "lijndikte", "lijstbreedte", "lijsthoogte", "lijstlengte", "lijstsymbool", "linkermargeafstand", "linkermargebreedte", "linkerrandafstand", "linkerrandbreedte", "listsymbol", "loadsorts", "loadsynonyms", "logfields", "lohi", "low", "maand", "mainlanguage", "mapfontsize", "mar", "margeafstand", "margebreedte", "margetekst", "margetitel", "margewoord", "marginrule", "margintext", "markeer", "markeerversie", "marking", "markversion", "mathematics", "mediaeval", "menubutton", "midaligned", "mirror", "month", "moveongrid", "naam", "naar", "naarbox", "naarpagina", "name", "navigerend", "nextsection", "nietinspringen", "nocap", "noheaderandfooterlines", "noindenting", "nokap", "nolist", "nomarking", "nomoreblocks", "nomorefiles", "noot", "nop", "nospace", "note", "notopandbottomlines", "nowhitespace", "numbers", "omgeving", "omlaag", "omlijnd", "onbekend", "onderafstand", "onderdeel", "onderhoogte", "ontkoppelmarkering", "op", "opelkaar", "oplinkermarge", "oppagina", "oprechtermarge", "overbar", "overbars", "overstrike", "overstrikes", "packed", "page", "pagereference", "pagina", "paginadiepte", "paginanummer", "paginaoffset", "paginareferentie", "papierbreedte", "papierhoogte", "paragraph", "part", "paslayoutaan", "passeerblokken", "passendveld", "periods", "plaatsbeeldmerken", "plaatsbookmarks", "plaatsformule", "plaatskopnummer", "plaatskoptekst", "plaatslegenda", "plaatslijn", "plaatslijst", "plaatslijstmetsynoniemen", "plaatslokalevoetnoten", "plaatsnaastelkaar", "plaatsonderelkaar", "plaatsopgrid", "plaatspaginanummer", "plaatsplaatsblok", "plaatsreferentielijst", "plaatsregister", "plaatsruwelijst", "plaatssamengesteldelijst", "plaatssubformule", "plaatstekstvariabele", "plaatsvoetnoten", "placebookmarks", "placecombinedlist", "placefloat", "placefootnotes", "placeformula", "placelegend", "placelist", "placelistoffloats", "placelistofsorts", "placelistofsynonyms", "placelocalfootnotes", "placelogos", "placeongrid", "placeontopofeachother", "placereferencelist", "placeregister", "placesidebyside", "placesubformula", "position", "positioneer", "positioneertekst", "printpapierbreedte", "printpapierhoogte", "processblocks", "processpage", "produkt", "program", "programma", "projekt", "publicatie", "publication", "punten", "quotation", "quote", "ran", "randafstand", "randbreedte", "rechtermargeafstand", "rechtermargebreedte", "rechterrandafstand", "rechterrandbreedte", "ref", "refereer", "reference", "referentie", "referral", "referraldate", "regellinks", "regelmidden", "regelrechts", "register", "registreervelden", "reservefloat", "reset", "resetmarkering", "resetmarking", "resetnummer", "resettekstinhoud", "resettextcontent", "rightaligned", "romannumerals", "romeins", "rooster", "rotate", "roteer", "rugwit", "scale", "schaal", "scherm", "schrijfnaarlijst", "schrijfnaarreferentielijst", "schrijfnaarregister", "schrijftussenlijst", "screen", "section", "seeregister", "selectblocks", "selecteerblokken", "selecteerpapier", "selecteerversie", "selectpaper", "selectversion", "setnummer", "settextcontent", "setupalign", "setuparranging", "setupbackground", "setupbackgrounds", "setupblackrules", "setupblank", "setupblock", "setupbodyfont", "setupbodyfontenvironment", "setupbottom", "setupbottomtexts", "setupbuffer", "setupbuttons", "setupcapitals", "setupcaption", "setupcaptions", "setupclipping", "setupcolor", "setupcolors", "setupcolumns", "setupcombinations", "setupcombinedlist", "setupcomment", "setupdescriptions", "setupenumerations", "setupexternalfigures", "setupfield", "setupfields", "setupfillinlines", "setupfillinrules", "setupfloat", "setupfloats", "setupfloatsplitting", "setupfonthandling", "setupfontsynonym", "setupfooter", "setupfootertexts", "setupfootnotedefinition", "setupfootnotes", "setupforms", "setupformulas", "setupframed", "setupframedtexts", "setuphead", "setupheader", "setupheadertexts", "setupheadnumber", "setupheads", "setupheadtext", "setuphyphenmark", "setupindentedtext", "setupindenting", "setupinmargin", "setupinteraction", "setupinteractionbar", "setupinteractionmenu", "setupinteractionscreen", "setupinterlinespace", "setupinterlinespace2", "setupitemgroup", "setupitems", "setuplabeltext", "setuplanguage", "setuplayout", "setuplegend", "setuplinenumbering", "setuplines", "setuplinewidth", "setuplist", "setuplistalternative", "setupmakeup", "setupmarginblocks", "setupmarginrules", "setupmarking", "setupnarrower", "setupnumbering", "setupoppositeplacing", "setupoutput", "setuppagenumber", "setuppagenumbering", "setuppagetransitions", "setuppalet", "setuppaper", "setuppapersize", "setupparagraphnumbering", "setupparagraphs", "setuppositioning", "setupprofiles", "setupprograms", "setuppublications", "setupquote", "setupreferencelist", "setupreferencing", "setupregister", "setuprotate", "setupscreens", "setupsection", "setupsectionblock", "setupsorting", "setupspacing", "setupstrut", "setupsubpagenumber", "setupsymbolset", "setupsynchronization", "setupsynchronizationbar", "setupsynonyms", "setupsystem", "setuptab", "setuptables", "setuptabulate", "setuptext", "setuptextrules", "setuptexttexts", "setupthinrules", "setuptolerance", "setuptop", "setuptoptexts", "setuptype", "setuptyping", "setupunderbar", "setupurl", "setupversions", "setupwhitespace", "showbodyfont", "showbodyfontenvironment", "showcolor", "showcolorgroup", "showexternalfigures", "showfields", "showframe", "showgrid", "showlayout", "showmakeup", "showpalet", "showprint", "showsetups", "showstruts", "showsymbolset", "snijwit", "som", "someline", "somewhere", "sort", "space", "spatie", "spiegel", "splitfloat", "splitsplaatsblok", "startachtergrond", "startalignment", "startbackground", "startbuffer", "startcitaat", "startcodering", "startcolor", "startcolumns", "startcombinatie", "startcombination", "startcomment", "startcomponent", "startdescription", "startdocument", "startenumeration", "startenvironment", "startfact", "startfigure", "startfiguur", "startfloattext", "startformula", "startframedtext", "startglobaal", "starthiding", "startinteractionmenu", "startitemgroup", "startkantlijn", "startkleur", "startkolomgroep", "startkolommen", "startkolomopmaak", "startlegend", "startline", "startlinecorrection", "startlinenumbering", "startlines", "startlocal", "startlocalenvironment", "startlocalfootnotes", "startlokaal", "startlokalevoetnoten", "startmakeup", "startmargeblok", "startmarginblock", "startmarginrule", "startnaast", "startnamemakeup", "startnarrower", "startomgeving", "startomlijnd", "startonderdeel", "startopelkaar", "startopmaak", "startopposite", "startoverlay", "startoverview", "startoverzicht", "startpacked", "startparagraph", "startpositioneren", "startpositioning", "startpostponing", "startproduct", "startprodukt", "startprofiel", "startprofile", "startproject", "startprojekt", "startquotation", "startraster", "startregel", "startregelcorrectie", "startregelnummeren", "startregels", "startregister", "startsmaller", "startsymbolset", "startsymboolset", "startsynchronisatie", "startsynchronization", "starttabel", "starttabellen", "starttable", "starttables", "starttabulate", "starttekst", "starttekstachtergrond", "starttekstlijn", "starttextrule", "starttyping", "startuitlijnen", "startunpacked", "startvanelkaar", "startversie", "startversion", "stelachtergrondenin", "stelachtergrondin", "stelalineasin", "stelantwoordgebiedin", "stelarrangerenin", "stelblankoin", "stelblokin", "stelblokjesin", "stelblokkopjein", "stelblokkopjesin", "stelbovenin", "stelboventekstenin", "stelbufferin", "stelbuttonsin", "stelciterenin", "stelclipin", "stelcombinatiesin", "stelcommentaarin", "steldoordefinierenin", "steldoornummerenin", "steldunnelijnenin", "stelexternefigurenin", "stelformulesin", "stelformulierenin", "stelhoofdin", "stelhoofdtekstenin", "stelingesprongentextin", "stelinmargein", "stelinspringenin", "stelinteractiebalkin", "stelinteractiein", "stelinteractiemenuin", "stelinteractieschermin", "stelinterliniein", "stelinvullijnenin", "stelinvulregelsin", "stelitemgroepin", "stelitemsin", "stelkadertekstenin", "stelkantlijnin", "stelkapitalenin", "stelkleurenin", "stelkleurin", "stelkolomgroepin", "stelkolomgroepregelsin", "stelkolomgroepstartin", "stelkolommenin", "stelkopin", "stelkopnummerin", "stelkoppeltekenin", "stelkoppenin", "stelkoptekstin", "stelkorpsin", "stelkorpsomgevingin", "stellabeltekstin", "stellayoutin", "stellegendain", "stellijndiktein", "stellijnin", "stellijstin", "stelmargeblokkenin", "stelmarkeringin", "stelnaastplaatsenin", "stelnummerenin", "stelnummerin", "stelomlijndin", "stelonderin", "stelonderstrepenin", "stelondertekstenin", "stelopmaakin", "stelopsommingenin", "stelpaginacommentaarin", "stelpaginanummerin", "stelpaginanummeringin", "stelpaginaovergangenin", "stelpaletin", "stelpapierformaatin", "stelpapierin", "stelparagraafnummerenin", "stelplaatsblokin", "stelplaatsblokkenin", "stelplaatsbloksplitsenin", "stelplaatsin", "stelpositionerenin", "stelprofielenin", "stelprogrammasin", "stelpublicatiesin", "stelrastersin", "stelreferentielijstin", "stelrefererenin", "stelregelnummerenin", "stelregelsin", "stelregisterin", "stelroterenin", "stelsamengesteldelijstin", "stelsectieblokin", "stelsectiein", "stelsmallerin", "stelsorterenin", "stelspatieringin", "stelstartstopin", "stelstrutin", "stelsubpaginanummerin", "stelsymboolsetin", "stelsynchronisatiebalkin", "stelsynchronisatiein", "stelsynoniemenin", "stelsysteemin", "steltaalin", "steltabellenin", "steltabin", "steltabulatiein", "steltekstachtergrondin", "steltekstin", "steltekstinhoudin", "steltekstlijnenin", "steltekstpositiein", "stelteksttekstenin", "steltekstvariabelein", "steltolerantiein", "steltypein", "steltypenin", "steluitlijnenin", "steluitvoerin", "stelurlin", "stelveldenin", "stelveldin", "stelversiesin", "stelvoetin", "stelvoetnootdefinitiein", "stelvoetnotenin", "stelvoettekstenin", "stelwiskundeuitlijnenin", "stelwitruimtein", "stopachtergrond", "stopalignment", "stopbackground", "stopbuffer", "stopcitaat", "stopcodering", "stopcolor", "stopcolumns", "stopcombinatie", "stopcombination", "stopcomment", "stopcomponent", "stopdescription", "stopdocument", "stopenumeration", "stopenvironment", "stopfact", "stopfigure", "stopfloattext", "stopformula", "stopframedtext", "stopglobaal", "stophiding", "stopinteractionmenu", "stopitemgroup", "stopkantlijn", "stopkleur", "stopkolomgroep", "stopkolommen", "stopkolomopmaak", "stoplegend", "stopline", "stoplinecorrection", "stoplinenumbering", "stoplines", "stoplocal", "stoplocalenvironment", "stoplocalfootnotes", "stoplokaal", "stoplokalevoetnoten", "stopmakeup", "stopmargeblok", "stopmarginblock", "stopmarginrule", "stopnaast", "stopnamemakeup", "stopnarrower", "stopomgeving", "stopomlijnd", "stoponderdeel", "stopopelkaar", "stopopmaak", "stopopposite", "stopoverlay", "stopoverview", "stopoverzicht", "stoppacked", "stopparagraph", "stoppositioneren", "stoppositioning", "stoppostponing", "stopproduct", "stopprodukt", "stopprofiel", "stopprofile", "stopproject", "stopprojekt", "stopquotation", "stopraster", "stopregel", "stopregelcorrectie", "stopregelnummeren", "stopregels", "stopsmaller", "stopsymbolset", "stopsynchronisatie", "stopsynchronization", "stoptabel", "stoptabellen", "stoptable", "stoptables", "stoptabulate", "stoptekst", "stoptekstachtergrond", "stoptekstlijn", "stoptextrule", "stoptyping", "stopuitlijnen", "stopunpacked", "stopvanelkaar", "stopversie", "stopversion", "stretched", "sub", "subformulenummer", "subject", "subpaginanummer", "subsection", "subsubject", "subsubsection", "subsubsubject", "suggestie", "switchnaarkorps", "switchtobodyfont", "switchtorawfont", "sym", "symbol", "symbool", "symoffset", "synchronisatiebalk", "synchroniseer", "synchronizationbar", "synchronize", "synonym", "taal", "tab", "tekstbreedte", "teksthoogte", "tekstlijn", "tekstreferentie", "tekstvariabele", "testkolom", "testpagina", "tex", "textreference", "textrule", "thinrule", "thinrules", "title", "toelichting", "tooltip", "toonexternefiguren", "toongrid", "tooninstellingen", "toonkader", "toonkleur", "toonkleurgroep", "toonkorps", "toonkorpsomgeving", "toonlayout", "toonopmaak", "toonpalet", "toonprint", "toonstruts", "toonsymboolset", "toonvelden", "totaalaantalpaginas", "translate", "txt", "typ", "type", "typebuffer", "typefile", "uit", "uitgerekt", "underbar", "underbars", "useURL", "useblocks", "usecodering", "usecommands", "usedirectory", "useencoding", "useexternaldocument", "useexternalfigure", "useexternalfile", "useexternalfiles", "useexternalsoundtrack", "usemodule", "usereferences", "usespecials", "usesymbols", "usetypescript", "usetypescriptfile", "vastespatie", "vastespaties", "veld", "veldstapel", "verbergblokken", "vergelijkkleurgroep", "vergelijkpalet", "verhoognummer", "verlaagnummer", "verplaatsformule", "verplaatsopgrid", "verplaatszijblok", "versie", "version", "vertaal", "verwerkblokken", "verwerkpagina", "vl", "voetafstand", "voethoogte", "voetnoot", "voetnoottekst", "volgprofiel", "volgprofielversie", "volgversie", "volledigepaginanummer", "volledigregister", "voluit", "weekdag", "weekday", "whitespace", "wilijnd", "wiskunde", "witruimte", "woonplaats", "woordrechts", "wordright", "writebetweenlist", "writetolist", "writetoreferencelist", "writetoregister", "zetbreedte", "zethoogte" }, ["pe"]={ "CAP", "Cap", "Caps", "Character", "Characters", "MONTH", "Numbers", "Romannumerals", "WEEKDAY", "WORD", "WORDS", "Word", "Words", "about", "adaptlayout", "appendix", "at", "atpage", "background", "blackrule", "blackrules", "blank", "bookmark", "but", "button", "bypassblocks", "cap", "chapter", "character", "characters", "chem", "clip", "clonefield", "color", "column", "comment", "comparecolorgroup", "comparepalet", "completecombinedlist", "completelistoffloats", "completelistofsorts", "completelistofsynonyms", "completeregister", "convertnumber", "copyfield", "correctwhitespace", "coupledocument", "coupledregister", "couplemarking", "couplepage", "couplepaper", "coupleregister", "crlf", "currentdate", "currentheadnumber", "date", "decouplemarking", "define", "defineblank", "defineblock", "definebodyfont", "definebodyfontDEF", "definebodyfontREF", "definebodyfontenvironment", "definebuffer", "definecolor", "definecolorgroup", "definecombinedlist", "defineconversion", "definedescription", "definedfont", "defineenumeration", "definefield", "definefieldstack", "definefiguresymbol", "definefloat", "definefont", "definefontfeature", "definefonthandling", "definefontsynonym", "defineframed", "defineframedtext", "definehead", "defineindentedtext", "defineinteractionmenu", "definelabel", "definelist", "definelogo", "definemakeup", "definemarking", "defineoutput", "defineoverlay", "definepalet", "definepapersize", "defineparagraphs", "defineprofile", "defineprogram", "definereference", "definereferenceformat", "definereferencelist", "defineregister", "definesection", "definesectionblock", "definesorting", "definestartstop", "definesubfield", "definesymbol", "definesynonyms", "definetabletemplate", "definetabulate", "definetext", "definetype", "definetypeface", "definetyping", "defineversion", "description", "determineheadnumber", "determinelistcharacteristics", "disableinteractionmenu", "emptylines", "enumeration", "externalfigure", "field", "fieldstack", "fillinfield", "fillinline", "fillinrules", "fillintext", "fitfield", "fixedspaces", "followprofile", "followprofileversion", "followversion", "footnote", "footnotetext", "forceblocks", "fraction", "framed", "framedtext", "from", "getbuffer", "getmarking", "godown", "goto", "gotobox", "graycolor", "grid", "hairline", "head", "headnumber", "headtext", "hideblocks", "high", "hl", "in", "indentation", "indenting", "inframed", "ininner", "inleft", "inline", "inmargin", "inmframed", "inothermargin", "inouter", "inright", "installlanguage", "interactionbar", "interactionbuttons", "item", "items", "its", "keepblocks", "labeling", "labels", "labeltext", "language", "leftaligned", "listsymbol", "loadsorts", "loadsynonyms", "logfields", "lohi", "low", "mainlanguage", "mapfontsize", "mar", "marginrule", "margintext", "marking", "markversion", "mathematics", "mediaeval", "mframed", "midaligned", "mirror", "month", "moveongrid", "name", "nextsection", "nocap", "noheaderandfooterlines", "noindenting", "nolist", "nomarking", "nomoreblocks", "nomorefiles", "nop", "nospace", "note", "notopandbottomlines", "nowhitespace", "numbers", "overbar", "overbars", "overstrike", "overstrikes", "packed", "page", "pagereference", "paragraph", "part", "periods", "placebookmarks", "placecombinedlist", "placefloat", "placefootnotes", "placeformula", "placelegend", "placelist", "placelistoffloats", "placelistofsorts", "placelistofsynonyms", "placelocalfootnotes", "placelogos", "placeongrid", "placeontopofeachother", "placereferencelist", "placeregister", "placesidebyside", "placesubformula", "position", "processblocks", "processpage", "program", "publication", "quotation", "quote", "ran", "ref", "reference", "referral", "referraldate", "register", "reservefloat", "reset", "resetmarking", "resettextcontent", "rightaligned", "romannumerals", "rotate", "scale", "screen", "section", "seeregister", "selectblocks", "selectpaper", "selectversion", "settextcontent", "setupalign", "setupanswerarea", "setuparranging", "setupbackground", "setupbackgrounds", "setupblackrules", "setupblank", "setupblock", "setupbodyfont", "setupbodyfontenvironment", "setupbottom", "setupbottomtexts", "setupbuffer", "setupbuttons", "setupcapitals", "setupcaption", "setupcaptions", "setupclipping", "setupcolor", "setupcolors", "setupcolumns", "setupcombinations", "setupcombinedlist", "setupcomment", "setupdescriptions", "setupenumerations", "setupexternalfigures", "setupfield", "setupfields", "setupfillinlines", "setupfillinrules", "setupfloat", "setupfloats", "setupfloatsplitting", "setupfonthandling", "setupfontsynonym", "setupfooter", "setupfootertexts", "setupfootnotedefinition", "setupfootnotes", "setupforms", "setupformulas", "setupframed", "setupframedtexts", "setuphead", "setupheader", "setupheadertexts", "setupheadnumber", "setupheads", "setupheadtext", "setuphyphenmark", "setupindentedtext", "setupindenting", "setupinmargin", "setupinteraction", "setupinteractionbar", "setupinteractionmenu", "setupinteractionscreen", "setupinterlinespace", "setupinterlinespace2", "setupitemgroup", "setupitems", "setuplabeltext", "setuplanguage", "setuplayout", "setuplegend", "setuplinenumbering", "setuplines", "setuplinewidth", "setuplist", "setuplistalternative", "setupmakeup", "setupmarginblocks", "setupmarginrules", "setupmarking", "setupnarrower", "setupnumbering", "setupoppositeplacing", "setupoutput", "setuppagenumber", "setuppagenumbering", "setuppagetransitions", "setuppalet", "setuppaper", "setuppapersize", "setupparagraphnumbering", "setupparagraphs", "setuppositioning", "setupprofiles", "setupprograms", "setuppublications", "setupquote", "setupreferencelist", "setupreferencing", "setupregister", "setuprotate", "setupscreens", "setupsection", "setupsectionblock", "setupsorting", "setupspacing", "setupstrut", "setupsubpagenumber", "setupsymbolset", "setupsynchronization", "setupsynchronizationbar", "setupsynonyms", "setupsystem", "setuptab", "setuptables", "setuptabulate", "setuptext", "setuptextrules", "setuptexttexts", "setupthinrules", "setuptolerance", "setuptop", "setuptoptexts", "setuptype", "setuptyping", "setupunderbar", "setupurl", "setupversions", "setupwhitespace", "showbodyfont", "showbodyfontenvironment", "showcolor", "showcolorgroup", "showexternalfigures", "showfields", "showframe", "showgrid", "showlayout", "showmakeup", "showpalet", "showprint", "showsetups", "showstruts", "showsymbolset", "someline", "somewhere", "sort", "space", "splitfloat", "startalignment", "startbackground", "startbuffer", "startcolor", "startcolumns", "startcombination", "startcomment", "startcomponent", "startdescription", "startdocument", "startenumeration", "startenvironment", "startfact", "startfigure", "startfloattext", "startformula", "startframedtext", "starthiding", "startinteractionmenu", "startitemgroup", "startlegend", "startline", "startlinecorrection", "startlinenumbering", "startlines", "startlocal", "startlocalenvironment", "startlocalfootnotes", "startmakeup", "startmarginblock", "startmarginrule", "startnamemakeup", "startnarrower", "startopposite", "startoverlay", "startoverview", "startpacked", "startparagraph", "startpositioning", "startpostponing", "startproduct", "startprofile", "startproject", "startquotation", "startraster", "startregister", "startsymbolset", "startsynchronization", "starttable", "starttables", "starttabulate", "starttextrule", "starttyping", "startunpacked", "startversion", "stopalignment", "stopbackground", "stopbuffer", "stopcolor", "stopcolumns", "stopcombination", "stopcomment", "stopcomponent", "stopdescription", "stopdocument", "stopenumeration", "stopenvironment", "stopfact", "stopfigure", "stopfloattext", "stopformula", "stopframedtext", "stophiding", "stopinteractionmenu", "stopitemgroup", "stoplegend", "stopline", "stoplinecorrection", "stoplinenumbering", "stoplines", "stoplocal", "stoplocalenvironment", "stoplocalfootnotes", "stopmakeup", "stopmarginblock", "stopmarginrule", "stopnamemakeup", "stopnarrower", "stopopposite", "stopoverlay", "stopoverview", "stoppacked", "stopparagraph", "stoppositioning", "stoppostponing", "stopproduct", "stopprofile", "stopproject", "stopquotation", "stopraster", "stopsymbolset", "stopsynchronization", "stoptable", "stoptables", "stoptabulate", "stoptextrule", "stoptyping", "stopunpacked", "stopversion", "stretched", "sub", "subject", "subsection", "subsubject", "subsubsection", "subsubsubject", "switchtobodyfont", "sym", "symbol", "synchronizationbar", "synchronize", "synonym", "tab", "tex", "textreference", "textrule", "thinrule", "thinrules", "title", "tooltip", "translate", "txt", "typ", "type", "typebuffer", "typefile", "underbar", "underbars", "useJSscripts", "useURL", "useXMLfilter", "useblocks", "usecommands", "usedirectory", "useencoding", "useexternaldocument", "useexternalfigure", "useexternalfile", "useexternalfiles", "useexternalsoundtrack", "usemodule", "usereferences", "usespecials", "usesymbols", "usetypescript", "usetypescriptfile", "useurl", "version", "vl", "weekday", "whitespace", "wordright", "writebetweenlist", "writetolist", "writetoreferencelist", "writetoregister", "Ø¢ÙØ³Øªâ€ŒØµÙحه", "آیتم", "آیتمها", "آینه", "اجباربلوکها", "Ø§Ø±ØªÙØ§Ø¹â€ŒØ¢Ø±Ø§ÛŒØ´", "Ø§Ø±ØªÙØ§Ø¹â€ŒØ¨Ø§Ù„ا", "Ø§Ø±ØªÙØ§Ø¹â€ŒØ¨Ø±Ú¯", "Ø§Ø±ØªÙØ§Ø¹â€ŒØªÙ‡â€ŒØ¨Ø±Ú¯", "Ø§Ø±ØªÙØ§Ø¹â€ŒØ®Ø·", "Ø§Ø±ØªÙØ§Ø¹â€ŒØ³Ø±Ø¨Ø±Ú¯", "Ø§Ø±ØªÙØ§Ø¹â€ŒÙ…تن", "Ø§Ø±ØªÙØ§Ø¹â€ŒÙ¾Ø§ÛŒÛŒÙ†", "از", "ازکارانداختن‌منوی‌پانل", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒØ¨Ù„وکها", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒØ¯Ø³ØªØ®Ø·â€ŒØªØ§ÛŒÙ¾", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒØ±Ù…زینه", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒØ´Ú©Ù„‌خارجی", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙرمانها", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ‚طعه‌موزیک‌خارجی", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ…دول", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ…دولها", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ…رجعها", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ…سیر", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ†Ù…ادها", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ†ÙˆØ´ØªØ§Ø±Ø®Ø§Ø±Ø¬ÛŒ", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙˆÛŒÚ˜Ú¯ÛŒÙ‡Ø§", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ¾Ø±ÙˆÙ†Ø¯Ù‡â€ŒØ®Ø§Ø±Ø¬ÛŒ", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ¾Ø±ÙˆÙ†Ø¯Ù‡â€ŒØ¯Ø³ØªØ®Ø·â€ŒØªØ§ÛŒÙ¾", "Ø§Ø³ØªÙØ§Ø¯Ù‡â€ŒÙ¾Ø±ÙˆÙ†Ø¯Ù‡â€ŒÙ‡Ø§ÛŒâ€ŒØ®Ø§Ø±Ø¬ÛŒ", "اعدادلاتین", "Ø§ÙØ²ÙˆØ¯Ù†", "اما", "امتحان‌نکن", "انتخاب‌برگ", "انتخاب‌بلوکها", "انتخاب‌نسخه", "انتقال‌به‌توری", "Ø§Ù†ØªÙ‚Ø§Ù„â€ŒÙØ±Ù…ول", "انتقال‌کنار‌شناور", "انجام‌دوباره", "بارگذاری‌آرایش", "بارگذاری‌آیتمها", "بارگذاری‌ارجاع", "بارگذاری‌اندازه‌برگ", "بارگذاری‌باریکتر", "Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØ¨Ø§ÙØ±", "بارگذاری‌بالا", "بارگذاری‌بخش", "بارگذاری‌بردباری", "بارگذاری‌برنامه‌ها", "بارگذاری‌برگ", "بارگذاری‌بست", "بارگذاری‌بلوک", "بارگذاری‌بلوکهای‌حاشیه", "بارگذاری‌بلوک‌بخش", "بارگذاری‌تایپ", "بارگذاری‌تایپ‌کردن", "بارگذاری‌تب", "بارگذاری‌ترتیب", "بارگذاری‌ترکیب‌ها", "بارگذاری‌تطابق", "بارگذاری‌تعریÙ‌پانوشت", "بارگذاری‌تنظیم", "بارگذاری‌تنظیم‌ریاضی", "بارگذاری‌ته‌برگ", "Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØªÙˆØ±ÙØªÚ¯ÛŒ", "بارگذاری‌توضیح", "Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØªÙˆØ¶ÛŒØ­â€ŒØµÙØ­Ù‡", "بارگذاری‌ثبت", "بارگذاری‌جانشانی", "بارگذاری‌جدولها", "بارگذاری‌جدول‌بندی", "بارگذاری‌خالی", "بارگذاری‌خروجی", "بارگذاری‌خط", "بارگذاری‌خطها", "بارگذاری‌خطهای‌حاشیه", "بارگذاری‌خطهای‌سیاه", "بارگذاری‌خطهای‌متن", "بارگذاری‌خطهای‌مجموعه‌ستون", "بارگذاری‌خطها‌ی‌نازک", "بارگذاری‌درج‌درخطها", "بارگذاری‌درج‌مخالÙ", "بارگذاری‌درون‌حاشیه", "بارگذاری‌دوران", "بارگذاری‌دکمه‌ها", "بارگذاری‌راهنما", "بارگذاری‌رنگ", "بارگذاری‌رنگها", "بارگذاری‌زبان", "بارگذاری‌ستونها", "بارگذاری‌سر", "بارگذاری‌سربرگ", "بارگذاری‌سرها", "بارگذاری‌سیستم", "بارگذاری‌شرح", "بارگذاری‌شرحها", "بارگذاری‌شروع‌مجموعه‌ستون", "بارگذاری‌شروع‌پایان", "بارگذاری‌شماره", "Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØ´Ù…Ø§Ø±Ù‡â€ŒØ²ÛŒØ±ØµÙØ­Ù‡", "بارگذاری‌شماره‌سر", "Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØ´Ù…Ø§Ø±Ù‡â€ŒØµÙØ­Ù‡", "بارگذاری‌شماره‌گذاری", "بارگذاری‌شماره‌گذاریها", "Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØ´Ù…Ø§Ø±Ù‡â€ŒÚ¯Ø°Ø§Ø±ÛŒâ€ŒØµÙØ­Ù‡", "بارگذاری‌شماره‌گذاری‌پاراگراÙ", "بارگذاری‌شماره‌‌گذاری‌خط", "بارگذاری‌شناور", "بارگذاری‌شناورها", "Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒØ´Ú©Ø§ÙØªÙ†â€ŒØ´Ù†Ø§ÙˆØ±Ù‡Ø§", "بارگذاری‌شکلهای‌خارجی", "بارگذاری‌طرح", "بارگذاری‌طرح‌بندی", "بارگذاری‌عرض‌خط", "Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒÙØ§ØµÙ„ه‌بین‌خط", "Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒÙØ±Ù…ولها", "Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒÙØ¶Ø§ÛŒâ€ŒØ³Ùید", "Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒÙØ¶Ø§â€ŒÚ¯Ø°Ø§Ø±ÛŒ", "بارگذاری‌قالبی", "بارگذاری‌قلم‌متن", "بارگذاری‌لوح", "بارگذاری‌لیست", "بارگذاری‌لیست‌ترکیبی", "بارگذاری‌لیست‌مرجع", "بارگذاری‌مترادÙها", "بارگذاری‌متغیر‌متن", "بارگذاری‌متن", "بارگذاری‌متنهای‌بالا", "بارگذاری‌متن‌سر", "بارگذاری‌متن‌سربرگ", "بارگذاری‌متن‌قالبی", "بارگذاری‌متن‌متنها", "بارگذاری‌متن‌پانوشت", "بارگذاری‌متن‌پایین", "بارگذاری‌مجموعه‌ستون", "بارگذاری‌مجموعه‌نماد", "بارگذاری‌محیط‌قلم‌متن", "بارگذاری‌منوی‌پانل", "بارگذاری‌مکان‌متن", "بارگذاری‌مکان‌گذاری", "بارگذاری‌میدان", "بارگذاری‌میدانها", "بارگذاری‌میله‌تطابق", "بارگذاری‌میله‌زیر", "بارگذاری‌میله‌پانل", "بارگذاری‌نسخه‌ها", "بارگذاری‌نشانه‌شکستن", "بارگذاری‌نشانه‌گذاری", "بارگذاری‌نشرها", "بارگذاری‌نقل", "بارگذاری‌پاراگراÙها", "بارگذاری‌پانل", "بارگذاری‌پانوشتها", "بارگذاری‌پایین", "بارگذاری‌پرده‌ها", "بارگذاری‌پرده‌پانل", "Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒÙ¾Ø±ÙˆÙØ§ÛŒÙ„ها", "بارگذاری‌پرکردن‌خطها", "بارگذاری‌پس‌زمینه", "بارگذاری‌پس‌زمینه‌ها", "بارگذاری‌چیدن", "Ø¨Ø§Ø±Ú¯Ø°Ø§Ø±ÛŒâ€ŒÚ¯Ø°Ø§Ø±ØµÙØ­Ù‡", "بارگذاری‌گروههای‌آیتم", "بارگذاری‌گروه‌آیتم", "بازنشانی", "بازنشانی‌شماره", "بازنشانی‌متن", "بازنشانی‌نشانه‌گذاری", "باگذاری‌متن‌برچسب", "بدون‌بعد", "بدون‌بلوکهای‌بیشتر", "Ø¨Ø¯ÙˆÙ†â€ŒØªÙˆØ±ÙØªÚ¯ÛŒ", "بدون‌خط‌بالاوپایین", "بدون‌خط‌سروته‌برگ", "Ø¨Ø¯ÙˆÙ†â€ŒÙØ§ÛŒÙ„های‌بیشتر", "Ø¨Ø¯ÙˆÙ†â€ŒÙØ¶Ø§", "Ø¨Ø¯ÙˆÙ†â€ŒÙØ¶Ø§ÛŒâ€ŒØ³Ùید", "بدون‌لیست", "بدون‌نشانه‌گذاری", "برنامه", "بروبه", "بروبه‌جعبه", "Ø¨Ø±ÙˆØ¨Ù‡â€ŒØµÙØ­Ù‡", "بروپایین", "برچسب", "برچسبها", "بعد", "بلند", "بلوکهای‌پردازش", "بلوکها‌پنهان", "بنویس‌بین‌لیست", "بنویس‌درثبت", "بنویس‌درلیست‌مرجع", "بنویس‌در‌لیست", "تاریخ", "تاریخ‌جاری", "تاریخ‌رجوع", "تایپ", "ØªØ§ÛŒÙ¾â€ŒØ¨Ø§ÙØ±", "تایپ‌پرونده", "تب", "ترجمه", "تطابق", "تعریÙ", "تعریÙ‌آرایش", "تعریÙ‌آرم", "تعریÙ‌الگوی‌جدول", "تعریÙ‌اندازه‌برگ", "تعریÙâ€ŒØ¨Ø§ÙØ±", "تعریÙ‌بخش", "تعریÙ‌برنامه", "تعریÙ‌برچسب", "تعریÙ‌بلوک", "تعریÙ‌بلوک‌بخش", "تعریÙ‌تایپ", "تعریÙ‌تایپ‌کردن", "تعریÙ‌تبدیل", "تعریÙ‌ترتیب", "تعریÙ‌ترکیب", "تعریÙ‌تنظیم‌ریاضی", "تعریÙ‌توده‌میدان", "تعریÙ‌ثبت", "تعریÙ‌جانشانی", "تعریÙ‌جدول‌بندی", "تعریÙ‌جعبه‌‌اÙÙ‚ÛŒ", "تعریÙ‌حرÙ", "تعریÙ‌خالی", "تعریÙ‌خروجی", "تعریÙ‌خط‌حائل", "تعریÙ‌درون‌حاشیه", "تعریÙ‌رنگ", "تعریÙ‌زیرمیدان", "تعریÙ‌سبک", "تعریÙ‌سبک‌قلم", "تعریÙ‌سر", "تعریÙ‌شرح", "تعریÙ‌شروع‌پایان", "تعریÙ‌شماره‌بندی", "تعریÙ‌شمایل‌مرجع", "تعریÙ‌شناور", "تعریÙ‌شکستن‌ستون", "تعریÙâ€ŒØ´Ú©Ø³Øªâ€ŒØµÙØ­Ù‡", "تعریÙ‌طرح‌بندی", "تعریÙâ€ŒÙØ±Ù…ان", "تعریÙ‌قالبی", "تعریÙ‌قلم", "تعریÙ‌قلم‌خام", "تعریÙ‌قلم‌متن", "تعریÙ‌لایه", "تعریÙ‌لهجه", "تعریÙ‌لوح", "تعریÙ‌لیست", "تعریÙ‌لیست‌ترکیبی", "تعریÙ‌لیست‌مرجع", "تعریÙ‌مترادÙها", "تعریÙ‌مترادÙ‌قلم", "تعریÙ‌متغیرمتن", "تعریÙ‌متن", "تعریÙ‌متن‌قالبی", "تعریÙ‌مجموعه‌ستون", "تعریÙ‌محیط‌قلم‌بدنه", "تعریÙ‌مرجع", "تعریÙ‌منوی‌پانل", "تعریÙ‌مکان‌متن", "تعریÙ‌میدان", "تعریÙ‌میدان‌اصلی", "تعریÙ‌نسخه", "تعریÙ‌نشانه‌گذاری", "تعریÙ‌نماد", "تعریÙ‌نمادشکل", "تعریÙ‌پاراگراÙها", "تعریÙâ€ŒÙ¾Ø±ÙˆÙØ§ÛŒÙ„", "تعریÙ‌پوشش", "تعریÙ‌گروه‌آیتم", "تعریÙ‌گروه‌رنگ", "تعیین‌شماره", "تعیین‌شماره‌سر", "تعیین‌متغیر‌متن", "تعیین‌محتوای‌متن", "تعیین‌مشخصات‌ثبت", "تعیین‌مشخصات‌لیست", "تغییربه‌قلم‌بدنه", "تغییربه‌قلم‌خام", "تنظیم‌راست", "تنظیم‌طرح‌بندی", "تنظیم‌وسط", "توجه", "ØªÙˆØ±ÙØªÚ¯ÛŒ", "توری", "تولید", "تک", "ثبت‌زوج", "ثبت‌کامل", "جداسازی‌نشانه‌گذاری", "حاش", "حرÙ", "حرÙها", "Ø­ÙØ¸â€ŒØ¨Ù„وکها", "حقیقت", "خالی", "خطهای‌سیاه", "خطهای‌نازک", "خطها‌خالی", "خط‌حاشیه", "خط‌سیاه", "خط‌متن", "خط‌مو", "خط‌نازک", "خ‌ا", "خ‌ع", "در", "درج‌آرمها", "درج‌ثبت", "درج‌خط", "درج‌درخط", "درج‌درخطها", "درج‌درمتن", "درج‌درمیدان", "درج‌در‌بالای‌یکدیگر", "درج‌در‌توری", "درج‌راهنما", "Ø¯Ø±Ø¬â€ŒØ²ÛŒØ±ÙØ±Ù…ول", "درج‌شماره‌سر", "Ø¯Ø±Ø¬â€ŒØ´Ù…Ø§Ø±Ù‡â€ŒØµÙØ­Ù‡", "درج‌شناور", "Ø¯Ø±Ø¬â€ŒÙØ±Ù…ول", "درج‌لیست", "درج‌لیست‌خام", "درج‌لیست‌مختلط", "درج‌لیست‌مرجع", "درج‌متغیرمتن", "درج‌متن‌سر", "درج‌پانوشتها", "درج‌پانوشتهای‌موضعی", "درج‌چوب‌خط", "درج‌کنار‌به‌کنار", "درحاشیه", "درحاشیه‌دیگر", "درحاشیه‌راست", "درحاشیه‌چپ", "درخارجی", "درخط", "درداخلی", "درراست", "Ø¯Ø±ØµÙØ­Ù‡", "درقالبی", "درلبه‌راست", "درلبه‌چپ", "درمورد", "درون", "درپر", "درچپ", "Ø¯Ø±ÛŒØ§ÙØªâ€ŒØ¨Ø§Ùر", "Ø¯Ø±ÛŒØ§ÙØªâ€ŒØ´Ù…اره", "Ø¯Ø±ÛŒØ§ÙØªâ€ŒÙ†Ø´Ø§Ù†Ù‡", "دوران", "دکمه", "دکمه‌منو", "دکمه‌پانل", "رج", "رجوع", "رنگ", "رنگ‌خاکستری", "Ø±ÙˆØ²Ù‡ÙØªÙ‡", "ریاضی", "زبان", "زبان‌اصلی", "ستون", "ستون‌امتحان", "سر", "سرپوش‌کوچک‌نه", "شروع‌آرایش", "شروع‌آرایش‌ستون", "شروع‌باریکتر", "شروع‌بازبینی", "شروع‌بلوک‌حاشیه", "شروع‌ترکیب", "شروع‌تصحیح‌خط", "شروع‌تطابق", "شروع‌تنظیم", "شروع‌تولید", "شروع‌جدول", "شروع‌جدولها", "شروع‌خط", "شروع‌خطها", "شروع‌خط‌حاشیه", "شروع‌خط‌متن", "شروع‌رنگ", "شروع‌ستونها", "شروع‌سراسری", "شروع‌شماره‌گذاری‌خط", "شروع‌شکل", "Ø´Ø±ÙˆØ¹â€ŒØºÛŒØ±â€ŒÙØ´Ø±Ø¯Ù‡", "Ø´Ø±ÙˆØ¹â€ŒÙØ´Ø±Ø¯Ù‡", "شروع‌متن", "شروع‌مجموعه‌ستون", "شروع‌مجموعه‌نماد", "شروع‌محیط", "شروع‌مخالÙ", "شروع‌موضعی", "شروع‌مولÙÙ‡", "شروع‌مکان‌گذاری", "شروع‌نسخه", "شروع‌نقل‌قول", "شروع‌نوشتار", "شروع‌پانوشتهای‌موضعی", "Ø´Ø±ÙˆØ¹â€ŒÙ¾Ø±ÙˆÙØ§ÛŒÙ„", "شروع‌پروژه", "شروع‌پس‌زمینه", "شروع‌پوشش", "شروع‌کد", "Ø´Ù…Ø§Ø±Ù‡â€ŒØ§ÙØ²Ø§ÛŒØ´", "Ø´Ù…Ø§Ø±Ù‡â€ŒØ²ÛŒØ±ØµÙØ­Ù‡", "Ø´Ù…Ø§Ø±Ù‡â€ŒØ²ÛŒØ±ÙØ±Ù…ول", "شماره‌سر", "شماره‌سرجاری", "Ø´Ù…Ø§Ø±Ù‡â€ŒØµÙØ­Ù‡", "Ø´Ù…Ø§Ø±Ù‡â€ŒØµÙØ­Ù‡â€ŒÚ©Ø§Ù…Ù„", "Ø´Ù…Ø§Ø±Ù‡â€ŒÙØ±Ù…ول", "شماره‌مبدل", "شماره‌ها", "شماره‌کاهش", "Ø´Ù…Ø§Ø±Ù‡â€ŒÚ©Ù„â€ŒØµÙØ­Ù‡â€ŒÙ‡Ø§", "Ø´Ú©Ø§ÙØªÙ†â€ŒØ´Ù†Ø§ÙˆØ±", "شکل‌خارجی", "ØµÙØ­Ù‡", "ØµÙØ­Ù‡â€ŒØªØ³Øª", "ØµÙØ­Ù‡â€ŒØ²ÙˆØ¬", "ØµÙØ­Ù‡â€ŒÙ¾Ø±Ø¯Ø§Ø²Ø´", "طول‌لیست", "عبوربلوکها", "عرض‌آرایش", "عرض‌برگ", "عرض‌حاشیه", "عرض‌حاشیه‌خارجی", "عرض‌حاشیه‌داخلی", "عرض‌حاشیه‌راست", "عرض‌حاشیه‌چپ", "عرض‌خط", "عرض‌لبه", "عرض‌لبه‌خارجی", "عرض‌لبه‌داخلی", "عرض‌لبه‌راست", "عرض‌لبه‌چپ", "عرض‌لیست", "عرض‌متن", "Ø¹Ù…Ù‚â€ŒØµÙØ­Ù‡", "عنوان‌حاشیه", "ÙØ§ØµÙ„ه‌بالا", "ÙØ§ØµÙ„ه‌ته‌برگ", "ÙØ§ØµÙ„ه‌حاشیه", "ÙØ§ØµÙ„ه‌حاشیه‌خارجی", "ÙØ§ØµÙ„ه‌حاشیه‌داخلی", "ÙØ§ØµÙ„ه‌حاشیه‌راست", "ÙØ§ØµÙ„ه‌حاشیه‌چپ", "ÙØ§ØµÙ„ه‌سربرگ", "ÙØ§ØµÙ„ه‌لبه", "ÙØ§ØµÙ„ه‌لبه‌خارجی", "ÙØ§ØµÙ„ه‌لبه‌داخلی", "ÙØ§ØµÙ„ه‌لبه‌راست", "ÙØ§ØµÙ„ه‌لبه‌چپ", "ÙØ§ØµÙ„ه‌پایین", "ÙØ§ØµÙ„ه‌پشت", "ÙØ´Ø±Ø¯Ù‡", "ÙØ¶Ø§", "ÙØ¶Ø§Ù‡Ø§ÛŒâ€ŒØ«Ø§Ø¨Øª", "ÙØ¶Ø§ÛŒâ€ŒØ¨Ø§Ù„ا", "ÙØ¶Ø§ÛŒâ€ŒØ¨Ø±Ø´", "ÙØ¶Ø§ÛŒâ€ŒØ«Ø§Ø¨Øª", "ÙØ¶Ø§ÛŒâ€ŒØ³Ùید", "ÙØ¶Ø§ÛŒâ€ŒØ³Ùیدصحیح", "ÙØ¶Ø§ÛŒâ€ŒÙ¾Ø§ÛŒÛŒÙ†", "Ùوری‌به‌لیست", "Ùوری‌بین‌لیست", "قالبی", "لوح‌مقایسه", "ماه", "متغیر متن", "متن‌برچسب", "متن‌حاشیه", "متن‌سر", "متن‌پانوشت", "محیط", "مراجعه", "مرجع", "Ù…Ø±Ø¬Ø¹â€ŒØµÙØ­Ù‡", "مرجع‌متن", "مرحله‌سر", "مسکن", "معنی‌واحد", "مقایسه‌گروه‌رنگ", "مقدارخاکستری", "مقداررنگ", "مقیاس", "منÙÛŒ", "منوی‌پانل", "مولÙÙ‡", "مکان", "مکان‌متن", "میدان", "میدانهای‌گزارش", "میدان‌شبیه‌سازی", "میدان‌پشته", "میدان‌کپی", "میله‌تطابق", "میله‌رنگ", "میله‌پانل", "ناشناس", "نام‌ماکرو", "نسخه", "نسخه‌نشانه", "نشانه‌گذاری", "نشانه‌گذاری‌زوج", "نشر", "نصب‌زبان", "نقطه‌ها", "نقل", "نقل‌قول", "نم", "نماد", "نمادسر", "نمادلیست", "نمایش‌آرایش", "نمایش‌بارگذاریها", "نمایش‌بستها", "نمایش‌توری", "نمایش‌رنگ", "نمایش‌شکلهای‌خارجی", "نمایش‌طرح‌بندی", "نمایش‌قالب", "نمایش‌قلم‌بدنه", "نمایش‌لوح", "نمایش‌مجموعه‌علامت", "نمایش‌محیط‌قلم‌بدنه", "نمایش‌میدانها", "نمایش‌چاپ", "نمایش‌گروه‌رنگ", "نوشتارزوج", "هدایت", "پا", "پابا", "پانوشت", "پایان‌آرایش", "پایان‌آرایش‌ستون", "پایان‌بازبینی", "پایان‌بلوک‌حاشیه", "پایان‌ترکیب", "پایان‌تصحیح‌خط", "پایان‌تطابق", "پایان‌تنظیم", "پایان‌تولید", "پایان‌جدول", "پایان‌جدولها", "پایان‌خط", "پایان‌خطها", "پایان‌خط‌حاشیه", "پایان‌خط‌متن", "پایان‌رنگ", "پایان‌ستونها", "پایان‌سراسری", "پایان‌شماره‌گذاری‌خط", "Ù¾Ø§ÛŒØ§Ù†â€ŒØºÛŒØ±ÙØ´Ø±Ø¯Ù‡", "Ù¾Ø§ÛŒØ§Ù†â€ŒÙØ´Ø±Ø¯Ù‡", "پایان‌متن", "پایان‌مجموعه‌ستون", "پایان‌محیط", "پایان‌مخالÙ", "پایان‌موضعی", "پایان‌مولÙÙ‡", "پایان‌مکان‌گذاری", "پایان‌نازکتر", "پایان‌نسخه", "پایان‌نقل‌قول", "پایان‌نوشتار", "پایان‌پانوشتهای‌موضعی", "Ù¾Ø§ÛŒØ§Ù†â€ŒÙ¾Ø±ÙˆÙØ§ÛŒÙ„", "پایان‌پروژه", "پایان‌پس‌زمینه", "پایان‌پوشش", "پایان‌کد", "پایین", "پرده", "پروژه", "پرکردن‌میدان", "پس‌زمینه", "پیروی‌نسخه", "Ù¾ÛŒØ±ÙˆÛŒâ€ŒÙ†Ø³Ø®Ù‡â€ŒÙ¾Ø±ÙˆÙØ§ÛŒÙ„", "Ù¾ÛŒØ±ÙˆÛŒâ€ŒÙ¾Ø±ÙˆÙØ§ÛŒÙ„", "Ú†Ø§Ù¾â€ŒØ§Ø±ØªÙØ§Ø¹â€ŒØ¨Ø±Ú¯", "چاپ‌عرض‌برگ", "چوبخط", "چپ‌چین", "کاغذزوج", "کسر", "کشیده", "کلمه‌حاشیه", "کلمه‌راست", "گیره", "یادداشت", "یک‌جا", "یک‌خط" }, ["ro"]={ "CAP", "CUVANT", "CUVINTE", "Cap", "Caps", "Character", "Characters", "Cuvant", "Cuvinte", "KAP", "Kap", "Kaps", "LUNA", "Litera", "Litere", "MONTH", "Numere", "Numereromane", "Romannumerals", "WEEKDAY", "WORD", "WORDS", "Word", "Words", "ZIDINSAPTAMANA", "about", "adapteazaaspect", "adaptlayout", "adubuffer", "adumarcaje", "afiseazaaspect", "afiseazacampuri", "afiseazaculoare", "afiseazafiguriexterne", "afiseazafonttext", "afiseazagrid", "afiseazagrupculoare", "afiseazamakeup", "afiseazamediufonttext", "afiseazapaleta", "afiseazarama", "afiseazasetari", "afiseazasetsimboluri", "afiseazastruts", "afiseazatiparire", "aliniat", "aliniatcentru", "aliniatdreapta", "aliniatstanga", "appendix", "arg", "ascundeblocuri", "at", "atleftmargin", "atpage", "atrightmargin", "background", "baraculoare", "barainteractiune", "barasincronizare", "blackrule", "blackrules", "blanc", "blank", "bookmark", "but", "butoaneinteractiune", "buton", "butonmeniu", "button", "bypassblocks", "camp", "campumplere", "cap", "chapter", "character", "characters", "chem", "citat", "clip", "cloneazacamp", "clonefield", "coloana", "color", "column", "comment", "comparagrupculoare", "comparapaleta", "comparecolorgroup", "comparepalet", "completeazanumarpagina", "completecombinedlist", "completelistoffloats", "completelistofsorts", "completelistofsynonyms", "completeregister", "componenta", "convertestenumar", "convertnumber", "copiazacamp", "copyfield", "corecteazaspatiualb", "correctwhitespace", "coupledocument", "coupledregister", "couplemarking", "couplepage", "couplepaper", "coupleregister", "crlf", "culoare", "culoaregri", "cupleazadocument", "cupleazamarcaje", "cupleazaregistru", "currentdate", "currentheadnumber", "cutspace", "cuvantdreapta", "cuvantmarginal", "data", "datacurenta", "datareferit", "date", "decouplemarking", "decrementnumber", "decupleazamarcaje", "define", "defineblank", "defineblock", "definebodyfont", "definebodyfontDEF", "definebodyfontREF", "definebodyfontenvironment", "definebuffer", "definecolor", "definecolorgroup", "definecolumnbreak", "definecolumnset", "definecombination", "definecombinedlist", "defineconversion", "definedescription", "definedfont", "defineenumeration", "definefield", "definefieldstack", "definefiguresymbol", "definefloat", "definefont", "definefontfeature", "definefonthandling", "definefontsynonym", "defineframed", "defineframedtext", "definehead", "defineindentedtext", "defineinmargin", "defineinteractionmenu", "defineitemgroup", "definelabel", "definelayer", "definelayout", "definelist", "definelogo", "definemakeup", "definemarking", "definemathalignment", "defineoutput", "defineoverlay", "definepagebreak", "definepalet", "definepapersize", "defineparagraphs", "defineplacement", "defineprofile", "defineprogram", "definereference", "definereferenceformat", "definereferencelist", "defineregister", "definesection", "definesectionblock", "definesorting", "definestartstop", "defineste", "definesteaccent", "definesteantet", "definesteblanc", "definestebloc", "definesteblocsectiune", "definestebuffer", "definestecamp", "definestecampprincipal", "definestecaracter", "definestecomanda", "definesteconversie", "definesteculoare", "definestedescriere", "definestedimensiunehartie", "definesteenumerare", "definesteeticheta", "definestefloat", "definestefont", "definestefontraw", "definestefonttext", "definesteformatreferinte", "definestegrupculori", "definestehbox", "definesteinconjurare", "definestelista", "definestelistacombinata", "definestelistareferinte", "definestelogo", "definestemakeup", "definestemarcaje", "definestemediulfonttext", "definestemeniuinteractiune", "definesteoutput", "definesteoverlay", "definestepaleta", "definesteparagraf", "definestepozitietext", "definesteprofil", "definesteprogram", "definestereferinte", "definesteregistru", "definesterigla", "definestesablontabel", "definestesectiune", "definestesimbol", "definestesimbolfigura", "definestesinonim", "definestesinonimfont", "definestesortare", "definestestartstop", "definestestil", "definestestilfont", "definestestivacampuri", "definestesubcamp", "definestetabulatori", "definestetext", "definestetexteinconjurate", "definestetextinconjurat", "definestetyping", "definestevariabilatext", "definesteversiune", "definesubfield", "definesymbol", "definesynonyms", "definetabletemplate", "definetabulate", "definetext", "definetype", "definetypeface", "definetyping", "defineversion", "description", "despre", "determinacaracteristicilelistei", "determinacaracteristiciregistru", "determinanumartitlu", "determineheadnumber", "determinelistcharacteristics", "dezactiveazameniuinteractiune", "dimensiune", "din", "disableinteractionmenu", "distantaantet", "distantacolt", "distantacoltdreapta", "distantacoltstanga", "distantajos", "distantamargine", "distantamarginedreapta", "distantamarginestanga", "distantasubsol", "distantasus", "domiciliu", "dute", "dutebox", "dutepagina", "ecran", "el", "element", "emptylines", "enumeration", "eticheta", "etichete", "externalfigure", "fact", "faraaliniat", "faradimensiune", "farafisiere", "faraliniiantetsisubsol", "faraliniisussijos", "faralista", "faramarcaje", "faraspatiu", "faraspatiualb", "field", "fieldstack", "figuraexterna", "fillinfield", "fillinline", "fillinrules", "fillintext", "firdepar", "fitfield", "fixedspaces", "followprofile", "followprofileversion", "followversion", "folosesteURL", "folosestebloc", "folosestecodificarea", "folosestecomenzi", "folosestedirector", "folosestedocumentextern", "folosestefiguraexterna", "folosestefisiereexterne", "folosestefisierextern", "folosestemodul", "folosestemodule", "folosestemuzicaexterna", "folosestereferinte", "folosestescriptJS", "folosestesimboluri", "folosestespeciale", "folosesteurl", "footnote", "footnotetext", "forceblocks", "forteazablocuri", "fractie", "fraction", "framed", "framedtext", "from", "fundal", "gatablocuri", "getbuffer", "getmarking", "getnumber", "godown", "goto", "gotobox", "graycolor", "grid", "grosimelinie", "hairline", "hartiedubla", "head", "headnumber", "headsym", "headtext", "hideblocks", "high", "hl", "immediatebetweenlist", "immediatetolist", "impachetat", "impartefloat", "in", "inalt", "inaltamargine", "inaltimeantet", "inaltimehartie", "inaltimehartieimprimanta", "inaltimejos", "inaltimelista", "inaltimemakeup", "inaltimesubsol", "inaltimesus", "inaltimetext", "indentation", "indenting", "indreapta", "inframed", "ininner", "injos", "inleft", "inline", "inlinie", "inmaframed", "inmargin", "inmargineadreapta", "inmargineastanga", "inneredgedistance", "inneredgewidth", "innermargindistance", "innermarginwidth", "inothermargin", "inouter", "inparteadreapta", "inparteastanga", "inright", "instalarelimba", "installlanguage", "instanga", "interactionbar", "interactionbuttons", "intins", "item", "items", "its", "jos", "jossus", "kap", "keepblocks", "la", "labeling", "labels", "labeltext", "language", "lapagina", "latimecoltdreapta", "latimecoltstanga", "latimecolturi", "latimehartie", "latimehartieimprimanta", "latimelista", "latimemakeup", "latimemargine", "latimemarginedreapta", "latimemarginestanga", "latimetext", "leftaligned", "leg", "limba", "limbaprincipala", "liniemargine", "linieneagra", "liniesubtire", "linieumplere", "liniinegre", "liniisubtiri", "listsymbol", "litera", "litere", "loadsorts", "loadsynonyms", "logcampuri", "logfields", "lohi", "low", "luna", "lungimelista", "maframed", "mainlanguage", "mapfontsize", "mar", "marcaje", "marcheazaversiune", "marginal", "marginrule", "margintext", "marking", "markversion", "matematica", "mathematics", "mediaeval", "mediu", "meniuinteractiune", "midaligned", "minicitat", "mirror", "month", "moveformula", "moveongrid", "movesidefloat", "mutapegrid", "name", "navigating", "necunoscut", "nextsection", "niveltitlu", "nocap", "noheaderandfooterlines", "noindenting", "nokap", "nolist", "nomarking", "nomoreblocks", "nomorefiles", "nop", "nospace", "nota", "notasubsol", "note", "notopandbottomlines", "nowhitespace", "numarformula", "numarincrement", "numarpagina", "numarsubformula", "numartitlu", "numartitlucurent", "numartotalpagini", "numberofsubpages", "numbers", "nume", "numere", "numereromane", "numeunitate", "nutesta", "olinie", "outeredgedistance", "outeredgewidth", "outermargindistance", "outermarginwidth", "overbar", "overbars", "overstrike", "overstrikes", "packed", "page", "pagedepth", "pageoffset", "pagereference", "pagina", "paginadubla", "paragraph", "part", "pastreazablocuri", "pelung", "periods", "placebookmarks", "placecombinedlist", "placefloat", "placefootnotes", "placeformula", "placeheadnumber", "placeheadtext", "placelegend", "placelist", "placelistoffloats", "placelistofsorts", "placelistofsynonyms", "placelocalfootnotes", "placelogos", "placeongrid", "placeontopofeachother", "placerawlist", "placereferencelist", "placeregister", "placesidebyside", "placesubformula", "plaseazapegrid", "plaseazasemnecarte", "position", "potrivestecamp", "pozitie", "pozitietext", "proceseazabloc", "proceseazapagina", "processblocks", "processpage", "produs", "program", "proiect", "publicatie", "publication", "puncte", "punedeasuprafiecareia", "punefatainfata", "puneformula", "punelegenda", "punelista", "punelistacombinata", "punelogouri", "punenotesubsol", "punenotesubsollocale", "punenumarpagina", "puneregistru", "punerigla", "punesubformula", "punevariabilatext", "quotation", "quote", "ran", "ref", "refa", "reference", "referinta", "referintapagina", "referintatext", "referit", "referral", "referraldate", "referring", "reflexie", "register", "remarca", "reservefloat", "reset", "reseteazamarcaje", "resetmarking", "resetnumber", "resettextcontent", "rightaligned", "riglatext", "rigleumplere", "romannumerals", "rotate", "roteste", "saripesteblocuri", "scala", "scale", "screen", "scriebuffer", "scrieinlista", "scrieinlistareferinte", "scrieinregistru", "scrieintreliste", "section", "seeregister", "selectblocks", "selecteazablocuri", "selecteazahartie", "selecteazaversiune", "selectpaper", "selectversion", "semncarte", "setarebarasincronizare", "setareitemization", "setarelimba", "setareoutput", "setarepozitie", "setaresincronizare", "seteazaaliniat", "seteazaalinierea", "seteazaantet", "seteazaaranjareapag", "seteazaaspect", "seteazabarainteractiune", "seteazablanc", "seteazabloc", "seteazablocsectiune", "seteazablocurimarginale", "seteazabuffer", "seteazabutoane", "seteazacamp", "seteazacampuri", "seteazaclipping", "seteazacoloane", "seteazacombinari", "seteazacomentariu", "seteazacomentariupagina", "seteazaculoare", "seteazaculori", "seteazadefinireanotasubsol", "seteazadescriere", "seteazadimensiunihartie", "seteazaecrane", "seteazaecraninteractiune", "seteazaelemente", "seteazaenumerare", "seteazafiguriexterne", "seteazafloat", "seteazafloats", "seteazafonttext", "seteazaformulare", "seteazaformule", "seteazafundal", "seteazafundaluri", "seteazagrosimelinie", "seteazaimpartireafloat", "seteazainconjurat", "seteazaingust", "seteazainteractiunea", "seteazajos", "seteazalegenda", "seteazalegendele", "seteazaliniesilabe", "seteazaliniesubtire", "seteazalinii", "seteazaliniimargine", "seteazaliniinegre", "seteazaliniiumplere", "seteazalista", "seteazalistacombinata", "seteazalistareferinte", "seteazamajuscule", "seteazamakeup", "seteazamarcaje", "seteazamarginal", "seteazamediulfonttext", "seteazameniuinteractiune", "seteazaminicitat", "seteazanotasubsol", "seteazanumarpagina", "seteazanumarsubpagina", "seteazanumartitlu", "seteazanumerotare", "seteazanumerotarelinii", "seteazanumerotarepagina", "seteazanumerotareparagrafe", "seteazapaleta", "seteazaparagrafe", "seteazaplasareaopozita", "seteazapozitietext", "seteazaprofile", "seteazaprograme", "seteazapublicatii", "seteazareferinte", "seteazaregistru", "seteazarigla", "seteazarigletext", "seteazarigleumplere", "seteazarotare", "seteazasectiune", "seteazasimbol", "seteazasinonime", "seteazasistem", "seteazasortare", "seteazaspatiu", "seteazaspatiualb", "seteazaspatiuinterliniar", "seteazastrut", "seteazasublinie", "seteazasubsol", "seteazasus", "seteazatab", "seteazatabele", "seteazatabulatori", "seteazatext", "seteazatexteantet", "seteazatextejos", "seteazatextesubsol", "seteazatextesus", "seteazatextetext", "seteazatexteticheta", "seteazatexttitlu", "seteazatitlu", "seteazatitluri", "seteazatoleranta", "seteazatranzitiepagina", "seteazatype", "seteazatyping", "seteazaurl", "seteazavariabilatext", "seteazaversiuni", "setnumber", "settextcontent", "setupalign", "setupanswerarea", "setuparranging", "setupbackground", "setupbackgrounds", "setupblackrules", "setupblank", "setupblock", "setupbodyfont", "setupbodyfontenvironment", "setupbottom", "setupbottomtexts", "setupbuffer", "setupbuttons", "setupcapitals", "setupcaption", "setupcaptions", "setupclipping", "setupcolor", "setupcolors", "setupcolumns", "setupcolumnset", "setupcolumnsetlines", "setupcolumnsetstart", "setupcombinations", "setupcombinedlist", "setupcomment", "setupdescriptions", "setupenumerations", "setupexternalfigures", "setupfield", "setupfields", "setupfillinlines", "setupfillinrules", "setupfloat", "setupfloats", "setupfloatsplitting", "setupfonthandling", "setupfontsynonym", "setupfooter", "setupfootertexts", "setupfootnotedefinition", "setupfootnotes", "setupforms", "setupformulas", "setupframed", "setupframedtexts", "setuphead", "setupheader", "setupheadertexts", "setupheadnumber", "setupheads", "setupheadtext", "setuphyphenmark", "setupindentedtext", "setupindenting", "setupinmargin", "setupinteraction", "setupinteractionbar", "setupinteractionmenu", "setupinteractionscreen", "setupinterlinespace", "setupinterlinespace2", "setupitemgroup", "setupitems", "setuplabeltext", "setuplanguage", "setuplayout", "setuplegend", "setuplinenumbering", "setuplines", "setuplinewidth", "setuplist", "setuplistalternative", "setupmakeup", "setupmarginblocks", "setupmarginrules", "setupmarking", "setupmathalignment", "setupnarrower", "setupnumber", "setupnumbering", "setupoppositeplacing", "setupoutput", "setuppagenumber", "setuppagenumbering", "setuppagetransitions", "setuppalet", "setuppaper", "setuppapersize", "setupparagraphnumbering", "setupparagraphs", "setupplacement", "setuppositioning", "setupprofiles", "setupprograms", "setuppublications", "setupquote", "setupreferencelist", "setupreferencing", "setupregister", "setuprotate", "setupscreens", "setupsection", "setupsectionblock", "setupsorting", "setupspacing", "setupstartstop", "setupstrut", "setupsubpagenumber", "setupsymbolset", "setupsynchronization", "setupsynchronizationbar", "setupsynonyms", "setupsystem", "setuptab", "setuptables", "setuptabulate", "setuptext", "setuptextrules", "setuptexttexts", "setupthinrules", "setuptolerance", "setuptop", "setuptoptexts", "setuptype", "setuptyping", "setupunderbar", "setupurl", "setupversions", "setupwhitespace", "setvariabilatext", "showbodyfont", "showbodyfontenvironment", "showcolor", "showcolorgroup", "showexternalfigures", "showfields", "showframe", "showgrid", "showlayout", "showmakeup", "showpalet", "showprint", "showsetups", "showstruts", "showsymbolset", "sim", "simbol", "sincronizeaza", "someline", "somewhere", "sort", "space", "spatiifixate", "spatiu", "spatiualb", "spatiufixat", "spatiujos", "spatiuspate", "spatiusus", "splitfloat", "startalignment", "startaliniere", "startbackground", "startblocmarginal", "startbuffer", "startcitat", "startcodificare", "startcoloane", "startcolor", "startcolumnmakeup", "startcolumns", "startcolumnset", "startcombinare", "startcombination", "startcomment", "startcomponent", "startcomponenta", "startcorectielinie", "startculoare", "startdescription", "startdocument", "startenumeration", "startenvironment", "startfact", "startfigura", "startfigure", "startfloattext", "startformula", "startframedtext", "startfundal", "startglobal", "starthiding", "startimpachetat", "startingust", "startinteractionmenu", "startitemgroup", "startlegend", "startline", "startlinecorrection", "startlinenumbering", "startlines", "startlinie", "startliniemargine", "startlinii", "startlocal", "startlocalenvironment", "startlocalfootnotes", "startmakeup", "startmarginblock", "startmarginrule", "startmediu", "startnamemakeup", "startnarrower", "startneimpachetat", "startnotesubsollocale", "startnumerotarelinii", "startopozit", "startopposite", "startoverlay", "startoverview", "startpacked", "startparagraph", "startpositioning", "startpostponing", "startpozitionare", "startproduct", "startprodus", "startprofil", "startprofile", "startproiect", "startproject", "startquotation", "startraster", "startregister", "startriglatext", "startsetsimboluri", "startsincronizare", "startsymbolset", "startsynchronization", "starttabel", "starttabele", "starttable", "starttables", "starttabulate", "starttext", "starttextrule", "starttyping", "startunpacked", "startversion", "startversiune", "stivacampuri", "stopalignment", "stopaliniere", "stopbackground", "stopblobal", "stopblocmarginal", "stopbuffer", "stopcitat", "stopcodificare", "stopcoloane", "stopcolor", "stopcolumnmakeup", "stopcolumns", "stopcolumnset", "stopcombinare", "stopcombination", "stopcomment", "stopcomponent", "stopcomponenta", "stopcorectielinie", "stopculoare", "stopdescription", "stopdocument", "stopenumeration", "stopenvironment", "stopfact", "stopfigure", "stopfloattext", "stopformula", "stopframedtext", "stopfundal", "stophiding", "stopimpachetat", "stopingust", "stopinteractionmenu", "stopitemgroup", "stoplegend", "stopline", "stoplinecorrection", "stoplinenumbering", "stoplines", "stoplinie", "stopliniemargine", "stoplinii", "stoplocal", "stoplocalenvironment", "stoplocalfootnotes", "stopmakeup", "stopmarginblock", "stopmarginrule", "stopmediu", "stopnamemakeup", "stopnarrower", "stopneimpachetat", "stopnotesubsollocale", "stopnumerotarelinii", "stopopozit", "stopopposite", "stopoverlay", "stopoverview", "stoppacked", "stopparagraph", "stoppositioning", "stoppostponing", "stoppozitionare", "stopproduct", "stopprodus", "stopprofil", "stopprofile", "stopproiect", "stopproject", "stopquotation", "stopraster", "stopriglatext", "stopsincronizare", "stopsymbolset", "stopsynchronization", "stoptabel", "stoptabele", "stoptable", "stoptables", "stoptabulate", "stoptext", "stoptextrule", "stoptyping", "stopunpacked", "stopversion", "stopversiune", "stretched", "sub", "subject", "subpagenumber", "subsection", "subsubject", "subsubsection", "subsubsubject", "switchtobodyfont", "sym", "symbol", "synchronizationbar", "synchronize", "synonym", "tab", "testcolumn", "testpage", "tex", "texteticheta", "textmarginal", "textreference", "textrule", "texttitlu", "textumplere", "thinrule", "thinrules", "title", "titlu", "titlumarginal", "tooltip", "traduce", "translate", "trecilafontraw", "trecilafonttext", "txt", "typ", "type", "typebuffer", "typefile", "underbar", "underbars", "undeva", "urmeazaprofil", "urmeazaversiune", "urmeazaversiuneprofil", "useURL", "useXMLfilter", "useblocks", "usecommands", "usedirectory", "useencoding", "useexternaldocument", "useexternalfigure", "useexternalfile", "useexternalfiles", "useexternalsoundtrack", "usemodule", "usereferences", "usespecials", "usesymbols", "usetypescript", "usetypescriptfile", "valoareculoare", "valoaregri", "variabilatext", "version", "versiune", "vl", "weekday", "whitespace", "wordright", "writebetweenlist", "writetolist", "writetoreferencelist", "writetoregister", "zidinsaptamana" }, }././@LongLink0000644000000000000000000000015600000000000011605 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/data/scite-context-data-metapost.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/data/scite-context-data-met0000644000175000017500000001546212514560075032320 0ustar norbertnorbertreturn { ["commands"]={ "upto", "downto", "beginfig", "endfig", "beginglyph", "endglyph", "rotatedaround", "reflectedabout", "arrowhead", "currentpen", "currentpicture", "cuttings", "defaultfont", "extra_beginfig", "extra_endfig", "ditto", "EOF", "down", "evenly", "fullcircle", "halfcircle", "identity", "in", "left", "pensquare", "penrazor", "penspec", "origin", "quartercircle", "right", "unitsquare", "up", "withdots", "abs", "bbox", "ceiling", "center", "cutafter", "cutbefore", "dir", "directionpoint", "div", "dotprod", "intersectionpoint", "inverse", "mod", "round", "unitvector", "whatever", "cutdraw", "draw", "drawarrow", "drawdblarrow", "fill", "filldraw", "drawdot", "loggingall", "interact", "tracingall", "tracingnone", "pickup", "undraw", "unfill", "unfilldraw", "buildcycle", "dashpattern", "decr", "dotlabel", "dotlabels", "drawoptions", "incr", "label", "labels", "max", "min", "thelabel", "z", "beginchar", "blacker", "capsule_end", "change_width", "define_blacker_pixels", "define_corrected_pixels", "define_good_x_pixels", "define_good_y_pixels", "define_horizontal_corrected_pixels", "define_pixels", "define_whole_blacker_pixels", "define_whole_pixels", "define_whole_vertical_blacker_pixels", "define_whole_vertical_pixels", "endchar", "extra_beginchar", "extra_endchar", "extra_setup", "font_coding_scheme", "clearxy", "clearit", "clearpen", "shipit", "font_extra_space", "exitunless", "relax", "hide", "gobble", "gobbled", "stop", "blankpicture", "counterclockwise", "tensepath", "takepower", "direction", "softjoin", "makelabel", "rotatedabout", "flex", "superellipse", "image", "nullpen", "savepen", "clearpen", "penpos", "penlabels", "range", "thru", "z", "laboff", "bye", "red", "green", "blue", "cyan", "magenta", "yellow", "black", "white", "background", "mm", "pt", "dd", "bp", "cm", "pc", "cc", "in", "triplet", "quadruplet" }, ["disabled"]={ "verbatimtex", "troffmode" }, ["internals"]={ "mitered", "rounded", "beveled", "butt", "squared", "eps", "epsilon", "infinity", "bboxmargin", "ahlength", "ahangle", "labeloffset", "dotlabeldiam", "defaultpen", "defaultscale", "join_radius", "charscale", "pen_lft", "pen_rt", "pen_top", "pen_bot" }, ["metafont"]={ "autorounding", "beginchar", "blacker", "boundarychar", "capsule_def", "capsule_end", "change_width", "chardp", "chardx", "chardy", "charexists", "charext", "charht", "charic", "charlist", "charwd", "cull", "cullit", "currenttransform", "currentwindow", "define_blacker_pixels", "define_corrected_pixels", "define_good_x_pixels", "define_good_y_pixels", "define_horizontal_corrected_pixels", "define_pixels", "define_whole_blacker_pixels", "define_whole_pixels", "define_whole_vertical_blacker_pixels", "define_whole_vertical_pixels", "designsize", "display", "displaying", "endchar", "extensible", "extra_beginchar", "extra_endchar", "extra_setup", "fillin", "font_coding_scheme", "font_extra_space", "font_identifier", "font_normal_shrink", "font_normal_space", "font_normal_stretch", "font_quad", "font_size", "font_slant", "font_x_height", "fontdimen", "fontmaking", "gfcorners", "granularity", "grayfont", "headerbyte", "hppp", "hround", "imagerules", "italcorr", "kern", "labelfont", "ligtable", "lowres_fix", "makebox", "makegrid", "maketicks", "mode_def", "mode_setup", "nodisplays", "notransforms", "numspecial", "o_correction", "openit", "openwindow", "pixels_per_inch", "proofing", "proofoffset", "proofrule", "proofrulethickness", "rulepen", "screenchars", "screenrule", "screenstrokes", "screen_cols", "screen_rows", "showit", "slantfont", "smode", "smoothing", "titlefont", "totalweight", "tracingedges", "tracingpens", "turningcheck", "unitpixel", "vppp", "vround", "xoffset", "yoffset" }, ["primitives"]={ "charcode", "day", "linecap", "linejoin", "miterlimit", "month", "pausing", "prologues", "showstopping", "time", "tracingcapsules", "tracingchoices", "mpprocset", "tracingcommands", "tracingequations", "tracinglostchars", "tracingmacros", "tracingonline", "tracingoutput", "tracingrestores", "tracingspecs", "tracingstats", "tracingtitles", "truecorners", "warningcheck", "year", "false", "nullpicture", "pencircle", "true", "and", "angle", "arclength", "arctime", "ASCII", "boolean", "bot", "char", "color", "cosd", "cycle", "decimal", "directiontime", "floor", "fontsize", "hex", "infont", "intersectiontimes", "known", "length", "llcorner", "lrcorner", "makepath", "makepen", "mexp", "mlog", "normaldeviate", "not", "numeric", "oct", "odd", "or", "path", "pair", "pen", "penoffset", "picture", "point", "postcontrol", "precontrol", "reverse", "rotated", "scaled", "shifted", "sind", "slanted", "sqrt", "str", "string", "subpath", "substring", "transform", "transformed", "ulcorner", "uniformdeviate", "unknown", "urcorner", "xpart", "xscaled", "xxpart", "xypart", "ypart", "yscaled", "yxpart", "yypart", "zscaled", "addto", "clip", "input", "interim", "let", "newinternal", "save", "setbounds", "shipout", "show", "showdependencies", "showtoken", "showvariable", "special", "begingroup", "endgroup", "of", "curl", "tension", "and", "controls", "interpath", "on", "off", "def", "vardef", "enddef", "expr", "suffix", "text", "primary", "secondary", "tertiary", "primarydef", "secondarydef", "tertiarydef", "randomseed", "also", "contour", "doublepath", "withcolor", "withcmykcolor", "withpen", "dashed", "if", "else", "elseif", "fi", "for", "endfor", "forever", "exitif", "within", "forsuffixes", "step", "until", "charlist", "extensible", "fontdimen", "headerbyte", "kern", "ligtable", "boundarychar", "chardp", "charext", "charht", "charic", "charwd", "designsize", "fontmaking", "charexists", "cullit", "currenttransform", "gfcorners", "grayfont", "hround", "imagerules", "lowres_fix", "nodisplays", "notransforms", "openit", "displaying", "currentwindow", "screen_rows", "screen_cols", "pixels_per_inch", "cull", "display", "openwindow", "numspecial", "totalweight", "autorounding", "fillin", "proofing", "tracingpens", "xoffset", "chardx", "granularity", "smoothing", "turningcheck", "yoffset", "chardy", "hppp", "tracingedges", "vppp", "extra_beginfig", "extra_endfig", "mpxbreak", "endinput", "message", "delimiters", "turningnumber", "errmessage", "readstring", "scantokens", "end", "outer", "inner", "write", "to", "readfrom", "withprescript", "withpostscript", "top", "bot", "lft", "rt", "ulft", "urt", "llft", "lrt", "redpart", "greenpart", "bluepart", "cyanpart", "magentapart", "yellowpart", "blackpart", "prescriptpart", "postscriptpart", "rgbcolor", "cmykcolor", "colormodel", "graypart", "greypart", "greycolor", "graycolor", "dashpart", "penpart", "stroked", "filled", "textual", "clipped", "bounded", "pathpart", "expandafter", "minute", "hour", "outputformat", "outputtemplate", "filenametemplate", "fontmapfile", "fontmapline", "fontpart", "fontsize", "glyph", "restoreclipcolor", "troffmode", "runscript", "maketext" }, ["shortcuts"]={ "..", "...", "--", "---", "&", "\\" }, ["tex"]={ "btex", "etex", "verbatimtex" }, }context-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-txt.lua0000644000175000017500000000440412336241772032423 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer for plain text (with spell checking)", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } local P, S, Cmt, Cp = lpeg.P, lpeg.S, lpeg.Cmt, lpeg.Cp local find, match = string.find, string.match local lexer = require("lexer") local context = lexer.context local patterns = context.patterns local token = lexer.token local textlexer = lexer.new("txt","scite-context-lexer-txt") local whitespace = textlexer.whitespace local space = patterns.space local any = patterns.any local wordtoken = patterns.wordtoken local wordpattern = patterns.wordpattern local checkedword = context.checkedword local styleofword = context.styleofword local setwordlist = context.setwordlist local validwords = false local validminimum = 3 -- local styleset = context.newstyleset { -- "default", -- "text", "okay", "error", "warning", -- "preamble", -- } -- [#!-%] language=uk local p_preamble = Cmt((S("#!-%") * P(" ")), function(input,i,_) -- todo: utf bomb no longer # if i == 1 then -- < 10 then validwords, validminimum = false, 3 local s, e, line = find(input,"^[#!%-%%](.+)[\n\r]",i) if line then local language = match(line,"language=([a-z]+)") if language then validwords, validminimum = setwordlist(language) end end end return false end) local t_preamble = token("preamble", p_preamble) local t_word = wordpattern / function(s) return styleofword(validwords,validminimum,s) end * Cp() -- the function can be inlined local t_text = token("default", wordtoken^1) local t_rest = token("default", (1-wordtoken-space)^1) local t_spacing = token(whitespace, space^1) textlexer._rules = { { "whitespace", t_spacing }, { "preamble", t_preamble }, { "word", t_word }, -- words >= 3 { "text", t_text }, -- non words { "rest", t_rest }, } textlexer._LEXBYLINE = true -- new (needs testing, not yet as the system changed in 3.24) textlexer._tokenstyles = context.styleset return textlexer context-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml.lua0000644000175000017500000002574412336241772032416 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer for xml", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } -- adapted from the regular context pretty printer code (after all, lexing -- boils down to much of the same and there are only so many ways to do -- things). Simplified a bit as we have a different nesting model. -- todo: parse entities in attributes local global, string, table, lpeg = _G, string, table, lpeg local P, R, S, C, Cmt, Cp = lpeg.P, lpeg.R, lpeg.S, lpeg.C, lpeg.Cmt, lpeg.Cp local type = type local match, find = string.match, string.find local lexer = require("lexer") local context = lexer.context local patterns = context.patterns local token = lexer.token local exact_match = lexer.exact_match local xmllexer = lexer.new("xml","scite-context-lexer-xml") local whitespace = xmllexer.whitespace local xmlcommentlexer = lexer.load("scite-context-lexer-xml-comment") local xmlcdatalexer = lexer.load("scite-context-lexer-xml-cdata") local xmlscriptlexer = lexer.load("scite-context-lexer-xml-script") local lualexer = lexer.load("scite-context-lexer-lua") local space = patterns.space local any = patterns.any local dquote = P('"') local squote = P("'") local colon = P(":") local semicolon = P(";") local equal = P("=") local ampersand = P("&") local name = (R("az","AZ","09") + S("_-."))^1 local openbegin = P("<") local openend = P("") + P(">") local closeend = P(">") local opencomment = P("") local openinstruction = P("") local opencdata = P("") local opendoctype = P("") + P(">") local openscript = openbegin * (P("script") + P("SCRIPT")) * (1-closeend)^0 * closeend -- begin local closescript = openend * (P("script") + P("SCRIPT")) * closeend local openlua = "" -- -- -- -- -- -- local entity = ampersand * (1-semicolon)^1 * semicolon local utfchar = context.utfchar local wordtoken = context.patterns.wordtoken local iwordtoken = context.patterns.iwordtoken local wordpattern = context.patterns.wordpattern local iwordpattern = context.patterns.iwordpattern local invisibles = context.patterns.invisibles local checkedword = context.checkedword local styleofword = context.styleofword local setwordlist = context.setwordlist local validwords = false local validminimum = 3 -- -- -- local t_preamble = Cmt(P("]*%?>%s*<%?context%-directive%s+editor%s+language%s+(..)%s+%?>") -- if not language then -- language = match(input,"^<%?xml[^>]*language=[\"\'](..)[\"\'][^>]*%?>",i) -- end if language then validwords, validminimum = setwordlist(language) end end return false end) local t_word = -- Ct( iwordpattern / function(s) return styleofword(validwords,validminimum,s) end * Cp() ) -- the function can be inlined iwordpattern / function(s) return styleofword(validwords,validminimum,s) end * Cp() -- the function can be inlined local t_rest = token("default", any) local t_text = token("default", (1-S("<>&")-space)^1) local t_spacing = token(whitespace, space^1) local t_optionalwhitespace = token("default", space^1)^0 local t_localspacing = token("default", space^1) -- Because we want a differently colored open and close we need an embedded lexer (whitespace -- trigger). What is actually needed is that scintilla applies the current whitespace style. -- Even using different style keys is not robust as they can be shared. I'll fix the main -- lexer code. local t_sstring = token("quote",dquote) * token("string",(1-dquote)^0) -- different from context * token("quote",dquote) local t_dstring = token("quote",squote) * token("string",(1-squote)^0) -- different from context * token("quote",squote) -- local t_comment = -- token("command",opencomment) -- * token("comment",(1-closecomment)^0) -- different from context -- * token("command",closecomment) -- local t_cdata = -- token("command",opencdata) -- * token("comment",(1-closecdata)^0) -- different from context -- * token("command",closecdata) -- maybe cdata just text (then we don't need the extra lexer as we only have one comment then) -- -- -- -- -- -- -- -- -- local t_docstr = t_dstring + t_sstring local t_docent = token("command",P("")) local t_docele = token("command",P("")) local t_docset = token("command",P("[")) * t_optionalwhitespace * ((t_optionalwhitespace * (t_docent + t_docele))^1 + token("comment",(1-P("]"))^0)) * t_optionalwhitespace * token("command",P("]")) local t_doctype = token("command",P("")) lexer.embed_lexer(xmllexer, lualexer, token("command", openlua), token("command", closelua)) lexer.embed_lexer(xmllexer, xmlcommentlexer, token("command", opencomment), token("command", closecomment)) lexer.embed_lexer(xmllexer, xmlcdatalexer, token("command", opencdata), token("command", closecdata)) lexer.embed_lexer(xmllexer, xmlscriptlexer, token("command", openscript), token("command", closescript)) -- local t_name = -- token("plain",name) -- * ( -- token("default",colon) -- * token("keyword",name) -- ) -- + token("keyword",name) local t_name = -- more robust token("plain",name * colon)^-1 * token("keyword",name) -- local t_key = -- token("plain",name) -- * ( -- token("default",colon) -- * token("constant",name) -- ) -- + token("constant",name) local t_key = token("plain",name * colon)^-1 * token("constant",name) local t_attributes = ( t_optionalwhitespace * t_key * t_optionalwhitespace * token("plain",equal) * t_optionalwhitespace * (t_dstring + t_sstring) * t_optionalwhitespace )^0 local t_open = token("keyword",openbegin) * ( t_name * t_optionalwhitespace * t_attributes * token("keyword",closebegin) + token("error",(1-closebegin)^1) ) local t_close = token("keyword",openend) * ( t_name * t_optionalwhitespace * token("keyword",closeend) + token("error",(1-closeend)^1) ) local t_entity = token("constant",entity) local t_instruction = token("command",openinstruction * P("xml")) * t_optionalwhitespace * t_attributes * t_optionalwhitespace * token("command",closeinstruction) + token("command",openinstruction * name) * token("default",(1-closeinstruction)^1) * token("command",closeinstruction) local t_invisible = token("invisible",invisibles^1) -- local t_preamble = -- token("preamble", t_preamble ) xmllexer._rules = { { "whitespace", t_spacing }, { "preamble", t_preamble }, { "word", t_word }, -- { "text", t_text }, -- { "comment", t_comment }, -- { "cdata", t_cdata }, { "doctype", t_doctype }, { "instruction", t_instruction }, { "close", t_close }, { "open", t_open }, { "entity", t_entity }, { "invisible", t_invisible }, { "rest", t_rest }, } xmllexer._tokenstyles = context.styleset xmllexer._foldpattern = P("") -- separate entry else interference + P("") xmllexer._foldsymbols = { _patterns = { "", "<", }, ["keyword"] = { [""] = -1, ["<"] = 1, }, ["command"] = { [""] = -1, [""] = -1, ["<"] = 1, }, } return xmllexer ././@LongLink0000644000000000000000000000015400000000000011603 Lustar rootrootcontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-script.luacontext-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-xml-scr0000644000175000017500000000166612336241772032420 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer for xml script", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } local P = lpeg.P local lexer = require("lexer") local context = lexer.context local patterns = context.patterns local token = lexer.token local xmlscriptlexer = lexer.new("xml-script","scite-context-lexer-xml-script") local whitespace = xmlscriptlexer.whitespace local space = patterns.space local nospace = 1 - space - (P("") local t_spaces = token(whitespace, space ^1) local t_script = token("default", nospace^1) xmlscriptlexer._rules = { { "whitespace", t_spaces }, { "script", t_script }, } xmlscriptlexer._tokenstyles = context.styleset return xmlscriptlexer context-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer-lua.lua0000644000175000017500000003335712524220440032362 0ustar norbertnorbertlocal info = { version = 1.002, comment = "scintilla lpeg lexer for lua", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", } -- beware: all multiline is messy, so even if it's no lexer, it should be an embedded lexer -- we probably could use a local whitespace variant but this is cleaner local P, R, S, C, Cmt, Cp = lpeg.P, lpeg.R, lpeg.S, lpeg.C, lpeg.Cmt, lpeg.Cp local match, find = string.match, string.find local setmetatable = setmetatable local lexer = require("lexer") local context = lexer.context local patterns = context.patterns local token = lexer.token local exact_match = lexer.exact_match local just_match = lexer.just_match local lualexer = lexer.new("lua","scite-context-lexer-lua") local whitespace = lualexer.whitespace local stringlexer = lexer.load("scite-context-lexer-lua-longstring") local labellexer = lexer.load("scite-context-lexer-lua-labelstring") local directives = { } -- communication channel -- this will be extended -- we could combine some in a hash that returns the class that then makes the token -- this can save time on large files local keywords = { "and", "break", "do", "else", "elseif", "end", "false", "for", "function", -- "goto", "if", "in", "local", "nil", "not", "or", "repeat", "return", "then", "true", "until", "while", } local functions = { "assert", "collectgarbage", "dofile", "error", "getmetatable", "ipairs", "load", "loadfile", "module", "next", "pairs", "pcall", "print", "rawequal", "rawget", "rawset", "require", "setmetatable", "tonumber", "tostring", "type", "unpack", "xpcall", "select", "string", "table", "coroutine", "debug", "file", "io", "lpeg", "math", "os", "package", "bit32", } local constants = { "_G", "_VERSION", "_M", "...", "_ENV", -- here too "__add", "__call", "__concat", "__div", "__idiv", "__eq", "__gc", "__index", "__le", "__lt", "__metatable", "__mode", "__mul", "__newindex", "__pow", "__sub", "__tostring", "__unm", "__len", "__pairs", "__ipairs", "NaN", } -- local tokenmappings = { } -- -- for i=1,#keywords do tokenmappings[keywords [i]] = "keyword" } -- for i=1,#functions do tokenmappings[functions[i]] = "function" } -- for i=1,#constants do tokenmappings[constants[i]] = "constant" } local internals = { -- __ "add", "call", "concat", "div", "eq", "gc", "index", "le", "lt", "metatable", "mode", "mul", "newindex", "pow", "sub", "tostring", "unm", "len", } local depricated = { "arg", "arg.n", "loadstring", "setfenv", "getfenv", "pack", } local csnames = { -- todo: option "commands", "context", "ctx", "metafun", "metapost", } local level = nil local setlevel = function(_,i,s) level = s return i end local equals = P("=")^0 local longonestart = P("[[") local longonestop = P("]]") local longonestring = (1-longonestop)^0 local longtwostart = P("[") * Cmt(equals,setlevel) * P("[") local longtwostop = P("]") * equals * P("]") local sentinels = { } setmetatable(sentinels, { __index = function(t,k) local v = "]" .. k .. "]" t[k] = v return v end }) local longtwostring = P(function(input,index) if level then -- local sentinel = "]" .. level .. "]" local sentinel = sentinels[level] local _, stop = find(input,sentinel,index,true) return stop and stop + 1 - #sentinel or #input + 1 end end) local longtwostring_body = longtwostring local longtwostring_end = P(function(input,index) if level then -- local sentinel = "]" .. level .. "]" local sentinel = sentinels[level] local _, stop = find(input,sentinel,index,true) return stop and stop + 1 or #input + 1 end end) local longcomment = Cmt(#("[[" + ("[" * C(equals) * "[")), function(input,index,level) -- local sentinel = "]" .. level .. "]" local sentinel = sentinels[level] local _, stop = find(input,sentinel,index,true) return stop and stop + 1 or #input + 1 end) local space = patterns.space -- S(" \n\r\t\f\v") local any = patterns.any local eol = patterns.eol local squote = P("'") local dquote = P('"') local escaped = P("\\") * P(1) local dashes = P("--") local spacing = token(whitespace, space^1) local rest = token("default", any) local shortcomment = token("comment", dashes * (1-eol)^0) local longcomment = token("comment", dashes * longcomment) -- fails on very long string with \ at end of lines (needs embedded lexer) -- and also on newline before " but it makes no sense to waste time on it local shortstring = token("quote", dquote) * token("string", (escaped + (1-dquote))^0) * token("quote", dquote) + token("quote", squote) * token("string", (escaped + (1-squote))^0) * token("quote", squote) ----- longstring = token("quote", longonestart) ----- * token("string", longonestring) ----- * token("quote", longonestop) ----- + token("quote", longtwostart) ----- * token("string", longtwostring) ----- * token("quote", longtwostop) local string = shortstring ----- + longstring lexer.embed_lexer(lualexer, stringlexer, token("quote",longtwostart), token("string",longtwostring_body) * token("quote",longtwostring_end)) local integer = P("-")^-1 * (patterns.hexadecimal + patterns.decimal) local number = token("number", patterns.float + integer) * (token("error",R("AZ","az","__")^1))^0 -- officially 127-255 are ok but not utf so useless ----- validword = R("AZ","az","__") * R("AZ","az","__","09")^0 local utf8character = P(1) * R("\128\191")^1 local validword = (R("AZ","az","__") + utf8character) * (R("AZ","az","__","09") + utf8character)^0 local validsuffix = (R("AZ","az") + utf8character) * (R("AZ","az","__","09") + utf8character)^0 local identifier = token("default",validword) ----- operator = token("special", P('..') + P('~=') + S('+-*/%^#=<>;:,.{}[]()')) -- maybe split off {}[]() ----- operator = token("special", S('+-*/%^#=<>;:,{}[]()') + P('..') + P('.') + P('~=') ) -- maybe split off {}[]() ----- operator = token("special", S('+-*/%^#=<>;:,{}[]().') + P('~=') ) -- no ^1 because of nested lexers local operator = token("special", S('+-*/%^#=<>;:,{}[]().|~')) -- no ^1 because of nested lexers local structure = token("special", S('{}[]()')) local optionalspace = spacing^0 local hasargument = #S("{([") -- ideal should be an embedded lexer .. local gotokeyword = token("keyword", P("goto")) * spacing * token("grouping",validword) local gotolabel = token("keyword", P("::")) * (spacing + shortcomment)^0 * token("grouping",validword) * (spacing + shortcomment)^0 * token("keyword", P("::")) ----- p_keywords = exact_match(keywords) ----- p_functions = exact_match(functions) ----- p_constants = exact_match(constants) ----- p_internals = P("__") ----- * exact_match(internals) local p_finish = #(1-R("az","AZ","__")) local p_keywords = lexer.helpers.utfchartabletopattern(keywords) * p_finish -- exact_match(keywords) local p_functions = lexer.helpers.utfchartabletopattern(functions) * p_finish -- exact_match(functions) local p_constants = lexer.helpers.utfchartabletopattern(constants) * p_finish -- exact_match(constants) local p_internals = P("__") * lexer.helpers.utfchartabletopattern(internals) * p_finish -- exact_match(internals) local p_csnames = lexer.helpers.utfchartabletopattern(csnames) * p_finish -- just_match(csnames) local keyword = token("keyword", p_keywords) local builtin = token("plain", p_functions) local constant = token("data", p_constants) local internal = token("data", p_internals) local csname = token("user", p_csnames) * ( optionalspace * hasargument + ( optionalspace * token("special", S(".:")) * optionalspace * token("user", validword ) )^1 + token("user", P("_") * validsuffix) ) local identifier = token("default", validword) * ( optionalspace * token("special", S(".:")) * optionalspace * ( token("warning", p_keywords) + token("data", p_internals) + token("default", validword ) ) )^0 -- local t = { } for k, v in next, tokenmappings do t[#t+1] = k end t = table.concat(t) -- -- local experimental = (S(t)^1) / function(s) return tokenmappings[s] end * Cp() -- -- local experimental = Cmt(S(t)^1, function(_,i,s) -- local t = tokenmappings[s] -- if t then -- return true, t, i -- end -- end) lualexer._rules = { { "whitespace", spacing }, { "keyword", keyword }, -- can be combined -- { "structure", structure }, { "function", builtin }, -- can be combined { "constant", constant }, -- can be combined -- { "experimental", experimental }, -- works but better split { "csname", csname }, { "goto", gotokeyword }, { "identifier", identifier }, { "string", string }, { "number", number }, { "longcomment", longcomment }, { "shortcomment", shortcomment }, { "label", gotolabel }, { "operator", operator }, { "rest", rest }, } -- -- experiment -- -- local idtoken = R("az","AZ","__") -- -- function context.one_of_match(specification) -- local pattern = idtoken -- the concat catches _ etc -- local list = { } -- for i=1,#specification do -- local style = specification[i][1] -- local words = specification[i][2] -- pattern = pattern + S(table.concat(words)) -- for i=1,#words do -- list[words[i]] = style -- end -- end -- return Cmt(pattern^1, function(_,i,s) -- local style = list[s] -- if style then -- return true, { style, i } -- and i or nil -- else -- -- fail -- end -- end) -- end -- -- local whatever = context.one_of_match { -- { "keyword", keywords }, -- keyword -- { "plain", functions }, -- builtin -- { "data", constants }, -- constant -- } -- -- lualexer._rules = { -- { "whitespace", spacing }, -- { "whatever", whatever }, -- { "csname", csname }, -- { "goto", gotokeyword }, -- { "identifier", identifier }, -- { "string", string }, -- { "number", number }, -- { "longcomment", longcomment }, -- { "shortcomment", shortcomment }, -- { "label", gotolabel }, -- { "operator", operator }, -- { "rest", rest }, -- } lualexer._tokenstyles = context.styleset -- lualexer._foldpattern = R("az")^2 + S("{}[]") -- separate entry else interference lualexer._foldpattern = (P("end") + P("if") + P("do") + P("function") + P("repeat") + P("until")) * P(#(1 - R("az"))) + S("{}[]") lualexer._foldsymbols = { _patterns = { "[a-z][a-z]+", "[{}%[%]]", }, ["keyword"] = { -- challenge: if=0 then=1 else=-1 elseif=-1 ["if"] = 1, -- if .. [then|else] .. end ["do"] = 1, -- [while] do .. end ["function"] = 1, -- function .. end ["repeat"] = 1, -- repeat .. until ["until"] = -1, ["end"] = -1, }, ["comment"] = { ["["] = 1, ["]"] = -1, }, -- ["quote"] = { -- confusing -- ["["] = 1, ["]"] = -1, -- }, ["special"] = { -- ["("] = 1, [")"] = -1, ["{"] = 1, ["}"] = -1, }, } -- embedded in tex: local cstoken = R("az","AZ","\127\255") + S("@!?_") local texcsname = P("\\") * cstoken^1 local commentline = P("%") * (1-S("\n\r"))^0 local texcomment = token("comment", Cmt(commentline, function() return directives.cld_inline end)) local longthreestart = P("\\!!bs") local longthreestop = P("\\!!es") local longthreestring = (1-longthreestop)^0 local texstring = token("quote", longthreestart) * token("string", longthreestring) * token("quote", longthreestop) ----- texcommand = token("user", texcsname) local texcommand = token("warning", texcsname) -- local texstring = token("quote", longthreestart) -- * (texcommand + token("string",P(1-texcommand-longthreestop)^1) - longthreestop)^0 -- we match long non-\cs sequences -- * token("quote", longthreestop) -- local whitespace = "whitespace" -- local spacing = token(whitespace, space^1) lualexer._directives = directives lualexer._rules_cld = { { "whitespace", spacing }, { "texstring", texstring }, { "texcomment", texcomment }, { "texcommand", texcommand }, -- { "structure", structure }, { "keyword", keyword }, { "function", builtin }, { "csname", csname }, { "constant", constant }, { "identifier", identifier }, { "string", string }, { "longcomment", longcomment }, { "shortcomment", shortcomment }, -- should not be used inline so best signal it as comment (otherwise complex state till end of inline) { "number", number }, { "operator", operator }, { "rest", rest }, } return lualexer context-2015.05.18.20150601/texmf-dist/context/data/scite/context/lexers/scite-context-lexer.lua0000644000175000017500000022245512524220440031602 0ustar norbertnorbertlocal info = { version = 1.400, comment = "basics for scintilla lpeg lexer for context/metafun", author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", copyright = "PRAGMA ADE / ConTeXt Development Team", license = "see context related readme files", comment = "contains copyrighted code from mitchell.att.foicica.com", } -- todo: hook into context resolver etc -- todo: only old api in lexers, rest in context subnamespace -- todo: make sure we can run in one state .. copies or shared? -- todo: auto-nesting if lpeg.setmaxstack then lpeg.setmaxstack(1000) end local log = false local trace = false local detail = false local show = false -- nice for tracing (also for later) local collapse = false -- can save some 15% (maybe easier on scintilla) local inspect = false -- can save some 15% (maybe easier on scintilla) -- local log = true -- local trace = true -- GET GOING -- -- You need to copy this file over lexer.lua. In principle other lexers could -- work too but not now. Maybe some day. All patterns will move into the patterns -- name space. I might do the same with styles. If you run an older version of -- SciTE you can take one of the archives. Pre 3.41 versions can just be copied -- to the right path, as there we still use part of the normal lexer. -- -- REMARK -- -- We started using lpeg lexing as soon as it came available. Because we had -- rather demanding files an dalso wanted to use nested lexers, we ended up with -- our own variant (more robust and faster). As a consequence successive versions -- had to be adapted to changes in the (still unstable) api. In addition to -- lexing we also have spell checking and such. -- -- STATUS -- -- todo: maybe use a special stripped version of the dll (stable api) -- todo: play with hotspot and other properties -- wish: access to all scite properties and in fact integrate in scite -- todo: add proper tracing and so .. not too hard as we can run on mtxrun -- todo: get rid of these lexers.STYLE_XX and lexers.XX (hide such details) -- -- HISTORY -- -- The fold and lex functions are copied and patched from original code by Mitchell -- (see lexer.lua). All errors are mine. The ability to use lpeg is a real nice -- adition and a brilliant move. The code is a byproduct of the (mainly Lua based) -- textadept (still a rapidly moving target) that unfortunately misses a realtime -- output pane. On the other hand, SciTE is somewhat crippled by the fact that we -- cannot pop in our own (language dependent) lexer into the output pane (somehow -- the errorlist lexer is hard coded into the editor). Hopefully that will change -- some day. -- -- Starting with SciTE version 3.20 there is an issue with coloring. As we still -- lack a connection with SciTE itself (properties as well as printing to the log -- pane) and we cannot trace this (on windows). As far as I can see, there are no -- fundamental changes in lexer.lua or LexLPeg.cxx so it must be in Scintilla -- itself. So for the moment I stick to 3.10. Indicators are: no lexing of 'next' -- and 'goto