NOTATION
NOTATION
, employée dans une Dtd pour définir un attribut, permet de spécifier que sa valeur est un nom de notation qui a déjà été déclarée.
Il y a au plus un attribut de type notation par élément.
<-- Definition de notations -->
<!NOTATION ImageGif SYSTEM "file://programs/gif.exe">
<!NOTATION ImagePng SYSTEM "file://programs/png.exe">
<-- Definition d'un élément a un attribut -->
<!ELEMENT MonElement - - CDATA>
<!ATTLIST MonElement
MonAttribut NOTATION(ImageGif|ImagePng) #REQUIRED>
>
<-- Usage de l'élément a un attribut -->
<MonElement MonAttribut="ImageGif">Gif89a...</MonElement>