diff --git a/lib/LaTeXML/Core/Document.pm b/lib/LaTeXML/Core/Document.pm index 4c311618f..18c39e318 100644 --- a/lib/LaTeXML/Core/Document.pm +++ b/lib/LaTeXML/Core/Document.pm @@ -748,7 +748,6 @@ sub openText { return if $font->getFamily eq 'nullfont'; Debug("openText \"$text\" /" . Stringify($font) . " at " . Stringify($node)) if $LaTeXML::DEBUG{document}; - # Get the desired font attributes, particularly the desired element # (usually ltx:text, but let Font override, eg for \emph) my $declared_font = getNodeFont($self, $node); @@ -1272,7 +1271,8 @@ our %non_mergeable_attributes = map { $_ => 1; } qw(about aboutlabelref aboutidref resource resourcelabelref resourceidref property rel rev tyupeof datatype content - data datamimetype dataencoding); + data datamimetype dataencoding + framed); # Avoid redundant nesting of font switching elements: # If we're closing a node that can take font switches and it contains diff --git a/lib/LaTeXML/Package/LaTeX.pool.ltxml b/lib/LaTeXML/Package/LaTeX.pool.ltxml index 3a9df6456..4d7ebc6c8 100644 --- a/lib/LaTeXML/Package/LaTeX.pool.ltxml +++ b/lib/LaTeXML/Package/LaTeX.pool.ltxml @@ -4695,7 +4695,7 @@ DefMacro('\framebox', '\@ifnextchar(\pic@framebox\@framebox', robust => 1); DefConstructor('\@framebox[Dimension][]{}', "?#mathframe(#inner)" . "(#3)", alias => '\framebox', sizer => '#3', beforeDigest => sub { @@ -4704,8 +4704,10 @@ DefConstructor('\@framebox[Dimension][]{}', $stomach->beginMode('text'); AssignValue(FRAME_IN_MATH => $wasmath); }, properties => sub { + my $sep= LookupRegister('\fboxsep')->toAttribute; (($_[2] ? (align => $makebox_alignment{ ToString($_[2]) }) : ()), framecolor => LookupValue('font')->getColor, + ($sep ne '3.0pt' ? (cssstyle => 'padding:' . $sep):()), ($_[1] ? (width => $_[1]) : ())); }, afterDigest => sub { my ($stomach, $whatsit) = @_; @@ -4724,7 +4726,8 @@ DefConstructor('\@framebox[Dimension][]{}', my $model = $document->getModel; # and that child can have the framed attribute if ((scalar(@c) == 1) - && $document->canHaveAttribute($model->getNodeQName($c[0]), 'framed')) { + && $document->canHaveAttribute($model->getNodeQName($c[0]), 'framed') + && !$c[0]->hasAttribute('framed')) { # unwrap, copying the attributes $document->unwrapNodes($node); foreach my $k (qw(width align framed)) { diff --git a/lib/LaTeXML/Package/ntheorem.sty.ltxml b/lib/LaTeXML/Package/ntheorem.sty.ltxml index d60a40614..fbeb20869 100644 --- a/lib/LaTeXML/Package/ntheorem.sty.ltxml +++ b/lib/LaTeXML/Package/ntheorem.sty.ltxml @@ -176,7 +176,7 @@ Let('\renewtheorem', '\newtheorem'); DefConstructorI('\lx@addframing', undef, sub { my ($doc, %props) = @_; my $node = $doc->getElement; - $doc->addClass($node, 'ltx_framed'); + $doc->setAttribute($node, framed => 'rectangle'); my $css = $node->getAttribute('cssstyle'); my $pad = 'padding:' . $props{margin} . 'pt;'; $doc->setAttribute($node, cssstyle => ($css ? $css . ';' . $pad : $pad)); }, diff --git a/lib/LaTeXML/Package/titlesec.sty.ltxml b/lib/LaTeXML/Package/titlesec.sty.ltxml index 3c1120a46..6bdac3117 100644 --- a/lib/LaTeXML/Package/titlesec.sty.ltxml +++ b/lib/LaTeXML/Package/titlesec.sty.ltxml @@ -34,7 +34,7 @@ DefMacro('\lx@titleformat@star {}{}', sub { Tokens($format, T_SPACE, T_PARAM, T_OTHER('1'))); }); our %titlesec_shape_class_map = ( runin => 'ltx_runin', - frame => 'ltx_framed', + frame => 'ltx_framed ltx_framed_rectangle', rightmargin => 'ltx_align_right', leftmargin => 'ltx_align_left' ); diff --git a/lib/LaTeXML/resources/CSS/LaTeXML.css b/lib/LaTeXML/resources/CSS/LaTeXML.css index fea09e1d4..fde25dc61 100644 --- a/lib/LaTeXML/resources/CSS/LaTeXML.css +++ b/lib/LaTeXML/resources/CSS/LaTeXML.css @@ -347,7 +347,6 @@ span.ltx_rowspan { position:absolute; top:0; bottom:0; } .ltx_td, .ltx_th { display:table-cell; } -.ltx_framed { border:1px solid black;} .ltx_tabular .ltx_td, .ltx_tabular .ltx_th { padding:0.1em 0.5em; } /* regular lines */ @@ -366,6 +365,8 @@ span.ltx_rowspan { position:absolute; top:0; bottom:0; } .ltx_border_B { border-bottom:1px solid gray; } .ltx_border_L { border-left:1px solid gray; } /* Framing */ +.ltx_framed { padding:3pt; } +span.ltx_framed { display:inline-block; text-indent:0; } /* avoid padding/margin collapse */ .ltx_framed_rectangle { border-style:solid; border-width:1px; } .ltx_framed_top { border-top-style:solid; border-top-width:1px; } .ltx_framed_left { border-left-style:solid; border-left-width:1px; } diff --git a/lib/LaTeXML/resources/RelaxNG/LaTeXML-common.rnc b/lib/LaTeXML/resources/RelaxNG/LaTeXML-common.rnc index 8a82ca271..050c5331d 100644 --- a/lib/LaTeXML/resources/RelaxNG/LaTeXML-common.rnc +++ b/lib/LaTeXML/resources/RelaxNG/LaTeXML-common.rnc @@ -183,7 +183,13 @@ Backgroundable.attributes = ## In postprocessing, these values are carried to the \attr{class} attribute, ## and can thus be effected by CSS; the background will presumably ## correspond to a bounding rectangle, but is determined by the CSS rendering engine. - attribute backgroundcolor { text }? + attribute backgroundcolor { text }?, + + ## the kind of frame or outline for the box. + attribute framed { "rectangle" | "underline" | text }?, + + ## the color of the frame or outlie for the box. + attribute framecolor { text }? ## Attributes shared by low-level, generic inline and block elements ## that can be sized or shifted. @@ -212,13 +218,7 @@ Positionable.attributes = attribute vattach { "top" | "middle" | "bottom" | "baseline" }?, ## the horizontal floating placement parameter that determines where the object is displayed. - attribute float { ( "right" | "left" | text) }?, - - ## the kind of frame or outline for the box. - attribute framed { "rectangle" | "underline" | text }?, - - ## the color of the frame or outlie for the box. - attribute framecolor { text }? + attribute float { ( "right" | "left" | text) }? ## Attributes shared by (hopefully few) elements that can be transformed. ## Such elements should also have Positionable.attributes. diff --git a/lib/LaTeXML/resources/RelaxNG/LaTeXML-common.rng b/lib/LaTeXML/resources/RelaxNG/LaTeXML-common.rng index e1749b725..916a7d9c5 100644 --- a/lib/LaTeXML/resources/RelaxNG/LaTeXML-common.rng +++ b/lib/LaTeXML/resources/RelaxNG/LaTeXML-common.rng @@ -241,6 +241,21 @@ and can thus be effected by CSS; the background will presumably correspond to a bounding rectangle, but is determined by the CSS rendering engine. + + + the kind of frame or outline for the box. + + rectangle + underline + + + + + + + the color of the frame or outlie for the box. + + Attributes shared by low-level, generic inline and block elements @@ -308,21 +323,6 @@ The default is baseline. - - - the kind of frame or outline for the box. - - rectangle - underline - - - - - - - the color of the frame or outlie for the box. - - Attributes shared by (hopefully few) elements that can be transformed. diff --git a/lib/LaTeXML/resources/RelaxNG/LaTeXML-inline.rnc b/lib/LaTeXML/resources/RelaxNG/LaTeXML-inline.rnc index 93519a213..7ab5e9377 100644 --- a/lib/LaTeXML/resources/RelaxNG/LaTeXML-inline.rnc +++ b/lib/LaTeXML/resources/RelaxNG/LaTeXML-inline.rnc @@ -141,7 +141,8 @@ element rule { rule_attributes, rule_model } rule_attributes = Common.attributes, Positionable.attributes, - Colorable.attributes + Colorable.attributes, + Backgroundable.attributes ## Content model for \elementref{rule}. rule_model = empty diff --git a/lib/LaTeXML/resources/RelaxNG/LaTeXML-inline.rng b/lib/LaTeXML/resources/RelaxNG/LaTeXML-inline.rng index d9a5635de..d689a3057 100644 --- a/lib/LaTeXML/resources/RelaxNG/LaTeXML-inline.rng +++ b/lib/LaTeXML/resources/RelaxNG/LaTeXML-inline.rng @@ -180,6 +180,7 @@ mixed with arbitrary characters. + Content model for \elementref{rule}. diff --git a/lib/LaTeXML/resources/RelaxNG/LaTeXML.model b/lib/LaTeXML/resources/RelaxNG/LaTeXML.model index 59a0d107a..1d7964414 100644 --- a/lib/LaTeXML/resources/RelaxNG/LaTeXML.model +++ b/lib/LaTeXML/resources/RelaxNG/LaTeXML.model @@ -89,18 +89,18 @@ subsubsection.body:=(ltx:ERROR,ltx:TOC,ltx:declare,ltx:figure,ltx:float,ltx:glos #Document{}(ltx:document) *:*{}(*:*) ltx:ERROR{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(#PCDATA) -ltx:Math{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,content-tex,cssstyle,datatype,description,fragid,imagedepth,imageheight,imagesrc,imagewidth,lexemes,mode,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,tex,text,typeof,vocab,xml:id,xml:lang}(ltx:XMath) +ltx:Math{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,content-tex,cssstyle,datatype,description,fragid,framecolor,framed,imagedepth,imageheight,imagesrc,imagewidth,lexemes,mode,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,tex,text,typeof,vocab,xml:id,xml:lang}(ltx:XMath) ltx:MathBranch{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,format,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(ltx:Math,ltx:td,ltx:tr) ltx:MathFork{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(ltx:Math,ltx:MathBranch,ltx:text) ltx:TOC{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,format,lists,name,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,scope,select,show,typeof,vocab,xml:lang}(ltx:title,ltx:toclist) ltx:XMApp{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,class,color,content,cssstyle,datatype,decl_id,depth,enclose,float,fragid,framecolor,framed,height,href,lpadding,meaning,name,omcd,opacity,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rpadding,scriptpos,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(ltx:ERROR,ltx:XMApp,ltx:XMArg,ltx:XMArray,ltx:XMDual,ltx:XMHint,ltx:XMRef,ltx:XMText,ltx:XMTok,ltx:XMWrap) -ltx:XMArg{!xml:*,*:*,about,aboutidref,aboutlabelref,align,class,content,cssstyle,datatype,decl_id,depth,enclose,float,fragid,framecolor,framed,height,href,lpadding,meaning,name,omcd,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rpadding,rule,scriptpos,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(ltx:ERROR,ltx:XMApp,ltx:XMArg,ltx:XMArray,ltx:XMDual,ltx:XMHint,ltx:XMRef,ltx:XMText,ltx:XMTok,ltx:XMWrap) -ltx:XMArray{!xml:*,*:*,about,aboutidref,aboutlabelref,align,class,colsep,content,cssstyle,datatype,decl_id,depth,enclose,float,fragid,framecolor,framed,height,href,lpadding,meaning,name,omcd,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rowsep,rpadding,scriptpos,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(ltx:XMRow) -ltx:XMCell{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,border,class,colspan,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,rowspan,thead,typeof,vocab,width,xml:id,xml:lang}(ltx:ERROR,ltx:XMApp,ltx:XMArg,ltx:XMArray,ltx:XMDual,ltx:XMHint,ltx:XMRef,ltx:XMText,ltx:XMTok,ltx:XMWrap) -ltx:XMDual{!xml:*,*:*,about,aboutidref,aboutlabelref,align,class,content,cssstyle,datatype,decl_id,depth,enclose,float,fragid,framecolor,framed,height,href,lpadding,meaning,name,omcd,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rpadding,scriptpos,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(ltx:ERROR,ltx:XMApp,ltx:XMArg,ltx:XMArray,ltx:XMDual,ltx:XMHint,ltx:XMRef,ltx:XMText,ltx:XMTok,ltx:XMWrap) -ltx:XMHint{!xml:*,*:*,about,aboutidref,aboutlabelref,align,class,content,cssstyle,datatype,decl_id,depth,enclose,float,fragid,framecolor,framed,height,href,lpadding,meaning,name,omcd,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rpadding,scriptpos,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}() -ltx:XMRef{!xml:*,*:*,about,aboutidref,aboutlabelref,align,class,content,cssstyle,datatype,decl_id,depth,enclose,float,fragid,framecolor,framed,height,href,idref,lpadding,meaning,name,omcd,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rpadding,scriptpos,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}() -ltx:XMRow{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:XMCell) +ltx:XMArg{!xml:*,*:*,about,aboutidref,aboutlabelref,align,class,content,cssstyle,datatype,decl_id,depth,enclose,float,fragid,height,href,lpadding,meaning,name,omcd,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rpadding,rule,scriptpos,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(ltx:ERROR,ltx:XMApp,ltx:XMArg,ltx:XMArray,ltx:XMDual,ltx:XMHint,ltx:XMRef,ltx:XMText,ltx:XMTok,ltx:XMWrap) +ltx:XMArray{!xml:*,*:*,about,aboutidref,aboutlabelref,align,class,colsep,content,cssstyle,datatype,decl_id,depth,enclose,float,fragid,height,href,lpadding,meaning,name,omcd,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rowsep,rpadding,scriptpos,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(ltx:XMRow) +ltx:XMCell{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,border,class,colspan,content,cssstyle,datatype,fragid,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,rowspan,thead,typeof,vocab,width,xml:id,xml:lang}(ltx:ERROR,ltx:XMApp,ltx:XMArg,ltx:XMArray,ltx:XMDual,ltx:XMHint,ltx:XMRef,ltx:XMText,ltx:XMTok,ltx:XMWrap) +ltx:XMDual{!xml:*,*:*,about,aboutidref,aboutlabelref,align,class,content,cssstyle,datatype,decl_id,depth,enclose,float,fragid,height,href,lpadding,meaning,name,omcd,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rpadding,scriptpos,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(ltx:ERROR,ltx:XMApp,ltx:XMArg,ltx:XMArray,ltx:XMDual,ltx:XMHint,ltx:XMRef,ltx:XMText,ltx:XMTok,ltx:XMWrap) +ltx:XMHint{!xml:*,*:*,about,aboutidref,aboutlabelref,align,class,content,cssstyle,datatype,decl_id,depth,enclose,float,fragid,height,href,lpadding,meaning,name,omcd,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rpadding,scriptpos,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}() +ltx:XMRef{!xml:*,*:*,about,aboutidref,aboutlabelref,align,class,content,cssstyle,datatype,decl_id,depth,enclose,float,fragid,height,href,idref,lpadding,meaning,name,omcd,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rpadding,scriptpos,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}() +ltx:XMRow{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:XMCell) ltx:XMText{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,class,content,cssstyle,datatype,decl_id,depth,enclose,float,fragid,framecolor,framed,height,href,lpadding,meaning,name,omcd,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rpadding,scriptpos,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(#PCDATA,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:del,ltx:emph,ltx:glossaryref,ltx:graphics,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:ref,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:XMTok{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,class,color,content,cssstyle,datatype,decl_id,depth,enclose,float,font,fontsize,fragid,framecolor,framed,height,href,lpadding,mathstyle,meaning,name,omcd,opacity,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rpadding,scriptpos,stretchy,thickness,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(#PCDATA) ltx:XMWrap{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,class,content,cssstyle,datatype,decl_id,depth,enclose,float,fragid,framecolor,framed,height,href,lpadding,meaning,name,omcd,possibleFunction,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,rpadding,rule,scriptpos,style,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(ltx:ERROR,ltx:XMApp,ltx:XMArg,ltx:XMArray,ltx:XMDual,ltx:XMHint,ltx:XMRef,ltx:XMText,ltx:XMTok,ltx:XMWrap) @@ -108,7 +108,7 @@ ltx:XMath{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datat ltx:abstract{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,name,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(ltx:ERROR,ltx:block,ltx:break,ltx:declare,ltx:description,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:glossarydefinition,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:itemize,ltx:listing,ltx:navigation,ltx:note,ltx:p,ltx:pagination,ltx:picture,ltx:quote,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:resource,ltx:tabular,ltx:verbatim,svg:svg) ltx:acknowledgements{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,name,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:anchor{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) -ltx:appendix{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:proof,ltx:rdf,ltx:resource,ltx:section,ltx:sidebar,ltx:slide,ltx:subparagraph,ltx:subsection,ltx:subsubsection,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) +ltx:appendix{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:proof,ltx:rdf,ltx:resource,ltx:section,ltx:sidebar,ltx:slide,ltx:subparagraph,ltx:subsection,ltx:subsubsection,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) ltx:arc{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}() ltx:bezier{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}() ltx:bib-data{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,type,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) @@ -135,47 +135,47 @@ ltx:bib-url{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,dat ltx:bibblock{}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:block,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:description,ltx:emph,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:itemize,ltx:listing,ltx:navigation,ltx:note,ltx:p,ltx:pagination,ltx:picture,ltx:quote,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:bibentry{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,fragid,key,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,type,typeof,vocab,xml:id,xml:lang}(ltx:bib-data,ltx:bib-date,ltx:bib-edition,ltx:bib-extract,ltx:bib-identifier,ltx:bib-key,ltx:bib-language,ltx:bib-links,ltx:bib-name,ltx:bib-note,ltx:bib-organization,ltx:bib-part,ltx:bib-place,ltx:bib-publisher,ltx:bib-related,ltx:bib-review,ltx:bib-status,ltx:bib-subtitle,ltx:bib-title,ltx:bib-type,ltx:bib-url) ltx:bibitem{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,fragid,key,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:bibblock,ltx:tags) -ltx:bibliography{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,bibstyle,citestyle,class,content,cssstyle,datatype,files,fragid,inlist,labels,lists,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,sort,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:abstract,ltx:acknowledgements,ltx:biblist,ltx:classification,ltx:creator,ltx:date,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:indexmark,ltx:keywords,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:subtitle,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) +ltx:bibliography{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,bibstyle,citestyle,class,content,cssstyle,datatype,files,fragid,framecolor,framed,inlist,labels,lists,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,sort,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:abstract,ltx:acknowledgements,ltx:biblist,ltx:classification,ltx:creator,ltx:date,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:indexmark,ltx:keywords,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:subtitle,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) ltx:biblist{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(ltx:bibentry,ltx:bibitem) ltx:bibref{!xml:*,*:*,about,aboutidref,aboutlabelref,bibrefs,class,content,cssstyle,datatype,idref,inlist,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,separator,show,typeof,vocab,xml:lang,yyseparator}(ltx:bibrefphrase) ltx:bibrefphrase{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:block{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,class,content,cssstyle,datatype,depth,float,fragid,framecolor,framed,height,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(ltx:ERROR,ltx:block,ltx:break,ltx:declare,ltx:description,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:glossarydefinition,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:itemize,ltx:listing,ltx:navigation,ltx:note,ltx:p,ltx:pagination,ltx:picture,ltx:quote,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:resource,ltx:tabular,ltx:verbatim,svg:svg) ltx:break{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}() -ltx:caption{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:tag,ltx:text,ltx:verbatim,svg:svg) -ltx:chapter{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:proof,ltx:rdf,ltx:resource,ltx:section,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subparagraph,ltx:subsection,ltx:subsubsection,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) +ltx:caption{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,framecolor,framed,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:tag,ltx:text,ltx:verbatim,svg:svg) +ltx:chapter{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:proof,ltx:rdf,ltx:resource,ltx:section,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subparagraph,ltx:subsection,ltx:subsubsection,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) ltx:circle{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}() ltx:cite{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,inlist,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:classification{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,name,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,scheme,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:clip{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}(ltx:clippath) ltx:clippath{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}(ltx:ERROR,ltx:Math,ltx:anchor,ltx:arc,ltx:bezier,ltx:bibref,ltx:break,ltx:circle,ltx:cite,ltx:clip,ltx:curve,ltx:declare,ltx:del,ltx:dots,ltx:ellipse,ltx:emph,ltx:g,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:grid,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:line,ltx:navigation,ltx:note,ltx:parabola,ltx:path,ltx:picture,ltx:polygon,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:rect,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,ltx:wedge,svg:svg) -ltx:constraint{backgroundcolor,hidden}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) +ltx:constraint{backgroundcolor,framecolor,framed,hidden}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:contact{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,href,idref,labelref,name,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:creator{!xml:*,*:*,about,aboutidref,aboutlabelref,after,before,class,content,cssstyle,datatype,name,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:lang}(ltx:break,ltx:contact,ltx:graphics,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:personname,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:tabular,ltx:verbatim,svg:svg) ltx:curve{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}() ltx:date{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,name,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:declare{definiens,fragid,sortkey,type,xml:id}(ltx:tags,ltx:text) -ltx:del{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,fragid,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) -ltx:description{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:item) -ltx:document{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:abstract,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:chapter,ltx:classification,ltx:creator,ltx:date,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:keywords,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:part,ltx:proof,ltx:rdf,ltx:resource,ltx:section,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subsection,ltx:subsubsection,ltx:subtitle,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:titlepage,ltx:toctitle) +ltx:del{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,fragid,framecolor,framed,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) +ltx:description{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:item) +ltx:document{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:abstract,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:chapter,ltx:classification,ltx:creator,ltx:date,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:keywords,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:part,ltx:proof,ltx:rdf,ltx:resource,ltx:section,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subsection,ltx:subsubsection,ltx:subtitle,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:titlepage,ltx:toctitle) ltx:dots{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,dotscale,dotsize,dotstyle,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}() ltx:ellipse{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}() -ltx:emph{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,fragid,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) -ltx:enumerate{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:item) -ltx:equation{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:Math,ltx:MathFork,ltx:break,ltx:constraint,ltx:declare,ltx:glossarydefinition,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:resource,ltx:tabular,ltx:tags,ltx:text,ltx:verbatim,svg:svg) -ltx:equationgroup{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,rowsep,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:constraint,ltx:declare,ltx:equation,ltx:equationgroup,ltx:glossarydefinition,ltx:indexmark,ltx:navigation,ltx:note,ltx:p,ltx:rdf,ltx:resource,ltx:tags) +ltx:emph{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,fragid,framecolor,framed,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) +ltx:enumerate{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:item) +ltx:equation{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:Math,ltx:MathFork,ltx:break,ltx:constraint,ltx:declare,ltx:glossarydefinition,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:resource,ltx:tabular,ltx:tags,ltx:text,ltx:verbatim,svg:svg) +ltx:equationgroup{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,rowsep,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:constraint,ltx:declare,ltx:equation,ltx:equationgroup,ltx:glossarydefinition,ltx:indexmark,ltx:navigation,ltx:note,ltx:p,ltx:rdf,ltx:resource,ltx:tags) ltx:figure{!xml:*,*:*,about,aboutidref,aboutlabelref,align,angle,backgroundcolor,class,content,cssstyle,data,dataencoding,datamimetype,datatype,depth,float,fragid,framecolor,framed,height,inlist,innerdepth,innerheight,innerwidth,labels,placement,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,xscale,xtranslate,yoffset,yscale,ytranslate}(ltx:ERROR,ltx:block,ltx:break,ltx:caption,ltx:declare,ltx:description,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:itemize,ltx:listing,ltx:navigation,ltx:note,ltx:p,ltx:pagination,ltx:picture,ltx:quote,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:resource,ltx:table,ltx:tabular,ltx:tags,ltx:toccaption,ltx:verbatim,svg:svg) ltx:float{!xml:*,*:*,about,aboutidref,aboutlabelref,align,angle,backgroundcolor,class,content,cssstyle,data,dataencoding,datamimetype,datatype,depth,float,fragid,framecolor,framed,height,inlist,innerdepth,innerheight,innerwidth,labels,placement,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,xscale,xtranslate,yoffset,yscale,ytranslate}(ltx:ERROR,ltx:block,ltx:break,ltx:caption,ltx:declare,ltx:description,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:itemize,ltx:listing,ltx:navigation,ltx:note,ltx:p,ltx:pagination,ltx:picture,ltx:quote,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:resource,ltx:table,ltx:tabular,ltx:tags,ltx:toccaption,ltx:verbatim,svg:svg) ltx:g{!xml:*,*:*,about,aboutidref,aboutlabelref,angle,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,boxsep,class,content,cssstyle,curvature,datatype,displayedpoints,doubleline,fill,fillframe,framed,frametype,height,innerdepth,innerheight,innerwidth,points,pos,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,shadowbox,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,xscale,xtranslate,y,yscale,ytranslate}(ltx:ERROR,ltx:Math,ltx:anchor,ltx:arc,ltx:bezier,ltx:bibref,ltx:break,ltx:circle,ltx:cite,ltx:clip,ltx:curve,ltx:declare,ltx:del,ltx:dots,ltx:ellipse,ltx:emph,ltx:g,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:grid,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:line,ltx:navigation,ltx:note,ltx:parabola,ltx:path,ltx:picture,ltx:polygon,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:rect,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,ltx:wedge,svg:svg) ltx:givenname{}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) -ltx:glossary{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,lists,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:glossarylist,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) +ltx:glossary{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,lists,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:glossarylist,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) ltx:glossarydefinition{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,inlist,key,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(ltx:glossaryphrase) ltx:glossaryentry{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,fragid,key,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:id,xml:lang}(ltx:glossaryphrase,ltx:indexrefs) ltx:glossarylist{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:glossaryentry) ltx:glossaryphrase{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,idref,key,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) -ltx:glossaryref{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,href,idref,inlist,key,labelref,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,show,title,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) +ltx:glossaryref{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,framecolor,framed,href,idref,inlist,key,labelref,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,show,title,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:graphics{!xml:*,*:*,about,aboutidref,aboutlabelref,candidates,class,content,cssstyle,datatype,description,fragid,graphic,imagedepth,imageheight,imagesrc,imagewidth,options,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}() ltx:grid{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}() -ltx:index{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,lists,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:indexlist,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) +ltx:index{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,lists,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:indexlist,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) ltx:indexentry{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:indexlist,ltx:indexphrase,ltx:indexrefs) ltx:indexlist{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:indexentry) ltx:indexmark{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,inlist,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,see_also,style,typeof,vocab,xml:lang}(ltx:indexphrase,ltx:indexsee) @@ -183,13 +183,13 @@ ltx:indexphrase{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle ltx:indexrefs{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:indexsee{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,key,name,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:inline-block{!xml:*,*:*,about,aboutidref,aboutlabelref,align,angle,backgroundcolor,class,content,cssstyle,datatype,depth,float,fragid,framecolor,framed,height,innerdepth,innerheight,innerwidth,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,xscale,xtranslate,yoffset,yscale,ytranslate}(ltx:ERROR,ltx:block,ltx:break,ltx:declare,ltx:description,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:glossarydefinition,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:itemize,ltx:listing,ltx:navigation,ltx:note,ltx:p,ltx:pagination,ltx:picture,ltx:quote,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:resource,ltx:tabular,ltx:verbatim,svg:svg) -ltx:inline-description{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:inline-item) -ltx:inline-enumerate{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:inline-item) -ltx:inline-item{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:tags,ltx:text,ltx:verbatim,svg:svg) -ltx:inline-itemize{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:inline-item) +ltx:inline-description{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:inline-item) +ltx:inline-enumerate{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:inline-item) +ltx:inline-item{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:tags,ltx:text,ltx:verbatim,svg:svg) +ltx:inline-itemize{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:inline-item) ltx:inline-para{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,class,content,cssstyle,datatype,depth,float,fragid,framecolor,framed,height,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(ltx:ERROR,ltx:TOC,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:table,ltx:theorem) -ltx:item{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,itemsep,labels,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:table,ltx:tags,ltx:theorem) -ltx:itemize{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:item) +ltx:item{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,itemsep,labels,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:table,ltx:tags,ltx:theorem) +ltx:itemize{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:item) ltx:keywords{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,name,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:line{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}() ltx:lineage{}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) @@ -201,50 +201,50 @@ ltx:p{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,class,cont ltx:pagination{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:lang}() ltx:para{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,class,content,cssstyle,datatype,depth,float,fragid,framecolor,framed,height,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(ltx:ERROR,ltx:block,ltx:break,ltx:declare,ltx:description,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:glossarydefinition,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:itemize,ltx:listing,ltx:navigation,ltx:note,ltx:p,ltx:pagination,ltx:picture,ltx:quote,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:resource,ltx:tabular,ltx:verbatim,svg:svg) ltx:parabola{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}() -ltx:paragraph{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subparagraph,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) -ltx:part{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:chapter,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:proof,ltx:rdf,ltx:resource,ltx:section,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subparagraph,ltx:subsection,ltx:subsubsection,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) +ltx:paragraph{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subparagraph,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) +ltx:part{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:chapter,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:proof,ltx:rdf,ltx:resource,ltx:section,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subparagraph,ltx:subsection,ltx:subsubsection,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) ltx:path{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}() ltx:personname{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,href,idref,labelref,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:picture{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,baseline,class,clip,content,content-tex,cssstyle,curvature,datatype,description,displayedpoints,fill,fragid,height,imagedepth,imageheight,imagesrc,imagewidth,origin-x,origin-y,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,tex,transform,typeof,unitlength,vocab,width,x,xml:id,xml:lang,xunitlength,y,yunitlength}(ltx:ERROR,ltx:Math,ltx:anchor,ltx:arc,ltx:bezier,ltx:bibref,ltx:break,ltx:circle,ltx:cite,ltx:clip,ltx:curve,ltx:declare,ltx:del,ltx:dots,ltx:ellipse,ltx:emph,ltx:g,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:grid,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:line,ltx:navigation,ltx:note,ltx:parabola,ltx:path,ltx:picture,ltx:polygon,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:rect,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,ltx:wedge,svg:svg) ltx:polygon{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}() -ltx:proof{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,data,dataencoding,datamimetype,datatype,fragid,inlist,labels,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:table,ltx:tags,ltx:theorem,ltx:title) -ltx:quote{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:block,ltx:break,ltx:declare,ltx:description,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:glossarydefinition,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:itemize,ltx:listing,ltx:navigation,ltx:note,ltx:p,ltx:pagination,ltx:picture,ltx:quote,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:resource,ltx:tabular,ltx:verbatim,svg:svg) +ltx:proof{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,data,dataencoding,datamimetype,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:table,ltx:tags,ltx:theorem,ltx:title) +ltx:quote{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:block,ltx:break,ltx:declare,ltx:description,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:glossarydefinition,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:itemize,ltx:listing,ltx:navigation,ltx:note,ltx:p,ltx:pagination,ltx:picture,ltx:quote,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:resource,ltx:tabular,ltx:verbatim,svg:svg) ltx:rawhtml{}(xhtml:*) ltx:rawliteral{close,open}(#PCDATA) ltx:rdf{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:block,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:description,ltx:emph,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:itemize,ltx:listing,ltx:navigation,ltx:note,ltx:p,ltx:pagination,ltx:picture,ltx:quote,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:rect{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}() -ltx:ref{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,href,idref,labelref,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,show,title,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) +ltx:ref{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,framecolor,framed,href,idref,labelref,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,show,title,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:resource{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,media,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,src,type,typeof,vocab,xml:lang}(#PCDATA) -ltx:rule{!xml:*,*:*,about,aboutidref,aboutlabelref,align,class,color,content,cssstyle,datatype,depth,float,framecolor,framed,height,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vattach,vocab,width,xml:lang,xoffset,yoffset}() -ltx:section{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:proof,ltx:rdf,ltx:resource,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subparagraph,ltx:subsection,ltx:subsubsection,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) -ltx:sidebar{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:abstract,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:classification,ltx:creator,ltx:date,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:keywords,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:subtitle,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) -ltx:slide{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,overlay,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:subtitle,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) -ltx:slidesequence{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:slide) +ltx:rule{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,class,color,content,cssstyle,datatype,depth,float,framecolor,framed,height,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vattach,vocab,width,xml:lang,xoffset,yoffset}() +ltx:section{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:proof,ltx:rdf,ltx:resource,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subparagraph,ltx:subsection,ltx:subsubsection,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) +ltx:sidebar{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:abstract,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:classification,ltx:creator,ltx:date,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:keywords,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:subtitle,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) +ltx:slide{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,overlay,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:subtitle,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) +ltx:slidesequence{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:slide) ltx:sub{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) -ltx:subparagraph{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) -ltx:subsection{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:proof,ltx:rdf,ltx:resource,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subparagraph,ltx:subsubsection,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) -ltx:subsubsection{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:proof,ltx:rdf,ltx:resource,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subparagraph,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) +ltx:subparagraph{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) +ltx:subsection{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:proof,ltx:rdf,ltx:resource,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subparagraph,ltx:subsubsection,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) +ltx:subsubsection{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:acknowledgements,ltx:appendix,ltx:bibliography,ltx:creator,ltx:declare,ltx:figure,ltx:float,ltx:glossary,ltx:glossarydefinition,ltx:index,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:paragraph,ltx:proof,ltx:rdf,ltx:resource,ltx:sidebar,ltx:slide,ltx:slidesequence,ltx:subparagraph,ltx:table,ltx:tags,ltx:theorem,ltx:title,ltx:toctitle) ltx:subtitle{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:sup{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:surname{}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:table{!xml:*,*:*,about,aboutidref,aboutlabelref,align,angle,backgroundcolor,class,content,cssstyle,data,dataencoding,datamimetype,datatype,depth,float,fragid,framecolor,framed,height,inlist,innerdepth,innerheight,innerwidth,labels,placement,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,xscale,xtranslate,yoffset,yscale,ytranslate}(ltx:ERROR,ltx:block,ltx:break,ltx:caption,ltx:declare,ltx:description,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:itemize,ltx:listing,ltx:navigation,ltx:note,ltx:p,ltx:pagination,ltx:picture,ltx:quote,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:resource,ltx:table,ltx:tabular,ltx:tags,ltx:toccaption,ltx:verbatim,svg:svg) -ltx:tabular{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,colsep,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,rowsep,typeof,vattach,vocab,width,xml:id,xml:lang}(ltx:tbody,ltx:tfoot,ltx:thead,ltx:tr) -ltx:tag{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,close,content,cssstyle,datatype,open,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) +ltx:tabular{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,colsep,content,cssstyle,datatype,fragid,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,rowsep,typeof,vattach,vocab,width,xml:id,xml:lang}(ltx:tbody,ltx:tfoot,ltx:thead,ltx:tr) +ltx:tag{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,close,content,cssstyle,datatype,framecolor,framed,open,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,role,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:tags{}(ltx:tag) -ltx:tbody{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(ltx:tr) -ltx:td{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,border,class,colspan,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,rowspan,thead,typeof,vattach,vocab,width,xml:id,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:block,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:description,ltx:emph,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:itemize,ltx:listing,ltx:navigation,ltx:note,ltx:p,ltx:pagination,ltx:picture,ltx:quote,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) +ltx:tbody{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(ltx:tr) +ltx:td{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,border,class,colspan,content,cssstyle,datatype,fragid,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,rowspan,thead,typeof,vattach,vocab,width,xml:id,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:block,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:description,ltx:emph,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:itemize,ltx:listing,ltx:navigation,ltx:note,ltx:p,ltx:pagination,ltx:picture,ltx:quote,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:text{!xml:*,*:*,about,aboutidref,aboutlabelref,align,backgroundcolor,class,color,content,cssstyle,datatype,depth,float,font,fontsize,fragid,framecolor,framed,height,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vattach,vocab,width,xml:id,xml:lang,xoffset,yoffset}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) -ltx:tfoot{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(ltx:tr) -ltx:thead{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(ltx:tr) -ltx:theorem{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:table,ltx:tags,ltx:theorem,ltx:title) -ltx:title{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:tag,ltx:text,ltx:verbatim,svg:svg) -ltx:titlepage{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:abstract,ltx:acknowledgements,ltx:block,ltx:classification,ltx:creator,ltx:date,ltx:description,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:itemize,ltx:keywords,ltx:listing,ltx:p,ltx:pagination,ltx:quote,ltx:subtitle,ltx:tags,ltx:title,ltx:toctitle) +ltx:tfoot{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(ltx:tr) +ltx:thead{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(ltx:tr) +ltx:theorem{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:ERROR,ltx:TOC,ltx:declare,ltx:figure,ltx:float,ltx:glossarydefinition,ltx:indexmark,ltx:navigation,ltx:note,ltx:pagination,ltx:para,ltx:proof,ltx:rdf,ltx:resource,ltx:table,ltx:tags,ltx:theorem,ltx:title) +ltx:title{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,framecolor,framed,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:tag,ltx:text,ltx:verbatim,svg:svg) +ltx:titlepage{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,inlist,labels,prefix,property,rdf-prefixes,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:abstract,ltx:acknowledgements,ltx:block,ltx:classification,ltx:creator,ltx:date,ltx:description,ltx:enumerate,ltx:equation,ltx:equationgroup,ltx:itemize,ltx:keywords,ltx:listing,ltx:p,ltx:pagination,ltx:quote,ltx:subtitle,ltx:tags,ltx:title,ltx:toctitle) ltx:toccaption{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:tag,ltx:text,ltx:verbatim,svg:svg) ltx:tocentry{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(ltx:ref,ltx:toclist) ltx:toclist{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(ltx:tocentry) ltx:toctitle{!xml:*,*:*,about,aboutidref,aboutlabelref,class,content,cssstyle,datatype,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:tag,ltx:text,ltx:verbatim,svg:svg) -ltx:tr{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:td) -ltx:verbatim{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,fragid,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) +ltx:tr{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,content,cssstyle,datatype,fragid,framecolor,framed,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(ltx:td) +ltx:verbatim{!xml:*,*:*,about,aboutidref,aboutlabelref,backgroundcolor,class,color,content,cssstyle,datatype,font,fontsize,fragid,framecolor,framed,opacity,prefix,property,rel,resource,resourceidref,resourcelabelref,rev,typeof,vocab,xml:id,xml:lang}(#PCDATA,ltx:ERROR,ltx:Math,ltx:anchor,ltx:bibref,ltx:break,ltx:cite,ltx:declare,ltx:del,ltx:emph,ltx:glossarydefinition,ltx:glossaryref,ltx:graphics,ltx:indexmark,ltx:inline-block,ltx:inline-description,ltx:inline-enumerate,ltx:inline-itemize,ltx:inline-para,ltx:navigation,ltx:note,ltx:picture,ltx:rawhtml,ltx:rawliteral,ltx:rdf,ltx:ref,ltx:resource,ltx:rule,ltx:sub,ltx:sup,ltx:tabular,ltx:text,ltx:verbatim,svg:svg) ltx:wedge{!xml:*,*:*,about,aboutidref,aboutlabelref,angle1,angle2,arc,arcsepA,arcsepB,arrowlength,class,content,cssstyle,curvature,datatype,displayedpoints,fill,height,points,prefix,property,r,rel,resource,resourceidref,resourcelabelref,rev,rx,ry,showpoints,stroke,stroke-dasharray,stroke-width,terminators,transform,typeof,vocab,width,x,xml:lang,y}() svg:a{!ltx:*,!xlink:*,!xml:*,*:*,alignment-baseline,baseline-shift,class,clip,clip-path,clip-rule,color,color-interpolation,color-interpolation-filters,color-profile,color-rendering,cursor,direction,display,dominant-baseline,enable-background,externalResourcesRequired,fill,fill-opacity,fill-rule,filter,flood-color,flood-opacity,focusable,font-family,font-size,font-size-adjust,font-stretch,font-style,font-variant,font-weight,glyph-orientation-horizontal,glyph-orientation-vertical,href,id,image-rendering,kerning,lang,letter-spacing,lighting-color,marker-end,marker-mid,marker-start,mask,onactivate,onclick,onfocusin,onfocusout,onload,onmousedown,onmousemove,onmouseout,onmouseover,onmouseup,opacity,overflow,pointer-events,rel,requiredExtensions,requiredFeatures,shape-rendering,stop-color,stop-opacity,stroke,stroke-dasharray,stroke-dashoffset,stroke-linecap,stroke-linejoin,stroke-miterlimit,stroke-opacity,stroke-width,style,systemLanguage,tabindex,target,text-anchor,text-decoration,text-rendering,transform,unicode-bidi,visibility,word-spacing,writing-mode,xlink:actuate,xlink:arcrole,xlink:href,xlink:role,xlink:show,xlink:title,xlink:type,xml:base,xml:lang,xml:space}(#PCDATA,svg:a,svg:altGlyphDef,svg:animate,svg:animateColor,svg:animateMotion,svg:animateTransform,svg:circle,svg:clipPath,svg:color-profile,svg:cursor,svg:defs,svg:desc,svg:ellipse,svg:filter,svg:font,svg:font-face,svg:foreignObject,svg:g,svg:image,svg:line,svg:linearGradient,svg:marker,svg:mask,svg:metadata,svg:path,svg:pattern,svg:polygon,svg:polyline,svg:radialGradient,svg:rect,svg:script,svg:set,svg:style,svg:svg,svg:switch,svg:symbol,svg:text,svg:title,svg:use,svg:view) svg:altGlyph{!ltx:*,!xlink:*,!xml:*,*:*,alignment-baseline,baseline-shift,class,clip-path,clip-rule,color,color-interpolation,color-rendering,cursor,direction,display,dominant-baseline,dx,dy,externalResourcesRequired,fill,fill-opacity,fill-rule,filter,focusable,font-family,font-size,font-size-adjust,font-stretch,font-style,font-variant,font-weight,format,glyph-orientation-horizontal,glyph-orientation-vertical,glyphRef,href,id,image-rendering,kerning,lang,letter-spacing,mask,onactivate,onclick,onfocusin,onfocusout,onload,onmousedown,onmousemove,onmouseout,onmouseover,onmouseup,opacity,pointer-events,requiredExtensions,requiredFeatures,rotate,shape-rendering,stroke,stroke-dasharray,stroke-dashoffset,stroke-linecap,stroke-linejoin,stroke-miterlimit,stroke-opacity,stroke-width,style,systemLanguage,tabindex,text-anchor,text-decoration,text-rendering,unicode-bidi,visibility,word-spacing,x,xlink:actuate,xlink:arcrole,xlink:href,xlink:role,xlink:show,xlink:title,xlink:type,xml:base,xml:lang,xml:space,y}(#PCDATA) diff --git a/lib/LaTeXML/resources/XSLT/LaTeXML-common.xsl b/lib/LaTeXML/resources/XSLT/LaTeXML-common.xsl index 17742eb8b..c0219ae2c 100644 --- a/lib/LaTeXML/resources/XSLT/LaTeXML-common.xsl +++ b/lib/LaTeXML/resources/XSLT/LaTeXML-common.xsl @@ -534,7 +534,7 @@ - + diff --git a/t/graphics/xcolors.xml b/t/graphics/xcolors.xml index c6a04a056..49d9d1bb2 100644 --- a/t/graphics/xcolors.xml +++ b/t/graphics/xcolors.xml @@ -332,307 +332,307 @@ A=100*13 = 1300pt;

red - XX 1 0 0 - XX 0 1 1 0 - XX 0 1 1 - XX FF0000 - XX 0.3 + XX 1 0 0 + XX 0 1 1 0 + XX 0 1 1 + XX FF0000 + XX 0.3 green - XX 0 1 0 - XX 1 0 1 0 - XX 0.3333 1 1 - XX 00FF00 - XX 0.59 + XX 0 1 0 + XX 1 0 1 0 + XX 0.3333 1 1 + XX 00FF00 + XX 0.59 blue - XX 0 0 1 - XX 1 1 0 0 - XX 0.6667 1 1 - XX 0000FF - XX 0.11 + XX 0 0 1 + XX 1 1 0 0 + XX 0.6667 1 1 + XX 0000FF + XX 0.11 cyan - XX 0 1 1 - XX 1 0 0 0 - XX 0.5 1 1 - XX 00FFFF - XX 0.7 + XX 0 1 1 + XX 1 0 0 0 + XX 0.5 1 1 + XX 00FFFF + XX 0.7 magenta - XX 1 0 1 - XX 0 1 0 0 - XX 0.8333 1 1 - XX FF00FF - XX 0.41 + XX 1 0 1 + XX 0 1 0 0 + XX 0.8333 1 1 + XX FF00FF + XX 0.41 yellow - XX 1 1 0 - XX 0 0 1 0 - XX 0.1667 1 1 - XX FFFF00 - XX 0.89 + XX 1 1 0 + XX 0 0 1 0 + XX 0.1667 1 1 + XX FFFF00 + XX 0.89 orange - XX 1 0.5 0 - XX 0 0.5 1 0 - XX 0.0833 1 1 - XX FF8000 - XX 0.595 + XX 1 0.5 0 + XX 0 0.5 1 0 + XX 0.0833 1 1 + XX FF8000 + XX 0.595 violet - XX 0.5 0 0.5 - XX 0 0.5 0 0.5 - XX 0.8333 1 0.5 - XX 800080 - XX 0.205 + XX 0.5 0 0.5 + XX 0 0.5 0 0.5 + XX 0.8333 1 0.5 + XX 800080 + XX 0.205 purple - XX 0.75 0 0.25 - XX 0 0.75 0.5 0.25 - XX 0.9444 1 0.75 - XX BF0040 - XX 0.2525 + XX 0.75 0 0.25 + XX 0 0.75 0.5 0.25 + XX 0.9444 1 0.75 + XX BF0040 + XX 0.2525 brown - XX 0.75 0.5 0.25 - XX 0 0.25 0.5 0.25 - XX 0.0833 0.6667 0.75 - XX BF8040 - XX 0.5475 + XX 0.75 0.5 0.25 + XX 0 0.25 0.5 0.25 + XX 0.0833 0.6667 0.75 + XX BF8040 + XX 0.5475 pink - XX 1 0.75 0.75 - XX 0 0.25 0.25 0 - XX 0 0.25 1 - XX FFBFBF - XX 0.825 + XX 1 0.75 0.75 + XX 0 0.25 0.25 0 + XX 0 0.25 1 + XX FFBFBF + XX 0.825 olive - XX 0.5 0.5 0 - XX 0 0 1 0.5 - XX 0.1667 1 0.5 - XX 808000 - XX 0.39 + XX 0.5 0.5 0 + XX 0 0 1 0.5 + XX 0.1667 1 0.5 + XX 808000 + XX 0.39 black - XX 0 0 0 - XX 0 0 0 1 - XX 0 0 0 - XX 000000 - XX 0 + XX 0 0 0 + XX 0 0 0 1 + XX 0 0 0 + XX 000000 + XX 0 darkgray - XX 0.25 0.25 0.25 - XX 0 0 0 0.75 - XX 0 0 0.25 - XX 404040 - XX 0.25 + XX 0.25 0.25 0.25 + XX 0 0 0 0.75 + XX 0 0 0.25 + XX 404040 + XX 0.25 gray - XX 0.5 0.5 0.5 - XX 0 0 0 0.5 - XX 0 0 0.5 - XX 808080 - XX 0.5 + XX 0.5 0.5 0.5 + XX 0 0 0 0.5 + XX 0 0 0.5 + XX 808080 + XX 0.5 lightgray - XX 0.75 0.75 0.75 - XX 0 0 0 0.25 - XX 0 0 0.75 - XX BFBFBF - XX 0.75 + XX 0.75 0.75 0.75 + XX 0 0 0 0.25 + XX 0 0 0.75 + XX BFBFBF + XX 0.75 white - XX 1 1 1 - XX 0 0 0 0 - XX 0 0 1 - XX FFFFFF - XX 1 + XX 1 1 1 + XX 0 0 0 0 + XX 0 0 1 + XX FFFFFF + XX 1 -red - XX 0 1 1 - XX 1 0 0 0 - XX 0.5 1 1 - XX 00FFFF - XX 0.7 + XX 0 1 1 + XX 1 0 0 0 + XX 0.5 1 1 + XX 00FFFF + XX 0.7 -green - XX 1 0 1 - XX 0 1 0 0 - XX 0.8333 1 1 - XX FF00FF - XX 0.41 + XX 1 0 1 + XX 0 1 0 0 + XX 0.8333 1 1 + XX FF00FF + XX 0.41 -blue - XX 1 1 0 - XX 0 0 1 0 - XX 0.1667 1 1 - XX FFFF00 - XX 0.89 + XX 1 1 0 + XX 0 0 1 0 + XX 0.1667 1 1 + XX FFFF00 + XX 0.89 -cyan - XX 1 0 0 - XX 0 1 1 0 - XX 0 1 1 - XX FF0000 - XX 0.3 + XX 1 0 0 + XX 0 1 1 0 + XX 0 1 1 + XX FF0000 + XX 0.3 -magenta - XX 0 1 0 - XX 1 0 1 0 - XX 0.3333 1 1 - XX 00FF00 - XX 0.59 + XX 0 1 0 + XX 1 0 1 0 + XX 0.3333 1 1 + XX 00FF00 + XX 0.59 -yellow - XX 0 0 1 - XX 1 1 0 0 - XX 0.6667 1 1 - XX 0000FF - XX 0.11 + XX 0 0 1 + XX 1 1 0 0 + XX 0.6667 1 1 + XX 0000FF + XX 0.11 -orange - XX 0 0.5 1 - XX 1 0.5 0 0 - XX 0.5833 1 1 - XX 0080FF - XX 0.405 + XX 0 0.5 1 + XX 1 0.5 0 0 + XX 0.5833 1 1 + XX 0080FF + XX 0.405 -violet - XX 0.5 1 0.5 - XX 0.5 0 0.5 0 - XX 0.3333 0.5 1 - XX 80FF80 - XX 0.795 + XX 0.5 1 0.5 + XX 0.5 0 0.5 0 + XX 0.3333 0.5 1 + XX 80FF80 + XX 0.795 -purple - XX 0.25 1 0.75 - XX 0.75 0 0.25 0 - XX 0.4444 0.75 1 - XX 40FFBF - XX 0.7475 + XX 0.25 1 0.75 + XX 0.75 0 0.25 0 + XX 0.4444 0.75 1 + XX 40FFBF + XX 0.7475 -brown - XX 0.25 0.5 0.75 - XX 0.5 0.25 0 0.25 - XX 0.5833 0.6667 0.75 - XX 4080BF - XX 0.4525 + XX 0.25 0.5 0.75 + XX 0.5 0.25 0 0.25 + XX 0.5833 0.6667 0.75 + XX 4080BF + XX 0.4525 -pink - XX 0 0.25 0.25 - XX 0.25 0 0 0.75 - XX 0.5 1 0.25 - XX 004040 - XX 0.175 + XX 0 0.25 0.25 + XX 0.25 0 0 0.75 + XX 0.5 1 0.25 + XX 004040 + XX 0.175 -olive - XX 0.5 0.5 1 - XX 0.5 0.5 0 0 - XX 0.6667 0.5 1 - XX 8080FF - XX 0.555 + XX 0.5 0.5 1 + XX 0.5 0.5 0 0 + XX 0.6667 0.5 1 + XX 8080FF + XX 0.555 -black - XX 1 1 1 - XX 0 0 0 0 - XX 0 0 1 - XX FFFFFF - XX 1 + XX 1 1 1 + XX 0 0 0 0 + XX 0 0 1 + XX FFFFFF + XX 1 -darkgray - XX 0.75 0.75 0.75 - XX 0 0 0 0.25 - XX 0 0 0.75 - XX BFBFBF - XX 0.75 + XX 0.75 0.75 0.75 + XX 0 0 0 0.25 + XX 0 0 0.75 + XX BFBFBF + XX 0.75 -gray - XX 0.5 0.5 0.5 - XX 0 0 0 0.5 - XX 0 0 0.5 - XX 808080 - XX 0.5 + XX 0.5 0.5 0.5 + XX 0 0 0 0.5 + XX 0 0 0.5 + XX 808080 + XX 0.5 -lightgray - XX 0.25 0.25 0.25 - XX 0 0 0 0.75 - XX 0 0 0.25 - XX 404040 - XX 0.25 + XX 0.25 0.25 0.25 + XX 0 0 0 0.75 + XX 0 0 0.25 + XX 404040 + XX 0.25 -white - XX 0 0 0 - XX 0 0 0 1 - XX 0 0 0 - XX 000000 - XX 0 + XX 0 0 0 + XX 0 0 0 1 + XX 0 0 0 + XX 000000 + XX 0 JungleGreen - XX 0.01 1 0.48 - XX 0.99 0 0.52 0 - XX 0.4125 0.99 1 - XX 03FF7A - XX 0.6458 + XX 0.01 1 0.48 + XX 0.99 0 0.52 0 + XX 0.4125 0.99 1 + XX 03FF7A + XX 0.6458 DarkOrchid - XX 0.6 0.2 0.8 - XX 0.4 0.8 0.2 0 - XX 0.7778 0.75 0.8 - XX 9933CC - XX 0.386 + XX 0.6 0.2 0.8 + XX 0.4 0.8 0.2 0 + XX 0.7778 0.75 0.8 + XX 9933CC + XX 0.386 -JungleGreen - XX 0.99 0 0.52 - XX 0 0.99 0.47 0.01 - XX 0.9125 1 0.99 - XX FC0085 - XX 0.3542 + XX 0.99 0 0.52 + XX 0 0.99 0.47 0.01 + XX 0.9125 1 0.99 + XX FC0085 + XX 0.3542 -DarkOrchid - XX 0.4 0.8 0.2 - XX 0.4 0 0.6 0.2 - XX 0.2778 0.75 0.8 - XX 66CC33 - XX 0.614 + XX 0.4 0.8 0.2 + XX 0.4 0 0.6 0.2 + XX 0.2778 0.75 0.8 + XX 66CC33 + XX 0.614 diff --git a/t/theorem/ntheorem.xml b/t/theorem/ntheorem.xml index 486a3ec0d..60dea6c77 100644 --- a/t/theorem/ntheorem.xml +++ b/t/theorem/ntheorem.xml @@ -1474,7 +1474,7 @@ The first Kappa-Theorem has been given in ยง1.2 <tag close=" ">1.2</tag>Framed and Shaded Theorems - + Theorem 9 9