@@ -9,56 +9,76 @@ This document lists all TEI tags supported by the istex-view viewer.
99- ** Bibref** : Bibliographic references sidebar section
1010- ** Authors** : Authors sidebar section
1111- ** Source** : Source sidebar section
12- - ** \* ** : Supported in all applicable sections
12+ - ** Keywords** : Keywords sidebar section
13+ - ** Figure** : Inside figure elements
14+ - ** FloatingText** : Inside floating text elements
1315
1416## All Supported Tags
1517
1618| Tag | Description | Sections | Component |
1719| --- | ----------- | -------- | --------- |
18- | ` addName ` | Additional name | Authors, Bibref | [ PersNamePart.tsx] ( ../packages/react-tei/src/SidePanel/authors/PersNamePart.tsx ) |
19- | ` affiliation ` | Author affiliation | Authors | Nothing |
20- | ` author ` | Author element | Bibref | NoOp |
20+ | ` addName ` | Additional name | Authors, Bibref | [ PersNamePart.tsx] ( ../packages/react-tei/src/authors/tags/PersNamePart.tsx ) |
21+ | ` address ` | Physical address | Authors | [ Address.tsx] ( ../packages/react-tei/src/authors/tags/Address.tsx ) |
22+ | ` addrLine ` | Address line | Authors | NoOp |
23+ | ` affiliation ` | Author affiliation | Authors | [ Affiliation.tsx] ( ../packages/react-tei/src/authors/tags/Affiliation.tsx ) |
24+ | ` author ` | Author element | Authors, Bibref | [ Author.tsx] ( ../packages/react-tei/src/authors/tags/Author.tsx ) / NoOp |
2125| ` bibl ` | Bibliographic reference | Body, Bibref | [ Bibl.tsx] ( ../packages/react-tei/src/SidePanel/bibliographicReferences/Bibl.tsx ) |
22- | ` biblScope ` | Bibliographic scope (volume, pages, etc.) | Body, Bibref | NoOp |
26+ | ` biblScope ` | Bibliographic scope (volume, pages, etc.) | Body, Bibref, Source | NoOp |
2327| ` biblStruct ` | Structured bibliographic reference | Bibref | [ BiblStruct.tsx] ( ../packages/react-tei/src/SidePanel/bibliographicReferences/BiblStruct.tsx ) |
24- | ` body ` | Document body container | Body | NoOp |
25- | ` date ` | Date element | Body, Footnotes, Bibref | [ DateTag.tsx] ( ../packages/react-tei/src/tags/DateTag.tsx ) |
28+ | ` bloc ` | Address block | Authors | NoOp |
29+ | ` body ` | Document body container | Body, FloatingText | NoOp |
30+ | ` city ` | City name | Authors | NoOp |
31+ | ` country ` | Country name | Authors | NoOp |
32+ | ` date ` | Date element | Body, Footnotes, Bibref, Source | [ DateTag.tsx] ( ../packages/react-tei/src/tags/DateTag.tsx ) |
33+ | ` district ` | District name | Authors | NoOp |
2634| ` div ` | Division/section | Body | [ Div.tsx] ( ../packages/react-tei/src/tags/Div.tsx ) |
2735| ` email ` | Email address | Authors | Nothing |
2836| ` emph ` | Emphasized text | Body, Footnotes, Bibref | [ Emph.tsx] ( ../packages/react-tei/src/tags/Emph.tsx ) |
37+ | ` figDesc ` | Figure description | Figure | [ FigDesc.tsx] ( ../packages/react-tei/src/tags/figure/FigDesc.tsx ) |
2938| ` figure ` | Figure with graphics or tables | Body | [ Figure.tsx] ( ../packages/react-tei/src/tags/Figure.tsx ) |
3039| ` floatingText ` | Floating text element | Body | [ FloatingText.tsx] ( ../packages/react-tei/src/tags/floatingText/FloatingText.tsx ) |
31- | ` forename ` | First name | Authors, Bibref | [ PersNamePart.tsx] ( ../packages/react-tei/src/SidePanel/ authors/PersNamePart.tsx ) |
40+ | ` forename ` | First name | Authors, Bibref | [ PersNamePart.tsx] ( ../packages/react-tei/src/authors/tags/ PersNamePart.tsx ) / NoOp |
3241| ` formula ` | Mathematical formula with notation or rendering | Body, Footnotes, Bibref | [ Formula.tsx] ( ../packages/react-tei/src/tags/Formula.tsx ) |
33- | ` genName ` | Generational name (Jr., Sr., etc.) | Authors, Bibref | [ PersNamePart.tsx] ( ../packages/react-tei/src/SidePanel/ authors/PersNamePart.tsx ) |
42+ | ` genName ` | Generational name (Jr., Sr., etc.) | Authors, Bibref | [ PersNamePart.tsx] ( ../packages/react-tei/src/authors/tags/ PersNamePart.tsx ) / NoOp |
3443| ` graphic ` | Graphic element (used in formulas) | Body, Footnotes, Bibref | [ Graphic.tsx] ( ../packages/react-tei/src/tags/Graphic.tsx ) |
35- | ` head ` | Heading element | Body | [ Head.tsx] ( ../packages/react-tei/src/tags/Head.tsx ) |
36- | ` hi ` | Highlighted text (various renditions) | Body, Footnotes, Bibref | [ Hi.tsx] ( ../packages/react-tei/src/tags/Hi.tsx ) |
37- | ` highlight ` | Enrichment highlight | Body | [ Highlight.tsx] ( ../packages/react-tei/src/tags/Highlight.tsx ) |
38- | ` highlightedText ` | Text highlighted by enrichment | Body | NoOp |
39- | ` idno ` | Identifier number | Source | [ SourceIdno.tsx] ( ../packages/react-tei/src/SidePanel/source/SourceIdno.tsx ) |
44+ | ` head ` | Heading element | Body, Figure, FloatingText, Keywords | [ Head.tsx] ( ../packages/react-tei/src/tags/Head.tsx ) / [ FloatingTextHead.tsx] ( ../packages/react-tei/src/tags/floatingText/FloatingTextHead.tsx ) / Nothing |
45+ | ` hi ` | Highlighted text (various renditions) | Body, Footnotes, Bibref, Figure, Keywords | [ Hi.tsx] ( ../packages/react-tei/src/tags/Hi.tsx ) |
46+ | ` highlight ` | Enrichment highlight | Body, Figure | [ Highlight.tsx] ( ../packages/react-tei/src/tags/Highlight.tsx ) |
47+ | ` highlightedText ` | Text highlighted by enrichment | Body, Figure | NoOp |
48+ | ` idno ` | Identifier number | Authors, Source | [ SourceIdno.tsx] ( ../packages/react-tei/src/SidePanel/source/tags/SourceIdno.tsx ) / Nothing |
49+ | ` imprint ` | Imprint information | Source | [ SourceImprint.tsx] ( ../packages/react-tei/src/SidePanel/source/tags/SourceImprint.tsx ) |
50+ | ` item ` | List item | Body, Keywords | NoOp |
51+ | ` keywords ` | Keywords section | Keywords | [ Keywords.tsx] ( ../packages/react-tei/src/SidePanel/keywords/Keywords.tsx ) |
4052| ` l ` | Line (in verse) | Footnotes | [ L.tsx] ( ../packages/react-tei/src/tags/L.tsx ) |
53+ | ` label ` | Label element | Figure | [ Head.tsx] ( ../packages/react-tei/src/tags/figure/Head.tsx ) |
4154| ` lg ` | Line group (verse stanza) | Footnotes | [ Lg.tsx] ( ../packages/react-tei/src/tags/Lg.tsx ) |
42- | ` list ` | List element (ordered/unordered) | Body | [ List.tsx] ( ../packages/react-tei/src/tags/list/List.tsx ) |
55+ | ` list ` | List element (ordered/unordered) | Body, Keywords | [ List.tsx] ( ../packages/react-tei/src/tags/list/List.tsx ) / NoOp |
4356| ` math ` | MathML root element | Body, Footnotes, Bibref | [ MathMLTag.tsx] ( ../packages/react-tei/src/tags/formula/mathml/MathMLTag.tsx ) |
4457| MathML tags | All MathML tags (203 total) | Body, Footnotes, Bibref | [ MathMLTag.tsx] ( ../packages/react-tei/src/tags/formula/mathml/MathMLTag.tsx ) |
45- | ` name ` | Generic name element | Authors, Bibref | [ Name.tsx] ( ../packages/react-tei/src/SidePanel/ authors/Name.tsx ) |
46- | ` nameLink ` | Name linking particle (de, von, etc.) | Authors, Bibref | [ PersNamePart.tsx] ( ../packages/react-tei/src/SidePanel/ authors/PersNamePart.tsx ) |
47- | ` note ` | Note/footnote element | Footnotes, Bibref | [ Note.tsx] ( ../packages/react-tei/src/SidePanel/footNotes/Note.tsx ) |
48- | ` orgName ` | Organization name | Authors, Bibref | [ PersNamePart.tsx] ( ../packages/react-tei/src/SidePanel/ authors/PersNamePart.tsx ) |
58+ | ` name ` | Generic name element | Authors, Bibref | [ Name.tsx] ( ../packages/react-tei/src/authors/tags/ Name.tsx ) / NoOp |
59+ | ` nameLink ` | Name linking particle (de, von, etc.) | Authors, Bibref | [ PersNamePart.tsx] ( ../packages/react-tei/src/authors/tags/ PersNamePart.tsx ) / NoOp |
60+ | ` note ` | Note/footnote element | Footnotes, Bibref | [ Note.tsx] ( ../packages/react-tei/src/SidePanel/footNotes/Note.tsx ) / NoOp |
61+ | ` orgName ` | Organization name | Authors, Bibref | [ PersNamePart.tsx] ( ../packages/react-tei/src/authors/tags/ PersNamePart.tsx ) / NoOp |
4962| ` p ` | Paragraph | Body, Footnotes | [ P.tsx] ( ../packages/react-tei/src/tags/P.tsx ) |
50- | ` persName ` | Personal name | Authors, Bibref | [ PersName.tsx] ( ../packages/react-tei/src/SidePanel/authors/PersName.tsx ) |
63+ | ` persName ` | Personal name | Authors, Bibref | [ PersName.tsx] ( ../packages/react-tei/src/SidePanel/bibliographicReferences/PersName.tsx ) / NoOp |
64+ | ` postBox ` | Post office box | Authors | NoOp |
65+ | ` postCode ` | Postal code | Authors | NoOp |
5166| ` pubPlace ` | Publication place | Bibref | NoOp |
52- | ` publisher ` | Publisher | Bibref | NoOp |
67+ | ` publisher ` | Publisher | Bibref, Source | NoOp |
5368| ` quote ` | Quoted text block | Body, Footnotes, Bibref | [ Quote.tsx] ( ../packages/react-tei/src/tags/Quote.tsx ) |
5469| ` ref ` | Reference (footnote, bibliographic, URL, table) | Body, Footnotes, Bibref | [ Ref.tsx] ( ../packages/react-tei/src/tags/Ref.tsx ) |
55- | ` roleName ` | Role name | Authors, Bibref | [ PersNamePart.tsx] ( ../packages/react-tei/src/SidePanel/authors/PersNamePart.tsx ) |
70+ | ` region ` | Region name | Authors | NoOp |
71+ | ` roleName ` | Role name | Authors, Bibref | Nothing / NoOp |
5672| ` s ` | Sentence | Body | NoOp |
5773| ` sc ` | Small capitals | Body | NoOp |
5874| ` series ` | Series information | Bibref | NoOp |
59- | ` surname ` | Last name | Authors, Bibref | [ PersNamePart.tsx] ( ../packages/react-tei/src/SidePanel/authors/PersNamePart.tsx ) |
75+ | ` settlement ` | Settlement name | Authors | NoOp |
76+ | ` state ` | State name | Authors | NoOp |
77+ | ` street ` | Street name | Authors | NoOp |
78+ | ` surname ` | Last name | Authors, Bibref | [ PersNamePart.tsx] ( ../packages/react-tei/src/authors/tags/PersNamePart.tsx ) / NoOp |
6079| ` table ` | Table element | Body | [ Table.tsx] ( ../packages/react-tei/src/tags/Table.tsx ) |
61- | ` title ` | Title element | Body, Bibref | [ Title.tsx] ( ../packages/react-tei/src/tags/Title.tsx ) |
80+ | ` term ` | Keyword term | Keywords | [ Term.tsx] ( ../packages/react-tei/src/SidePanel/keywords/Term.tsx ) |
81+ | ` title ` | Title element | Body, Bibref | [ Title.tsx] ( ../packages/react-tei/src/tags/Title.tsx ) / NoOp |
6282
6383See [ mathMLTagNames.ts] ( ../packages/react-tei/src/tags/formula/mathml/mathMLTagNames.ts ) for the complete list of 203 supported MathML tags.
6484
0 commit comments