mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-05 10:54:27 +02:00
bundling docbook 4
now make and make web works
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -1,7 +1,9 @@
|
|||||||
docs/*.cache
|
docs/*.cache
|
||||||
|
docs/*.fot
|
||||||
docs/Makefile
|
docs/Makefile
|
||||||
docs/config.*
|
docs/config.*
|
||||||
docs/configure
|
docs/configure
|
||||||
|
docs/html
|
||||||
docs/manual.xml
|
docs/manual.xml
|
||||||
docs/version.ent
|
docs/phpweb
|
||||||
/templates_c
|
/templates_c
|
||||||
|
@@ -3,4 +3,6 @@ Makefile
|
|||||||
manual.xml
|
manual.xml
|
||||||
config.*
|
config.*
|
||||||
*.cache
|
*.cache
|
||||||
version.ent
|
*.fot
|
||||||
|
html
|
||||||
|
phpweb
|
||||||
|
@@ -24,18 +24,36 @@ all: html
|
|||||||
PHP=@PHP@
|
PHP=@PHP@
|
||||||
LANG=@LANG@
|
LANG=@LANG@
|
||||||
NSGMLS=@NSGMLS@
|
NSGMLS=@NSGMLS@
|
||||||
|
JADE=@JADE@ -D . -wno-idref
|
||||||
|
XMLDCL=./dtds/dbxml-4.1.2/phpdocxml.dcl
|
||||||
|
CATALOG=@CATALOG@
|
||||||
|
HTML_STYLESHEET=dsssl/html.dsl
|
||||||
|
PHPWEB_STYLESHEET=dsssl/php.dsl
|
||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
test:
|
#default behaviour
|
||||||
$(NSGMLS) -i lang-$(LANG) -s ./dtds/dbxml-4.1.2/phpdocxml.dcl manual.xml
|
all:html
|
||||||
|
|
||||||
|
FORCE:
|
||||||
|
|
||||||
|
html: FORCE
|
||||||
|
@test -d html || mkdir html
|
||||||
|
$(JADE) $(CATALOG) -d $(HTML_STYLESHEET) -V use-output-dir -t sgml $(XMLDCL) manual.xml
|
||||||
|
|
||||||
|
web: FORCE
|
||||||
|
@test -d phpweb || mkdir phpweb
|
||||||
|
$(JADE) $(CATALOG) -d $(PHPWEB_STYLESHEET) -V use-output-dir -t sgml $(XMLDCL) manual.xml
|
||||||
|
$(PHP) scripts/generate_web.php
|
||||||
|
|
||||||
|
test:
|
||||||
|
$(NSGMLS) -i lang-$(LANG) -s $(XMLDCL) manual.xml
|
||||||
|
|
||||||
|
|
||||||
# {{{ cleanup
|
# {{{ cleanup
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f Makefile config.* manual.xml configure version.ent
|
rm -f Makefile config.* manual.xml configure entities/version.ent *.fot
|
||||||
rm -fr autom4te.cache
|
rm -fr autom4te.cache html phpweb
|
||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
|
@@ -16,6 +16,108 @@ echo
|
|||||||
|
|
||||||
dnl {{{ check for support programs
|
dnl {{{ check for support programs
|
||||||
|
|
||||||
|
dnl {{{ check for PHP
|
||||||
|
|
||||||
|
dnl use given argument, if any, else search in path
|
||||||
|
AC_ARG_WITH(php,
|
||||||
|
[ --with-php=PATH look for PHP executable needed for helper scripts],
|
||||||
|
[
|
||||||
|
if test $withval != "yes"; then
|
||||||
|
AC_MSG_CHECKING([for php])
|
||||||
|
if test -x $withval; then
|
||||||
|
PHP=$withval
|
||||||
|
AC_MSG_RESULT($PHP)
|
||||||
|
else
|
||||||
|
PHP=no
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
AC_MSG_ERROR([$withval: not an executable file])
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if test -e ../../phpdoc-tools/php.bat ; then
|
||||||
|
AC_MSG_CHECKING([for php])
|
||||||
|
PHP=../../phpdoc-tools/php.bat
|
||||||
|
AC_MSG_RESULT($PHP)
|
||||||
|
else
|
||||||
|
AC_PATH_PROG(PHP,"php",no)
|
||||||
|
if test $PHP = "no"; then
|
||||||
|
AC_PATH_PROG(PHP4,"php4",no)
|
||||||
|
PHP=$PHP4
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
],[
|
||||||
|
if test -e ../../phpdoc-tools/php.bat ; then
|
||||||
|
AC_MSG_CHECKING([for php])
|
||||||
|
PHP=../../phpdoc-tools/php.bat
|
||||||
|
AC_MSG_RESULT($PHP)
|
||||||
|
else
|
||||||
|
AC_PATH_PROG(PHP,"php",no)
|
||||||
|
if test $PHP = "no"; then
|
||||||
|
AC_PATH_PROG(PHP4,"php4",no)
|
||||||
|
PHP=$PHP4
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
]
|
||||||
|
)
|
||||||
|
if test $PHP = "no"; then
|
||||||
|
AC_MSG_ERROR([no PHP binary found])
|
||||||
|
fi
|
||||||
|
AC_SUBST(PHP)
|
||||||
|
|
||||||
|
dnl }}}
|
||||||
|
|
||||||
|
dnl {{{ check for the Jade or OpenJade DSSSL parser
|
||||||
|
|
||||||
|
dnl use given argument, if any, else search in path
|
||||||
|
|
||||||
|
AC_ARG_WITH(jade,
|
||||||
|
[ --with-jade=PATH look for jade or openjade executable],[
|
||||||
|
if test $withval != "yes"; then
|
||||||
|
AC_MSG_CHECKING([for jade])
|
||||||
|
if test -x $withval; then
|
||||||
|
JADE=$withval
|
||||||
|
AC_MSG_RESULT($JADE)
|
||||||
|
else
|
||||||
|
JADE=no
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
AC_MSG_ERROR([$withval: not an executable file])
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if test -e ../../phpdoc-tools/jade/jade.exe ; then
|
||||||
|
AC_MSG_CHECKING([for jade])
|
||||||
|
JADE=../../phpdoc-tools/jade/jade.exe
|
||||||
|
AC_MSG_RESULT($JADE)
|
||||||
|
else
|
||||||
|
AC_PATH_PROG(OPENJADE,"openjade",no)
|
||||||
|
if test $OPENJADE = "no"; then
|
||||||
|
AC_PATH_PROG(JADE,"jade",no)
|
||||||
|
else
|
||||||
|
JADE=$OPENJADE
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
],[
|
||||||
|
if test -e ../../phpdoc-tools/jade/jade.exe ; then
|
||||||
|
AC_MSG_CHECKING([for jade])
|
||||||
|
JADE=../../phpdoc-tools/jade/jade.exe
|
||||||
|
AC_MSG_RESULT($JADE)
|
||||||
|
else
|
||||||
|
AC_PATH_PROG(OPENJADE,"openjade",no)
|
||||||
|
if test $OPENJADE = "no"; then
|
||||||
|
AC_PATH_PROG(JADE,"jade",no)
|
||||||
|
else
|
||||||
|
JADE=$OPENJADE
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
]
|
||||||
|
)
|
||||||
|
if test $JADE = "no"; then
|
||||||
|
AC_MSG_ERROR([can't find jade or openjade])
|
||||||
|
fi
|
||||||
|
AC_SUBST(JADE)
|
||||||
|
|
||||||
|
dnl }}}
|
||||||
|
|
||||||
dnl {{{ check for nsgmls or onsgmls
|
dnl {{{ check for nsgmls or onsgmls
|
||||||
|
|
||||||
AC_ARG_WITH(nsgmls,
|
AC_ARG_WITH(nsgmls,
|
||||||
@@ -68,6 +170,53 @@ dnl }}}
|
|||||||
|
|
||||||
dnl }}}
|
dnl }}}
|
||||||
|
|
||||||
|
dnl {{{ check for catalog files
|
||||||
|
|
||||||
|
CATALOG=""
|
||||||
|
|
||||||
|
dnl iso-ents catalog file
|
||||||
|
dnl The 4.1.2 DocBook DTD also includes entity files, but they cannot be used with Jade!
|
||||||
|
if test -e ./entities/ISO/catalog
|
||||||
|
then
|
||||||
|
CATALOG="$CATALOG -c ./entities/ISO/catalog"
|
||||||
|
fi
|
||||||
|
|
||||||
|
dnl DSSSL catalog file
|
||||||
|
if test -e ./dsssl/docbook/catalog
|
||||||
|
then
|
||||||
|
CATALOG="$CATALOG -c ./dsssl/docbook/catalog"
|
||||||
|
fi
|
||||||
|
|
||||||
|
dnl For windows (and maybe *nix too?) users lacking catalog-files
|
||||||
|
|
||||||
|
dnl jade catalog file
|
||||||
|
# how about using JADEPATH? You should replace the last 4 chars ('jade') with catalog
|
||||||
|
# !! JADEPATH may not properly be set on windows, so do not use it !!
|
||||||
|
if test -e ../../phpdoc-tools/jade/catalog
|
||||||
|
then
|
||||||
|
CATALOG="$CATALOG -c ../../phpdoc-tools/jade/catalog"
|
||||||
|
fi
|
||||||
|
dnl SuSE openjade setup
|
||||||
|
if test -e /usr/share/sgml/CATALOG.docbk41
|
||||||
|
then
|
||||||
|
CATALOG="$CATALOG -c /usr/share/sgml/CATALOG.docbk41"
|
||||||
|
fi
|
||||||
|
if test -e /usr/share/sgml/CATALOG.jade_dsl
|
||||||
|
then
|
||||||
|
CATALOG="$CATALOG -c /usr/share/sgml/CATALOG.jade_dsl"
|
||||||
|
fi
|
||||||
|
|
||||||
|
dnl As a very last option, include default catalog files from phpdoc
|
||||||
|
dnl (imported from the openjade distribution)
|
||||||
|
if test -e $srcdir/dsssl/defaults/catalog
|
||||||
|
then
|
||||||
|
CATALOG="$CATALOG -c ./dsssl/defaults/catalog"
|
||||||
|
fi
|
||||||
|
|
||||||
|
AC_SUBST(CATALOG)
|
||||||
|
|
||||||
|
dnl }}}
|
||||||
|
|
||||||
|
|
||||||
dnl {{{ language specific stuff
|
dnl {{{ language specific stuff
|
||||||
|
|
||||||
|
4
docs/dsssl/defaults/catalog
Executable file
4
docs/dsssl/defaults/catalog
Executable file
@@ -0,0 +1,4 @@
|
|||||||
|
PUBLIC "-//James Clark//DTD DSSSL Flow Object Tree//EN" "fot.dtd"
|
||||||
|
PUBLIC "ISO/IEC 10179:1996//DTD DSSSL Architecture//EN" "dsssl.dtd"
|
||||||
|
PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" "style-sheet.dtd"
|
||||||
|
PUBLIC "-//OpenJade//DTD DSSSL Style Sheet//EN" "style-sheet.dtd"
|
134
docs/dsssl/defaults/dsssl.dtd
Executable file
134
docs/dsssl/defaults/dsssl.dtd
Executable file
@@ -0,0 +1,134 @@
|
|||||||
|
<!-- DSSSL Architectural Forms -->
|
||||||
|
|
||||||
|
<!ENTITY % declarations
|
||||||
|
"features | baseset-encoding | literal-described-char | add-name-chars
|
||||||
|
| add-separator-chars | standard-chars | other-chars
|
||||||
|
| combine-char | map-sdata-entity | char-repertoire"
|
||||||
|
>
|
||||||
|
|
||||||
|
<!element dsssl-specification - O
|
||||||
|
((%declarations;)*,
|
||||||
|
(style-specification | transformation-specification
|
||||||
|
| external-specification)+)>
|
||||||
|
<!attlist dsssl-specification
|
||||||
|
version CDATA #FIXED "ISO/IEC 10179:1996"
|
||||||
|
>
|
||||||
|
|
||||||
|
<!element transformation-specification - O
|
||||||
|
((%declarations;)*, transformation-specification-body*)>
|
||||||
|
<!attlist transformation-specification
|
||||||
|
id ID #IMPLIED
|
||||||
|
desc CDATA #IMPLIED
|
||||||
|
-- human readable description of specification --
|
||||||
|
partial (partial | complete) complete
|
||||||
|
-- is the specification complete is or is it just a fragment
|
||||||
|
to be used in other specifications? --
|
||||||
|
use -- reftype(transformation-specification|external-specification) --
|
||||||
|
IDREFS #IMPLIED -- Default: none --
|
||||||
|
entities
|
||||||
|
-- entities available to be specified as DTD for validation
|
||||||
|
of result document --
|
||||||
|
ENTITIES #IMPLIED -- Default: none --
|
||||||
|
>
|
||||||
|
|
||||||
|
<!element style-specification - O
|
||||||
|
((%declarations;)*, style-specification-body*)>
|
||||||
|
<!attlist style-specification
|
||||||
|
id ID #IMPLIED
|
||||||
|
desc CDATA #IMPLIED
|
||||||
|
-- human readable description of specification --
|
||||||
|
partial (partial | complete) complete
|
||||||
|
-- is the specification complete is or is it just a fragment
|
||||||
|
to be used in other specifications? --
|
||||||
|
use -- reftype(style-specification|external-specification) --
|
||||||
|
IDREFS #IMPLIED -- Default: none --
|
||||||
|
>
|
||||||
|
|
||||||
|
<!-- Assign a local ID to a specification in another document. -->
|
||||||
|
<!element external-specification - O EMPTY>
|
||||||
|
<!attlist external-specification
|
||||||
|
id ID #REQUIRED
|
||||||
|
document -- document containing spec --
|
||||||
|
ENTITY #REQUIRED
|
||||||
|
specid -- id of spec in document --
|
||||||
|
NAME #IMPLIED -- Default: first spec in document --
|
||||||
|
>
|
||||||
|
|
||||||
|
<!-- Declares features used by specification. -->
|
||||||
|
<!element features - O (#PCDATA)
|
||||||
|
-- dlextype(featurename*) -->
|
||||||
|
|
||||||
|
<!-- Map character numbers in a base character set to character names;
|
||||||
|
not needed when system knows a character set, and all characters
|
||||||
|
in character set have universal code. -->
|
||||||
|
<!element baseset-encoding - O (#PCDATA)
|
||||||
|
-- dlextype((number, charname)*) -->
|
||||||
|
<!attlist baseset-encoding
|
||||||
|
name CDATA #REQUIRED -- public identifier of baseset --
|
||||||
|
>
|
||||||
|
|
||||||
|
<!-- Map a character described in the SGML declaration with a minimum literal
|
||||||
|
to a character name. -->
|
||||||
|
<!element literal-described-char - O (#PCDATA)
|
||||||
|
-- dlextype(charname) -->
|
||||||
|
<!attlist literal-described-char
|
||||||
|
desc CDATA #REQUIRED -- the literal description --
|
||||||
|
>
|
||||||
|
|
||||||
|
<!-- Declare additional characters allowed in name within DSSSL notation. -->
|
||||||
|
<!element add-name-chars - O (#PCDATA)
|
||||||
|
-- dlextype(charname*) -->
|
||||||
|
|
||||||
|
<!-- Declare additional characters allowed as separators within
|
||||||
|
DSSSL notation. -->
|
||||||
|
<!element add-separator-chars - O (#PCDATA)
|
||||||
|
-- dlextype(charname*) -->
|
||||||
|
|
||||||
|
<!-- Define characters associating names with universal codes. -->
|
||||||
|
|
||||||
|
<!element standard-chars - O (#PCDATA)
|
||||||
|
-- dlextype((charname, number))*) -->
|
||||||
|
|
||||||
|
<!-- Define characters with no universal codes. -->
|
||||||
|
|
||||||
|
<!element other-chars - O (#PCDATA)
|
||||||
|
-- dlextype(charname*) -->
|
||||||
|
|
||||||
|
<!-- Map an SDATA entity onto a character. -->
|
||||||
|
|
||||||
|
<!element map-sdata-entity - O (#PCDATA)
|
||||||
|
-- dlextype(charname) -->
|
||||||
|
<!attlist map-sdata-entity
|
||||||
|
name CDATA #IMPLIED -- Default: mapping uses replacement text only --
|
||||||
|
text CDATA #IMPLIED -- Default: mapping uses name only --
|
||||||
|
>
|
||||||
|
|
||||||
|
<!-- Declare character combining. -->
|
||||||
|
|
||||||
|
<!element combine-char - O (#PCDATA)
|
||||||
|
-- dlextype(charname, charname, charname+) -->
|
||||||
|
|
||||||
|
<!-- Declare a character repertoire. -->
|
||||||
|
<!element char-repertoire - O EMPTY>
|
||||||
|
<!attlist char-repertoire
|
||||||
|
name -- public identifier for repertoire --
|
||||||
|
CDATA #REQUIRED
|
||||||
|
>
|
||||||
|
|
||||||
|
<!element style-specification-body - - CDATA
|
||||||
|
-- content uses notation of DSSSL style language -->
|
||||||
|
<!attlist style-specification-body
|
||||||
|
content ENTITY #CONREF -- Default: syntactic content --
|
||||||
|
>
|
||||||
|
|
||||||
|
<!element transformation-specification-body - - CDATA
|
||||||
|
-- content uses notation of DSSSL transformation language -->
|
||||||
|
<!attlist transformation-specification-body
|
||||||
|
content ENTITY #CONREF -- Default: syntactic content --
|
||||||
|
>
|
||||||
|
|
||||||
|
<!-- This notation is intended for use as the value of the ArcDataF
|
||||||
|
architectural form support attribute. -->
|
||||||
|
|
||||||
|
<!NOTATION dsssl-specification PUBLIC
|
||||||
|
"ISO/IEC 10179:1996//NOTATION DSSSL Specification//EN">
|
507
docs/dsssl/defaults/fot.dtd
Executable file
507
docs/dsssl/defaults/fot.dtd
Executable file
@@ -0,0 +1,507 @@
|
|||||||
|
<!-- Typical use:
|
||||||
|
|
||||||
|
<!DOCTYPE fot PUBLIC "-//James Clark//DTD DSSSL Flow Object Tree//EN" "fot.dtd">
|
||||||
|
|
||||||
|
-->
|
||||||
|
<!ENTITY % length-spec "CDATA">
|
||||||
|
<!-- represents length-spec or #f; #f is represented by empty value -->
|
||||||
|
<!ENTITY % opt-length-spec "CDATA">
|
||||||
|
<!ENTITY % length "NMTOKEN">
|
||||||
|
<!ENTITY % enum "NMTOKEN">
|
||||||
|
<!ENTITY % enum-or-boolean "NMTOKEN">
|
||||||
|
<!ENTITY % boolean "(true|false)">
|
||||||
|
|
||||||
|
<!ENTITY % flow "
|
||||||
|
(paragraph
|
||||||
|
|sequence
|
||||||
|
|display-group
|
||||||
|
|line-field
|
||||||
|
|link
|
||||||
|
|scroll
|
||||||
|
|marginalia
|
||||||
|
|leader
|
||||||
|
|sideline
|
||||||
|
|box
|
||||||
|
|score
|
||||||
|
|table-row
|
||||||
|
|math-sequence
|
||||||
|
|unmath
|
||||||
|
|subscript
|
||||||
|
|superscript
|
||||||
|
|grid
|
||||||
|
|grid-cell
|
||||||
|
|paragraph-break
|
||||||
|
|external-graphic
|
||||||
|
|rule
|
||||||
|
|alignment-point
|
||||||
|
|table-column
|
||||||
|
|character
|
||||||
|
|simple-page-sequence
|
||||||
|
|fraction
|
||||||
|
|script
|
||||||
|
|mark
|
||||||
|
|fence
|
||||||
|
|radical
|
||||||
|
|math-operator
|
||||||
|
|table
|
||||||
|
|table-part
|
||||||
|
|table-cell
|
||||||
|
|multi-mode
|
||||||
|
|page-number
|
||||||
|
|text
|
||||||
|
|sdata
|
||||||
|
|a
|
||||||
|
|define-glyph-subst-table)*">
|
||||||
|
|
||||||
|
<!ELEMENT fot %flow;>
|
||||||
|
<!ELEMENT text (#PCDATA)>
|
||||||
|
<!ELEMENT sdata EMPTY>
|
||||||
|
<!ATTLIST sdata name CDATA #REQUIRED text CDATA #REQUIRED>
|
||||||
|
|
||||||
|
<!ELEMENT paragraph %flow;>
|
||||||
|
<!ELEMENT sequence %flow;>
|
||||||
|
<!ELEMENT display-group %flow;>
|
||||||
|
<!ELEMENT line-field %flow;>
|
||||||
|
<!ELEMENT link %flow;>
|
||||||
|
<!ELEMENT scroll %flow;>
|
||||||
|
<!ELEMENT marginalia %flow;>
|
||||||
|
<!ELEMENT leader %flow;>
|
||||||
|
<!ELEMENT sideline %flow;>
|
||||||
|
<!ELEMENT box %flow;>
|
||||||
|
<!ELEMENT score %flow;>
|
||||||
|
<!ELEMENT table-row %flow;>
|
||||||
|
<!ELEMENT math-sequence %flow;>
|
||||||
|
<!ELEMENT unmath %flow;>
|
||||||
|
<!ELEMENT subscript %flow;>
|
||||||
|
<!ELEMENT superscript %flow;>
|
||||||
|
<!ELEMENT grid %flow;>
|
||||||
|
<!ELEMENT grid-cell %flow;>
|
||||||
|
<!ELEMENT paragraph-break EMPTY>
|
||||||
|
<!ELEMENT external-graphic EMPTY>
|
||||||
|
<!ELEMENT rule EMPTY>
|
||||||
|
<!ELEMENT alignment-point EMPTY>
|
||||||
|
<!ELEMENT table-column EMPTY>
|
||||||
|
<!ELEMENT character EMPTY>
|
||||||
|
|
||||||
|
<!ELEMENT page-number EMPTY>
|
||||||
|
<!ATTLIST page-number ref CDATA #IMPLIED>
|
||||||
|
|
||||||
|
<!ELEMENT define-glyph-subst-table (glyph-subst*)>
|
||||||
|
<!ATTLIST define-glyph-subst-table id ID #REQUIRED>
|
||||||
|
|
||||||
|
<!ELEMENT glyph-subst EMPTY>
|
||||||
|
<!ATTLIST glyph-subst old CDATA #REQUIRED new CDATA #REQUIRED>
|
||||||
|
|
||||||
|
<!ELEMENT a EMPTY>
|
||||||
|
<!ATTLIST a
|
||||||
|
name CDATA #REQUIRED
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ELEMENT simple-page-sequence
|
||||||
|
((simple-page-sequence.right-header
|
||||||
|
|simple-page-sequence.center-header
|
||||||
|
|simple-page-sequence.left-header
|
||||||
|
|simple-page-sequence.right-footer
|
||||||
|
|simple-page-sequence.center-footer
|
||||||
|
|simple-page-sequence.left-footer)*,
|
||||||
|
%flow;)
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ELEMENT simple-page-sequence.left-header %flow;>
|
||||||
|
<!ELEMENT simple-page-sequence.right-header %flow;>
|
||||||
|
<!ELEMENT simple-page-sequence.center-header %flow;>
|
||||||
|
<!ELEMENT simple-page-sequence.left-footer %flow;>
|
||||||
|
<!ELEMENT simple-page-sequence.right-footer %flow;>
|
||||||
|
<!ELEMENT simple-page-sequence.center-footer %flow;>
|
||||||
|
|
||||||
|
<!ENTITY % hf "
|
||||||
|
front %boolean; #IMPLIED
|
||||||
|
first %boolean; #IMPLIED
|
||||||
|
">
|
||||||
|
|
||||||
|
<!ATTLIST simple-page-sequence.right-header %hf;>
|
||||||
|
<!ATTLIST simple-page-sequence.center-header %hf;>
|
||||||
|
<!ATTLIST simple-page-sequence.left-footer %hf;>
|
||||||
|
<!ATTLIST simple-page-sequence.right-footer %hf;>
|
||||||
|
<!ATTLIST simple-page-sequence.center-footer %hf;>
|
||||||
|
|
||||||
|
<!ELEMENT table
|
||||||
|
(table.before-row-border, table.after-row-border,
|
||||||
|
table.before-column-border, table.after-column-border,
|
||||||
|
%flow;)>
|
||||||
|
|
||||||
|
<!ELEMENT table.before-row-border EMPTY>
|
||||||
|
<!ELEMENT table.after-row-border EMPTY>
|
||||||
|
<!ELEMENT table.before-column-border EMPTY>
|
||||||
|
<!ELEMENT table.after-column-border EMPTY>
|
||||||
|
|
||||||
|
<!ELEMENT table-part
|
||||||
|
(table-part.principal, table-part.header, table-part.footer)
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ELEMENT table-part.header %flow;>
|
||||||
|
<!ELEMENT table-part.footer %flow;>
|
||||||
|
<!ELEMENT table-part.principal %flow;>
|
||||||
|
|
||||||
|
<!ELEMENT table-cell
|
||||||
|
(table-cell.before-row-border, table-cell.after-row-border,
|
||||||
|
table-cell.before-column-border, table-cell.after-column-border,
|
||||||
|
%flow;)>
|
||||||
|
|
||||||
|
<!ELEMENT table-cell.before-row-border EMPTY>
|
||||||
|
<!ELEMENT table-cell.after-row-border EMPTY>
|
||||||
|
<!ELEMENT table-cell.before-column-border EMPTY>
|
||||||
|
<!ELEMENT table-cell.after-column-border EMPTY>
|
||||||
|
|
||||||
|
<!ELEMENT fraction
|
||||||
|
(fraction.fraction-bar, fraction.numerator, fraction.denominator)>
|
||||||
|
<!ELEMENT fraction.numerator %flow;>
|
||||||
|
<!ELEMENT fraction.denominator %flow;>
|
||||||
|
<!ELEMENT fraction.fraction-bar EMPTY>
|
||||||
|
|
||||||
|
<!ELEMENT script (script.principal,
|
||||||
|
script.pre-sup, script.pre-sub,
|
||||||
|
script.post-sup, script.post-sub,
|
||||||
|
script.mid-sup, script.mid-sub)>
|
||||||
|
|
||||||
|
<!ELEMENT script.principal %flow;>
|
||||||
|
<!ELEMENT script.pre-sup %flow;>
|
||||||
|
<!ELEMENT script.pre-sub %flow;>
|
||||||
|
<!ELEMENT script.post-sup %flow;>
|
||||||
|
<!ELEMENT script.post-sub %flow;>
|
||||||
|
<!ELEMENT script.mid-sup %flow;>
|
||||||
|
<!ELEMENT script.mid-sub %flow;>
|
||||||
|
|
||||||
|
<!ELEMENT mark (mark.principal, mark.over-mark, mark.under-mark)>
|
||||||
|
<!ELEMENT mark.principal %flow;>
|
||||||
|
<!ELEMENT mark.over-mark %flow;>
|
||||||
|
<!ELEMENT mark.under-mark %flow;>
|
||||||
|
|
||||||
|
<!ELEMENT fence (fence.principal, fence.open, fence.close)>
|
||||||
|
<!ELEMENT fence.principal %flow;>
|
||||||
|
<!ELEMENT fence.open %flow;>
|
||||||
|
<!ELEMENT fence.close %flow;>
|
||||||
|
|
||||||
|
<!ELEMENT radical (radical.radical?, radical.principal, radical.degree)>
|
||||||
|
<!ELEMENT radical.principal %flow;>
|
||||||
|
<!ELEMENT radical.degree %flow;>
|
||||||
|
<!ELEMENT radical.radical EMPTY>
|
||||||
|
|
||||||
|
<!ELEMENT math-operator (math-operator.principal, math-operator.operator,
|
||||||
|
math-operator.lower-limit, math-operator.upper-limit)>
|
||||||
|
<!ELEMENT math-operator.principal %flow;>
|
||||||
|
<!ELEMENT math-operator.operator %flow;>
|
||||||
|
<!ELEMENT math-operator.lower-limit %flow;>
|
||||||
|
<!ELEMENT math-operator.upper-limit %flow;>
|
||||||
|
|
||||||
|
<!ELEMENT multi-mode (multi-mode.mode, multi-mode.mode+)>
|
||||||
|
<!ELEMENT multi-mode.mode %flow;>
|
||||||
|
<!ATTLIST multi-mode.mode
|
||||||
|
name CDATA #IMPLIED
|
||||||
|
desc CDATA #IMPLIED
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ENTITY % inherited-characteristics "
|
||||||
|
font-size %length; #IMPLIED
|
||||||
|
font-family-name CDATA #IMPLIED
|
||||||
|
font-weight %enum-or-boolean; #IMPLIED
|
||||||
|
font-posture %enum-or-boolean; #IMPLIED
|
||||||
|
start-indent %length-spec; #IMPLIED
|
||||||
|
end-indent %length-spec; #IMPLIED
|
||||||
|
first-line-start-indent %length-spec; #IMPLIED
|
||||||
|
last-line-end-indent %length-spec; #IMPLIED
|
||||||
|
line-spacing %length-spec; #IMPLIED
|
||||||
|
min-pre-line-spacing %opt-length-spec; #IMPLIED
|
||||||
|
min-post-line-spacing %opt-length-spec; #IMPLIED
|
||||||
|
min-leading %opt-length-spec; #IMPLIED
|
||||||
|
field-width %length-spec; #IMPLIED
|
||||||
|
lines %enum; #IMPLIED
|
||||||
|
quadding %enum; #IMPLIED
|
||||||
|
display-alignment %enum; #IMPLIED
|
||||||
|
field-align %enum; #IMPLIED
|
||||||
|
marginalia-side %enum; #IMPLIED
|
||||||
|
principal-mode-simultaneous %boolean; #IMPLIED
|
||||||
|
marginalia-sep %length-spec; #IMPLIED
|
||||||
|
marginalia-keep-with-previous %boolean; #IMPLIED
|
||||||
|
grid-equidistant-rows %boolean; #IMPLIED
|
||||||
|
grid-equidistant-columns %boolean; #IMPLIED
|
||||||
|
color CDATA #IMPLIED
|
||||||
|
background-color CDATA #IMPLIED
|
||||||
|
page-width %length; #IMPLIED
|
||||||
|
page-height %length; #IMPLIED
|
||||||
|
left-margin %length; #IMPLIED
|
||||||
|
right-margin %length; #IMPLIED
|
||||||
|
top-margin %length; #IMPLIED
|
||||||
|
bottom-margin %length; #IMPLIED
|
||||||
|
header-margin %length; #IMPLIED
|
||||||
|
footer-margin %length; #IMPLIED
|
||||||
|
border-present %boolean; #IMPLIED
|
||||||
|
hyphenate %boolean; #IMPLIED
|
||||||
|
kern %boolean; #IMPLIED
|
||||||
|
ligature %boolean; #IMPLIED
|
||||||
|
score-spaces %boolean; #IMPLIED
|
||||||
|
float-out-marginalia %boolean; #IMPLIED
|
||||||
|
float-out-sidelines %boolean; #IMPLIED
|
||||||
|
float-out-line-numbers %boolean; #IMPLIED
|
||||||
|
cell-background %boolean; #IMPLIED
|
||||||
|
span-weak %boolean; #IMPLIED
|
||||||
|
ignore-record-end %boolean; #IMPLIED
|
||||||
|
numbered-lines %boolean; #IMPLIED
|
||||||
|
hanging-punct %boolean; #IMPLIED
|
||||||
|
box-open-end %boolean; #IMPLIED
|
||||||
|
truncate-leader %boolean; #IMPLIED
|
||||||
|
align-leader %boolean; #IMPLIED
|
||||||
|
table-part-omit-middle-header %boolean; #IMPLIED
|
||||||
|
table-part-omit-middle-footer %boolean; #IMPLIED
|
||||||
|
border-omit-at-break %boolean; #IMPLIED
|
||||||
|
line-join %enum; #IMPLIED
|
||||||
|
line-cap %enum; #IMPLIED
|
||||||
|
line-number-side %enum; #IMPLIED
|
||||||
|
kern-mode %enum; #IMPLIED
|
||||||
|
input-whitespace-treatment %enum; #IMPLIED
|
||||||
|
filling-direction %enum; #IMPLIED
|
||||||
|
writing-mode %enum; #IMPLIED
|
||||||
|
last-line-quadding %enum; #IMPLIED
|
||||||
|
math-display-mode %enum; #IMPLIED
|
||||||
|
script-pre-align %enum; #IMPLIED
|
||||||
|
script-post-align %enum; #IMPLIED
|
||||||
|
script-mid-sup-align %enum; #IMPLIED
|
||||||
|
script-mid-sub-align %enum; #IMPLIED
|
||||||
|
numerator-align %enum; #IMPLIED
|
||||||
|
denominator-align %enum; #IMPLIED
|
||||||
|
grid-position-cell-type %enum; #IMPLIED
|
||||||
|
grid-column-alignment %enum; #IMPLIED
|
||||||
|
grid-row-Alignment %enum; #IMPLIED
|
||||||
|
box-type %enum; #IMPLIED
|
||||||
|
glyph-alignment-mode %enum; #IMPLIED
|
||||||
|
box-border-alignment %enum; #IMPLIED
|
||||||
|
cell-row-alignment %enum; #IMPLIED
|
||||||
|
border-alignment %enum; #IMPLIED
|
||||||
|
sideline-side %enum; #IMPLIED
|
||||||
|
hyphenation-keep %enum-or-boolean; #IMPLIED
|
||||||
|
font-structure %enum-or-boolean; #IMPLIED
|
||||||
|
font-proportionate-width %enum-or-boolean; #IMPLIED
|
||||||
|
cell-crossed %enum-or-boolean; #IMPLIED
|
||||||
|
position-point-shift %length-spec; #IMPLIED
|
||||||
|
start-margin %length-spec; #IMPLIED
|
||||||
|
end-margin %length-spec; #IMPLIED
|
||||||
|
sideline-sep %length-spec; #IMPLIED
|
||||||
|
asis-wrap-indent %length-spec; #IMPLIED
|
||||||
|
line-number-sep %length-spec; #IMPLIED
|
||||||
|
last-line-justify-limit %length-spec; #IMPLIED
|
||||||
|
justify-glyph-space-max-add %length-spec; #IMPLIED
|
||||||
|
justify-glyph-space-max-remove %length-spec; #IMPLIED
|
||||||
|
table-corner-radius %length-spec; #IMPLIED
|
||||||
|
box-corner-radius %length-spec; #IMPLIED
|
||||||
|
line-thickness %length; #IMPLIED
|
||||||
|
cell-before-row-margin %length; #IMPLIED
|
||||||
|
cell-after-row-margin %length; #IMPLIED
|
||||||
|
cell-before-column-margin %length; #IMPLIED
|
||||||
|
cell-after-column-margin %length; #IMPLIED
|
||||||
|
line-sep %length; #IMPLIED
|
||||||
|
box-size-before %length; #IMPLIED
|
||||||
|
box-size-after %length; #IMPLIED
|
||||||
|
country NMTOKEN #IMPLIED
|
||||||
|
language NMTOKEN #IMPLIED
|
||||||
|
expand-tabs NMTOKEN #IMPLIED
|
||||||
|
hyphenation-ladder-count NMTOKEN #IMPLIED
|
||||||
|
layer NMTOKEN #IMPLIED
|
||||||
|
background-layer NMTOKEN #IMPLIED
|
||||||
|
border-priority NMTOKEN #IMPLIED
|
||||||
|
line-repeat NMTOKEN #IMPLIED
|
||||||
|
span NMTOKEN #IMPLIED
|
||||||
|
min-leader-repeat NMTOKEN #IMPLIED
|
||||||
|
hyphenation-remain-char-count NMTOKEN #IMPLIED
|
||||||
|
hyphenation-push-char-count NMTOKEN #IMPLIED
|
||||||
|
widow-count NMTOKEN #IMPLIED
|
||||||
|
orphan-count NMTOKEN #IMPLIED
|
||||||
|
background-tile CDATA #IMPLIED
|
||||||
|
line-breaking-method CDATA #IMPLIED
|
||||||
|
line-composition-method CDATA #IMPLIED
|
||||||
|
implicit-bidi-method CDATA #IMPLIED
|
||||||
|
glyph-subst-method CDATA #IMPLIED
|
||||||
|
glyph-reorder-method CDATA #IMPLIED
|
||||||
|
hyphenation-method CDATA #IMPLIED
|
||||||
|
table-auto-width-method CDATA #IMPLIED
|
||||||
|
font-name CDATA #IMPLIED
|
||||||
|
escapement-space-before CDATA #IMPLIED
|
||||||
|
escapement-space-after CDATA #IMPLIED
|
||||||
|
glyph-subst-table NMTOKENS #IMPLIED
|
||||||
|
">
|
||||||
|
|
||||||
|
<!ENTITY % display-nic "
|
||||||
|
position-preference %enum-or-boolean; #IMPLIED
|
||||||
|
keep-with-next %boolean; 'false'
|
||||||
|
keep-with-previous %boolean; 'false'
|
||||||
|
may-violate-keep-before %boolean; 'false'
|
||||||
|
may-violate-keep-after %boolean; 'false'
|
||||||
|
keep %enum-or-boolean; #IMPLIED
|
||||||
|
break-before %enum-or-boolean; #IMPLIED
|
||||||
|
break-after %enum-or-boolean; #IMPLIED
|
||||||
|
space-before CDATA #IMPLIED
|
||||||
|
space-before-conditional %boolean; #IMPLIED
|
||||||
|
space-before-priority NMTOKEN #IMPLIED
|
||||||
|
space-after CDATA #IMPLIED
|
||||||
|
space-after-conditional %boolean; #IMPLIED
|
||||||
|
space-after-priority NMTOKEN #IMPLIED
|
||||||
|
">
|
||||||
|
|
||||||
|
<!ENTITY % inline-nic "
|
||||||
|
break-before-priority NMTOKEN #IMPLIED
|
||||||
|
break-after-priority NMTOKEN #IMPLIED
|
||||||
|
">
|
||||||
|
|
||||||
|
<!ATTLIST sequence %inherited-characteristics;>
|
||||||
|
<!ATTLIST line-field %inherited-characteristics;>
|
||||||
|
<!ATTLIST simple-page-sequence %inherited-characteristics;>
|
||||||
|
<!ATTLIST fraction %inherited-characteristics;>
|
||||||
|
<!ATTLIST fraction.fraction-bar %inherited-characteristics;>
|
||||||
|
<!ATTLIST math-sequence %inherited-characteristics;>
|
||||||
|
<!ATTLIST unmath %inherited-characteristics;>
|
||||||
|
<!ATTLIST subscript %inherited-characteristics;>
|
||||||
|
<!ATTLIST superscript %inherited-characteristics;>
|
||||||
|
<!ATTLIST script %inherited-characteristics;>
|
||||||
|
<!ATTLIST mark %inherited-characteristics;>
|
||||||
|
<!ATTLIST fence %inherited-characteristics;>
|
||||||
|
<!ATTLIST radical %inherited-characteristics;>
|
||||||
|
<!ATTLIST math-operator %inherited-characteristics;>
|
||||||
|
<!ATTLIST sideline %inherited-characteristics;>
|
||||||
|
<!ATTLIST scroll %inherited-characteristics;>
|
||||||
|
<!ATTLIST marginalia %inherited-characteristics;>
|
||||||
|
<!ATTLIST multi-mode %inherited-characteristics;>
|
||||||
|
<!ATTLIST table-row %inherited-characteristics;>
|
||||||
|
<!ATTLIST table.before-row-border %inherited-characteristics;>
|
||||||
|
<!ATTLIST table.after-row-border %inherited-characteristics;>
|
||||||
|
<!ATTLIST table.before-column-border %inherited-characteristics;>
|
||||||
|
<!ATTLIST table.after-column-border %inherited-characteristics;>
|
||||||
|
<!ATTLIST table-cell.before-row-border %inherited-characteristics;>
|
||||||
|
<!ATTLIST table-cell.after-row-border %inherited-characteristics;>
|
||||||
|
<!ATTLIST table-cell.before-column-border %inherited-characteristics;>
|
||||||
|
<!ATTLIST table-cell.after-column-border %inherited-characteristics;>
|
||||||
|
|
||||||
|
<!ATTLIST table-column
|
||||||
|
column-number NMTOKEN #REQUIRED
|
||||||
|
n-columns-spanned NMTOKEN #IMPLIED
|
||||||
|
width %length-spec; #IMPLIED
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ATTLIST table
|
||||||
|
width %length-spec; #IMPLIED
|
||||||
|
minimum-width %boolean; "false"
|
||||||
|
%display-nic;
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!-- column-number of 0 has a special meaning: it identifies a dummy cell that
|
||||||
|
can be used to fill out the row if it later proves necessary to do so -->
|
||||||
|
<!ATTLIST table-cell
|
||||||
|
column-number NMTOKEN #REQUIRED
|
||||||
|
n-columns-spanned NMTOKEN #IMPLIED
|
||||||
|
n-rows-spanned NMTOKEN #IMPLIED
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ATTLIST link
|
||||||
|
destination CDATA #IMPLIED
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ATTLIST box
|
||||||
|
display %boolean; "false"
|
||||||
|
%display-nic;
|
||||||
|
%inline-nic;
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ATTLIST score
|
||||||
|
type (before|through|after|char) #IMPLIED
|
||||||
|
type.length-spec %length-spec; #IMPLIED
|
||||||
|
char CDATA #IMPLIED
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ATTLIST leader
|
||||||
|
length %length-spec; #IMPLIED
|
||||||
|
%inherited-characteristics;
|
||||||
|
%inline-nic;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ATTLIST rule
|
||||||
|
orientation (horizontal|vertical|escapement|line-progression)
|
||||||
|
#REQUIRED
|
||||||
|
length %length-spec; #IMPLIED
|
||||||
|
%display-nic;
|
||||||
|
%inline-nic;
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ATTLIST external-graphic
|
||||||
|
display %boolean; "false"
|
||||||
|
scale %enum; #IMPLIED
|
||||||
|
scale-x NMTOKEN #IMPLIED
|
||||||
|
scale-y NMTOKEN #IMPLIED
|
||||||
|
max-width %length-spec; #IMPLIED
|
||||||
|
max-height %length-spec; #IMPLIED
|
||||||
|
entity-system-id CDATA #REQUIRED
|
||||||
|
notation-system-id CDATA #REQUIRED
|
||||||
|
escapement-direction %enum; #IMPLIED
|
||||||
|
position-point-x %length-spec; #IMPLIED
|
||||||
|
position-point-y %length-spec; #IMPLIED
|
||||||
|
%inline-nic;
|
||||||
|
%display-nic;
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ATTLIST display-group
|
||||||
|
coalesce-id CDATA #IMPLIED
|
||||||
|
%display-nic;
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ATTLIST paragraph
|
||||||
|
%display-nic;
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ATTLIST paragraph-break
|
||||||
|
%display-nic;
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ATTLIST table-part
|
||||||
|
%display-nic;
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ENTITY % character-c "
|
||||||
|
char CDATA #IMPLIED
|
||||||
|
glyph-id CDATA #IMPLIED
|
||||||
|
drop-after-line-break %boolean; #IMPLIED
|
||||||
|
drop-unless-before-line-break %boolean; #IMPLIED
|
||||||
|
punct %boolean; #IMPLIED
|
||||||
|
space %boolean; #IMPLIED
|
||||||
|
input-tab %boolean; #IMPLIED
|
||||||
|
input-whitespace %boolean; #IMPLIED
|
||||||
|
record-end %boolean; #IMPLIED
|
||||||
|
break-before-priority NMTOKEN #IMPLIED
|
||||||
|
break-after-priority NMTOKEN #IMPLIED
|
||||||
|
math-font-posture %enum-or-boolean; #IMPLIED
|
||||||
|
math-class %enum; #IMPLIED
|
||||||
|
script CDATA #IMPLIED
|
||||||
|
%inherited-characteristics;">
|
||||||
|
|
||||||
|
<!ATTLIST character %character-c;>
|
||||||
|
<!ATTLIST radical.radical %character-c;>
|
||||||
|
|
||||||
|
<!ATTLIST grid
|
||||||
|
grid-n-columns NMTOKEN #IMPLIED
|
||||||
|
grid-n-rows NMTOKEN #IMPLIED
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ATTLIST grid-cell
|
||||||
|
column-number NMTOKEN #IMPLIED
|
||||||
|
row-number NMTOKEN #IMPLIED
|
||||||
|
%inherited-characteristics;
|
||||||
|
>
|
76
docs/dsssl/defaults/style-sheet.dtd
Executable file
76
docs/dsssl/defaults/style-sheet.dtd
Executable file
@@ -0,0 +1,76 @@
|
|||||||
|
<!-- A DTD for DSSSL Style Sheets. The public identifier for this is
|
||||||
|
|
||||||
|
"-//OpenJade//DTD DSSSL Style Sheet//EN"
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!ENTITY % declarations
|
||||||
|
"add-name-chars | add-separator-chars | standard-chars |
|
||||||
|
map-sdata-entity | char-repertoire"
|
||||||
|
>
|
||||||
|
|
||||||
|
<!element style-sheet o o ((%declarations;)*, style-specification,
|
||||||
|
(external-specification|style-specification)*)>
|
||||||
|
<!element style-specification o o ((%declarations;)*, style-specification-body)>
|
||||||
|
<!attlist style-specification
|
||||||
|
id id #implied
|
||||||
|
use idrefs #implied
|
||||||
|
>
|
||||||
|
<!element style-specification-body o o (#pcdata)>
|
||||||
|
<!attlist style-specification-body
|
||||||
|
content entity #conref
|
||||||
|
>
|
||||||
|
<!element external-specification - o empty>
|
||||||
|
<!attlist external-specification
|
||||||
|
id id #required
|
||||||
|
document entity #required
|
||||||
|
specid name #implied
|
||||||
|
>
|
||||||
|
<!-- Declare additional characters allowed in name within DSSSL notation. -->
|
||||||
|
<!element add-name-chars - O (#PCDATA)
|
||||||
|
-- dlextype(charname*) -->
|
||||||
|
|
||||||
|
<!-- Declare additional characters allowed as separators within
|
||||||
|
DSSSL notation. -->
|
||||||
|
<!element add-separator-chars - O (#PCDATA)
|
||||||
|
-- dlextype(charname*) -->
|
||||||
|
|
||||||
|
<!-- Define characters associating names with universal codes. -->
|
||||||
|
|
||||||
|
<!element standard-chars - O (#PCDATA)
|
||||||
|
-- dlextype((charname, number))*) -->
|
||||||
|
|
||||||
|
<!-- Map an SDATA entity onto a character. -->
|
||||||
|
|
||||||
|
<!element map-sdata-entity - O (#PCDATA)
|
||||||
|
-- dlextype(charname) -->
|
||||||
|
<!attlist map-sdata-entity
|
||||||
|
name CDATA #IMPLIED -- Default: mapping uses replacement text only --
|
||||||
|
text CDATA #IMPLIED -- Default: mapping uses name only --
|
||||||
|
>
|
||||||
|
|
||||||
|
<!-- Declare a character repertoire. -->
|
||||||
|
<!element char-repertoire - O EMPTY>
|
||||||
|
<!attlist char-repertoire
|
||||||
|
name -- public identifier for repertoire --
|
||||||
|
CDATA #REQUIRED
|
||||||
|
>
|
||||||
|
|
||||||
|
<?IS10744 ArcBase DSSSL>
|
||||||
|
<!NOTATION DSSSL PUBLIC "ISO/IEC 10179:1996//NOTATION
|
||||||
|
DSSSL Architecture Definition Document//EN"
|
||||||
|
-- A document architecture conforming to the
|
||||||
|
Architectural Form Definition Requirements of
|
||||||
|
ISO/IEC 10744. --
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ATTLIST #NOTATION DSSSL
|
||||||
|
-- Support attributes for all architectures --
|
||||||
|
ArcQuant CDATA #FIXED "NAMELEN 64"
|
||||||
|
ArcDTD CDATA #FIXED "%DSSSLDTD"
|
||||||
|
ArcDocF NAME #FIXED dsssl-specification
|
||||||
|
ArcDataF NAME #FIXED dsssl-specification
|
||||||
|
>
|
||||||
|
|
||||||
|
<!ENTITY % DSSSLDTD PUBLIC
|
||||||
|
"ISO/IEC 10179:1996//DTD DSSSL Architecture//EN"
|
||||||
|
>
|
35
docs/dsssl/docbook/BUGS
Executable file
35
docs/dsssl/docbook/BUGS
Executable file
@@ -0,0 +1,35 @@
|
|||||||
|
Using Equations w/o titles results in incorrectly numbered
|
||||||
|
equations with titles. Use InformalEquation instead.
|
||||||
|
|
||||||
|
InlineEquations don't work in the RTF backend. It's not my fault.
|
||||||
|
|
||||||
|
Callout support is somewhat fragile.
|
||||||
|
|
||||||
|
Line numbering of linespecific displays is somewhat fragile.
|
||||||
|
|
||||||
|
In two-sided mode, with the RTF backend, the appropriate
|
||||||
|
alternation of inner/outer headers and footers does not work
|
||||||
|
correctly unless %page-number-restart% is true. This is
|
||||||
|
caused by a limitation in RTF.
|
||||||
|
|
||||||
|
CHAR alignment in tables is not supported
|
||||||
|
|
||||||
|
The stylesheets can't automatically put callout marks on a
|
||||||
|
PROGRAMLISTING or SCREEN if the text comes from an external file
|
||||||
|
using the LINESPECIFIC INLINEGRAPHIC trick.
|
||||||
|
|
||||||
|
"Extra" </P> elements appear in the HTML output if you put block
|
||||||
|
elements inside of <para> elements in your source. The problem
|
||||||
|
is that
|
||||||
|
|
||||||
|
<para>Some text <table>...</table></p>
|
||||||
|
|
||||||
|
Is translated into
|
||||||
|
|
||||||
|
<P>Some text <table>...</table></P>
|
||||||
|
|
||||||
|
but HTML doesn't allow "table" inside a P, so the begin table
|
||||||
|
implies an "</P>" which makes the </P> after the table erroneous.
|
||||||
|
I don't have a good answer for this, but I'm tempted to make all
|
||||||
|
<P> tags empty in the HTML so that the browser has to imply all
|
||||||
|
the </P>s.
|
14
docs/dsssl/docbook/PHPDOC-NOTE
Executable file
14
docs/dsssl/docbook/PHPDOC-NOTE
Executable file
@@ -0,0 +1,14 @@
|
|||||||
|
This is a minimal version of the DocBook DSSSL Style Sheet
|
||||||
|
distribution, which you can download from
|
||||||
|
http://docbook.sourceforge.net/.
|
||||||
|
|
||||||
|
Except the catalog file, nothing is modified in these files,
|
||||||
|
all files are left untouched, so these are the same files you
|
||||||
|
can find in the distribution. We omitted some files and
|
||||||
|
directories though, and only left those that we use for
|
||||||
|
output generation.
|
||||||
|
|
||||||
|
The reason to put this to phpdoc was to encourage compatibility,
|
||||||
|
so we don't need to force users to have a specific version of
|
||||||
|
the DSSSL style sheets locally, but we can still rely on a version
|
||||||
|
of the sheets we tested our customizations with.
|
91
docs/dsssl/docbook/README
Executable file
91
docs/dsssl/docbook/README
Executable file
@@ -0,0 +1,91 @@
|
|||||||
|
README for the DocBook Stylesheets
|
||||||
|
|
||||||
|
These are DSSSL stylesheets for the DocBook DTD.
|
||||||
|
|
||||||
|
For more information, see http://docbook.sourceforge.net/
|
||||||
|
|
||||||
|
Manifest
|
||||||
|
--------
|
||||||
|
|
||||||
|
bin/ contains scripts for some (optional) post-processing
|
||||||
|
common/ contains code common to both stylesheets
|
||||||
|
contrib/ contains contributions
|
||||||
|
doc/ contains installation and reference documentation (this is
|
||||||
|
now distributed in a separate ZIP archive)
|
||||||
|
docsrc/ contains the SGML source for the documentation
|
||||||
|
dtds/ contains auxiliary DTDs
|
||||||
|
frames/ contains support for frames
|
||||||
|
html/ contains the HTML stylesheet (for use with -t sgml)
|
||||||
|
images/ contains images used by the HTML stylesheets
|
||||||
|
lib/ contains DSSSL functions that are believed to be useful but
|
||||||
|
are totally independent of any particular stylesheet
|
||||||
|
olink/ contains olink support
|
||||||
|
print/ contains the print stylesheet
|
||||||
|
|
||||||
|
Changes
|
||||||
|
-------
|
||||||
|
|
||||||
|
See the ChangeLog in each directory for additional information
|
||||||
|
about the specific changes.
|
||||||
|
|
||||||
|
See WhatsNew for changes since the last release.
|
||||||
|
|
||||||
|
Installation
|
||||||
|
------------
|
||||||
|
|
||||||
|
See doc/install.html and/or http://nwalsh.com/docbook/dsssl/
|
||||||
|
|
||||||
|
Copyright
|
||||||
|
---------
|
||||||
|
|
||||||
|
Copyright (C) 1997-2001 Norman Walsh
|
||||||
|
|
||||||
|
The original inspiration for these stylesheets came from the
|
||||||
|
work of Jon Bosak, Anders Berglund, Tony Graham, Terry Allen,
|
||||||
|
James Clark, and many others. I am indebted to them and to the
|
||||||
|
community of users on dssslist@mulberrytech.com for making
|
||||||
|
substantial contributions to this work and for answering my many
|
||||||
|
questions.
|
||||||
|
|
||||||
|
This software may be distributed under the same terms as Jade:
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person
|
||||||
|
obtaining a copy of this software and associated documentation
|
||||||
|
files (the ``Software''), to deal in the Software without
|
||||||
|
restriction, including without limitation the rights to use,
|
||||||
|
copy, modify, merge, publish, distribute, sublicense, and/or
|
||||||
|
sell copies of the Software, and to permit persons to whom the
|
||||||
|
Software is furnished to do so, subject to the following
|
||||||
|
conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
Except as contained in this notice, the names of individuals
|
||||||
|
credited with contribution to this software shall not be used in
|
||||||
|
advertising or otherwise to promote the sale, use or other
|
||||||
|
dealings in this Software without prior written authorization
|
||||||
|
from the individuals in question.
|
||||||
|
|
||||||
|
Any stylesheet derived from this Software that is publically
|
||||||
|
distributed will be identified with a different name and the
|
||||||
|
version strings in any derived Software will be changed so that
|
||||||
|
no possibility of confusion between the derived package and this
|
||||||
|
Software will exist.
|
||||||
|
|
||||||
|
Warranty
|
||||||
|
--------
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||||
|
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER
|
||||||
|
CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
Contacting the Author
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
These stylesheets are maintained by Norman Walsh, <ndw@nwalsh.com>.
|
1
docs/dsssl/docbook/VERSION
Executable file
1
docs/dsssl/docbook/VERSION
Executable file
@@ -0,0 +1 @@
|
|||||||
|
1.77
|
17
docs/dsssl/docbook/catalog
Executable file
17
docs/dsssl/docbook/catalog
Executable file
@@ -0,0 +1,17 @@
|
|||||||
|
OVERRIDE YES
|
||||||
|
|
||||||
|
-- Stylesheets --
|
||||||
|
|
||||||
|
PUBLIC "-//Norman Walsh//DOCUMENT DocBook Print Stylesheet//EN"
|
||||||
|
print/docbook.dsl
|
||||||
|
|
||||||
|
PUBLIC "-//Norman Walsh//DOCUMENT DocBook HTML Stylesheet//EN"
|
||||||
|
html/docbook.dsl
|
||||||
|
|
||||||
|
PUBLIC "-//Norman Walsh//DOCUMENT DSSSL Library//EN"
|
||||||
|
lib/dblib.dsl
|
||||||
|
|
||||||
|
PUBLIC "-//Norman Walsh//DOCUMENT DSSSL Library V2//EN"
|
||||||
|
lib/dblib.dsl
|
||||||
|
|
||||||
|
-- DTDs, Entites, Documents and Declarations are omitted --
|
@@ -1,5 +1,5 @@
|
|||||||
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
|
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
|
||||||
<!ENTITY docbook.dsl SYSTEM "/usr/share/sgml/docbook/dsssl-stylesheets/html/docbook.dsl" CDATA DSSSL>
|
<!ENTITY docbook.dsl SYSTEM "./dsssl/docbook/html/docbook.dsl" CDATA DSSSL>
|
||||||
<!ENTITY html-common.dsl SYSTEM "html-common.dsl">
|
<!ENTITY html-common.dsl SYSTEM "html-common.dsl">
|
||||||
<!ENTITY common.dsl SYSTEM "common.dsl">
|
<!ENTITY common.dsl SYSTEM "common.dsl">
|
||||||
]>
|
]>
|
||||||
@@ -9,6 +9,7 @@
|
|||||||
<style-specification-body>
|
<style-specification-body>
|
||||||
|
|
||||||
(define %html-ext% ".html")
|
(define %html-ext% ".html")
|
||||||
|
(define %output-dir% "html")
|
||||||
|
|
||||||
&html-common.dsl;
|
&html-common.dsl;
|
||||||
&common.dsl;
|
&common.dsl;
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
|
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
|
||||||
<!ENTITY docbook.dsl SYSTEM "/usr/share/sgml/docbook/dsssl-stylesheets/html/docbook.dsl" CDATA DSSSL>
|
<!ENTITY docbook.dsl SYSTEM "./dsssl/docbook/html/docbook.dsl" CDATA DSSSL>
|
||||||
<!ENTITY html-common.dsl SYSTEM "html-common.dsl">
|
<!ENTITY html-common.dsl SYSTEM "html-common.dsl">
|
||||||
<!ENTITY common.dsl SYSTEM "common.dsl">
|
<!ENTITY common.dsl SYSTEM "common.dsl">
|
||||||
]>
|
]>
|
||||||
@@ -9,6 +9,7 @@
|
|||||||
<style-specification-body>
|
<style-specification-body>
|
||||||
|
|
||||||
(define %html-ext% ".php")
|
(define %html-ext% ".php")
|
||||||
|
(define %output-dir% "phpweb")
|
||||||
|
|
||||||
&html-common.dsl;
|
&html-common.dsl;
|
||||||
&common.dsl;
|
&common.dsl;
|
||||||
|
66
docs/entities/ISO/ISOamsa
Executable file
66
docs/entities/ISO/ISOamsa
Executable file
@@ -0,0 +1,66 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOamsa PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN">
|
||||||
|
%ISOamsa;
|
||||||
|
-->
|
||||||
|
<!ENTITY cularr SDATA "[cularr]"--/curvearrowleft A: left curved arrow -->
|
||||||
|
<!ENTITY curarr SDATA "[curarr]"--/curvearrowright A: rt curved arrow -->
|
||||||
|
<!ENTITY dArr SDATA "[dArr ]"--/Downarrow A: down dbl arrow -->
|
||||||
|
<!ENTITY darr2 SDATA "[darr2 ]"--/downdownarrows A: two down arrows -->
|
||||||
|
<!ENTITY dharl SDATA "[dharl ]"--/downleftharpoon A: dn harpoon-left -->
|
||||||
|
<!ENTITY dharr SDATA "[dharr ]"--/downrightharpoon A: down harpoon-rt -->
|
||||||
|
<!ENTITY lAarr SDATA "[lAarr ]"--/Lleftarrow A: left triple arrow -->
|
||||||
|
<!ENTITY Larr SDATA "[Larr ]"--/twoheadleftarrow A:-->
|
||||||
|
<!ENTITY larr2 SDATA "[larr2 ]"--/leftleftarrows A: two left arrows -->
|
||||||
|
<!ENTITY larrhk SDATA "[larrhk]"--/hookleftarrow A: left arrow-hooked -->
|
||||||
|
<!ENTITY larrlp SDATA "[larrlp]"--/looparrowleft A: left arrow-looped -->
|
||||||
|
<!ENTITY larrtl SDATA "[larrtl]"--/leftarrowtail A: left arrow-tailed -->
|
||||||
|
<!ENTITY lhard SDATA "[lhard ]"--/leftharpoondown A: l harpoon-down -->
|
||||||
|
<!ENTITY lharu SDATA "[lharu ]"--/leftharpoonup A: left harpoon-up -->
|
||||||
|
<!ENTITY hArr SDATA "[hArr ]"--/Leftrightarrow A: l&r dbl arrow -->
|
||||||
|
<!ENTITY harr SDATA "[harr ]"--/leftrightarrow A: l&r arrow -->
|
||||||
|
<!ENTITY lrarr2 SDATA "[lrarr2]"--/leftrightarrows A: l arr over r arr -->
|
||||||
|
<!ENTITY rlarr2 SDATA "[rlarr2]"--/rightleftarrows A: r arr over l arr -->
|
||||||
|
<!ENTITY harrw SDATA "[harrw ]"--/leftrightsquigarrow A: l&r arr-wavy -->
|
||||||
|
<!ENTITY rlhar2 SDATA "[rlhar2]"--/rightleftharpoons A: r harp over l -->
|
||||||
|
<!ENTITY lrhar2 SDATA "[lrhar2]"--/leftrightharpoons A: l harp over r -->
|
||||||
|
<!ENTITY lsh SDATA "[lsh ]"--/Lsh A:-->
|
||||||
|
<!ENTITY map SDATA "[map ]"--/mapsto A:-->
|
||||||
|
<!ENTITY mumap SDATA "[mumap ]"--/multimap A:-->
|
||||||
|
<!ENTITY nearr SDATA "[nearr ]"--/nearrow A: NE pointing arrow -->
|
||||||
|
<!ENTITY nlArr SDATA "[nlArr ]"--/nLeftarrow A: not implied by -->
|
||||||
|
<!ENTITY nlarr SDATA "[nlarr ]"--/nleftarrow A: not left arrow -->
|
||||||
|
<!ENTITY nhArr SDATA "[nhArr ]"--/nLeftrightarrow A: not l&r dbl arr -->
|
||||||
|
<!ENTITY nharr SDATA "[nharr ]"--/nleftrightarrow A: not l&r arrow -->
|
||||||
|
<!ENTITY nrarr SDATA "[nrarr ]"--/nrightarrow A: not right arrow -->
|
||||||
|
<!ENTITY nrArr SDATA "[nrArr ]"--/nRightarrow A: not implies -->
|
||||||
|
<!ENTITY nwarr SDATA "[nwarr ]"--/nwarrow A: NW pointing arrow -->
|
||||||
|
<!ENTITY olarr SDATA "[olarr ]"--/circlearrowleft A: l arr in circle -->
|
||||||
|
<!ENTITY orarr SDATA "[orarr ]"--/circlearrowright A: r arr in circle -->
|
||||||
|
<!ENTITY rAarr SDATA "[rAarr ]"--/Rrightarrow A: right triple arrow -->
|
||||||
|
<!ENTITY Rarr SDATA "[Rarr ]"--/twoheadrightarrow A:-->
|
||||||
|
<!ENTITY rarr2 SDATA "[rarr2 ]"--/rightrightarrows A: two rt arrows -->
|
||||||
|
<!ENTITY rarrhk SDATA "[rarrhk]"--/hookrightarrow A: rt arrow-hooked -->
|
||||||
|
<!ENTITY rarrlp SDATA "[rarrlp]"--/looparrowright A: rt arrow-looped -->
|
||||||
|
<!ENTITY rarrtl SDATA "[rarrtl]"--/rightarrowtail A: rt arrow-tailed -->
|
||||||
|
<!ENTITY rarrw SDATA "[rarrw ]"--/squigarrowright A: rt arrow-wavy -->
|
||||||
|
<!ENTITY rhard SDATA "[rhard ]"--/rightharpoondown A: rt harpoon-down -->
|
||||||
|
<!ENTITY rharu SDATA "[rharu ]"--/rightharpoonup A: rt harpoon-up -->
|
||||||
|
<!ENTITY rsh SDATA "[rsh ]"--/Rsh A:-->
|
||||||
|
<!ENTITY drarr SDATA "[drarr ]"--/searrow A: downward rt arrow -->
|
||||||
|
<!ENTITY dlarr SDATA "[dlarr ]"--/swarrow A: downward l arrow -->
|
||||||
|
<!ENTITY uArr SDATA "[uArr ]"--/Uparrow A: up dbl arrow -->
|
||||||
|
<!ENTITY uarr2 SDATA "[uarr2 ]"--/upuparrows A: two up arrows -->
|
||||||
|
<!ENTITY vArr SDATA "[vArr ]"--/Updownarrow A: up&down dbl arrow -->
|
||||||
|
<!ENTITY varr SDATA "[varr ]"--/updownarrow A: up&down arrow -->
|
||||||
|
<!ENTITY uharl SDATA "[uharl ]"--/upleftharpoon A: up harpoon-left -->
|
||||||
|
<!ENTITY uharr SDATA "[uharr ]"--/uprightharpoon A: up harp-r-->
|
||||||
|
<!ENTITY xlArr SDATA "[xlArr ]"--/Longleftarrow A: long l dbl arrow -->
|
||||||
|
<!ENTITY xhArr SDATA "[xhArr ]"--/Longleftrightarrow A: long l&r dbl arr-->
|
||||||
|
<!ENTITY xharr SDATA "[xharr ]"--/longleftrightarrow A: long l&r arr -->
|
||||||
|
<!ENTITY xrArr SDATA "[xrArr ]"--/Longrightarrow A: long rt dbl arr -->
|
52
docs/entities/ISO/ISOamsb
Executable file
52
docs/entities/ISO/ISOamsb
Executable file
@@ -0,0 +1,52 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOamsb PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN">
|
||||||
|
%ISOamsb;
|
||||||
|
-->
|
||||||
|
<!ENTITY amalg SDATA "[amalg ]"--/amalg B: amalgamation or coproduct-->
|
||||||
|
<!ENTITY Barwed SDATA "[Barwed]"--/doublebarwedge B: log and, dbl bar-->
|
||||||
|
<!ENTITY barwed SDATA "[barwed]"--/barwedge B: logical and, bar above-->
|
||||||
|
<!ENTITY Cap SDATA "[Cap ]"--/Cap /doublecap B: dbl intersection-->
|
||||||
|
<!ENTITY Cup SDATA "[Cup ]"--/Cup /doublecup B: dbl union-->
|
||||||
|
<!ENTITY cuvee SDATA "[cuvee ]"--/curlyvee B: curly logical or-->
|
||||||
|
<!ENTITY cuwed SDATA "[cuwed ]"--/curlywedge B: curly logical and-->
|
||||||
|
<!ENTITY diam SDATA "[diam ]"--/diamond B: open diamond-->
|
||||||
|
<!ENTITY divonx SDATA "[divonx]"--/divideontimes B: division on times-->
|
||||||
|
<!ENTITY intcal SDATA "[intcal]"--/intercal B: intercal-->
|
||||||
|
<!ENTITY lthree SDATA "[lthree]"--/leftthreetimes B:-->
|
||||||
|
<!ENTITY ltimes SDATA "[ltimes]"--/ltimes B: times sign, left closed-->
|
||||||
|
<!ENTITY minusb SDATA "[minusb]"--/boxminus B: minus sign in box-->
|
||||||
|
<!ENTITY oast SDATA "[oast ]"--/circledast B: asterisk in circle-->
|
||||||
|
<!ENTITY ocir SDATA "[ocir ]"--/circledcirc B: open dot in circle-->
|
||||||
|
<!ENTITY odash SDATA "[odash ]"--/circleddash B: hyphen in circle-->
|
||||||
|
<!ENTITY odot SDATA "[odot ]"--/odot B: middle dot in circle-->
|
||||||
|
<!ENTITY ominus SDATA "[ominus]"--/ominus B: minus sign in circle-->
|
||||||
|
<!ENTITY oplus SDATA "[oplus ]"--/oplus B: plus sign in circle-->
|
||||||
|
<!ENTITY osol SDATA "[osol ]"--/oslash B: solidus in circle-->
|
||||||
|
<!ENTITY otimes SDATA "[otimes]"--/otimes B: multiply sign in circle-->
|
||||||
|
<!ENTITY plusb SDATA "[plusb ]"--/boxplus B: plus sign in box-->
|
||||||
|
<!ENTITY plusdo SDATA "[plusdo]"--/dotplus B: plus sign, dot above-->
|
||||||
|
<!ENTITY rthree SDATA "[rthree]"--/rightthreetimes B:-->
|
||||||
|
<!ENTITY rtimes SDATA "[rtimes]"--/rtimes B: times sign, right closed-->
|
||||||
|
<!ENTITY sdot SDATA "[sdot ]"--/cdot B: small middle dot-->
|
||||||
|
<!ENTITY sdotb SDATA "[sdotb ]"--/dotsquare /boxdot B: small dot in box-->
|
||||||
|
<!ENTITY setmn SDATA "[setmn ]"--/setminus B: reverse solidus-->
|
||||||
|
<!ENTITY sqcap SDATA "[sqcap ]"--/sqcap B: square intersection-->
|
||||||
|
<!ENTITY sqcup SDATA "[sqcup ]"--/sqcup B: square union-->
|
||||||
|
<!ENTITY ssetmn SDATA "[ssetmn]"--/smallsetminus B: sm reverse solidus-->
|
||||||
|
<!ENTITY sstarf SDATA "[sstarf]"--/star B: small star, filled-->
|
||||||
|
<!ENTITY timesb SDATA "[timesb]"--/boxtimes B: multiply sign in box-->
|
||||||
|
<!ENTITY top SDATA "[top ]"--/top B: inverted perpendicular-->
|
||||||
|
<!ENTITY uplus SDATA "[uplus ]"--/uplus B: plus sign in union-->
|
||||||
|
<!ENTITY wreath SDATA "[wreath]"--/wr B: wreath product-->
|
||||||
|
<!ENTITY xcirc SDATA "[xcirc ]"--/bigcirc B: large circle-->
|
||||||
|
<!ENTITY xdtri SDATA "[xdtri ]"--/bigtriangledown B: big dn tri, open-->
|
||||||
|
<!ENTITY xutri SDATA "[xutri ]"--/bigtriangleup B: big up tri, open-->
|
||||||
|
<!ENTITY coprod SDATA "[coprod]"--/coprod L: coproduct operator-->
|
||||||
|
<!ENTITY prod SDATA "[prod ]"--/prod L: product operator-->
|
||||||
|
<!ENTITY sum SDATA "[sum ]"--/sum L: summation operator-->
|
20
docs/entities/ISO/ISOamsc
Executable file
20
docs/entities/ISO/ISOamsc
Executable file
@@ -0,0 +1,20 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOamsc PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN">
|
||||||
|
%ISOamsc;
|
||||||
|
-->
|
||||||
|
<!ENTITY rceil SDATA "[rceil ]"--/rceil C: right ceiling-->
|
||||||
|
<!ENTITY rfloor SDATA "[rfloor]"--/rfloor C: right floor-->
|
||||||
|
<!ENTITY rpargt SDATA "[rpargt]"--/rightparengtr C: right paren, gt-->
|
||||||
|
<!ENTITY urcorn SDATA "[urcorn]"--/urcorner C: upper right corner-->
|
||||||
|
<!ENTITY drcorn SDATA "[drcorn]"--/lrcorner C: downward right corner-->
|
||||||
|
<!ENTITY lceil SDATA "[lceil ]"--/lceil O: left ceiling-->
|
||||||
|
<!ENTITY lfloor SDATA "[lfloor]"--/lfloor O: left floor-->
|
||||||
|
<!ENTITY lpargt SDATA "[lpargt]"--/leftparengtr O: left parenthesis, gt-->
|
||||||
|
<!ENTITY ulcorn SDATA "[ulcorn]"--/ulcorner O: upper left corner-->
|
||||||
|
<!ENTITY dlcorn SDATA "[dlcorn]"--/llcorner O: downward left corner-->
|
70
docs/entities/ISO/ISOamsn
Executable file
70
docs/entities/ISO/ISOamsn
Executable file
@@ -0,0 +1,70 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOamsn PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES
|
||||||
|
Added Math Symbols: Negated Relations//EN">
|
||||||
|
%ISOamsn;
|
||||||
|
-->
|
||||||
|
<!ENTITY gnap SDATA "[gnap ]"--/gnapprox N: greater, not approximate-->
|
||||||
|
<!ENTITY gne SDATA "[gne ]"--/gneq N: greater, not equals-->
|
||||||
|
<!ENTITY gnE SDATA "[gnE ]"--/gneqq N: greater, not dbl equals-->
|
||||||
|
<!ENTITY gnsim SDATA "[gnsim ]"--/gnsim N: greater, not similar-->
|
||||||
|
<!ENTITY gvnE SDATA "[gvnE ]"--/gvertneqq N: gt, vert, not dbl eq-->
|
||||||
|
<!ENTITY lnap SDATA "[lnap ]"--/lnapprox N: less, not approximate-->
|
||||||
|
<!ENTITY lnE SDATA "[lnE ]"--/lneqq N: less, not double equals-->
|
||||||
|
<!ENTITY lne SDATA "[lne ]"--/lneq N: less, not equals-->
|
||||||
|
<!ENTITY lnsim SDATA "[lnsim ]"--/lnsim N: less, not similar-->
|
||||||
|
<!ENTITY lvnE SDATA "[lvnE ]"--/lvertneqq N: less, vert, not dbl eq-->
|
||||||
|
<!ENTITY nap SDATA "[nap ]"--/napprox N: not approximate-->
|
||||||
|
<!ENTITY ncong SDATA "[ncong ]"--/ncong N: not congruent with-->
|
||||||
|
<!ENTITY nequiv SDATA "[nequiv]"--/nequiv N: not identical with-->
|
||||||
|
<!ENTITY ngE SDATA "[ngE ]"--/ngeqq N: not greater, dbl equals-->
|
||||||
|
<!ENTITY nge SDATA "[nge ]"--/ngeq N: not greater-than-or-equal-->
|
||||||
|
<!ENTITY nges SDATA "[nges ]"--/ngeqslant N: not gt-or-eq, slanted-->
|
||||||
|
<!ENTITY ngt SDATA "[ngt ]"--/ngtr N: not greater-than-->
|
||||||
|
<!ENTITY nle SDATA "[nle ]"--/nleq N: not less-than-or-equal-->
|
||||||
|
<!ENTITY nlE SDATA "[nlE ]"--/nleqq N: not less, dbl equals-->
|
||||||
|
<!ENTITY nles SDATA "[nles ]"--/nleqslant N: not less-or-eq, slant-->
|
||||||
|
<!ENTITY nlt SDATA "[nlt ]"--/nless N: not less-than-->
|
||||||
|
<!ENTITY nltri SDATA "[nltri ]"--/ntriangleleft N: not left triangle-->
|
||||||
|
<!ENTITY nltrie SDATA "[nltrie]"--/ntrianglelefteq N: not l tri, eq-->
|
||||||
|
<!ENTITY nmid SDATA "[nmid ]"--/nmid-->
|
||||||
|
<!ENTITY npar SDATA "[npar ]"--/nparallel N: not parallel-->
|
||||||
|
<!ENTITY npr SDATA "[npr ]"--/nprec N: not precedes-->
|
||||||
|
<!ENTITY npre SDATA "[npre ]"--/npreceq N: not precedes, equals-->
|
||||||
|
<!ENTITY nrtri SDATA "[nrtri ]"--/ntriangleright N: not rt triangle-->
|
||||||
|
<!ENTITY nrtrie SDATA "[nrtrie]"--/ntrianglerighteq N: not r tri, eq-->
|
||||||
|
<!ENTITY nsc SDATA "[nsc ]"--/nsucc N: not succeeds-->
|
||||||
|
<!ENTITY nsce SDATA "[nsce ]"--/nsucceq N: not succeeds, equals-->
|
||||||
|
<!ENTITY nsim SDATA "[nsim ]"--/nsim N: not similar-->
|
||||||
|
<!ENTITY nsime SDATA "[nsime ]"--/nsimeq N: not similar, equals-->
|
||||||
|
<!ENTITY nsmid SDATA "[nsmid ]"--/nshortmid-->
|
||||||
|
<!ENTITY nspar SDATA "[nspar ]"--/nshortparallel N: not short par-->
|
||||||
|
<!ENTITY nsub SDATA "[nsub ]"--/nsubset N: not subset-->
|
||||||
|
<!ENTITY nsube SDATA "[nsube ]"--/nsubseteq N: not subset, equals-->
|
||||||
|
<!ENTITY nsubE SDATA "[nsubE ]"--/nsubseteqq N: not subset, dbl eq-->
|
||||||
|
<!ENTITY nsup SDATA "[nsup ]"--/nsupset N: not superset-->
|
||||||
|
<!ENTITY nsupE SDATA "[nsupE ]"--/nsupseteqq N: not superset, dbl eq-->
|
||||||
|
<!ENTITY nsupe SDATA "[nsupe ]"--/nsupseteq N: not superset, equals-->
|
||||||
|
<!ENTITY nvdash SDATA "[nvdash]"--/nvdash N: not vertical, dash-->
|
||||||
|
<!ENTITY nvDash SDATA "[nvDash]"--/nvDash N: not vertical, dbl dash-->
|
||||||
|
<!ENTITY nVDash SDATA "[nVDash]"--/nVDash N: not dbl vert, dbl dash-->
|
||||||
|
<!ENTITY nVdash SDATA "[nVdash]"--/nVdash N: not dbl vertical, dash-->
|
||||||
|
<!ENTITY prnap SDATA "[prnap ]"--/precnapprox N: precedes, not approx-->
|
||||||
|
<!ENTITY prnE SDATA "[prnE ]"--/precneqq N: precedes, not dbl eq-->
|
||||||
|
<!ENTITY prnsim SDATA "[prnsim]"--/precnsim N: precedes, not similar-->
|
||||||
|
<!ENTITY scnap SDATA "[scnap ]"--/succnapprox N: succeeds, not approx-->
|
||||||
|
<!ENTITY scnE SDATA "[scnE ]"--/succneqq N: succeeds, not dbl eq-->
|
||||||
|
<!ENTITY scnsim SDATA "[scnsim]"--/succnsim N: succeeds, not similar-->
|
||||||
|
<!ENTITY subne SDATA "[subne ]"--/subsetneq N: subset, not equals-->
|
||||||
|
<!ENTITY subnE SDATA "[subnE ]"--/subsetneqq N: subset, not dbl eq-->
|
||||||
|
<!ENTITY supne SDATA "[supne ]"--/supsetneq N: superset, not equals-->
|
||||||
|
<!ENTITY supnE SDATA "[supnE ]"--/supsetneqq N: superset, not dbl eq-->
|
||||||
|
<!ENTITY vsubnE SDATA "[vsubnE]"--/subsetneqq N: subset not dbl eq, var-->
|
||||||
|
<!ENTITY vsubne SDATA "[vsubne]"--/subsetneq N: subset, not eq, var-->
|
||||||
|
<!ENTITY vsupne SDATA "[vsupne]"--/supsetneq N: superset, not eq, var-->
|
||||||
|
<!ENTITY vsupnE SDATA "[vsupnE]"--/supsetneqq N: super not dbl eq, var-->
|
29
docs/entities/ISO/ISOamso
Executable file
29
docs/entities/ISO/ISOamso
Executable file
@@ -0,0 +1,29 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOamso PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN">
|
||||||
|
%ISOamso;
|
||||||
|
-->
|
||||||
|
<!ENTITY ang SDATA "[ang ]"--/angle - angle-->
|
||||||
|
<!ENTITY angmsd SDATA "[angmsd]"--/measuredangle - angle-measured-->
|
||||||
|
<!ENTITY beth SDATA "[beth ]"--/beth - beth, Hebrew-->
|
||||||
|
<!ENTITY bprime SDATA "[bprime]"--/backprime - reverse prime-->
|
||||||
|
<!ENTITY comp SDATA "[comp ]"--/complement - complement sign-->
|
||||||
|
<!ENTITY daleth SDATA "[daleth]"--/daleth - daleth, Hebrew-->
|
||||||
|
<!ENTITY ell SDATA "[ell ]"--/ell - cursive small l-->
|
||||||
|
<!ENTITY empty SDATA "[empty ]"--/emptyset /varnothing =small o, slash-->
|
||||||
|
<!ENTITY gimel SDATA "[gimel ]"--/gimel - gimel, Hebrew-->
|
||||||
|
<!ENTITY image SDATA "[image ]"--/Im - imaginary-->
|
||||||
|
<!ENTITY inodot SDATA "[inodot]"--/imath =small i, no dot-->
|
||||||
|
<!ENTITY jnodot SDATA "[jnodot]"--/jmath - small j, no dot-->
|
||||||
|
<!ENTITY nexist SDATA "[nexist]"--/nexists - negated exists-->
|
||||||
|
<!ENTITY oS SDATA "[oS ]"--/circledS - capital S in circle-->
|
||||||
|
<!ENTITY planck SDATA "[planck]"--/hbar /hslash - Planck's over 2pi-->
|
||||||
|
<!ENTITY real SDATA "[real ]"--/Re - real-->
|
||||||
|
<!ENTITY sbsol SDATA "[sbsol ]"--/sbs - short reverse solidus-->
|
||||||
|
<!ENTITY vprime SDATA "[vprime]"--/varprime - prime, variant-->
|
||||||
|
<!ENTITY weierp SDATA "[weierp]"--/wp - Weierstrass p-->
|
94
docs/entities/ISO/ISOamsr
Executable file
94
docs/entities/ISO/ISOamsr
Executable file
@@ -0,0 +1,94 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOamsr PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN">
|
||||||
|
%ISOamsr;
|
||||||
|
-->
|
||||||
|
<!ENTITY ape SDATA "[ape ]"--/approxeq R: approximate, equals-->
|
||||||
|
<!ENTITY asymp SDATA "[asymp ]"--/asymp R: asymptotically equal to-->
|
||||||
|
<!ENTITY bcong SDATA "[bcong ]"--/backcong R: reverse congruent-->
|
||||||
|
<!ENTITY bepsi SDATA "[bepsi ]"--/backepsilon R: such that-->
|
||||||
|
<!ENTITY bowtie SDATA "[bowtie]"--/bowtie R:-->
|
||||||
|
<!ENTITY bsim SDATA "[bsim ]"--/backsim R: reverse similar-->
|
||||||
|
<!ENTITY bsime SDATA "[bsime ]"--/backsimeq R: reverse similar, eq-->
|
||||||
|
<!ENTITY bump SDATA "[bump ]"--/Bumpeq R: bumpy equals-->
|
||||||
|
<!ENTITY bumpe SDATA "[bumpe ]"--/bumpeq R: bumpy equals, equals-->
|
||||||
|
<!ENTITY cire SDATA "[cire ]"--/circeq R: circle, equals-->
|
||||||
|
<!ENTITY colone SDATA "[colone]"--/coloneq R: colon, equals-->
|
||||||
|
<!ENTITY cuepr SDATA "[cuepr ]"--/curlyeqprec R: curly eq, precedes-->
|
||||||
|
<!ENTITY cuesc SDATA "[cuesc ]"--/curlyeqsucc R: curly eq, succeeds-->
|
||||||
|
<!ENTITY cupre SDATA "[cupre ]"--/curlypreceq R: curly precedes, eq-->
|
||||||
|
<!ENTITY dashv SDATA "[dashv ]"--/dashv R: dash, vertical-->
|
||||||
|
<!ENTITY ecir SDATA "[ecir ]"--/eqcirc R: circle on equals sign-->
|
||||||
|
<!ENTITY ecolon SDATA "[ecolon]"--/eqcolon R: equals, colon-->
|
||||||
|
<!ENTITY eDot SDATA "[eDot ]"--/doteqdot /Doteq R: eq, even dots-->
|
||||||
|
<!ENTITY esdot SDATA "[esdot ]"--/doteq R: equals, single dot above-->
|
||||||
|
<!ENTITY efDot SDATA "[efDot ]"--/fallingdotseq R: eq, falling dots-->
|
||||||
|
<!ENTITY egs SDATA "[egs ]"--/eqslantgtr R: equal-or-gtr, slanted-->
|
||||||
|
<!ENTITY els SDATA "[els ]"--/eqslantless R: eq-or-less, slanted-->
|
||||||
|
<!ENTITY erDot SDATA "[erDot ]"--/risingdotseq R: eq, rising dots-->
|
||||||
|
<!ENTITY fork SDATA "[fork ]"--/pitchfork R: pitchfork-->
|
||||||
|
<!ENTITY frown SDATA "[frown ]"--/frown R: down curve-->
|
||||||
|
<!ENTITY gap SDATA "[gap ]"--/gtrapprox R: greater, approximate-->
|
||||||
|
<!ENTITY gsdot SDATA "[gsdot ]"--/gtrdot R: greater than, single dot-->
|
||||||
|
<!ENTITY gE SDATA "[gE ]"--/geqq R: greater, double equals-->
|
||||||
|
<!ENTITY gel SDATA "[gel ]"--/gtreqless R: greater, equals, less-->
|
||||||
|
<!ENTITY gEl SDATA "[gEl ]"--/gtreqqless R: gt, dbl equals, less-->
|
||||||
|
<!ENTITY ges SDATA "[ges ]"--/geqslant R: gt-or-equal, slanted-->
|
||||||
|
<!ENTITY Gg SDATA "[Gg ]"--/ggg /Gg /gggtr R: triple gtr-than-->
|
||||||
|
<!ENTITY gl SDATA "[gl ]"--/gtrless R: greater, less-->
|
||||||
|
<!ENTITY gsim SDATA "[gsim ]"--/gtrsim R: greater, similar-->
|
||||||
|
<!ENTITY Gt SDATA "[Gt ]"--/gg R: dbl greater-than sign-->
|
||||||
|
<!ENTITY lap SDATA "[lap ]"--/lessapprox R: less, approximate-->
|
||||||
|
<!ENTITY ldot SDATA "[ldot ]"--/lessdot R: less than, with dot-->
|
||||||
|
<!ENTITY lE SDATA "[lE ]"--/leqq R: less, double equals-->
|
||||||
|
<!ENTITY lEg SDATA "[lEg ]"--/lesseqqgtr R: less, dbl eq, greater-->
|
||||||
|
<!ENTITY leg SDATA "[leg ]"--/lesseqgtr R: less, eq, greater-->
|
||||||
|
<!ENTITY les SDATA "[les ]"--/leqslant R: less-than-or-eq, slant-->
|
||||||
|
<!ENTITY lg SDATA "[lg ]"--/lessgtr R: less, greater-->
|
||||||
|
<!ENTITY Ll SDATA "[Ll ]"--/Ll /lll /llless R: triple less-than-->
|
||||||
|
<!ENTITY lsim SDATA "[lsim ]"--/lesssim R: less, similar-->
|
||||||
|
<!ENTITY Lt SDATA "[Lt ]"--/ll R: double less-than sign-->
|
||||||
|
<!ENTITY ltrie SDATA "[ltrie ]"--/trianglelefteq R: left triangle, eq-->
|
||||||
|
<!ENTITY mid SDATA "[mid ]"--/mid R:-->
|
||||||
|
<!ENTITY models SDATA "[models]"--/models R:-->
|
||||||
|
<!ENTITY pr SDATA "[pr ]"--/prec R: precedes-->
|
||||||
|
<!ENTITY prap SDATA "[prap ]"--/precapprox R: precedes, approximate-->
|
||||||
|
<!ENTITY pre SDATA "[pre ]"--/preceq R: precedes, equals-->
|
||||||
|
<!ENTITY prsim SDATA "[prsim ]"--/precsim R: precedes, similar-->
|
||||||
|
<!ENTITY rtrie SDATA "[rtrie ]"--/trianglerighteq R: right tri, eq-->
|
||||||
|
<!ENTITY samalg SDATA "[samalg]"--/smallamalg R: small amalg-->
|
||||||
|
<!ENTITY sc SDATA "[sc ]"--/succ R: succeeds-->
|
||||||
|
<!ENTITY scap SDATA "[scap ]"--/succapprox R: succeeds, approximate-->
|
||||||
|
<!ENTITY sccue SDATA "[sccue ]"--/succcurlyeq R: succeeds, curly eq-->
|
||||||
|
<!ENTITY sce SDATA "[sce ]"--/succeq R: succeeds, equals-->
|
||||||
|
<!ENTITY scsim SDATA "[scsim ]"--/succsim R: succeeds, similar-->
|
||||||
|
<!ENTITY sfrown SDATA "[sfrown]"--/smallfrown R: small down curve-->
|
||||||
|
<!ENTITY smid SDATA "[smid ]"--/shortmid R:-->
|
||||||
|
<!ENTITY smile SDATA "[smile ]"--/smile R: up curve-->
|
||||||
|
<!ENTITY spar SDATA "[spar ]"--/shortparallel R: short parallel-->
|
||||||
|
<!ENTITY sqsub SDATA "[sqsub ]"--/sqsubset R: square subset-->
|
||||||
|
<!ENTITY sqsube SDATA "[sqsube]"--/sqsubseteq R: square subset, equals-->
|
||||||
|
<!ENTITY sqsup SDATA "[sqsup ]"--/sqsupset R: square superset-->
|
||||||
|
<!ENTITY sqsupe SDATA "[sqsupe]"--/sqsupseteq R: square superset, eq-->
|
||||||
|
<!ENTITY ssmile SDATA "[ssmile]"--/smallsmile R: small up curve-->
|
||||||
|
<!ENTITY Sub SDATA "[Sub ]"--/Subset R: double subset-->
|
||||||
|
<!ENTITY subE SDATA "[subE ]"--/subseteqq R: subset, dbl equals-->
|
||||||
|
<!ENTITY Sup SDATA "[Sup ]"--/Supset R: dbl superset-->
|
||||||
|
<!ENTITY supE SDATA "[supE ]"--/supseteqq R: superset, dbl equals-->
|
||||||
|
<!ENTITY thkap SDATA "[thkap ]"--/thickapprox R: thick approximate-->
|
||||||
|
<!ENTITY thksim SDATA "[thksim]"--/thicksim R: thick similar-->
|
||||||
|
<!ENTITY trie SDATA "[trie ]"--/triangleq R: triangle, equals-->
|
||||||
|
<!ENTITY twixt SDATA "[twixt ]"--/between R: between-->
|
||||||
|
<!ENTITY vdash SDATA "[vdash ]"--/vdash R: vertical, dash-->
|
||||||
|
<!ENTITY Vdash SDATA "[Vdash ]"--/Vdash R: dbl vertical, dash-->
|
||||||
|
<!ENTITY vDash SDATA "[vDash ]"--/vDash R: vertical, dbl dash-->
|
||||||
|
<!ENTITY veebar SDATA "[veebar]"--/veebar R: logical or, bar below-->
|
||||||
|
<!ENTITY vltri SDATA "[vltri ]"--/vartriangleleft R: l tri, open, var-->
|
||||||
|
<!ENTITY vprop SDATA "[vprop ]"--/varpropto R: proportional, variant-->
|
||||||
|
<!ENTITY vrtri SDATA "[vrtri ]"--/vartriangleright R: r tri, open, var-->
|
||||||
|
<!ENTITY Vvdash SDATA "[Vvdash]"--/Vvdash R: triple vertical, dash-->
|
62
docs/entities/ISO/ISObox
Executable file
62
docs/entities/ISO/ISObox
Executable file
@@ -0,0 +1,62 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISObox PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Box and Line Drawing//EN">
|
||||||
|
%ISObox;
|
||||||
|
-->
|
||||||
|
<!-- All names are in the form: box1234, where:
|
||||||
|
box = constants that identify a box drawing entity.
|
||||||
|
1&2 = v, V, u, U, d, D, Ud, or uD, as follows:
|
||||||
|
v = vertical line for full height.
|
||||||
|
u = upper half of vertical line.
|
||||||
|
d = downward (lower) half of vertical line.
|
||||||
|
3&4 = h, H, l, L, r, R, Lr, or lR, as follows:
|
||||||
|
h = horizontal line for full width.
|
||||||
|
l = left half of horizontal line.
|
||||||
|
r = right half of horizontal line.
|
||||||
|
In all cases, an upper-case letter means a double or heavy line.
|
||||||
|
-->
|
||||||
|
<!ENTITY boxh SDATA "[boxh ]"--horizontal line -->
|
||||||
|
<!ENTITY boxv SDATA "[boxv ]"--vertical line-->
|
||||||
|
<!ENTITY boxur SDATA "[boxur ]"--upper right quadrant-->
|
||||||
|
<!ENTITY boxul SDATA "[boxul ]"--upper left quadrant-->
|
||||||
|
<!ENTITY boxdl SDATA "[boxdl ]"--lower left quadrant-->
|
||||||
|
<!ENTITY boxdr SDATA "[boxdr ]"--lower right quadrant-->
|
||||||
|
<!ENTITY boxvr SDATA "[boxvr ]"--upper and lower right quadrants-->
|
||||||
|
<!ENTITY boxhu SDATA "[boxhu ]"--upper left and right quadrants-->
|
||||||
|
<!ENTITY boxvl SDATA "[boxvl ]"--upper and lower left quadrants-->
|
||||||
|
<!ENTITY boxhd SDATA "[boxhd ]"--lower left and right quadrants-->
|
||||||
|
<!ENTITY boxvh SDATA "[boxvh ]"--all four quadrants-->
|
||||||
|
<!ENTITY boxvR SDATA "[boxvR ]"--upper and lower right quadrants-->
|
||||||
|
<!ENTITY boxhU SDATA "[boxhU ]"--upper left and right quadrants-->
|
||||||
|
<!ENTITY boxvL SDATA "[boxvL ]"--upper and lower left quadrants-->
|
||||||
|
<!ENTITY boxhD SDATA "[boxhD ]"--lower left and right quadrants-->
|
||||||
|
<!ENTITY boxvH SDATA "[boxvH ]"--all four quadrants-->
|
||||||
|
<!ENTITY boxH SDATA "[boxH ]"--horizontal line-->
|
||||||
|
<!ENTITY boxV SDATA "[boxV ]"--vertical line-->
|
||||||
|
<!ENTITY boxUR SDATA "[boxUR ]"--upper right quadrant-->
|
||||||
|
<!ENTITY boxUL SDATA "[boxUL ]"--upper left quadrant-->
|
||||||
|
<!ENTITY boxDL SDATA "[boxDL ]"--lower left quadrant-->
|
||||||
|
<!ENTITY boxDR SDATA "[boxDR ]"--lower right quadrant-->
|
||||||
|
<!ENTITY boxVR SDATA "[boxVR ]"--upper and lower right quadrants-->
|
||||||
|
<!ENTITY boxHU SDATA "[boxHU ]"--upper left and right quadrants-->
|
||||||
|
<!ENTITY boxVL SDATA "[boxVL ]"--upper and lower left quadrants-->
|
||||||
|
<!ENTITY boxHD SDATA "[boxHD ]"--lower left and right quadrants-->
|
||||||
|
<!ENTITY boxVH SDATA "[boxVH ]"--all four quadrants-->
|
||||||
|
<!ENTITY boxVr SDATA "[boxVr ]"--upper and lower right quadrants-->
|
||||||
|
<!ENTITY boxHu SDATA "[boxHu ]"--upper left and right quadrants-->
|
||||||
|
<!ENTITY boxVl SDATA "[boxVl ]"--upper and lower left quadrants-->
|
||||||
|
<!ENTITY boxHd SDATA "[boxHd ]"--lower left and right quadrants-->
|
||||||
|
<!ENTITY boxVh SDATA "[boxVh ]"--all four quadrants-->
|
||||||
|
<!ENTITY boxuR SDATA "[boxuR ]"--upper right quadrant-->
|
||||||
|
<!ENTITY boxUl SDATA "[boxUl ]"--upper left quadrant-->
|
||||||
|
<!ENTITY boxdL SDATA "[boxdL ]"--lower left quadrant-->
|
||||||
|
<!ENTITY boxDr SDATA "[boxDr ]"--lower right quadrant-->
|
||||||
|
<!ENTITY boxUr SDATA "[boxUr ]"--upper right quadrant-->
|
||||||
|
<!ENTITY boxuL SDATA "[boxuL ]"--upper left quadrant-->
|
||||||
|
<!ENTITY boxDl SDATA "[boxDl ]"--lower left quadrant-->
|
||||||
|
<!ENTITY boxdR SDATA "[boxdR ]"--lower right quadrant-->
|
77
docs/entities/ISO/ISOcyr1
Executable file
77
docs/entities/ISO/ISOcyr1
Executable file
@@ -0,0 +1,77 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOcyr1 PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Russian Cyrillic//EN">
|
||||||
|
%ISOcyr1;
|
||||||
|
-->
|
||||||
|
<!ENTITY acy SDATA "[acy ]"--=small a, Cyrillic-->
|
||||||
|
<!ENTITY Acy SDATA "[Acy ]"--=capital A, Cyrillic-->
|
||||||
|
<!ENTITY bcy SDATA "[bcy ]"--=small be, Cyrillic-->
|
||||||
|
<!ENTITY Bcy SDATA "[Bcy ]"--=capital BE, Cyrillic-->
|
||||||
|
<!ENTITY vcy SDATA "[vcy ]"--=small ve, Cyrillic-->
|
||||||
|
<!ENTITY Vcy SDATA "[Vcy ]"--=capital VE, Cyrillic-->
|
||||||
|
<!ENTITY gcy SDATA "[gcy ]"--=small ghe, Cyrillic-->
|
||||||
|
<!ENTITY Gcy SDATA "[Gcy ]"--=capital GHE, Cyrillic-->
|
||||||
|
<!ENTITY dcy SDATA "[dcy ]"--=small de, Cyrillic-->
|
||||||
|
<!ENTITY Dcy SDATA "[Dcy ]"--=capital DE, Cyrillic-->
|
||||||
|
<!ENTITY iecy SDATA "[iecy ]"--=small ie, Cyrillic-->
|
||||||
|
<!ENTITY IEcy SDATA "[IEcy ]"--=capital IE, Cyrillic-->
|
||||||
|
<!ENTITY iocy SDATA "[iocy ]"--=small io, Russian-->
|
||||||
|
<!ENTITY IOcy SDATA "[IOcy ]"--=capital IO, Russian-->
|
||||||
|
<!ENTITY zhcy SDATA "[zhcy ]"--=small zhe, Cyrillic-->
|
||||||
|
<!ENTITY ZHcy SDATA "[ZHcy ]"--=capital ZHE, Cyrillic-->
|
||||||
|
<!ENTITY zcy SDATA "[zcy ]"--=small ze, Cyrillic-->
|
||||||
|
<!ENTITY Zcy SDATA "[Zcy ]"--=capital ZE, Cyrillic-->
|
||||||
|
<!ENTITY icy SDATA "[icy ]"--=small i, Cyrillic-->
|
||||||
|
<!ENTITY Icy SDATA "[Icy ]"--=capital I, Cyrillic-->
|
||||||
|
<!ENTITY jcy SDATA "[jcy ]"--=small short i, Cyrillic-->
|
||||||
|
<!ENTITY Jcy SDATA "[Jcy ]"--=capital short I, Cyrillic-->
|
||||||
|
<!ENTITY kcy SDATA "[kcy ]"--=small ka, Cyrillic-->
|
||||||
|
<!ENTITY Kcy SDATA "[Kcy ]"--=capital KA, Cyrillic-->
|
||||||
|
<!ENTITY lcy SDATA "[lcy ]"--=small el, Cyrillic-->
|
||||||
|
<!ENTITY Lcy SDATA "[Lcy ]"--=capital EL, Cyrillic-->
|
||||||
|
<!ENTITY mcy SDATA "[mcy ]"--=small em, Cyrillic-->
|
||||||
|
<!ENTITY Mcy SDATA "[Mcy ]"--=capital EM, Cyrillic-->
|
||||||
|
<!ENTITY ncy SDATA "[ncy ]"--=small en, Cyrillic-->
|
||||||
|
<!ENTITY Ncy SDATA "[Ncy ]"--=capital EN, Cyrillic-->
|
||||||
|
<!ENTITY ocy SDATA "[ocy ]"--=small o, Cyrillic-->
|
||||||
|
<!ENTITY Ocy SDATA "[Ocy ]"--=capital O, Cyrillic-->
|
||||||
|
<!ENTITY pcy SDATA "[pcy ]"--=small pe, Cyrillic-->
|
||||||
|
<!ENTITY Pcy SDATA "[Pcy ]"--=capital PE, Cyrillic-->
|
||||||
|
<!ENTITY rcy SDATA "[rcy ]"--=small er, Cyrillic-->
|
||||||
|
<!ENTITY Rcy SDATA "[Rcy ]"--=capital ER, Cyrillic-->
|
||||||
|
<!ENTITY scy SDATA "[scy ]"--=small es, Cyrillic-->
|
||||||
|
<!ENTITY Scy SDATA "[Scy ]"--=capital ES, Cyrillic-->
|
||||||
|
<!ENTITY tcy SDATA "[tcy ]"--=small te, Cyrillic-->
|
||||||
|
<!ENTITY Tcy SDATA "[Tcy ]"--=capital TE, Cyrillic-->
|
||||||
|
<!ENTITY ucy SDATA "[ucy ]"--=small u, Cyrillic-->
|
||||||
|
<!ENTITY Ucy SDATA "[Ucy ]"--=capital U, Cyrillic-->
|
||||||
|
<!ENTITY fcy SDATA "[fcy ]"--=small ef, Cyrillic-->
|
||||||
|
<!ENTITY Fcy SDATA "[Fcy ]"--=capital EF, Cyrillic-->
|
||||||
|
<!ENTITY khcy SDATA "[khcy ]"--=small ha, Cyrillic-->
|
||||||
|
<!ENTITY KHcy SDATA "[KHcy ]"--=capital HA, Cyrillic-->
|
||||||
|
<!ENTITY tscy SDATA "[tscy ]"--=small tse, Cyrillic-->
|
||||||
|
<!ENTITY TScy SDATA "[TScy ]"--=capital TSE, Cyrillic-->
|
||||||
|
<!ENTITY chcy SDATA "[chcy ]"--=small che, Cyrillic-->
|
||||||
|
<!ENTITY CHcy SDATA "[CHcy ]"--=capital CHE, Cyrillic-->
|
||||||
|
<!ENTITY shcy SDATA "[shcy ]"--=small sha, Cyrillic-->
|
||||||
|
<!ENTITY SHcy SDATA "[SHcy ]"--=capital SHA, Cyrillic-->
|
||||||
|
<!ENTITY shchcy SDATA "[shchcy]"--=small shcha, Cyrillic-->
|
||||||
|
<!ENTITY SHCHcy SDATA "[SHCHcy]"--=capital SHCHA, Cyrillic-->
|
||||||
|
<!ENTITY hardcy SDATA "[hardcy]"--=small hard sign, Cyrillic-->
|
||||||
|
<!ENTITY HARDcy SDATA "[HARDcy]"--=capital HARD sign, Cyrillic-->
|
||||||
|
<!ENTITY ycy SDATA "[ycy ]"--=small yeru, Cyrillic-->
|
||||||
|
<!ENTITY Ycy SDATA "[Ycy ]"--=capital YERU, Cyrillic-->
|
||||||
|
<!ENTITY softcy SDATA "[softcy]"--=small soft sign, Cyrillic-->
|
||||||
|
<!ENTITY SOFTcy SDATA "[SOFTcy]"--=capital SOFT sign, Cyrillic-->
|
||||||
|
<!ENTITY ecy SDATA "[ecy ]"--=small e, Cyrillic-->
|
||||||
|
<!ENTITY Ecy SDATA "[Ecy ]"--=capital E, Cyrillic-->
|
||||||
|
<!ENTITY yucy SDATA "[yucy ]"--=small yu, Cyrillic-->
|
||||||
|
<!ENTITY YUcy SDATA "[YUcy ]"--=capital YU, Cyrillic-->
|
||||||
|
<!ENTITY yacy SDATA "[yacy ]"--=small ya, Cyrillic-->
|
||||||
|
<!ENTITY YAcy SDATA "[YAcy ]"--=capital YA, Cyrillic-->
|
||||||
|
<!ENTITY numero SDATA "[numero]"--=numero sign-->
|
36
docs/entities/ISO/ISOcyr2
Executable file
36
docs/entities/ISO/ISOcyr2
Executable file
@@ -0,0 +1,36 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOcyr2 PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN">
|
||||||
|
%ISOcyr2;
|
||||||
|
-->
|
||||||
|
<!ENTITY djcy SDATA "[djcy ]"--=small dje, Serbian-->
|
||||||
|
<!ENTITY DJcy SDATA "[DJcy ]"--=capital DJE, Serbian-->
|
||||||
|
<!ENTITY gjcy SDATA "[gjcy ]"--=small gje, Macedonian-->
|
||||||
|
<!ENTITY GJcy SDATA "[GJcy ]"--=capital GJE Macedonian-->
|
||||||
|
<!ENTITY jukcy SDATA "[jukcy ]"--=small je, Ukrainian-->
|
||||||
|
<!ENTITY Jukcy SDATA "[Jukcy ]"--=capital JE, Ukrainian-->
|
||||||
|
<!ENTITY dscy SDATA "[dscy ]"--=small dse, Macedonian-->
|
||||||
|
<!ENTITY DScy SDATA "[DScy ]"--=capital DSE, Macedonian-->
|
||||||
|
<!ENTITY iukcy SDATA "[iukcy ]"--=small i, Ukrainian-->
|
||||||
|
<!ENTITY Iukcy SDATA "[Iukcy ]"--=capital I, Ukrainian-->
|
||||||
|
<!ENTITY yicy SDATA "[yicy ]"--=small yi, Ukrainian-->
|
||||||
|
<!ENTITY YIcy SDATA "[YIcy ]"--=capital YI, Ukrainian-->
|
||||||
|
<!ENTITY jsercy SDATA "[jsercy]"--=small je, Serbian-->
|
||||||
|
<!ENTITY Jsercy SDATA "[Jsercy]"--=capital JE, Serbian-->
|
||||||
|
<!ENTITY ljcy SDATA "[ljcy ]"--=small lje, Serbian-->
|
||||||
|
<!ENTITY LJcy SDATA "[LJcy ]"--=capital LJE, Serbian-->
|
||||||
|
<!ENTITY njcy SDATA "[njcy ]"--=small nje, Serbian-->
|
||||||
|
<!ENTITY NJcy SDATA "[NJcy ]"--=capital NJE, Serbian-->
|
||||||
|
<!ENTITY tshcy SDATA "[tshcy ]"--=small tshe, Serbian-->
|
||||||
|
<!ENTITY TSHcy SDATA "[TSHcy ]"--=capital TSHE, Serbian-->
|
||||||
|
<!ENTITY kjcy SDATA "[kjcy ]"--=small kje Macedonian-->
|
||||||
|
<!ENTITY KJcy SDATA "[KJcy ]"--=capital KJE, Macedonian-->
|
||||||
|
<!ENTITY ubrcy SDATA "[ubrcy ]"--=small u, Byelorussian-->
|
||||||
|
<!ENTITY Ubrcy SDATA "[Ubrcy ]"--=capital U, Byelorussian-->
|
||||||
|
<!ENTITY dzcy SDATA "[dzcy ]"--=small dze, Serbian-->
|
||||||
|
<!ENTITY DZcy SDATA "[DZcy ]"--=capital dze, Serbian-->
|
24
docs/entities/ISO/ISOdia
Executable file
24
docs/entities/ISO/ISOdia
Executable file
@@ -0,0 +1,24 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOdia PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Diacritical Marks//EN">
|
||||||
|
%ISOdia;
|
||||||
|
-->
|
||||||
|
<!ENTITY acute SDATA "[acute ]"--=acute accent-->
|
||||||
|
<!ENTITY breve SDATA "[breve ]"--=breve-->
|
||||||
|
<!ENTITY caron SDATA "[caron ]"--=caron-->
|
||||||
|
<!ENTITY cedil SDATA "[cedil ]"--=cedilla-->
|
||||||
|
<!ENTITY circ SDATA "[circ ]"--=circumflex accent-->
|
||||||
|
<!ENTITY dblac SDATA "[dblac ]"--=double acute accent-->
|
||||||
|
<!ENTITY die SDATA "[die ]"--=dieresis-->
|
||||||
|
<!ENTITY dot SDATA "[dot ]"--=dot above-->
|
||||||
|
<!ENTITY grave SDATA "[grave ]"--=grave accent-->
|
||||||
|
<!ENTITY macr SDATA "[macr ]"--=macron-->
|
||||||
|
<!ENTITY ogon SDATA "[ogon ]"--=ogonek-->
|
||||||
|
<!ENTITY ring SDATA "[ring ]"--=ring-->
|
||||||
|
<!ENTITY tilde SDATA "[tilde ]"--=tilde-->
|
||||||
|
<!ENTITY uml SDATA "[uml ]"--=umlaut mark-->
|
59
docs/entities/ISO/ISOgrk1
Executable file
59
docs/entities/ISO/ISOgrk1
Executable file
@@ -0,0 +1,59 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOgrk1 PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Greek Letters//EN">
|
||||||
|
%ISOgrk1;
|
||||||
|
-->
|
||||||
|
<!ENTITY agr SDATA "[agr ]"--=small alpha, Greek-->
|
||||||
|
<!ENTITY Agr SDATA "[Agr ]"--=capital Alpha, Greek-->
|
||||||
|
<!ENTITY bgr SDATA "[bgr ]"--=small beta, Greek-->
|
||||||
|
<!ENTITY Bgr SDATA "[Bgr ]"--=capital Beta, Greek-->
|
||||||
|
<!ENTITY ggr SDATA "[ggr ]"--=small gamma, Greek-->
|
||||||
|
<!ENTITY Ggr SDATA "[Ggr ]"--=capital Gamma, Greek-->
|
||||||
|
<!ENTITY dgr SDATA "[dgr ]"--=small delta, Greek-->
|
||||||
|
<!ENTITY Dgr SDATA "[Dgr ]"--=capital Delta, Greek-->
|
||||||
|
<!ENTITY egr SDATA "[egr ]"--=small epsilon, Greek-->
|
||||||
|
<!ENTITY Egr SDATA "[Egr ]"--=capital Epsilon, Greek-->
|
||||||
|
<!ENTITY zgr SDATA "[zgr ]"--=small zeta, Greek-->
|
||||||
|
<!ENTITY Zgr SDATA "[Zgr ]"--=capital Zeta, Greek-->
|
||||||
|
<!ENTITY eegr SDATA "[eegr ]"--=small eta, Greek-->
|
||||||
|
<!ENTITY EEgr SDATA "[EEgr ]"--=capital Eta, Greek-->
|
||||||
|
<!ENTITY thgr SDATA "[thgr ]"--=small theta, Greek-->
|
||||||
|
<!ENTITY THgr SDATA "[THgr ]"--=capital Theta, Greek-->
|
||||||
|
<!ENTITY igr SDATA "[igr ]"--=small iota, Greek-->
|
||||||
|
<!ENTITY Igr SDATA "[Igr ]"--=capital Iota, Greek-->
|
||||||
|
<!ENTITY kgr SDATA "[kgr ]"--=small kappa, Greek-->
|
||||||
|
<!ENTITY Kgr SDATA "[Kgr ]"--=capital Kappa, Greek-->
|
||||||
|
<!ENTITY lgr SDATA "[lgr ]"--=small lambda, Greek-->
|
||||||
|
<!ENTITY Lgr SDATA "[Lgr ]"--=capital Lambda, Greek-->
|
||||||
|
<!ENTITY mgr SDATA "[mgr ]"--=small mu, Greek-->
|
||||||
|
<!ENTITY Mgr SDATA "[Mgr ]"--=capital Mu, Greek-->
|
||||||
|
<!ENTITY ngr SDATA "[ngr ]"--=small nu, Greek-->
|
||||||
|
<!ENTITY Ngr SDATA "[Ngr ]"--=capital Nu, Greek-->
|
||||||
|
<!ENTITY xgr SDATA "[xgr ]"--=small xi, Greek-->
|
||||||
|
<!ENTITY Xgr SDATA "[Xgr ]"--=capital Xi, Greek-->
|
||||||
|
<!ENTITY ogr SDATA "[ogr ]"--=small omicron, Greek-->
|
||||||
|
<!ENTITY Ogr SDATA "[Ogr ]"--=capital Omicron, Greek-->
|
||||||
|
<!ENTITY pgr SDATA "[pgr ]"--=small pi, Greek-->
|
||||||
|
<!ENTITY Pgr SDATA "[Pgr ]"--=capital Pi, Greek-->
|
||||||
|
<!ENTITY rgr SDATA "[rgr ]"--=small rho, Greek-->
|
||||||
|
<!ENTITY Rgr SDATA "[Rgr ]"--=capital Rho, Greek-->
|
||||||
|
<!ENTITY sgr SDATA "[sgr ]"--=small sigma, Greek-->
|
||||||
|
<!ENTITY Sgr SDATA "[Sgr ]"--=capital Sigma, Greek-->
|
||||||
|
<!ENTITY sfgr SDATA "[sfgr ]"--=final small sigma, Greek-->
|
||||||
|
<!ENTITY tgr SDATA "[tgr ]"--=small tau, Greek-->
|
||||||
|
<!ENTITY Tgr SDATA "[Tgr ]"--=capital Tau, Greek-->
|
||||||
|
<!ENTITY ugr SDATA "[ugr ]"--=small upsilon, Greek-->
|
||||||
|
<!ENTITY Ugr SDATA "[Ugr ]"--=capital Upsilon, Greek-->
|
||||||
|
<!ENTITY phgr SDATA "[phgr ]"--=small phi, Greek-->
|
||||||
|
<!ENTITY PHgr SDATA "[PHgr ]"--=capital Phi, Greek-->
|
||||||
|
<!ENTITY khgr SDATA "[khgr ]"--=small chi, Greek-->
|
||||||
|
<!ENTITY KHgr SDATA "[KHgr ]"--=capital Chi, Greek-->
|
||||||
|
<!ENTITY psgr SDATA "[psgr ]"--=small psi, Greek-->
|
||||||
|
<!ENTITY PSgr SDATA "[PSgr ]"--=capital Psi, Greek-->
|
||||||
|
<!ENTITY ohgr SDATA "[ohgr ]"--=small omega, Greek-->
|
||||||
|
<!ENTITY OHgr SDATA "[OHgr ]"--=capital Omega, Greek-->
|
30
docs/entities/ISO/ISOgrk2
Executable file
30
docs/entities/ISO/ISOgrk2
Executable file
@@ -0,0 +1,30 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOgrk2 PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Monotoniko Greek//EN">
|
||||||
|
%ISOgrk2;
|
||||||
|
-->
|
||||||
|
<!ENTITY aacgr SDATA "[aacgr ]"--=small alpha, accent, Greek-->
|
||||||
|
<!ENTITY Aacgr SDATA "[Aacgr ]"--=capital Alpha, accent, Greek-->
|
||||||
|
<!ENTITY eacgr SDATA "[eacgr ]"--=small epsilon, accent, Greek-->
|
||||||
|
<!ENTITY Eacgr SDATA "[Eacgr ]"--=capital Epsilon, accent, Greek-->
|
||||||
|
<!ENTITY eeacgr SDATA "[eeacgr]"--=small eta, accent, Greek-->
|
||||||
|
<!ENTITY EEacgr SDATA "[EEacgr]"--=capital Eta, accent, Greek-->
|
||||||
|
<!ENTITY idigr SDATA "[idigr ]"--=small iota, dieresis, Greek-->
|
||||||
|
<!ENTITY Idigr SDATA "[Idigr ]"--=capital Iota, dieresis, Greek-->
|
||||||
|
<!ENTITY iacgr SDATA "[iacgr ]"--=small iota, accent, Greek-->
|
||||||
|
<!ENTITY Iacgr SDATA "[Iacgr ]"--=capital Iota, accent, Greek-->
|
||||||
|
<!ENTITY idiagr SDATA "[idiagr]"--=small iota, dieresis, accent, Greek-->
|
||||||
|
<!ENTITY oacgr SDATA "[oacgr ]"--=small omicron, accent, Greek-->
|
||||||
|
<!ENTITY Oacgr SDATA "[Oacgr ]"--=capital Omicron, accent, Greek-->
|
||||||
|
<!ENTITY udigr SDATA "[udigr ]"--=small upsilon, dieresis, Greek-->
|
||||||
|
<!ENTITY Udigr SDATA "[Udigr ]"--=capital Upsilon, dieresis, Greek-->
|
||||||
|
<!ENTITY uacgr SDATA "[uacgr ]"--=small upsilon, accent, Greek-->
|
||||||
|
<!ENTITY Uacgr SDATA "[Uacgr ]"--=capital Upsilon, accent, Greek-->
|
||||||
|
<!ENTITY udiagr SDATA "[udiagr]"--=small upsilon, dieresis, accent, Greek-->
|
||||||
|
<!ENTITY ohacgr SDATA "[ohacgr]"--=small omega, accent, Greek-->
|
||||||
|
<!ENTITY OHacgr SDATA "[OHacgr]"--=capital Omega, accent, Greek-->
|
53
docs/entities/ISO/ISOgrk3
Executable file
53
docs/entities/ISO/ISOgrk3
Executable file
@@ -0,0 +1,53 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOgrk3 PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Greek Symbols//EN">
|
||||||
|
%ISOgrk3;
|
||||||
|
-->
|
||||||
|
<!ENTITY alpha SDATA "[alpha ]"--=small alpha, Greek-->
|
||||||
|
<!ENTITY beta SDATA "[beta ]"--=small beta, Greek-->
|
||||||
|
<!ENTITY gamma SDATA "[gamma ]"--=small gamma, Greek-->
|
||||||
|
<!ENTITY Gamma SDATA "[Gamma ]"--=capital Gamma, Greek-->
|
||||||
|
<!ENTITY gammad SDATA "[gammad]"--/digamma-->
|
||||||
|
<!ENTITY delta SDATA "[delta ]"--=small delta, Greek-->
|
||||||
|
<!ENTITY Delta SDATA "[Delta ]"--=capital Delta, Greek-->
|
||||||
|
<!ENTITY epsi SDATA "[epsi ]"--=small epsilon, Greek-->
|
||||||
|
<!ENTITY epsiv SDATA "[epsiv ]"--/varepsilon-->
|
||||||
|
<!ENTITY epsis SDATA "[epsis ]"--/straightepsilon-->
|
||||||
|
<!ENTITY zeta SDATA "[zeta ]"--=small zeta, Greek-->
|
||||||
|
<!ENTITY eta SDATA "[eta ]"--=small eta, Greek-->
|
||||||
|
<!ENTITY thetas SDATA "[thetas]"--straight theta-->
|
||||||
|
<!ENTITY Theta SDATA "[Theta ]"--=capital Theta, Greek-->
|
||||||
|
<!ENTITY thetav SDATA "[thetav]"--/vartheta - curly or open theta-->
|
||||||
|
<!ENTITY iota SDATA "[iota ]"--=small iota, Greek-->
|
||||||
|
<!ENTITY kappa SDATA "[kappa ]"--=small kappa, Greek-->
|
||||||
|
<!ENTITY kappav SDATA "[kappav]"--/varkappa-->
|
||||||
|
<!ENTITY lambda SDATA "[lambda]"--=small lambda, Greek-->
|
||||||
|
<!ENTITY Lambda SDATA "[Lambda]"--=capital Lambda, Greek-->
|
||||||
|
<!ENTITY mu SDATA "[mu ]"--=small mu, Greek-->
|
||||||
|
<!ENTITY nu SDATA "[nu ]"--=small nu, Greek-->
|
||||||
|
<!ENTITY xi SDATA "[xi ]"--=small xi, Greek-->
|
||||||
|
<!ENTITY Xi SDATA "[Xi ]"--=capital Xi, Greek-->
|
||||||
|
<!ENTITY pi SDATA "[pi ]"--=small pi, Greek-->
|
||||||
|
<!ENTITY piv SDATA "[piv ]"--/varpi-->
|
||||||
|
<!ENTITY Pi SDATA "[Pi ]"--=capital Pi, Greek-->
|
||||||
|
<!ENTITY rho SDATA "[rho ]"--=small rho, Greek-->
|
||||||
|
<!ENTITY rhov SDATA "[rhov ]"--/varrho-->
|
||||||
|
<!ENTITY sigma SDATA "[sigma ]"--=small sigma, Greek-->
|
||||||
|
<!ENTITY Sigma SDATA "[Sigma ]"--=capital Sigma, Greek-->
|
||||||
|
<!ENTITY sigmav SDATA "[sigmav]"--/varsigma-->
|
||||||
|
<!ENTITY tau SDATA "[tau ]"--=small tau, Greek-->
|
||||||
|
<!ENTITY upsi SDATA "[upsi ]"--=small upsilon, Greek-->
|
||||||
|
<!ENTITY Upsi SDATA "[Upsi ]"--=capital Upsilon, Greek-->
|
||||||
|
<!ENTITY phis SDATA "[phis ]"--/straightphi - straight phi-->
|
||||||
|
<!ENTITY Phi SDATA "[Phi ]"--=capital Phi, Greek-->
|
||||||
|
<!ENTITY phiv SDATA "[phiv ]"--/varphi - curly or open phi-->
|
||||||
|
<!ENTITY chi SDATA "[chi ]"--=small chi, Greek-->
|
||||||
|
<!ENTITY psi SDATA "[psi ]"--=small psi, Greek-->
|
||||||
|
<!ENTITY Psi SDATA "[Psi ]"--=capital Psi, Greek-->
|
||||||
|
<!ENTITY omega SDATA "[omega ]"--=small omega, Greek-->
|
||||||
|
<!ENTITY Omega SDATA "[Omega ]"--=capital Omega, Greek-->
|
53
docs/entities/ISO/ISOgrk4
Executable file
53
docs/entities/ISO/ISOgrk4
Executable file
@@ -0,0 +1,53 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOgrk4 PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN">
|
||||||
|
%ISOgrk4;
|
||||||
|
-->
|
||||||
|
<!ENTITY b.alpha SDATA "[b.alpha ]"--=small alpha, Greek-->
|
||||||
|
<!ENTITY b.beta SDATA "[b.beta ]"--=small beta, Greek-->
|
||||||
|
<!ENTITY b.gamma SDATA "[b.gamma ]"--=small gamma, Greek-->
|
||||||
|
<!ENTITY b.Gamma SDATA "[b.Gamma ]"--=capital Gamma, Greek-->
|
||||||
|
<!ENTITY b.gammad SDATA "[b.gammad]"--/digamma-->
|
||||||
|
<!ENTITY b.delta SDATA "[b.delta ]"--=small delta, Greek-->
|
||||||
|
<!ENTITY b.Delta SDATA "[b.Delta ]"--=capital Delta, Greek-->
|
||||||
|
<!ENTITY b.epsi SDATA "[b.epsi ]"--=small epsilon, Greek-->
|
||||||
|
<!ENTITY b.epsiv SDATA "[b.epsiv ]"--/varepsilon-->
|
||||||
|
<!ENTITY b.epsis SDATA "[b.epsis ]"--/straightepsilon-->
|
||||||
|
<!ENTITY b.zeta SDATA "[b.zeta ]"--=small zeta, Greek-->
|
||||||
|
<!ENTITY b.eta SDATA "[b.eta ]"--=small eta, Greek-->
|
||||||
|
<!ENTITY b.thetas SDATA "[b.thetas]"--straight theta-->
|
||||||
|
<!ENTITY b.Theta SDATA "[b.Theta ]"--=capital Theta, Greek-->
|
||||||
|
<!ENTITY b.thetav SDATA "[b.thetav]"--/vartheta - curly or open theta-->
|
||||||
|
<!ENTITY b.iota SDATA "[b.iota ]"--=small iota, Greek-->
|
||||||
|
<!ENTITY b.kappa SDATA "[b.kappa ]"--=small kappa, Greek-->
|
||||||
|
<!ENTITY b.kappav SDATA "[b.kappav]"--/varkappa-->
|
||||||
|
<!ENTITY b.lambda SDATA "[b.lambda]"--=small lambda, Greek-->
|
||||||
|
<!ENTITY b.Lambda SDATA "[b.Lambda]"--=capital Lambda, Greek-->
|
||||||
|
<!ENTITY b.mu SDATA "[b.mu ]"--=small mu, Greek-->
|
||||||
|
<!ENTITY b.nu SDATA "[b.nu ]"--=small nu, Greek-->
|
||||||
|
<!ENTITY b.xi SDATA "[b.xi ]"--=small xi, Greek-->
|
||||||
|
<!ENTITY b.Xi SDATA "[b.Xi ]"--=capital Xi, Greek-->
|
||||||
|
<!ENTITY b.pi SDATA "[b.pi ]"--=small pi, Greek-->
|
||||||
|
<!ENTITY b.Pi SDATA "[b.Pi ]"--=capital Pi, Greek-->
|
||||||
|
<!ENTITY b.piv SDATA "[b.piv ]"--/varpi-->
|
||||||
|
<!ENTITY b.rho SDATA "[b.rho ]"--=small rho, Greek-->
|
||||||
|
<!ENTITY b.rhov SDATA "[b.rhov ]"--/varrho-->
|
||||||
|
<!ENTITY b.sigma SDATA "[b.sigma ]"--=small sigma, Greek-->
|
||||||
|
<!ENTITY b.Sigma SDATA "[b.Sigma ]"--=capital Sigma, Greek-->
|
||||||
|
<!ENTITY b.sigmav SDATA "[b.sigmav]"--/varsigma-->
|
||||||
|
<!ENTITY b.tau SDATA "[b.tau ]"--=small tau, Greek-->
|
||||||
|
<!ENTITY b.upsi SDATA "[b.upsi ]"--=small upsilon, Greek-->
|
||||||
|
<!ENTITY b.Upsi SDATA "[b.Upsi ]"--=capital Upsilon, Greek-->
|
||||||
|
<!ENTITY b.phis SDATA "[b.phis ]"--/straightphi - straight phi-->
|
||||||
|
<!ENTITY b.Phi SDATA "[b.Phi ]"--=capital Phi, Greek-->
|
||||||
|
<!ENTITY b.phiv SDATA "[b.phiv ]"--/varphi - curly or open phi-->
|
||||||
|
<!ENTITY b.chi SDATA "[b.chi ]"--=small chi, Greek-->
|
||||||
|
<!ENTITY b.psi SDATA "[b.psi ]"--=small psi, Greek-->
|
||||||
|
<!ENTITY b.Psi SDATA "[b.Psi ]"--=capital Psi, Greek-->
|
||||||
|
<!ENTITY b.omega SDATA "[b.omega ]"--=small omega, Greek-->
|
||||||
|
<!ENTITY b.Omega SDATA "[b.Omega ]"--=capital Omega, Greek-->
|
72
docs/entities/ISO/ISOlat1
Executable file
72
docs/entities/ISO/ISOlat1
Executable file
@@ -0,0 +1,72 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOlat1 PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Added Latin 1//EN">
|
||||||
|
%ISOlat1;
|
||||||
|
-->
|
||||||
|
<!ENTITY aacute SDATA "[aacute]"--=small a, acute accent-->
|
||||||
|
<!ENTITY Aacute SDATA "[Aacute]"--=capital A, acute accent-->
|
||||||
|
<!ENTITY acirc SDATA "[acirc ]"--=small a, circumflex accent-->
|
||||||
|
<!ENTITY Acirc SDATA "[Acirc ]"--=capital A, circumflex accent-->
|
||||||
|
<!ENTITY agrave SDATA "[agrave]"--=small a, grave accent-->
|
||||||
|
<!ENTITY Agrave SDATA "[Agrave]"--=capital A, grave accent-->
|
||||||
|
<!ENTITY aring SDATA "[aring ]"--=small a, ring-->
|
||||||
|
<!ENTITY Aring SDATA "[Aring ]"--=capital A, ring-->
|
||||||
|
<!ENTITY atilde SDATA "[atilde]"--=small a, tilde-->
|
||||||
|
<!ENTITY Atilde SDATA "[Atilde]"--=capital A, tilde-->
|
||||||
|
<!ENTITY auml SDATA "[auml ]"--=small a, dieresis or umlaut mark-->
|
||||||
|
<!ENTITY Auml SDATA "[Auml ]"--=capital A, dieresis or umlaut mark-->
|
||||||
|
<!ENTITY aelig SDATA "[aelig ]"--=small ae diphthong (ligature)-->
|
||||||
|
<!ENTITY AElig SDATA "[AElig ]"--=capital AE diphthong (ligature)-->
|
||||||
|
<!ENTITY ccedil SDATA "[ccedil]"--=small c, cedilla-->
|
||||||
|
<!ENTITY Ccedil SDATA "[Ccedil]"--=capital C, cedilla-->
|
||||||
|
<!ENTITY eth SDATA "[eth ]"--=small eth, Icelandic-->
|
||||||
|
<!ENTITY ETH SDATA "[ETH ]"--=capital Eth, Icelandic-->
|
||||||
|
<!ENTITY eacute SDATA "[eacute]"--=small e, acute accent-->
|
||||||
|
<!ENTITY Eacute SDATA "[Eacute]"--=capital E, acute accent-->
|
||||||
|
<!ENTITY ecirc SDATA "[ecirc ]"--=small e, circumflex accent-->
|
||||||
|
<!ENTITY Ecirc SDATA "[Ecirc ]"--=capital E, circumflex accent-->
|
||||||
|
<!ENTITY egrave SDATA "[egrave]"--=small e, grave accent-->
|
||||||
|
<!ENTITY Egrave SDATA "[Egrave]"--=capital E, grave accent-->
|
||||||
|
<!ENTITY euml SDATA "[euml ]"--=small e, dieresis or umlaut mark-->
|
||||||
|
<!ENTITY Euml SDATA "[Euml ]"--=capital E, dieresis or umlaut mark-->
|
||||||
|
<!ENTITY iacute SDATA "[iacute]"--=small i, acute accent-->
|
||||||
|
<!ENTITY Iacute SDATA "[Iacute]"--=capital I, acute accent-->
|
||||||
|
<!ENTITY icirc SDATA "[icirc ]"--=small i, circumflex accent-->
|
||||||
|
<!ENTITY Icirc SDATA "[Icirc ]"--=capital I, circumflex accent-->
|
||||||
|
<!ENTITY igrave SDATA "[igrave]"--=small i, grave accent-->
|
||||||
|
<!ENTITY Igrave SDATA "[Igrave]"--=capital I, grave accent-->
|
||||||
|
<!ENTITY iuml SDATA "[iuml ]"--=small i, dieresis or umlaut mark-->
|
||||||
|
<!ENTITY Iuml SDATA "[Iuml ]"--=capital I, dieresis or umlaut mark-->
|
||||||
|
<!ENTITY ntilde SDATA "[ntilde]"--=small n, tilde-->
|
||||||
|
<!ENTITY Ntilde SDATA "[Ntilde]"--=capital N, tilde-->
|
||||||
|
<!ENTITY oacute SDATA "[oacute]"--=small o, acute accent-->
|
||||||
|
<!ENTITY Oacute SDATA "[Oacute]"--=capital O, acute accent-->
|
||||||
|
<!ENTITY ocirc SDATA "[ocirc ]"--=small o, circumflex accent-->
|
||||||
|
<!ENTITY Ocirc SDATA "[Ocirc ]"--=capital O, circumflex accent-->
|
||||||
|
<!ENTITY ograve SDATA "[ograve]"--=small o, grave accent-->
|
||||||
|
<!ENTITY Ograve SDATA "[Ograve]"--=capital O, grave accent-->
|
||||||
|
<!ENTITY oslash SDATA "[oslash]"--=small o, slash-->
|
||||||
|
<!ENTITY Oslash SDATA "[Oslash]"--=capital O, slash-->
|
||||||
|
<!ENTITY otilde SDATA "[otilde]"--=small o, tilde-->
|
||||||
|
<!ENTITY Otilde SDATA "[Otilde]"--=capital O, tilde-->
|
||||||
|
<!ENTITY ouml SDATA "[ouml ]"--=small o, dieresis or umlaut mark-->
|
||||||
|
<!ENTITY Ouml SDATA "[Ouml ]"--=capital O, dieresis or umlaut mark-->
|
||||||
|
<!ENTITY szlig SDATA "[szlig ]"--=small sharp s, German (sz ligature)-->
|
||||||
|
<!ENTITY thorn SDATA "[thorn ]"--=small thorn, Icelandic-->
|
||||||
|
<!ENTITY THORN SDATA "[THORN ]"--=capital THORN, Icelandic-->
|
||||||
|
<!ENTITY uacute SDATA "[uacute]"--=small u, acute accent-->
|
||||||
|
<!ENTITY Uacute SDATA "[Uacute]"--=capital U, acute accent-->
|
||||||
|
<!ENTITY ucirc SDATA "[ucirc ]"--=small u, circumflex accent-->
|
||||||
|
<!ENTITY Ucirc SDATA "[Ucirc ]"--=capital U, circumflex accent-->
|
||||||
|
<!ENTITY ugrave SDATA "[ugrave]"--=small u, grave accent-->
|
||||||
|
<!ENTITY Ugrave SDATA "[Ugrave]"--=capital U, grave accent-->
|
||||||
|
<!ENTITY uuml SDATA "[uuml ]"--=small u, dieresis or umlaut mark-->
|
||||||
|
<!ENTITY Uuml SDATA "[Uuml ]"--=capital U, dieresis or umlaut mark-->
|
||||||
|
<!ENTITY yacute SDATA "[yacute]"--=small y, acute accent-->
|
||||||
|
<!ENTITY Yacute SDATA "[Yacute]"--=capital Y, acute accent-->
|
||||||
|
<!ENTITY yuml SDATA "[yuml ]"--=small y, dieresis or umlaut mark-->
|
131
docs/entities/ISO/ISOlat2
Executable file
131
docs/entities/ISO/ISOlat2
Executable file
@@ -0,0 +1,131 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOlat2 PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Added Latin 2//EN">
|
||||||
|
%ISOlat2;
|
||||||
|
-->
|
||||||
|
<!ENTITY abreve SDATA "[abreve]"--=small a, breve-->
|
||||||
|
<!ENTITY Abreve SDATA "[Abreve]"--=capital A, breve-->
|
||||||
|
<!ENTITY amacr SDATA "[amacr ]"--=small a, macron-->
|
||||||
|
<!ENTITY Amacr SDATA "[Amacr ]"--=capital A, macron-->
|
||||||
|
<!ENTITY aogon SDATA "[aogon ]"--=small a, ogonek-->
|
||||||
|
<!ENTITY Aogon SDATA "[Aogon ]"--=capital A, ogonek-->
|
||||||
|
<!ENTITY cacute SDATA "[cacute]"--=small c, acute accent-->
|
||||||
|
<!ENTITY Cacute SDATA "[Cacute]"--=capital C, acute accent-->
|
||||||
|
<!ENTITY ccaron SDATA "[ccaron]"--=small c, caron-->
|
||||||
|
<!ENTITY Ccaron SDATA "[Ccaron]"--=capital C, caron-->
|
||||||
|
<!ENTITY ccirc SDATA "[ccirc ]"--=small c, circumflex accent-->
|
||||||
|
<!ENTITY Ccirc SDATA "[Ccirc ]"--=capital C, circumflex accent-->
|
||||||
|
<!ENTITY cdot SDATA "[cdot ]"--=small c, dot above-->
|
||||||
|
<!ENTITY Cdot SDATA "[Cdot ]"--=capital C, dot above-->
|
||||||
|
<!ENTITY dcaron SDATA "[dcaron]"--=small d, caron-->
|
||||||
|
<!ENTITY Dcaron SDATA "[Dcaron]"--=capital D, caron-->
|
||||||
|
<!ENTITY dstrok SDATA "[dstrok]"--=small d, stroke-->
|
||||||
|
<!ENTITY Dstrok SDATA "[Dstrok]"--=capital D, stroke-->
|
||||||
|
<!ENTITY ecaron SDATA "[ecaron]"--=small e, caron-->
|
||||||
|
<!ENTITY Ecaron SDATA "[Ecaron]"--=capital E, caron-->
|
||||||
|
<!ENTITY edot SDATA "[edot ]"--=small e, dot above-->
|
||||||
|
<!ENTITY Edot SDATA "[Edot ]"--=capital E, dot above-->
|
||||||
|
<!ENTITY emacr SDATA "[emacr ]"--=small e, macron-->
|
||||||
|
<!ENTITY Emacr SDATA "[Emacr ]"--=capital E, macron-->
|
||||||
|
<!ENTITY eogon SDATA "[eogon ]"--=small e, ogonek-->
|
||||||
|
<!ENTITY Eogon SDATA "[Eogon ]"--=capital E, ogonek-->
|
||||||
|
<!ENTITY gacute SDATA "[gacute]"--=small g, acute accent-->
|
||||||
|
<!ENTITY gbreve SDATA "[gbreve]"--=small g, breve-->
|
||||||
|
<!ENTITY Gbreve SDATA "[Gbreve]"--=capital G, breve-->
|
||||||
|
<!ENTITY Gcedil SDATA "[Gcedil]"--=capital G, cedilla-->
|
||||||
|
<!ENTITY gcirc SDATA "[gcirc ]"--=small g, circumflex accent-->
|
||||||
|
<!ENTITY Gcirc SDATA "[Gcirc ]"--=capital G, circumflex accent-->
|
||||||
|
<!ENTITY gdot SDATA "[gdot ]"--=small g, dot above-->
|
||||||
|
<!ENTITY Gdot SDATA "[Gdot ]"--=capital G, dot above-->
|
||||||
|
<!ENTITY hcirc SDATA "[hcirc ]"--=small h, circumflex accent-->
|
||||||
|
<!ENTITY Hcirc SDATA "[Hcirc ]"--=capital H, circumflex accent-->
|
||||||
|
<!ENTITY hstrok SDATA "[hstrok]"--=small h, stroke-->
|
||||||
|
<!ENTITY Hstrok SDATA "[Hstrok]"--=capital H, stroke-->
|
||||||
|
<!ENTITY Idot SDATA "[Idot ]"--=capital I, dot above-->
|
||||||
|
<!ENTITY Imacr SDATA "[Imacr ]"--=capital I, macron-->
|
||||||
|
<!ENTITY imacr SDATA "[imacr ]"--=small i, macron-->
|
||||||
|
<!ENTITY ijlig SDATA "[ijlig ]"--=small ij ligature-->
|
||||||
|
<!ENTITY IJlig SDATA "[IJlig ]"--=capital IJ ligature-->
|
||||||
|
<!ENTITY inodot SDATA "[inodot]"--=small i without dot-->
|
||||||
|
<!ENTITY iogon SDATA "[iogon ]"--=small i, ogonek-->
|
||||||
|
<!ENTITY Iogon SDATA "[Iogon ]"--=capital I, ogonek-->
|
||||||
|
<!ENTITY itilde SDATA "[itilde]"--=small i, tilde-->
|
||||||
|
<!ENTITY Itilde SDATA "[Itilde]"--=capital I, tilde-->
|
||||||
|
<!ENTITY jcirc SDATA "[jcirc ]"--=small j, circumflex accent-->
|
||||||
|
<!ENTITY Jcirc SDATA "[Jcirc ]"--=capital J, circumflex accent-->
|
||||||
|
<!ENTITY kcedil SDATA "[kcedil]"--=small k, cedilla-->
|
||||||
|
<!ENTITY Kcedil SDATA "[Kcedil]"--=capital K, cedilla-->
|
||||||
|
<!ENTITY kgreen SDATA "[kgreen]"--=small k, Greenlandic-->
|
||||||
|
<!ENTITY lacute SDATA "[lacute]"--=small l, acute accent-->
|
||||||
|
<!ENTITY Lacute SDATA "[Lacute]"--=capital L, acute accent-->
|
||||||
|
<!ENTITY lcaron SDATA "[lcaron]"--=small l, caron-->
|
||||||
|
<!ENTITY Lcaron SDATA "[Lcaron]"--=capital L, caron-->
|
||||||
|
<!ENTITY lcedil SDATA "[lcedil]"--=small l, cedilla-->
|
||||||
|
<!ENTITY Lcedil SDATA "[Lcedil]"--=capital L, cedilla-->
|
||||||
|
<!ENTITY lmidot SDATA "[lmidot]"--=small l, middle dot-->
|
||||||
|
<!ENTITY Lmidot SDATA "[Lmidot]"--=capital L, middle dot-->
|
||||||
|
<!ENTITY lstrok SDATA "[lstrok]"--=small l, stroke-->
|
||||||
|
<!ENTITY Lstrok SDATA "[Lstrok]"--=capital L, stroke-->
|
||||||
|
<!ENTITY nacute SDATA "[nacute]"--=small n, acute accent-->
|
||||||
|
<!ENTITY Nacute SDATA "[Nacute]"--=capital N, acute accent-->
|
||||||
|
<!ENTITY eng SDATA "[eng ]"--=small eng, Lapp-->
|
||||||
|
<!ENTITY ENG SDATA "[ENG ]"--=capital ENG, Lapp-->
|
||||||
|
<!ENTITY napos SDATA "[napos ]"--=small n, apostrophe-->
|
||||||
|
<!ENTITY ncaron SDATA "[ncaron]"--=small n, caron-->
|
||||||
|
<!ENTITY Ncaron SDATA "[Ncaron]"--=capital N, caron-->
|
||||||
|
<!ENTITY ncedil SDATA "[ncedil]"--=small n, cedilla-->
|
||||||
|
<!ENTITY Ncedil SDATA "[Ncedil]"--=capital N, cedilla-->
|
||||||
|
<!ENTITY odblac SDATA "[odblac]"--=small o, double acute accent-->
|
||||||
|
<!ENTITY Odblac SDATA "[Odblac]"--=capital O, double acute accent-->
|
||||||
|
<!ENTITY Omacr SDATA "[Omacr ]"--=capital O, macron-->
|
||||||
|
<!ENTITY omacr SDATA "[omacr ]"--=small o, macron-->
|
||||||
|
<!ENTITY oelig SDATA "[oelig ]"--=small oe ligature-->
|
||||||
|
<!ENTITY OElig SDATA "[OElig ]"--=capital OE ligature-->
|
||||||
|
<!ENTITY racute SDATA "[racute]"--=small r, acute accent-->
|
||||||
|
<!ENTITY Racute SDATA "[Racute]"--=capital R, acute accent-->
|
||||||
|
<!ENTITY rcaron SDATA "[rcaron]"--=small r, caron-->
|
||||||
|
<!ENTITY Rcaron SDATA "[Rcaron]"--=capital R, caron-->
|
||||||
|
<!ENTITY rcedil SDATA "[rcedil]"--=small r, cedilla-->
|
||||||
|
<!ENTITY Rcedil SDATA "[Rcedil]"--=capital R, cedilla-->
|
||||||
|
<!ENTITY sacute SDATA "[sacute]"--=small s, acute accent-->
|
||||||
|
<!ENTITY Sacute SDATA "[Sacute]"--=capital S, acute accent-->
|
||||||
|
<!ENTITY scaron SDATA "[scaron]"--=small s, caron-->
|
||||||
|
<!ENTITY Scaron SDATA "[Scaron]"--=capital S, caron-->
|
||||||
|
<!ENTITY scedil SDATA "[scedil]"--=small s, cedilla-->
|
||||||
|
<!ENTITY Scedil SDATA "[Scedil]"--=capital S, cedilla-->
|
||||||
|
<!ENTITY scirc SDATA "[scirc ]"--=small s, circumflex accent-->
|
||||||
|
<!ENTITY Scirc SDATA "[Scirc ]"--=capital S, circumflex accent-->
|
||||||
|
<!ENTITY tcaron SDATA "[tcaron]"--=small t, caron-->
|
||||||
|
<!ENTITY Tcaron SDATA "[Tcaron]"--=capital T, caron-->
|
||||||
|
<!ENTITY tcedil SDATA "[tcedil]"--=small t, cedilla-->
|
||||||
|
<!ENTITY Tcedil SDATA "[Tcedil]"--=capital T, cedilla-->
|
||||||
|
<!ENTITY tstrok SDATA "[tstrok]"--=small t, stroke-->
|
||||||
|
<!ENTITY Tstrok SDATA "[Tstrok]"--=capital T, stroke-->
|
||||||
|
<!ENTITY ubreve SDATA "[ubreve]"--=small u, breve-->
|
||||||
|
<!ENTITY Ubreve SDATA "[Ubreve]"--=capital U, breve-->
|
||||||
|
<!ENTITY udblac SDATA "[udblac]"--=small u, double acute accent-->
|
||||||
|
<!ENTITY Udblac SDATA "[Udblac]"--=capital U, double acute accent-->
|
||||||
|
<!ENTITY umacr SDATA "[umacr ]"--=small u, macron-->
|
||||||
|
<!ENTITY Umacr SDATA "[Umacr ]"--=capital U, macron-->
|
||||||
|
<!ENTITY uogon SDATA "[uogon ]"--=small u, ogonek-->
|
||||||
|
<!ENTITY Uogon SDATA "[Uogon ]"--=capital U, ogonek-->
|
||||||
|
<!ENTITY uring SDATA "[uring ]"--=small u, ring-->
|
||||||
|
<!ENTITY Uring SDATA "[Uring ]"--=capital U, ring-->
|
||||||
|
<!ENTITY utilde SDATA "[utilde]"--=small u, tilde-->
|
||||||
|
<!ENTITY Utilde SDATA "[Utilde]"--=capital U, tilde-->
|
||||||
|
<!ENTITY wcirc SDATA "[wcirc ]"--=small w, circumflex accent-->
|
||||||
|
<!ENTITY Wcirc SDATA "[Wcirc ]"--=capital W, circumflex accent-->
|
||||||
|
<!ENTITY ycirc SDATA "[ycirc ]"--=small y, circumflex accent-->
|
||||||
|
<!ENTITY Ycirc SDATA "[Ycirc ]"--=capital Y, circumflex accent-->
|
||||||
|
<!ENTITY Yuml SDATA "[Yuml ]"--=capital Y, dieresis or umlaut mark-->
|
||||||
|
<!ENTITY zacute SDATA "[zacute]"--=small z, acute accent-->
|
||||||
|
<!ENTITY Zacute SDATA "[Zacute]"--=capital Z, acute accent-->
|
||||||
|
<!ENTITY zcaron SDATA "[zcaron]"--=small z, caron-->
|
||||||
|
<!ENTITY Zcaron SDATA "[Zcaron]"--=capital Z, caron-->
|
||||||
|
<!ENTITY zdot SDATA "[zdot ]"--=small z, dot above-->
|
||||||
|
<!ENTITY Zdot SDATA "[Zdot ]"--=capital Z, dot above-->
|
91
docs/entities/ISO/ISOnum
Executable file
91
docs/entities/ISO/ISOnum
Executable file
@@ -0,0 +1,91 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOnum PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN">
|
||||||
|
%ISOnum;
|
||||||
|
-->
|
||||||
|
<!ENTITY half SDATA "[half ]"--=fraction one-half-->
|
||||||
|
<!ENTITY frac12 SDATA "[frac12]"--=fraction one-half-->
|
||||||
|
<!ENTITY frac14 SDATA "[frac14]"--=fraction one-quarter-->
|
||||||
|
<!ENTITY frac34 SDATA "[frac34]"--=fraction three-quarters-->
|
||||||
|
<!ENTITY frac18 SDATA "[frac18]"--=fraction one-eighth-->
|
||||||
|
<!ENTITY frac38 SDATA "[frac38]"--=fraction three-eighths-->
|
||||||
|
<!ENTITY frac58 SDATA "[frac58]"--=fraction five-eighths-->
|
||||||
|
<!ENTITY frac78 SDATA "[frac78]"--=fraction seven-eighths-->
|
||||||
|
|
||||||
|
<!ENTITY sup1 SDATA "[sup1 ]"--=superscript one-->
|
||||||
|
<!ENTITY sup2 SDATA "[sup2 ]"--=superscript two-->
|
||||||
|
<!ENTITY sup3 SDATA "[sup3 ]"--=superscript three-->
|
||||||
|
|
||||||
|
<!ENTITY plus SDATA "[plus ]"--=plus sign B:-- >
|
||||||
|
<!ENTITY plusmn SDATA "[plusmn]"--/pm B: =plus-or-minus sign-->
|
||||||
|
<!ENTITY lt SDATA "[lt ]"--=less-than sign R:-->
|
||||||
|
<!ENTITY equals SDATA "[equals]"--=equals sign R:-->
|
||||||
|
<!ENTITY gt SDATA "[gt ]"--=greater-than sign R:-->
|
||||||
|
<!ENTITY divide SDATA "[divide]"--/div B: =divide sign-->
|
||||||
|
<!ENTITY times SDATA "[times ]"--/times B: =multiply sign-->
|
||||||
|
|
||||||
|
<!ENTITY curren SDATA "[curren]"--=general currency sign-->
|
||||||
|
<!ENTITY pound SDATA "[pound ]"--=pound sign-->
|
||||||
|
<!ENTITY dollar SDATA "[dollar]"--=dollar sign-->
|
||||||
|
<!ENTITY cent SDATA "[cent ]"--=cent sign-->
|
||||||
|
<!ENTITY yen SDATA "[yen ]"--/yen =yen sign-->
|
||||||
|
|
||||||
|
<!ENTITY num SDATA "[num ]"--=number sign-->
|
||||||
|
<!ENTITY percnt SDATA "[percnt]"--=percent sign-->
|
||||||
|
<!ENTITY amp SDATA "[amp ]"--=ampersand-->
|
||||||
|
<!ENTITY ast SDATA "[ast ]"--/ast B: =asterisk-->
|
||||||
|
<!ENTITY commat SDATA "[commat]"--=commercial at-->
|
||||||
|
<!ENTITY lsqb SDATA "[lsqb ]"--/lbrack O: =left square bracket-->
|
||||||
|
<!ENTITY bsol SDATA "[bsol ]"--/backslash =reverse solidus-->
|
||||||
|
<!ENTITY rsqb SDATA "[rsqb ]"--/rbrack C: =right square bracket-->
|
||||||
|
<!ENTITY lcub SDATA "[lcub ]"--/lbrace O: =left curly bracket-->
|
||||||
|
<!ENTITY horbar SDATA "[horbar]"--=horizontal bar-->
|
||||||
|
<!ENTITY verbar SDATA "[verbar]"--/vert =vertical bar-->
|
||||||
|
<!ENTITY rcub SDATA "[rcub ]"--/rbrace C: =right curly bracket-->
|
||||||
|
<!ENTITY micro SDATA "[micro ]"--=micro sign-->
|
||||||
|
<!ENTITY ohm SDATA "[ohm ]"--=ohm sign-->
|
||||||
|
<!ENTITY deg SDATA "[deg ]"--=degree sign-->
|
||||||
|
<!ENTITY ordm SDATA "[ordm ]"--=ordinal indicator, masculine-->
|
||||||
|
<!ENTITY ordf SDATA "[ordf ]"--=ordinal indicator, feminine-->
|
||||||
|
<!ENTITY sect SDATA "[sect ]"--=section sign-->
|
||||||
|
<!ENTITY para SDATA "[para ]"--=pilcrow (paragraph sign)-->
|
||||||
|
<!ENTITY middot SDATA "[middot]"--/centerdot B: =middle dot-->
|
||||||
|
<!ENTITY larr SDATA "[larr ]"--/leftarrow /gets A: =leftward arrow-->
|
||||||
|
<!ENTITY rarr SDATA "[rarr ]"--/rightarrow /to A: =rightward arrow-->
|
||||||
|
<!ENTITY uarr SDATA "[uarr ]"--/uparrow A: =upward arrow-->
|
||||||
|
<!ENTITY darr SDATA "[darr ]"--/downarrow A: =downward arrow-->
|
||||||
|
<!ENTITY copy SDATA "[copy ]"--=copyright sign-->
|
||||||
|
<!ENTITY reg SDATA "[reg ]"--/circledR =registered sign-->
|
||||||
|
<!ENTITY trade SDATA "[trade ]"--=trade mark sign-->
|
||||||
|
<!ENTITY brvbar SDATA "[brvbar]"--=broken (vertical) bar-->
|
||||||
|
<!ENTITY not SDATA "[not ]"--/neg /lnot =not sign-->
|
||||||
|
<!ENTITY sung SDATA "[sung ]"--=music note (sung text sign)-->
|
||||||
|
|
||||||
|
<!ENTITY excl SDATA "[excl ]"--=exclamation mark-->
|
||||||
|
<!ENTITY iexcl SDATA "[iexcl ]"--=inverted exclamation mark-->
|
||||||
|
<!ENTITY quot SDATA "[quot ]"--=quotation mark-->
|
||||||
|
<!ENTITY apos SDATA "[apos ]"--=apostrophe-->
|
||||||
|
<!ENTITY lpar SDATA "[lpar ]"--O: =left parenthesis-->
|
||||||
|
<!ENTITY rpar SDATA "[rpar ]"--C: =right parenthesis-->
|
||||||
|
<!ENTITY comma SDATA "[comma ]"--P: =comma-->
|
||||||
|
<!ENTITY lowbar SDATA "[lowbar]"--=low line-->
|
||||||
|
<!ENTITY hyphen SDATA "[hyphen]"--=hyphen-->
|
||||||
|
<!ENTITY period SDATA "[period]"--=full stop, period-->
|
||||||
|
<!ENTITY sol SDATA "[sol ]"--=solidus-->
|
||||||
|
<!ENTITY colon SDATA "[colon ]"--/colon P:-->
|
||||||
|
<!ENTITY semi SDATA "[semi ]"--=semicolon P:-->
|
||||||
|
<!ENTITY quest SDATA "[quest ]"--=question mark-->
|
||||||
|
<!ENTITY iquest SDATA "[iquest]"--=inverted question mark-->
|
||||||
|
<!ENTITY laquo SDATA "[laquo ]"--=angle quotation mark, left-->
|
||||||
|
<!ENTITY raquo SDATA "[raquo ]"--=angle quotation mark, right-->
|
||||||
|
<!ENTITY lsquo SDATA "[lsquo ]"--=single quotation mark, left-->
|
||||||
|
<!ENTITY rsquo SDATA "[rsquo ]"--=single quotation mark, right-->
|
||||||
|
<!ENTITY ldquo SDATA "[ldquo ]"--=double quotation mark, left-->
|
||||||
|
<!ENTITY rdquo SDATA "[rdquo ]"--=double quotation mark, right-->
|
||||||
|
<!ENTITY nbsp SDATA "[nbsp ]"--=no break (required) space-->
|
||||||
|
<!ENTITY shy SDATA "[shy ]"--=soft hyphen-->
|
100
docs/entities/ISO/ISOpub
Executable file
100
docs/entities/ISO/ISOpub
Executable file
@@ -0,0 +1,100 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOpub PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES Publishing//EN">
|
||||||
|
%ISOpub;
|
||||||
|
-->
|
||||||
|
<!ENTITY emsp SDATA "[emsp ]"--=em space-->
|
||||||
|
<!ENTITY ensp SDATA "[ensp ]"--=en space (1/2-em)-->
|
||||||
|
<!ENTITY emsp13 SDATA "[emsp3 ]"--=1/3-em space-->
|
||||||
|
<!ENTITY emsp14 SDATA "[emsp4 ]"--=1/4-em space-->
|
||||||
|
<!ENTITY numsp SDATA "[numsp ]"--=digit space (width of a number)-->
|
||||||
|
<!ENTITY puncsp SDATA "[puncsp]"--=punctuation space (width of comma)-->
|
||||||
|
<!ENTITY thinsp SDATA "[thinsp]"--=thin space (1/6-em)-->
|
||||||
|
<!ENTITY hairsp SDATA "[hairsp]"--=hair space-->
|
||||||
|
<!ENTITY mdash SDATA "[mdash ]"--=em dash-->
|
||||||
|
<!ENTITY ndash SDATA "[ndash ]"--=en dash-->
|
||||||
|
<!ENTITY dash SDATA "[dash ]"--=hyphen (true graphic)-->
|
||||||
|
<!ENTITY blank SDATA "[blank ]"--=significant blank symbol-->
|
||||||
|
<!ENTITY hellip SDATA "[hellip]"--=ellipsis (horizontal)-->
|
||||||
|
<!ENTITY nldr SDATA "[nldr ]"--=double baseline dot (en leader)-->
|
||||||
|
<!ENTITY frac13 SDATA "[frac13]"--=fraction one-third-->
|
||||||
|
<!ENTITY frac23 SDATA "[frac23]"--=fraction two-thirds-->
|
||||||
|
<!ENTITY frac15 SDATA "[frac15]"--=fraction one-fifth-->
|
||||||
|
<!ENTITY frac25 SDATA "[frac25]"--=fraction two-fifths-->
|
||||||
|
<!ENTITY frac35 SDATA "[frac35]"--=fraction three-fifths-->
|
||||||
|
<!ENTITY frac45 SDATA "[frac45]"--=fraction four-fifths-->
|
||||||
|
<!ENTITY frac16 SDATA "[frac16]"--=fraction one-sixth-->
|
||||||
|
<!ENTITY frac56 SDATA "[frac56]"--=fraction five-sixths-->
|
||||||
|
<!ENTITY incare SDATA "[incare]"--=in-care-of symbol-->
|
||||||
|
<!ENTITY block SDATA "[block ]"--=full block-->
|
||||||
|
<!ENTITY uhblk SDATA "[uhblk ]"--=upper half block-->
|
||||||
|
<!ENTITY lhblk SDATA "[lhblk ]"--=lower half block-->
|
||||||
|
<!ENTITY blk14 SDATA "[blk14 ]"--=25% shaded block-->
|
||||||
|
<!ENTITY blk12 SDATA "[blk12 ]"--=50% shaded block-->
|
||||||
|
<!ENTITY blk34 SDATA "[blk34 ]"--=75% shaded block-->
|
||||||
|
<!ENTITY marker SDATA "[marker]"--=histogram marker-->
|
||||||
|
<!ENTITY cir SDATA "[cir ]"--/circ B: =circle, open-->
|
||||||
|
<!ENTITY squ SDATA "[squ ]"--=square, open-->
|
||||||
|
<!ENTITY rect SDATA "[rect ]"--=rectangle, open-->
|
||||||
|
<!ENTITY utri SDATA "[utri ]"--/triangle =up triangle, open-->
|
||||||
|
<!ENTITY dtri SDATA "[dtri ]"--/triangledown =down triangle, open-->
|
||||||
|
<!ENTITY star SDATA "[star ]"--=star, open-->
|
||||||
|
<!ENTITY bull SDATA "[bull ]"--/bullet B: =round bullet, filled-->
|
||||||
|
<!ENTITY squf SDATA "[squf ]"--/blacksquare =sq bullet, filled-->
|
||||||
|
<!ENTITY utrif SDATA "[utrif ]"--/blacktriangle =up tri, filled-->
|
||||||
|
<!ENTITY dtrif SDATA "[dtrif ]"--/blacktriangledown =dn tri, filled-->
|
||||||
|
<!ENTITY ltrif SDATA "[ltrif ]"--/blacktriangleleft R: =l tri, filled-->
|
||||||
|
<!ENTITY rtrif SDATA "[rtrif ]"--/blacktriangleright R: =r tri, filled-->
|
||||||
|
<!ENTITY clubs SDATA "[clubs ]"--/clubsuit =club suit symbol-->
|
||||||
|
<!ENTITY diams SDATA "[diams ]"--/diamondsuit =diamond suit symbol-->
|
||||||
|
<!ENTITY hearts SDATA "[hearts]"--/heartsuit =heart suit symbol-->
|
||||||
|
<!ENTITY spades SDATA "[spades]"--/spadesuit =spades suit symbol-->
|
||||||
|
<!ENTITY malt SDATA "[malt ]"--/maltese =maltese cross-->
|
||||||
|
<!ENTITY dagger SDATA "[dagger]"--/dagger B: =dagger-->
|
||||||
|
<!ENTITY Dagger SDATA "[Dagger]"--/ddagger B: =double dagger-->
|
||||||
|
<!ENTITY check SDATA "[check ]"--/checkmark =tick, check mark-->
|
||||||
|
<!ENTITY cross SDATA "[ballot]"--=ballot cross-->
|
||||||
|
<!ENTITY sharp SDATA "[sharp ]"--/sharp =musical sharp-->
|
||||||
|
<!ENTITY flat SDATA "[flat ]"--/flat =musical flat-->
|
||||||
|
<!ENTITY male SDATA "[male ]"--=male symbol-->
|
||||||
|
<!ENTITY female SDATA "[female]"--=female symbol-->
|
||||||
|
<!ENTITY phone SDATA "[phone ]"--=telephone symbol-->
|
||||||
|
<!ENTITY telrec SDATA "[telrec]"--=telephone recorder symbol-->
|
||||||
|
<!ENTITY copysr SDATA "[copysr]"--=sound recording copyright sign-->
|
||||||
|
<!ENTITY caret SDATA "[caret ]"--=caret (insertion mark)-->
|
||||||
|
<!ENTITY lsquor SDATA "[lsquor]"--=rising single quote, left (low)-->
|
||||||
|
<!ENTITY ldquor SDATA "[ldquor]"--=rising dbl quote, left (low)-->
|
||||||
|
|
||||||
|
<!ENTITY fflig SDATA "[fflig ]"--small ff ligature-->
|
||||||
|
<!ENTITY filig SDATA "[filig ]"--small fi ligature-->
|
||||||
|
<!ENTITY fjlig SDATA "[fjlig ]"--small fj ligature-->
|
||||||
|
<!ENTITY ffilig SDATA "[ffilig]"--small ffi ligature-->
|
||||||
|
<!ENTITY ffllig SDATA "[ffllig]"--small ffl ligature-->
|
||||||
|
<!ENTITY fllig SDATA "[fllig ]"--small fl ligature-->
|
||||||
|
|
||||||
|
<!ENTITY mldr SDATA "[mldr ]"--em leader-->
|
||||||
|
<!ENTITY rdquor SDATA "[rdquor]"--rising dbl quote, right (high)-->
|
||||||
|
<!ENTITY rsquor SDATA "[rsquor]"--rising single quote, right (high)-->
|
||||||
|
<!ENTITY vellip SDATA "[vellip]"--vertical ellipsis-->
|
||||||
|
|
||||||
|
<!ENTITY hybull SDATA "[hybull]"--rectangle, filled (hyphen bullet)-->
|
||||||
|
<!ENTITY loz SDATA "[loz ]"--/lozenge - lozenge or total mark-->
|
||||||
|
<!ENTITY lozf SDATA "[lozf ]"--/blacklozenge - lozenge, filled-->
|
||||||
|
<!ENTITY ltri SDATA "[ltri ]"--/triangleleft B: l triangle, open-->
|
||||||
|
<!ENTITY rtri SDATA "[rtri ]"--/triangleright B: r triangle, open-->
|
||||||
|
<!ENTITY starf SDATA "[starf ]"--/bigstar - star, filled-->
|
||||||
|
|
||||||
|
<!ENTITY natur SDATA "[natur ]"--/natural - music natural-->
|
||||||
|
<!ENTITY rx SDATA "[rx ]"--pharmaceutical prescription (Rx)-->
|
||||||
|
<!ENTITY sext SDATA "[sext ]"--sextile (6-pointed star)-->
|
||||||
|
|
||||||
|
<!ENTITY target SDATA "[target]"--register mark or target-->
|
||||||
|
<!ENTITY dlcrop SDATA "[dlcrop]"--downward left crop mark -->
|
||||||
|
<!ENTITY drcrop SDATA "[drcrop]"--downward right crop mark -->
|
||||||
|
<!ENTITY ulcrop SDATA "[ulcrop]"--upward left crop mark -->
|
||||||
|
<!ENTITY urcrop SDATA "[urcrop]"--upward right crop mark -->
|
73
docs/entities/ISO/ISOtech
Executable file
73
docs/entities/ISO/ISOtech
Executable file
@@ -0,0 +1,73 @@
|
|||||||
|
<!-- (C) International Organization for Standardization 1986
|
||||||
|
Permission to copy in any form is granted for use with
|
||||||
|
conforming SGML systems and applications as defined in
|
||||||
|
ISO 8879, provided this notice is included in all copies.
|
||||||
|
-->
|
||||||
|
<!-- Character entity set. Typical invocation:
|
||||||
|
<!ENTITY % ISOtech PUBLIC
|
||||||
|
"ISO 8879:1986//ENTITIES General Technical//EN">
|
||||||
|
%ISOtech;
|
||||||
|
-->
|
||||||
|
<!ENTITY aleph SDATA "[aleph ]"--/aleph =aleph, Hebrew-->
|
||||||
|
<!ENTITY and SDATA "[and ]"--/wedge /land B: =logical and-->
|
||||||
|
<!ENTITY ang90 SDATA "[ang90 ]"--=right (90 degree) angle-->
|
||||||
|
<!ENTITY angsph SDATA "[angsph]"--/sphericalangle =angle-spherical-->
|
||||||
|
<!ENTITY ap SDATA "[ap ]"--/approx R: =approximate-->
|
||||||
|
<!ENTITY becaus SDATA "[becaus]"--/because R: =because-->
|
||||||
|
<!ENTITY bottom SDATA "[bottom]"--/bot B: =perpendicular-->
|
||||||
|
<!ENTITY cap SDATA "[cap ]"--/cap B: =intersection-->
|
||||||
|
<!ENTITY cong SDATA "[cong ]"--/cong R: =congruent with-->
|
||||||
|
<!ENTITY conint SDATA "[conint]"--/oint L: =contour integral operator-->
|
||||||
|
<!ENTITY cup SDATA "[cup ]"--/cup B: =union or logical sum-->
|
||||||
|
<!ENTITY equiv SDATA "[equiv ]"--/equiv R: =identical with-->
|
||||||
|
<!ENTITY exist SDATA "[exist ]"--/exists =at least one exists-->
|
||||||
|
<!ENTITY forall SDATA "[forall]"--/forall =for all-->
|
||||||
|
<!ENTITY fnof SDATA "[fnof ]"--=function of (italic small f)-->
|
||||||
|
<!ENTITY ge SDATA "[ge ]"--/geq /ge R: =greater-than-or-equal-->
|
||||||
|
<!ENTITY iff SDATA "[iff ]"--/iff =if and only if-->
|
||||||
|
<!ENTITY infin SDATA "[infin ]"--/infty =infinity-->
|
||||||
|
<!ENTITY int SDATA "[int ]"--/int L: =integral operator-->
|
||||||
|
<!ENTITY isin SDATA "[isin ]"--/in R: =set membership-->
|
||||||
|
<!ENTITY lang SDATA "[lang ]"--/langle O: =left angle bracket-->
|
||||||
|
<!ENTITY lArr SDATA "[lArr ]"--/Leftarrow A: =is implied by-->
|
||||||
|
<!ENTITY le SDATA "[le ]"--/leq /le R: =less-than-or-equal-->
|
||||||
|
<!ENTITY minus SDATA "[minus ]"--B: =minus sign-->
|
||||||
|
<!ENTITY mnplus SDATA "[mnplus]"--/mp B: =minus-or-plus sign-->
|
||||||
|
<!ENTITY nabla SDATA "[nabla ]"--/nabla =del, Hamilton operator-->
|
||||||
|
<!ENTITY ne SDATA "[ne ]"--/ne /neq R: =not equal-->
|
||||||
|
<!ENTITY ni SDATA "[ni ]"--/ni /owns R: =contains-->
|
||||||
|
<!ENTITY or SDATA "[or ]"--/vee /lor B: =logical or-->
|
||||||
|
<!ENTITY par SDATA "[par ]"--/parallel R: =parallel-->
|
||||||
|
<!ENTITY part SDATA "[part ]"--/partial =partial differential-->
|
||||||
|
<!ENTITY permil SDATA "[permil]"--=per thousand-->
|
||||||
|
<!ENTITY perp SDATA "[perp ]"--/perp R: =perpendicular-->
|
||||||
|
<!ENTITY prime SDATA "[prime ]"--/prime =prime or minute-->
|
||||||
|
<!ENTITY Prime SDATA "[Prime ]"--=double prime or second-->
|
||||||
|
<!ENTITY prop SDATA "[prop ]"--/propto R: =is proportional to-->
|
||||||
|
<!ENTITY radic SDATA "[radic ]"--/surd =radical-->
|
||||||
|
<!ENTITY rang SDATA "[rang ]"--/rangle C: =right angle bracket-->
|
||||||
|
<!ENTITY rArr SDATA "[rArr ]"--/Rightarrow A: =implies-->
|
||||||
|
<!ENTITY sim SDATA "[sim ]"--/sim R: =similar-->
|
||||||
|
<!ENTITY sime SDATA "[sime ]"--/simeq R: =similar, equals-->
|
||||||
|
<!ENTITY square SDATA "[square]"--/square B: =square-->
|
||||||
|
<!ENTITY sub SDATA "[sub ]"--/subset R: =subset or is implied by-->
|
||||||
|
<!ENTITY sube SDATA "[sube ]"--/subseteq R: =subset, equals-->
|
||||||
|
<!ENTITY sup SDATA "[sup ]"--/supset R: =superset or implies-->
|
||||||
|
<!ENTITY supe SDATA "[supe ]"--/supseteq R: =superset, equals-->
|
||||||
|
<!ENTITY there4 SDATA "[there4]"--/therefore R: =therefore-->
|
||||||
|
<!ENTITY Verbar SDATA "[Verbar]"--/Vert =dbl vertical bar-->
|
||||||
|
|
||||||
|
<!ENTITY angst SDATA "[angst ]"--Angstrom =capital A, ring-->
|
||||||
|
<!ENTITY bernou SDATA "[bernou]"--Bernoulli function (script capital B)-->
|
||||||
|
<!ENTITY compfn SDATA "[compfn]"--B: composite function (small circle)-->
|
||||||
|
<!ENTITY Dot SDATA "[Dot ]"--=dieresis or umlaut mark-->
|
||||||
|
<!ENTITY DotDot SDATA "[DotDot]"--four dots above-->
|
||||||
|
<!ENTITY hamilt SDATA "[hamilt]"--Hamiltonian (script capital H)-->
|
||||||
|
<!ENTITY lagran SDATA "[lagran]"--Lagrangian (script capital L)-->
|
||||||
|
<!ENTITY lowast SDATA "[lowast]"--low asterisk-->
|
||||||
|
<!ENTITY notin SDATA "[notin ]"--N: negated set membership-->
|
||||||
|
<!ENTITY order SDATA "[order ]"--order of (script small o)-->
|
||||||
|
<!ENTITY phmmat SDATA "[phmmat]"--physics M-matrix (script capital M)-->
|
||||||
|
<!ENTITY tdot SDATA "[tdot ]"--three dots above-->
|
||||||
|
<!ENTITY tprime SDATA "[tprime]"--triple prime-->
|
||||||
|
<!ENTITY wedgeq SDATA "[wedgeq]"--R: corresponds to (wedge, equals)-->
|
19
docs/entities/ISO/catalog
Executable file
19
docs/entities/ISO/catalog
Executable file
@@ -0,0 +1,19 @@
|
|||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Diacritical Marks//EN" "ISOdia"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN" "ISOnum"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Publishing//EN" "ISOpub"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES General Technical//EN" "ISOtech"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Added Latin 1//EN" "ISOlat1"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Added Latin 2//EN" "ISOlat2"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Greek Letters//EN" "ISOgrk1"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Monotoniko Greek//EN" "ISOgrk2"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Greek Symbols//EN" "ISOgrk3"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Alternative Greek Symbols//EN" "ISOgrk4"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Added Math Symbols: Arrow Relations//EN" "ISOamsa"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Added Math Symbols: Binary Operators//EN" "ISOamsb"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Added Math Symbols: Delimiters//EN" "ISOamsc"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Added Math Symbols: Negated Relations//EN" "ISOamsn"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Added Math Symbols: Ordinary//EN" "ISOamso"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Added Math Symbols: Relations//EN" "ISOamsr"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Box and Line Drawing//EN" "ISObox"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Russian Cyrillic//EN" "ISOcyr1"
|
||||||
|
PUBLIC "ISO 8879:1986//ENTITIES Non-Russian Cyrillic//EN" "ISOcyr2"
|
1
docs/entities/version.ent.in
Executable file
1
docs/entities/version.ent.in
Executable file
@@ -0,0 +1 @@
|
|||||||
|
<!ENTITY build-date "@BUILD_DATE@">
|
@@ -1,6 +1,6 @@
|
|||||||
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
|
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
|
||||||
"./dtds/dbxml-4.1.2/docbookx.dtd" [
|
"./dtds/dbxml-4.1.2/docbookx.dtd" [
|
||||||
<!ENTITY % build.version SYSTEM "version.ent">
|
<!ENTITY % build.version SYSTEM "entities/version.ent">
|
||||||
%build.version;
|
%build.version;
|
||||||
|
|
||||||
<!ENTITY bookinfo SYSTEM "@LANG@/bookinfo.xml">
|
<!ENTITY bookinfo SYSTEM "@LANG@/bookinfo.xml">
|
||||||
|
54
docs/scripts/generate_web.php
Executable file
54
docs/scripts/generate_web.php
Executable file
@@ -0,0 +1,54 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
+----------------------------------------------------------------------+
|
||||||
|
| PHP Version 5 |
|
||||||
|
+----------------------------------------------------------------------+
|
||||||
|
| Copyright (c) 1997-2004 The PHP Group |
|
||||||
|
+----------------------------------------------------------------------+
|
||||||
|
| This source file is subject to version 3.0 of the PHP license, |
|
||||||
|
| that is bundled with this package in the file LICENSE, and is |
|
||||||
|
| available through the world-wide-web at the following url: |
|
||||||
|
| http://www.php.net/license/3_0.txt. |
|
||||||
|
| If you did not receive a copy of the PHP license and are unable to |
|
||||||
|
| obtain it through the world-wide-web, please send a note to |
|
||||||
|
| license@php.net so we can mail you a copy immediately. |
|
||||||
|
+----------------------------------------------------------------------+
|
||||||
|
| Authors: Nuno Lopes <nlopess@php.net> |
|
||||||
|
+----------------------------------------------------------------------+
|
||||||
|
| Small hack to generate the manual for the web |
|
||||||
|
+----------------------------------------------------------------------+
|
||||||
|
*/
|
||||||
|
|
||||||
|
set_time_limit(0);
|
||||||
|
|
||||||
|
$search = array(
|
||||||
|
'<BODY',
|
||||||
|
'</BODY'
|
||||||
|
);
|
||||||
|
|
||||||
|
$replace = array(
|
||||||
|
'<?php if(!isset($_GET["print"]) && !strstr($_SERVER["REQUEST_URI"],"/print/")) { commonHeader(); } ?><BODY',
|
||||||
|
'<?php if(!isset($_GET["print"]) && !strstr($_SERVER["REQUEST_URI"],"/print/")) { commonFooter(); } ?></BODY'
|
||||||
|
);
|
||||||
|
|
||||||
|
if ($dir = opendir('phpweb')) {
|
||||||
|
echo "Processing the manual...\n";
|
||||||
|
|
||||||
|
while (false !== ($file = readdir($dir))) {
|
||||||
|
if(substr($file, -4) == '.php') {
|
||||||
|
|
||||||
|
$text = file_get_contents('phpweb/' . $file);
|
||||||
|
$text = str_replace($search, $replace, $text);
|
||||||
|
|
||||||
|
$handler = fopen('phpweb/' . $file, 'w+');
|
||||||
|
fputs($handler, $text);
|
||||||
|
fclose($handler);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
closedir($dir);
|
||||||
|
} else {
|
||||||
|
die('Could not open the specified dir!');
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
Reference in New Issue
Block a user