diff --git "a/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/MAP-Session.pdf" "b/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/MAP-Session.pdf" new file mode 100644 index 0000000..bb6e820 Binary files /dev/null and "b/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/MAP-Session.pdf" differ diff --git "a/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/Recursos/ERModel-PChen.pdf" "b/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/Recursos/ERModel-PChen.pdf" new file mode 100644 index 0000000..146cc2e Binary files /dev/null and "b/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/Recursos/ERModel-PChen.pdf" differ diff --git "a/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/Recursos/FRBR.pdf" "b/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/Recursos/FRBR.pdf" new file mode 100644 index 0000000..1e2128b Binary files /dev/null and "b/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/Recursos/FRBR.pdf" differ diff --git "a/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/Recursos/Modelos.xlsx" "b/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/Recursos/Modelos.xlsx" new file mode 100644 index 0000000..b569c6a Binary files /dev/null and "b/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/Recursos/Modelos.xlsx" differ diff --git "a/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/Recursos/Recursos.xlsx" "b/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/Recursos/Recursos.xlsx" new file mode 100644 index 0000000..f2211bc Binary files /dev/null and "b/10 - C\303\263mo crear un perfil de aplicaci\303\263n de datos para el an\303\241lisis po\303\251tico (Curado Malta)/Recursos/Recursos.xlsx" differ diff --git a/11 - Quantitative research on versification_ the corpus of czech verse (Petr Plechac)/Plechac-practica.url b/11 - Quantitative research on versification_ the corpus of czech verse (Petr Plechac)/Plechac-practica.url new file mode 100644 index 0000000..a39d1d2 --- /dev/null +++ b/11 - Quantitative research on versification_ the corpus of czech verse (Petr Plechac)/Plechac-practica.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=http://versologie.cz/talks/unedpractice/ diff --git a/11 - Quantitative research on versification_ the corpus of czech verse (Petr Plechac)/Presentacion Plechac.url b/11 - Quantitative research on versification_ the corpus of czech verse (Petr Plechac)/Presentacion Plechac.url new file mode 100644 index 0000000..193198d --- /dev/null +++ b/11 - Quantitative research on versification_ the corpus of czech verse (Petr Plechac)/Presentacion Plechac.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=http://versologie.cz/talks/uned diff --git a/11 - Quantitative research on versification_ the corpus of czech verse (Petr Plechac)/plechacPresentation.pdf b/11 - Quantitative research on versification_ the corpus of czech verse (Petr Plechac)/plechacPresentation.pdf new file mode 100644 index 0000000..47536b7 Binary files /dev/null and b/11 - Quantitative research on versification_ the corpus of czech verse (Petr Plechac)/plechacPresentation.pdf differ diff --git "a/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/CodigoPresentacionCoreNLP.R" "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/CodigoPresentacionCoreNLP.R" new file mode 100644 index 0000000..e16efa7 --- /dev/null +++ "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/CodigoPresentacionCoreNLP.R" @@ -0,0 +1,119 @@ +#------------------------- Introduccion +library(coreNLP) +initCoreNLP() + +#------------------------ Tokenization y sentence splitting + +#Anotamos el fichero de interés +anno<-annotateFile("/home/accaminero/PoesiaIngles.txt") +anno + +# Mostramos cada token (palabra) que hemos identificado +getToken(anno)$token + +# Mostramos a qué frase pertenece cada token +getToken(anno)$sentence + +sentLen <- table(getToken(anno)$sentence) # sentLen contiene la longitud de cada frase +hist(sentLen, breaks=30) # pintamos un gráfico con las longitudes de las frases + +#------------------------------- Lematizar, POS tag + +# Obtener la info de cada token +token <- getToken(anno) + +# Presentar la info de los tokens de la primera frase +token[token$sentence==1,c(1:9)] + +# ¿Cuántas ocurrencias hay de cada etiqueta? +table(token$POS) + +# Utilizamos el universal tagset +ut <- universalTagset(token$POS) + +# ¿Cuántas ocurrencias hay de cada etiqueta? +table(ut) + +#Calculamos la cuenta de los nombres, pronombres, … en cada frase +nounCnt <- tapply(ut == "NOUN", token$sentence, sum) +pronCnt <- tapply(ut == "PRON", token$sentence, sum) +adjCnt <- tapply(ut == "ADJ", token$sentence, sum) +verbCnt <- tapply(ut == "VERB", token$sentence, sum) + +# Agrupamos los contadores en un dataframe +posDf <- data.frame(nounCnt,pronCnt,adjCnt,verbCnt) + +#Mostramos las primeras posiciones del dataframe, que muestra las primeras frases +head(posDf) + +# Pintamos un gráfico que compara cuántos nombres+pronombres hay con los adjetivos +plot(nounCnt+pronCnt,adjCnt,pch=19,cex=2, col=rgb(0,0,0.02)) + +# Pintamos un gráfico que compara cuántos nombres+pronombres hay con los verbos +plot(nounCnt+pronCnt,verbCnt,pch=19,cex=2, col=rgb(0,0,0.02)) + + +#¿Cuáles son los 5 nombres que más se repiten? +# // Usando el universal tagset… +index <- which(ut=="NOUN") +tab <- table(token$lemma[index]) +head(sort(tab,decreasing=TRUE),5) + +# // Utilizando el Penn Treebank project … +index <- which(token$POS == "NNP") +tab <- table(token$lemma[index]) +head(sort(tab,decreasing=TRUE),5) + + + +#---------------- Analisis de dependencias + +#Generamos el árbol de dependencias, y vemos su longitud +parseTree <- getParse(anno) +length(parseTree) + +#Muestra el árbol para la primera frase +cat(parseTree[1]) + +# Mostramos las dependencias para la primera frase +dep <- getDependency(anno) +dep[dep$sentence == 1,] + +# El siguiente ejemplo sirve para analizar cuáles son los 3 verbos que toman como sujeto una palabra determinada en mayor +# número de ocasiones. Por ejemplo “toll” +index <- which(token$lemma[dep$depIndex] == "toll") +depSelf <- dep[index,] +depSelf <- depSelf[depSelf$type == "nsubj",] +sort(table(depSelf$governor),decreasing=TRUE)[1:3] + + + +#------------- Reconocimiento de entidades con nombre + +token <- getToken(anno) +#Mostramos cuántos tokens hemos encontrado para cada categoría +table(token$NER) + +#Mostramos los tokens etiquetados como DURATION y PERSON +unique(token$lemma[token$NER=="DURATION"]) +unique(token$lemma[token$NER=="PERSON"]) + +# Para una de las personas identificadas en el documento, ¿cuáles son las 3 primeras palabras con las que tiene dependencias de +# tipo gobernador?, ¿y de tipo dependiente? + +index <- which(token$lemma[dep$depIndex] == "Cromwell") +depSelf <- dep[index,] +sort(table(depSelf$governor),decreasing=TRUE)[1:3] +sort(table(depSelf$dependent),decreasing=TRUE)[1:3] + +#------------- Correferencias + +#Calculamos y mostramos las primeras correferencias +coref <- getCoreference(anno) +head(coref) + +# Mostramos de forma agregada las palabras que forman parte de una correferencia +table(token$token[coref$startIndex[coref$corefId == 10]]) + + + diff --git "a/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/EjercicioCoreNLP.pdf" "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/EjercicioCoreNLP.pdf" new file mode 100755 index 0000000..87ef980 Binary files /dev/null and "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/EjercicioCoreNLP.pdf" differ diff --git "a/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/PoesiaIngles.txt" "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/PoesiaIngles.txt" new file mode 100644 index 0000000..e2851b0 --- /dev/null +++ "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/PoesiaIngles.txt" @@ -0,0 +1,158 @@ +The curfew tolls the knell of parting day, +The lowing herd wind slowly o'er the lea, +The ploughman homeward plods his weary way, +And leaves the world to darkness and to me. + +Now fades the glimmering landscape on the sight, +And all the air a solemn stillness holds, +Save where the beetle wheels his droning flight, +And drowsy tinklings lull the distant folds; + +Save that from yonder ivy-mantled tower +The moping owl does to the moon complain +Of such, as wandering near her secret bower, +Molest her ancient solitary reign. + +Beneath those rugged elms, that yew-tree's shade, +Where heaves the turf in many a mouldering heap, +Each in his narrow cell for ever laid, +The rude forefathers of the hamlet sleep. + +The breezy call of incense-breathing morn, +The swallow twittering from the straw-built shed, +The cock's shrill clarion, or the echoing horn, +No more shall rouse them from their lowly bed. + +For them no more the blazing hearth shall burn, +Or busy housewife ply her evening care: +No children run to lisp their sire's return, +Or climb his knees the envied kiss to share. + +Oft did the harvest to their sickle yield, +Their furrow oft the stubborn glebe has broke; +How jocund did they drive their team afield! +How bowed the woods beneath their sturdy stroke! + +Let not Ambition mock their useful toil, +Their homely joys, and destiny obscure; +Nor Grandeur hear with a disdainful smile, +The short and simple annals of the poor. + +The boast of heraldry, the pomp of power, +And all that beauty, all that wealth e'er gave, +Awaits alike the inevitable hour. +The paths of glory lead but to the grave. + +Nor you, ye Proud, impute to these the fault, +If Memory o'er their tomb no trophies raise, +Where through the long-drawn aisle and fretted vault +The pealing anthem swells the note of praise. +Can storied urn or animated bust +Back to its mansion call the fleeting breath? +Can Honour's voice provoke the silent dust, +Or Flattery soothe the dull cold ear of Death? + +Perhaps in this neglected spot is laid +Some heart once pregnant with celestial fire; +Hands that the rod of empire might have swayed, +Or waked to ecstasy the living lyre. + +But Knowledge to their eyes her ample page +Rich with the spoils of time did ne'er unroll; +Chill Penury repressed their noble rage, +And froze the genial current of the soul. + +Full many a gem of purest ray serene, +The dark unfathomed caves of ocean bear: +Full many a flower is born to blush unseen, +And waste its sweetness on the desert air. + +Some village-Hampden, that with dauntless breast +The little tyrant of his fields withstood; +Some mute inglorious Milton here may rest, +Some Cromwell guiltless of his country's blood. + +The applause of listening senates to command, +The threats of pain and ruin to despise, +To scatter plenty o'er a smiling land, +And read their history in a nation's eyes, + +Their lot forbade: nor circumscribed alone +Their growing virtues, but their crimes confined; +Forbade to wade through slaughter to a throne, +And shut the gates of mercy on mankind, + +The struggling pangs of conscious truth to hide, +To quench the blushes of ingenuous shame, +Or heap the shrine of Luxury and Pride +With incense kindled at the Muse's flame. + +Far from the madding crowd's ignoble strife, +Their sober wishes never learned to stray; +Along the cool sequestered vale of life +They kept the noiseless tenor of their way. + +Yet even these bones from insult to protect +Some frail memorial still erected nigh, +With uncouth rhymes and shapeless sculpture decked, +Implores the passing tribute of a sigh. + +Their name, their years, spelt by the unlettered muse, +The place of fame and elegy supply: +And many a holy text around she strews, +That teach the rustic moralist to die. + +For who to dumb Forgetfulness a prey, +This pleasing anxious being e'er resigned, +Left the warm precincts of the cheerful day, +Nor cast one longing lingering look behind? + +On some fond breast the parting soul relies, +Some pious drops the closing eye requires; +Ev'n from the tomb the voice of nature cries, +Ev'n in our ashes live their wonted fires. + +For thee, who mindful of the unhonoured dead +Dost in these lines their artless tale relate; +If chance, by lonely Contemplation led, +Some kindred spirit shall inquire thy fate, + +Haply some hoary-headed swain may say, +'Oft have we seen him at the peep of dawn +'Brushing with hasty steps the dews away +'To meet the sun upon the upland lawn. + +'There at the foot of yonder nodding beech +'That wreathes its old fantastic roots so high, +'His listless length at noontide would he stretch, +'And pore upon the brook that babbles by. + +'Hard by yon wood, now smiling as in scorn, +'Muttering his wayward fancies he would rove, +'Now drooping, woeful wan, like one forlorn, +'Or crazed with care, or crossed in hopeless love. + +'One morn I missed him on the customed hill, +'Along the heath and near his favourite tree; +'Another came; nor yet beside the rill, +'Nor up the lawn, nor at the wood was he; + +'The next with dirges due in sad array +'Slow through the church-way path we saw him borne. +'Approach and read (for thou can'st read) the lay, +'Graved on the stone beneath yon aged thorn.' + +The Epitaph + +Here rests his head upon the lap of earth +A youth to fortune and to fame unknown. +Fair Science frowned not on his humble birth, +And Melancholy marked him for her own. +Large was his bounty, and his soul sincere, +Heaven did a recompense as largely send: +He gave to Misery all he had, a tear, +He gained from Heaven ('twas all he wished) a friend. +No farther seek his merits to disclose, +Or draw his frailties from their dread abode, +(There they alike in trembling hope repose) +The bosom of his Father and his God. diff --git "a/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/PoesiaIngles2.txt" "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/PoesiaIngles2.txt" new file mode 100644 index 0000000..bbdfdd0 --- /dev/null +++ "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/PoesiaIngles2.txt" @@ -0,0 +1,109 @@ +Ye distant spires, ye antique towers, +That crown the watery glade, +Where grateful Science still adores +Her Henry's holy Shade; +And ye, that from the stately brow +Of Windsor's heights the expanse below +Of grove, of lawn, of mead survey, +Whose turf, whose shade, whose flowers among +Wanders the hoary Thames along +His silver-winding way. + +Ah happy hills, ah pleasing shade, +Ah fields beloved in vain, +Where once my careless childhood strayed, +A stranger yet to pain! +I feel the gales, that from ye blow, +A momentary bliss bestow, +As waving fresh their gladsome wing, +My weary soul they seem to soothe, +And, redolent of joy and youth, +To breathe a second spring. + +Say, Father Thames, for thou hast seen +Full many a sprightly race +Disporting on thy margent green +The paths of pleasure trace, +Who foremost now delight to cleave +With pliant arm thy glassy wave? +The captive linnet which enthrall? +What idle progeny succeed +To chase the rolling circle's speed, +Or urge the flying ball? + +While some on earnest business bent +Their murmuring labours ply +'Gainst graver hours, that bring constraint +To sweeten liberty: +Some bold adventurers disdain +The limits of their little reign, +And unknown regions dare descry: +Still as they run they look behind, +They hear a voice in every wind, +And snatch a fearful joy. + +Gay hope is theirs by fancy fed, +Less pleasing when possessed; +The tear forgot as soon as shed, +The sunshine of the breast: +Theirs buxom health of rosy hue, +Wild wit, invention ever-new, +And lively cheer of vigour born; +The thoughtless day, the easy night, +The spirits pure, the slumbers light, +That fly the approach of morn. + +Alas, regardless of their doom, +The little victims play! +No sense have they of ills to come, +Nor care beyond today: +Yet see how all around 'em wait +The ministers of human fate, +And black Misfortune's baleful train! +Ah, show them where in ambush stand +To seize their prey the murtherous band! +Ah, tell them, they are men! + +These shall the fury Passions tear, +The vultures of the mind, +Disdainful Anger, pallid Fear, +And Shame that skulks behind; +Or pining Love shall waste their youth, +Or Jealousy with rankling tooth, +That inly gnaws the secret heart, +And Envy wan, and faded Care, +Grim-visaged comfortless Despair, +And Sorrow's piercing dart. + +Ambition this shall tempt to rise, +Then whirl the wretch from high, +To bitter Scorn a sacrifice, +And grinning Infamy. +The stings of Falsehood those shall try, +And hard Unkindness' altered eye, +That mocks the tear it forced to flow; +And keen Remorse with blood defiled, +And moody Madness laughing wild +Amid severest woe. + +Lo, in the vale of years beneath +A grisly troop are seen, +The painful family of Death, +More hideous than their Queen: +This racks the joints, this fires the veins, +That every labouring sinew strains, +Those in the deeper vitals rage: +Lo, Poverty, to fill the band, +That numbs the soul with icy hand, +And slow-consuming Age. + +To each his sufferings: all are men, +Condemned alike to groan; +The tender for another's pain, +The unfeeling for his own. +Yet ah! why should they know their fate? +Since sorrow never comes too late, +And happiness too swiftly flies. +Thought would destroy their paradise. +No more; where ignorance is bliss, +'Tis folly to be wise. diff --git "a/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/PresentacionCoreNLPEstilometria.pdf" "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/PresentacionCoreNLPEstilometria.pdf" new file mode 100755 index 0000000..d5dd835 Binary files /dev/null and "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/PresentacionCoreNLPEstilometria.pdf" differ diff --git "a/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/coreNLP_dependencies_manual.pdf" "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/coreNLP_dependencies_manual.pdf" new file mode 100644 index 0000000..90e30a8 Binary files /dev/null and "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/coreNLP_dependencies_manual.pdf" differ diff --git "a/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/stylo.pdf" "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/stylo.pdf" new file mode 100644 index 0000000..9ce6a21 Binary files /dev/null and "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/stylo.pdf" differ diff --git "a/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/stylo_howto-3.pdf" "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/stylo_howto-3.pdf" new file mode 100644 index 0000000..ed63b1c Binary files /dev/null and "b/12 - An\303\241lisis de textos po\303\251ticos y estilometr\303\255a con R (Ros, Robles, Caminero)/Materiales An. textos po\303\251ticos con R/stylo_howto-3.pdf" differ diff --git "a/13 - Procesamiento del lenguaje natural y sus aplicaciones en poes\303\255a (Nuria Bel)/CURSO-UNED-BEL-plan-y-ejercicios.pdf" "b/13 - Procesamiento del lenguaje natural y sus aplicaciones en poes\303\255a (Nuria Bel)/CURSO-UNED-BEL-plan-y-ejercicios.pdf" new file mode 100644 index 0000000..4e5f40d Binary files /dev/null and "b/13 - Procesamiento del lenguaje natural y sus aplicaciones en poes\303\255a (Nuria Bel)/CURSO-UNED-BEL-plan-y-ejercicios.pdf" differ diff --git "a/13 - Procesamiento del lenguaje natural y sus aplicaciones en poes\303\255a (Nuria Bel)/Texto-utf8-RubenDario.txt" "b/13 - Procesamiento del lenguaje natural y sus aplicaciones en poes\303\255a (Nuria Bel)/Texto-utf8-RubenDario.txt" new file mode 100644 index 0000000..05bedf1 --- /dev/null +++ "b/13 - Procesamiento del lenguaje natural y sus aplicaciones en poes\303\255a (Nuria Bel)/Texto-utf8-RubenDario.txt" @@ -0,0 +1,1074 @@ +CANTO A LA ARGENTINA + + + ¡Argentina! ¡Argentina! + ¡Argentina! El sonoro + viento arrebata la gran voz de oro. + Ase la fuerte diestra la bocina, + y el pulmón fuerte, bajo los cristales + del azul, que han vibrado, + lanza el grito: _Oíd, mortales, + oíd el grito sagrado._ + Oid el grito que va por la floresta + de mástiles que cubre el ancho estuario, + e invade el mar; sobre la enorme fiesta + de las fábricas trémulas de vida; + sobre las torres de la urbe henchida; + sobre el extraordinario + tumulto de metales y de lumbres + activos; sobre el cósmico portento + de obra y de pensamiento + que arde en las poliglotas muchedumbres; + sobre el construir, sobre el bregar, sobre el soñar, + sobre la blanca sierra, + sobre la extensa tierra, + sobre la vasta mar. + + + ¡Argentina, región de la aurora! + ¡Oh, tierra abierta al sediento + de libertad y de vida, + dinámica y creadora! + ¡Oh, barca augusta, de prora + triunfante, de doradas velas! + De allá de la bruma infinita, + alzando la palma que agita, + te saluda el divo Cristóbal, + príncipe de las Carabelas. + + + Te abriste como una granada, + como una ubre te henchiste, + como una espiga te erguiste + a toda raza congojada, + a toda humanidad triste, + a los errabundos y parias + que bajo nubes contrarias + van en busca del buen trabajo, + del buen comer, del buen dormir, + del techo para descansar + y ver a los niños reir, + bajo el cual se sueña y bajo + el cual se piensa morir. + + + ¡Exodos! ¡Exodos! Rebaños + de hombres, rebaños de gentes + que teméis los días huraños, + que tenéis sed sin hallar fuentes + y hambre sin el pan deseado, + y amáis la labor que germina. + Los éxodos os han salvado: + ¡Hay en la tierra una Argentina! + He aquí la región del Dorado, + he aquí el paraíso terrestre, + he aquí la ventura esperada, + he aquí el Vellocino de Oro, + he aquí Canaán la preñada, + la Atlántida resucitada; + he aquí los campos del Toro + y del Becerro simbólicos; + he aquí el existir que en sueños + miraron los melancólicos, + los clamorosos, los dolientes + poetas visionarios + que en sus olimpos o calvarios + amaron a todas las gentes. + + + He aquí el gran Dios desconocido + que todos los dioses abarca. + Tiene su templo en el espacio; + tiene su gazofilacio + en la negra carne del mundo. + Aquí está la mar que no amarga, + aquí está el Sahara fecundo, + aquí se confunde el tropel + de los que al infinito tienden, + y se edifica la Babel + en donde todos se comprenden. + +[imagen] + + Tú, el hombre de las estepas, + sonámbulo de sufrimiento, + nacido ilota y hambriento, + al fuego del odio huído, + hombre que estabas dormido + bajo una tapa de plomo, + hombre de las nieves del zar, + mira el cielo azul, canta, piensa; + mujik redento, escucha cómo + en tu rancho, en la pampa inmensa, + murmura alegre el samovar. + + ¡Cantad judíos de la pampa! + Mocetones de ruda estampa, + dulces Rebecas de ojos francos, + Rubenes de largas guedejas, + patriarcas de cabellos blancos, + y espesos como hípicas crines; + cantad, cantad, Saras viejas + y adolescentes Benjamines, + con voz de vuestro corazón: + ¡Hemos encontrado a Sión! + + + Hombres de Emilia y los del agro + romano, ligures, hijos + de la tierra del milagro + partenopeo, hijos todos + de Italia, sacra a las gentes, + familias que sois descendientes + de quienes vieron errantes + a los olímpicos dioses + de los antaños, amadores + de danzas gozosas y flores + purpúreas y del divino + don de la sangre del vino; + hallasteis un nuevo hechizo, + hallasteis otras estrellas, + encontrasteis prados en donde + se siembra, espiga y barbecha, + se canta en la fiesta del grano, + y hay un gran sol soberano, + como el de Italia y de Jonia + que en oro el terruño convierte: + el enemigo de la muerte + sus urnas vitales vierte + en el seno de la colonia. + +[imagen] + + Hombres de España poliforme, + finos andaluces sonoros, + amantes de zambras y toros, + astures que entre peñascos + aprendisteis a amar la augusta + Libertad, elásticos vascos + como hechos de antiguas raíces, + raza heroica, raza robusta, + rudos brazos y altas cervices; + hijos de Castilla la noble + rica de hazañas ancestrales; + firmes gallegos de roble; + catalanes y levantinos + que heredasteis los inmortales + fuegos de hogares latinos; + iberos de la península + que las huellas del paso de Hércules + vísteis en el suelo natal: + ¡he aquí la fragante campaña + en donde crear otra España + en la Argentina universal! + + ¡Helvéticos! La nación nueva + ama el canto del libre. ¡Dad + al pampero, que el trueno lleva, + vuestros cantos de libertad! + El Sol de Mayo os ilumina. + Como en la patria natal + veréis el blancor que culmina + allá donde en la tierra austral + erige una Suiza argentina + sus ventisqueros de cristal. + + Llegad, hijos de la astral Francia: + hallaréis en estas campiñas + entre los triunfos de la estancia + las guirnaldas de vuestras viñas. + Hijos del gallo de Galia + cual los de la loba de Italia + placen al cóndor magnífico, + que ebrio de celeste azur + abre sus alas en el sur + desde el Atlántico al Pacífico. + + Vástagos de hunos y de godos, + ciudadanos del orbe todos, + cosmopolitas caballeros + que antes fuísteis conquistadores, + piratas y aventureros, + reyes en el mar y en el viento, + argonautas de lo posible, + destructores de lo imposible, + pioneers de la Voluntad: + he aquí el país de la armonía, + el campo abierto a la energía + de todos los hombres. ¡Llegad! + +[imagen] + + Os espera el reino oloroso + al trébol que pisa el ganado, + océano de tierra sagrado + al agricultor laborioso + que rige el timón del arado. + ¡La pampa! La estepa sin nieve, + el desierto sin sed cruenta, + en donde benéfico llueve + riego fecundador que aumenta + las demetéricas savias. + Bella de honda poesía, + suave de inmensidad serena + de extensa melancolía + y de grave silencio plena; + o bajo el escudo del sol + y la gracia matutina, + sonora de la pastoral + diana de cuerno, caracol + y tuba de la vacada; + o del grito de la triunfal + máquina de la ferro-vía; + o del volar del automóvil + que pasa quemando leguas, + o de las voces del gauchaje, + o del resonar salvaje + del tropel de potros y yeguas. + + ¡La pampa! Inmolad un corcel + a Hiperión el radiante, + cual canta un dueño del laurel + del Lacio. ¡La pampa fragante! + En la extendida luz del llano + flotaba un ambiente eficaz. + Al forastero, el pampeano + ofreció la tierra feraz; + el gaucho de broncínea faz + encendió su fogón de hermano, + y fué el mate de mano en mano + como el calumet de la paz. + + Oh, como cisne de Sulmona, + brindaras allí nuevos fastos, + celebrarías nuevos ritos + y ceñirías la corona + lírica por los campos vastos + y los sembrados infinitos! + Otros Evandros de América + juntarán arcádicos lauros + mientras van en fuga quimérica + otros tropeles de centauros. + +[imagen] + + Animará la virgen tierra + la sangre de los finos brutos + que da la pecuaria Inglaterra; + irán cargados de tributos + los pesados carros férreos + que arrastran candentes y humeantes + los aulladores elefantes + de locomotoras veloces; + segarán las mieses las hoces + de artefactos casi vivientes; + habrá montañas de simientes; + como en litúrgico aparato + se herirán miles de testuces + en las hecatombes bovinas; + y junto al bullicio del hato, + semejantes a ondas marinas + irán las ondas de avestruces. + Pasarán los largos dragones + con sus caudas de vagones + por la extensión taciturna + en donde el árbol legendario + como un soñador solitario + da sus cabellos al pampero. + Y en la poesía nocturna, + surgirá del rancho primero + el espíritu del pasado + que a modo de luz vaga existe, + cuyo último vigor palpita + en el payador inspirado + que lanza el sollozo del triste + o el llanto de la vidalita. + + ¡Oh, Pampa! ¡Oh, entraña robusta, + mina del oro supremo! + He aquí que se vió la augusta + resurrección de Triptolemo. + En material continente + una república ingente + crea el granero del orbe, + y sangre universal absorbe + para dar vida al orbe entero. + De ese inexhausto granero + saldrán las hostias del mañana; + el hambre será, si no vana, + menos multiplicada y fuerte, + y será el paso de la muerte + menos cruel con la especie humana. + + ¡Argentina! tu ser no abriga + la riqueza tentacular + que a Europa finesecular + incubó la Furia enemiga. + Y si oyes un día explotar + el trágico odio del iluso, + regando ciega desventura, + es que Ananke la bomba puso + en la mano de la Locura. + ¡Demeter, tu magia prolífica + del esfuerzo por la bondad + envíe la hostia pacífica + a la boca de la ciudad! + + Se agita la urbe, se alza + la Metrópoli reina, viste + el regio manto, se calza + de oro, tiarada de azur + yergue la testa imperiosa + de Basilea del Sur; + es la fecunda, la copiosa, + la bizarra, grande entre grandes; + la que el gran Cristo de los Andes + bendice, y saluda de lejos + entre los vívidos reflejos + del lumar que la corona, + la Libertad anglo-sajona. + Saluda a la Urbe argentina + el Garibaldi romano, + cabalgante en su colina, + en nombre de Roma materna, + vestida de su memoria + y como su decoro eterna. + La saluda Londres que empuña + el gran Tridente de acero + por dominar el mar entero. + La saluda Berlín casqueada + y con égida y espada + como una Minerva bélica. + Y Nueva York la babélica, + y Melbourne la oceánica, + y las viejas villas asiáticas, + y presididas por Lutecia, + todas las hermanas latinas + y hermanas por la libertad. + La saluda toda urbe viva + en donde creyente y activa + va al porvenir la Humanidad. + + ¡Buenos Aires! es tu fiesta. + Sentada estás en el solio; + el himno desde la floresta + hasta el colosal Capitolio + tiende sus mil plumas de aurora. + Flora propia te decora, + mirada universal te mira. + En tu homenaje pasar veo + a Mercurio y su caduceo, + al rey Apolo y la lira. + +[imagen] + + Es la fiesta del Centenario. + El Plata, padre extraordinario, + más que del Tíber y el Sena, + más que del Támesis rubio, + más que del azul Danubio + y que del Ganges indiano, + es el misterioso hermano + del Tigris y Eufrates bíblicos, + pues junto a él han de surgir + los adanes del porvenir. + Cual por llamamientos cíclicos, + Argentina, solar de hermanos, + diste por tus virtuales leyes + hogar a todos los humanos, + templos a todas las greyes, + cetro a todos los soberanos + que decoran sus propias frentes, + que se coronan por sus manos + con kohinoores y regentes + tallados en sus almas propias, + vertedores de cornucopias, + emperadores de simientes, + césares de la labor, + multiplicadores de pan, + más potentes que Gengis-Khan + y que Nabucodonosor. + + Se erizaron de chimeneas + los docks; a los puertos flamantes + llegaron músculos e ideas + que enviaban los pueblos distantes. + Se rasparon viejas carcomas, + se redujeron a pedazos + falsos ídolos, armas romas, + e impusieron sus firmes lazos + la fraternidad de los brazos, + la transmisión de los idiomas. + Para dar las gracias a Dios + guarda la ciudad liberal + las naves de su catedral. + Y se verán construídos los + muros de las iglesias todas, + todas igualmente benditas, + las sinagogas, las mezquitas, + las capillas y las pagodas. + Y en la floración eclesiástica, + los que buscan luz en la sombra, + por la media luna o la suástica, + o por la tora, o por la cruz, + irán al Dios que no se nombra + y hallarán en la sombra luz. + +[imagen] + + Tráfagos, fuerzas urbanas, + trajín de hierro y fragores, + veloz, acerado hipogrifo, + rosales eléctricos, flores + miliunanochescas, pompas + babilónicas, timbres, trompas, + paso de ruedas y yuntas, + voz de domésticos pianos, + hondos rumores humanos, + clamor de voces conjuntas, + pregón, llamada, todo vibra, + sensación de un foco vital, + como el latir del corazón + o como la respiración + del pecho de la capital. + + Que vuestro himno soberbio vibre, + hombres libres en tierra libre! + Nietos de los conquistadores, + renovada sangre de España, + transfundida sangre de Italia, + o de Germania, o de Vasconia, + o venidos de la entraña + de Francia, o de la Gran Bretaña, + vida de la Policolonia, + savia de la patria presente, + de la nueva Europa que augura + más grande Argentina futura, + ¡Salud, Patria, que eres también mía, + puesto que eres de la humanidad: + salud, en nombre de la Poesía, + salud en nombre de la Libertad! + + ¡El himno, nobles ancianos! + ¡El himno, varones robustos! + Pueriles coros escolares, + ¡el himno! Llevad en las manos + palmas, coronad los bustos + de los patricios; a millares + dad flores a los monumentos. + El himno en los instrumentos + de armónicas bandas bélicas + que animan las fiestas pacíficas. + El himno en las bocas angélicas + de las gallardas mujeres, + de las matronas prolíficas, + de las parecidas a Ceres, + de las a Diana asemejadas, + las esposas y las amadas. + El himno en la egregia ciudad + y en el inmenso imperio agrario + anuncie el victorioso día, + y vierta su sonoridad + como una copa de armonía + en la fiesta del Centenario. + + ¡Saludemos las sombras épicas + de los hispanos capitanes, + de los orgullosos virreyes, + de América en los huracanes + águilas bravas de las gestas + o gerifaltes de los reyes; + duros pechos, barbadas testas + y fina espada de Toledo; + capellán, soldado sin miedo, + don Nuño, don Pedro, don Gil, + crucifijo, cogulla, estola, + marinero, alcalde, alguacil, + tricornio, casaca y pistola, + y la vieja vida española! + + ¡Y gloria! ¡Gloria a los patricios, + bordeadores de precipicios + y escaladores de montañas + como el abuelo secular + que, fatigado de triunfar + y cansado de padecer, + se fué a morir de cara al mar, + lejos, allá en Boulogne-sur-Mer + +[imagen] + + ¡Héroes de la guerra gaucha, + lanceros, infantes, soldados + todos, héroes mil consagrados, + centauros de fábula cierta, + sacrificados del terruño, + granaderos el rayo al puño, + locos de gloria, despierta + al sol la mente! La Fama + a todos ilustres proclama, + sus hechos ínclitos nombra, + constela con ellos la sombra + y forma un halo en el azur, + a la dantesca Cruz del Sur. + Así la sideral retórica + de las odas y de las águilas + va en sublimes hipérboles + a ofrendar sus rítmicos dones + al gran Dios de las naciones. + ¡Por todo el himno! La expresión + del colosal corazón + de esa patria palpitante: + la nieve de la cordillera + y el azul forman la bandera + que sostiene un brazo de Atlante. + La Argentina de fuertes pechos + confía en su seno fecundo + y ofrece hogares y derechos + a los ciudadanos del mundo. + + ¡Oh, Sol! ¡Oh, padre teogénico! + ¡Sol simbólico que irradias + en el pabellón! Salomónico + y helénico, lumbre de Arcadias, + mítico, incásico, mágico! + ¡Foibos triunfante en el trágico + vencimiento de las sombras; + Tabu y Totem del abismo! + ¡Oh, Sol! que inspiras y asombras, + que perdure tu portento + que el orbe todo ilumina + tal como en el firmamento + desde la enseña argentina. + Y con la lluvia sagrada + y con el aire propicio, + brinda a la tierra labrada + en el rural ejercicio + plurales savias y fragancias + y el don de matriz y de ubre + que de cosechas pingües cubre + los edenes de las estancias. + Ilumina el advenimiento + del creciente pensamiento + que crea el caudal en la banca, + o en el taller la estatua blanca + que decora el monumento. + Al lírico que el verso arranca + del corazón del instrumento. + A los que un Píndaro diera, + por los olímpicos juegos, + por el salto, por la carrera + la oda cara a los griegos, + que se cerniría sonora + sobre el aquilino aeroplano + que es grifo, pegaso y quimera; + sobre el remero que evoca + haciendo volar la prora + los de la pristina galera; + sobre los que en lucha loca + disputan la elástica esfera; + sobre las sudorosas frentes + de los sanos adolescentes. + Ilumina el casco griego + que cubre la cabeza altiva + de los combatientes del fuego; + vierte tu luz genitiva + sobre las mil procesiones + que arbolan sus estandartes + y cantan en sus canciones + la paz, la dicha y las artes. + Van los magistrados egregios, + van las espadas relumbrosas, + van las pompas y lujos regios, + van las niñas de los colegios + como lirios y como rosas. + ¡Sonad, oh claros clarines, + sonad tambores guerreros, + en el milagroso escenario; + los nombres de los paladines, + nombres oros, nombres aceros, + se oyen en vuestros sones fieros + en la fiesta del Centenario! + Viento de amor en la floresta + cívica pasa. Es la fiesta + de las guirnaldas de fe, + de los ramos de esperanza, + de los mirtos de amor y de + los olivos de bonanza. + Hojas de roble, hojas de hiedra, + para el fundador de ciudades, + que puso la primera piedra, + que unificó las voluntades, + que dedicara las vigilias, + que consagrara los dineros, + al colmenar de los obreros + y a los nidos de las familias. + +[imagen] + + Conspícuas guirnaldas de gloria + a aquellos antiguos que hacen + de bronce y de mármol la historia. + Hoy los abuelos renacen + en la floración de los nietos. + Por sublimes amuletos + lo antes soñado ahora existe, + y la Argentina reviste + su presente manto suntuario + y piensa en los brillos futuros + en la fiesta del Centenario. + Ahora es cuando los videntes + de los porvenires obscuros + miran las estrellas polares, + e interpretando los orientes + cantan cármenes seculares. + Hoy los cuatro caballos sacros + las fogosas narices hinchan, + como en versos y simulacros, + huellan nubes, al sol relinchan, + y a un más allá se encaminan + marcando el cielo de huellas; + mientras otros astros declinan + ellos van entre las estrellas + por obra de la ley eterna + que el ritmo del orbe gobierna. + Ante la cuadriga que crina + de orgullos de olimpo su llama, + voz de augurio animador clama: + ¡Hay en la tierra una Argentina! + + Diré la beldad y la gracia + de la mujer. Así cual + por singular eficacia + el buen jardinero acierta + a crear en su arte vegetal + por lo que combina e injerta, + por lo que reparte o resume, + inédito tipo de rosas, + de crisantemos o jacintos, + con raro aspecto y perfume, + con corolas esplendorosas, + con formas y tonos distintos, + así la mujer argentina + con savias diversas creada + espléndida flor animada, + esplende, perfuma y culmina. + +[imagen] + + Talle de vals es de Viena, + ojo morisco es de España, + crespa y espesa pestaña + es de latina sirena; + de Britania será esa piel + cual la de la pulpa del lis + y que se sonrosa en el + rostro angélico de la miss; + esa ondulante elegancia + es de la estelar París, + y esa luminosa fragancia + de las entrañas del país. + Concentración de hechizos varios, + mezcla de esencias y vigores, + nórdico oro, mármoles parios, + algo de la perla y del lirio, + música plástica, visión + del más encantador martirio, + voluptuosidad, ilusión, + placidez que todo mitiga, + o pasión que todo lo arrolla, + leona amante o dulce enemiga, + tal la triunfante Venus criolla. + + Se tejerán frescas coronas + en recuerdo de las patricias + que fueron como las matronas + de Roma, como las mujeres + de Esparta. Las que son delicias + y ensueños de las moradas, + cumplirán filiales deberes + con las genitoras pasadas; + y recordándolas a ellas, + siendo las amadas y esposas + llenarán radiantes y bellas + la obligación de las estrellas + y la misión de las rosas. + + Diré de la generación + en flor de las almas flamantes, + primavera e iniciación; + de vosotros, oh, estudiantes, + empenachados de ilusión + y acorazados de audacia, + que tendéis vuestras almas plenas + de amor, de fuerza y de gracia, + al divino Platón de Atenas + o al celeste Orfeo de Tracia, + a la Verdad o a la Armonía, + al Cálculo o al Ensueño, + firmes de ardor, vivos de empeño, + robustos de confianza propia + y a quien es justo que ceda + la fugaz Fortuna su rueda, + la Abundancia su cornucopia; + vosotros que sabéis por qué + abre Pegaso las alas + y hay misterio en la lumbre de + los ojos del buho de Palas, + sed cantados y bendecidos. + Estad atentos a los ruidos + que preceden la alba naciente, + estad atentos a los nidos + que se incuban en el presente, + a lo que vendrá y que se anuncia, + en la palabra que pronuncia + vuestra boca. El grito sagrado + para vosotros resuena + como pitagórico verso, + clamad así ante el universo: + _¡Ave, Argentina, vita plena!_ + ¡Jóvenes, frentes para lauros, + brazos para amantes abrazos, + pero también gímnicos brazos + para hidras y minotauros; + infantes de mundial estirpe, + que vuestra voluntad extirpe, + falso anhelo, odio victimario, + y en el patriótico sagrario + dejéis como ofrendas de aristos + ansias de Perseos o Cristos + en la fiesta del Centenario! + +[imagen] + + Cuando el carro de Apolo pasa + una sombra lírica llega + Junto a la cuadriga de brasa + de la divinidad griega. + Y se oyen como vagos aires + que acarician a Buenos Aires: + es el alma de Santos Vega. + El gaucho tendrá su parte + en los jubileos futuros, + pues sus viejos cantares puros + entrarán al reino del Arte. + + Cantaré del primer navío + que velivolante saliera + desde las aguas del Río + de la Plata con la bandera + bicolor al mástil gallardo. + Recordad al nauta que vino + de Saint-Tropez, a Buchardo, + el capitán franco-argentino, + hábil bajo las marejadas, + bajo las tormentas ufano; + y a todos sus camaradas + que fueron por el oceano, + denodados predecesores + de los que hoy en acorazadas + naves portan a sol y bruma + los dos simbólicos colores + flameantes sobre la espuma. + Bien vayan torres y palacios + erizados de cañones + suprimiendo tiempo y espacios + a visitar a las naciones, + pero no por guerra voraz, + productora de luto y llanto, + mas diciendo como en el canto + del italiano: ¡Paz! ¡Paz! ¡Paz! + Heroica nación bendecida, + ármate para defenderte; + sé centinela de la Vida + y no ayudante de la Muerte. + Que tus máquinas de hierro + y que las bruñidas bocas + cruentas no alegren al perro + negro avernal. Que tu lanza, + cual la libertad que invocas, + garantía a tu pueblo sea; + que tu casco abrigue la Idea, + sabiduría y esperanza, + como el de Palas Atenea. + +[imagen] + + Salgan y lleguen en buen hora, + dominando los elementos + las velas que el marino adora, + y los steamers humeantes + que conducen los alimentos, + la carga de los fabricantes, + los ejércitos de emigrantes, + el designio, el brazo que va + a arar, sembrar y producir + en el latifundio, en el pago, + partan las naves de Cartago + y arriben las naves de Ofir! + ¡Y bien se escuche en las funciones + de conmemoración el trueno + de las salvas de los cañones + del mar conmoviendo el estuario + de hímnicas vibraciones lleno + en la fiesta del Centenario! + + ¡Gloria a América prepotente! + Su alto destino se siente + por la continental balanza + que tiene por fiel el istmo: + los dos platos del continente + ponen su caudal de esperanza + ante el gran Dios sobre el abismo. + ¿Y por quién sino por tu gloria, + oh, Libertad, tanto prodigio? + Aguila, Sol y Gorro Frigio + llenan la americana historia. + Y en lo infinito ha resonado, + júbilo de la humanidad, + repetido el grito sagrado: + ¡Libertad! ¡Libertad! ¡Libertad! + Antes que Ceres fué Mavorte + el triunfador continental. + Sangre bebió el suelo del Norte + como el suelo Meridional. + Tal a los siglos fué preciso. + Para ir hacia lo venidero, + para hacer, si no el paraíso, + la casa feliz del obrero + en la plenitud ciudadana, + vínculo íntimo eslabona + e ímpetu exterior hermana + a la raza anglo-sajona + con la latino-americana. + Proles múltiples, muchedumbres, + tupidas colmenas de hombres, + transformadoras de costumbres, + con vosotras está la suma + de fuerza en que América finca; + fuisteis presentidas del inca; + os adivinó Moctezuma. + En este día supremo: + ¡Excelsior! se oye en un extremo; + en el otro se oye ¡Adelante! + ¡Glorificado el instante + en que resurge Triptolemo! + América que la dicha encierra + vivirá del sol y la tierra; + y hoy la tierra, pánico incensario + encendido por el destino, + perfuma el día argentino + en la fiesta del Centenario. + +[imagen] + + A las evocaciones clásicas + despiertan los dioses autóctonos, + los de los altares pretéritos + de Copán, Palenque, Tihuanaco, + por donde quizá pasaran + en lo lejano de tiempos + y epopeyas Pan y Baco. + Y en lo primordial poético + todo lo posible épico, + todo lo mítico posible + de mahabaratas y génesis, + lo fabuloso y lo terrible + que está en lo ilimitado y quieto + del impenetrable secreto. + + Cantaré la Paz sobre todo. + Huya el Demonio perverso, + huya el Demonio beodo + que incendia en mal el universo, + desaparezcan las furias + que con sangre de los ejércitos + empurpuraron las centurias; + que no más rujan los tigres + marciales sino de alegría, + y que a la Paz se alce un templo + como aquel que dando un ejemplo + insigne Augusto romano + ordenara elevar un día. + El industrioso ciudadano + el ramo de olivo venere: + que tenga sus armas listas, + no para inhumanas conquistas, + mas para defender su tierra + donde por la patria se muere. + ¡Guerra, pues, tan sólo a la guerra! + Paz, para que el pensamiento + domine el globo, y vaya luego, + cual bíblico carro de fuego, + de firmamento en firmamento. + ¡Paz para los creadores, + descubridores, inventores, + rebuscadores de verdad; + paz a los poetas de Dios, + paz a los activos y a los + hombres de buena voluntad! + En paz la hora renaciente, + continua y poliformemente, + el movimiento y no la inercia, + legiones dueñas de sus actos, + gente que osa, que comercia, + multiplica los artefactos, + combate la escasez, la negra + miseria, y pasa sus revistas + a las usinas y talleres; + y sus horas áureas alegra + con la invención de los artistas + y la beldad de las mujeres. + ¿A qué los crueles filósofos? + ¿A qué los falsos crisóstomos + de la inquina y de la blasfemia? + ¡Al pueblo que busca ideal + ofrezca una nueva academia + sus enseñanzas contra el mal, + su filosofía de luz; + que no más el odio emponzoñe, + y un ramaje de paz retoñe + del madero de la Cruz! + +[imagen] + + ¡Argentina! el cantor ha oteado + desde la alta región tu futuro. + Y vió en lo inmemorial del pasado + las metrópolis reinas que fueron, + las que por Dios malditas cayeron + en instante pestífero; el muro + que crujió remordido de llamas + la hervorosa Persépolis, Tiro, + la imperial Babilonia que aun brama, + y las urbes que vieron a Ciro, + a Alejandro, y a todos los fuertes + que escoltaron victorias y muertes. + Y miró a Bizancio y a Atenas, + y a la que, domadora del mundo + siendo Lupa indomable, fué Roma. + Y vió tronos, suplicios, cadenas, + y con tiaras a tigres y hienas, + Y cien más capitales precitas + donde el hombre fué ciego a la vasta + Libertad, donde fueron escritas + terroríficas y duras leyes, + contra tribus y pueblos y casta, + o las leyes fueron voluntades; + y a través de tragedias y gestas + derrumbáronse tronos y reyes, + o se hicieron cenizas ciudades + por ensalmos de frases funestas. + Y después otros siglos y luchas, + otra vez lo que arrasa y escombra, + muchos reinos que surgen y muchas + vanidades que caen en la sombra + infinita. Mane, Thecel, Phares. + Y el poeta miró un astro eterno + sobre ruinas y tierras y mares, + que alumbraba con su claridad + nuevos cultos, cultura y gobierno + y a su brillo quedó deslumbrado: + era el astro de la Libertad. + Argentinos, la inmortal estrella + a vosotros simbólica es Sol: + las naciones son grandes por ella: + lo sabía el abuelo español. + Dad a todas las almas abrigo, + sed nación de naciones hermana, + convidad a la fiesta del trigo, + al domingo del lino y la lana, + thanks-giving, yon kipour, romería, + la confraternidad de destinos, + la confraternidad de oraciones, + la confraternidad de canciones, + bajo los colores argentinos! + +[imagen] + + Argentina, el día en que te vistes + de gala, en que brillan tus calles + y no hay aspectos ni almas tristes + en alturas, pampas y valles; + el día en que desde tus fuertes, + tus cruceros y tus cuarteles + salvas lanzas, músicas viertes + entre las palmas y laureles, + visitada por los príncipes + de reinos y tierras lejanas + y mensajeros de repúblicas, + son las patrias americanas + las que más comparten tu júbilo. + Son las próximas hermanas + las que te proclaman primera + en el decoro familial, + después de heroica y guerrera, + hospitalaria y maternal. + Argentina tiarada de ónice + y de mármol, se puede ver + cuál luce sobre tu frente + el diamante refulgente + de las alturas, Lucifer: + pues eres la aurora de América. + Magnifícase tu apoteosis, + regazo de múltiples climas, + preferida del nuevo siglo, + y en sus cláusulas y en sus rimas + te profetizan tus profetas + y te poetizan tus poetas. + Crece el tesoro año por año + mientras prosigues las tareas + de las por Dios suspendidas + civilizaciones de antaño; + encarnas, produces, creas + cerebro para otras ideas, + útero para nuevas vidas. + Tus hijos llevarán en sí + por su sangre el hierro y rubí + de los cuatro puntos del globo. + Concentración de los varones + de vedas, biblias y coranes, + en el colmo de sus afanes, + en el logro de sus acciones, + tu floración de floraciones + tendrá un perfume latino. + En el primitivo crisol + Roma influyó en tu destino, + cuando a través del español + puso su enérgico metal. + Y sus históricas llamas + animarán genios y famas + al argentino Arco Triunfal. + + ¡Y yo, por fin, qué he de decirte + en voto cordial, Argentina! + Que tu bajel no encuentre sirte, + que sea inexhausta tu mina, + inacabables tus rebaños + y que los pueblos extraños + coman el pan de tu harina. + ¡Cómalo yo en postreros años + de mi carrera peregrina, + sintiendo las brisas del Plata! + Que libre de hambre y pestes + por tus tesoros y tu ciencia, + jamás enemigas huestes + te combatan. Tu preeminencia + sea siempre mayor, y homérica + voz de tu genio viril + por ti diga el triunfo de América. + + Y mi inspiradora, alumna + del Musagetes, al viento + las alas, mi pensamiento + florido da a la columna, + riega junto al monumento; + y en lo solemne del coro + del himno, el acento canoro + une mi amor y mi acento: + ¡Argentina tu día ha llegado! + ¡Buenos Aires, amada ciudad, + el Pegaso de estrellas herrado + sobre ti vuela en vuelo inspirado! + _Oid, mortales, el grito sagrado: + ¡Libertad! ¡Libertad! ¡Libertad!_ diff --git "a/13 - Procesamiento del lenguaje natural y sus aplicaciones en poes\303\255a (Nuria Bel)/UNED-2016.pdf" "b/13 - Procesamiento del lenguaje natural y sus aplicaciones en poes\303\255a (Nuria Bel)/UNED-2016.pdf" new file mode 100644 index 0000000..1915bcb Binary files /dev/null and "b/13 - Procesamiento del lenguaje natural y sus aplicaciones en poes\303\255a (Nuria Bel)/UNED-2016.pdf" differ diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/.DS_Store" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/.DS_Store" new file mode 100644 index 0000000..5008ddf Binary files /dev/null and "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/.DS_Store" differ diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/GuiaAnotacionMetrica.pdf" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/GuiaAnotacionMetrica.pdf" new file mode 100644 index 0000000..7b9cb77 Binary files /dev/null and "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/GuiaAnotacionMetrica.pdf" differ diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/NavarroColorado2015_AComputationLinguisticApproach_CLfL.pdf" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/NavarroColorado2015_AComputationLinguisticApproach_CLfL.pdf" new file mode 100644 index 0000000..62745f0 Binary files /dev/null and "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/NavarroColorado2015_AComputationLinguisticApproach_CLfL.pdf" differ diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/NavarroColorado2016_HaciaUnAnalisisDistanteDelEndecasilabo_Rhythmica.pdf" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/NavarroColorado2016_HaciaUnAnalisisDistanteDelEndecasilabo_Rhythmica.pdf" new file mode 100644 index 0000000..0825809 Binary files /dev/null and "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/NavarroColorado2016_HaciaUnAnalisisDistanteDelEndecasilabo_Rhythmica.pdf" differ diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/NavarroColoradoEtAl_LREC2016.pdf" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/NavarroColoradoEtAl_LREC2016.pdf" new file mode 100644 index 0000000..c06892e Binary files /dev/null and "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Bibliografia/Bibliografia/NavarroColoradoEtAl_LREC2016.pdf" differ diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/NavarroColorado_AnalisisSoneto_Parte1.pdf" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/NavarroColorado_AnalisisSoneto_Parte1.pdf" new file mode 100644 index 0000000..2a7e117 Binary files /dev/null and "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/NavarroColorado_AnalisisSoneto_Parte1.pdf" differ diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/NavarroColorado_AnalisisSoneto_Parte2.pdf" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/NavarroColorado_AnalisisSoneto_Parte2.pdf" new file mode 100644 index 0000000..05bc365 Binary files /dev/null and "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/NavarroColorado_AnalisisSoneto_Parte2.pdf" differ diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/.DS_Store" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/.DS_Store" new file mode 100644 index 0000000..53b023a Binary files /dev/null and "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/.DS_Store" differ diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/EnunciadoPractica1.pdf" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/EnunciadoPractica1.pdf" new file mode 100644 index 0000000..c45e0cb Binary files /dev/null and "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/EnunciadoPractica1.pdf" differ diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/GuiaAnotacionMetrica.pdf" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/GuiaAnotacionMetrica.pdf" new file mode 100644 index 0000000..7b9cb77 Binary files /dev/null and "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/GuiaAnotacionMetrica.pdf" differ diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/.DS_Store" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/.DS_Store" new file mode 100644 index 0000000..5008ddf Binary files /dev/null and "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/.DS_Store" differ diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_01.xml" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_01.xml" new file mode 100644 index 0000000..3edb825 --- /dev/null +++ "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_01.xml" @@ -0,0 +1,58 @@ + + + + + Spanish Metrical Patterns Bank: Golden Age Sonnets. + Borja Navarro Colorado + + Borja Navarro Colorado + Metrical patterns annotation + + + + Natural Language Processing Group. Department of Software and Computing Systems. University of Alicante (Spain) + + + Sonetos de Garcilaso de La Vega. Biblioteca Virtual Miguel de Cervantes, edición de Ramón García González. + + + + + stressed syllable + unstressed syllable + + +

All metrical patterns have been extracted automatically.

+
+
+
+ + + + - I - + + + Cuando me paro a contemplar mi estado, + y a ver los pasos por do me ha traído, + hallo, según por do anduve perdido, + que a mayor mal pudiera haber llegado; + + + mas cuando del camino esto olvidado, + a tanto mal no sé por do he venido; + sé que me acabo, y más he yo sentido + ver acabar conmigo mi cuidado. + + + Yo acabaré, que me entregué sin arte + a quien sabrá perderme y acabarme + si ella quisiere, y aun sabrá querello; + + + que, pues, mi voluntad puede matarme, + la suya, que no es tanto de mi parte, + pudiendo, ¿qué hará sino hacello? + + + +
\ No newline at end of file diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_05.xml" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_05.xml" new file mode 100644 index 0000000..997adf9 --- /dev/null +++ "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_05.xml" @@ -0,0 +1,58 @@ + + + + + Spanish Metrical Patterns Bank: Golden Age Sonnets. + Borja Navarro Colorado + + Borja Navarro Colorado + Metrical patterns annotation + + + + Natural Language Processing Group. Department of Software and Computing Systems. University of Alicante (Spain) + + + Sonetos de Garcilaso de La Vega. Biblioteca Virtual Miguel de Cervantes, edición de Ramón García González. + + + + + stressed syllable + unstressed syllable + + +

All metrical patterns have been extracted automatically.

+
+
+
+ + + + - V - + + + Escrito está en mi alma vuestro gesto, + y cuanto yo escribir de vos deseo; + vos sola lo escribiste, yo lo leo + tan solo, que aun de vos me guardo de esto. + + + En esto estoy y estaré siempre puesto, + que aunque no cabe en mí cuanto en vos veo, + de tanto bien lo que no entiendo creo, + tomando ya la fe por presupuesto. + + + Yo no nací sino para quereros; + mi alma os ha cortado a su medida: + por hábito del alma misma os quiero. + + + Cuanto tengo confieso yo deberos; + por vos nací, por vos tengo la vida, + por vos he de morir y por vos muero. + + + +
\ No newline at end of file diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_10.xml" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_10.xml" new file mode 100644 index 0000000..3e62f9e --- /dev/null +++ "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_10.xml" @@ -0,0 +1,58 @@ + + + + + Spanish Metrical Patterns Bank: Golden Age Sonnets. + Borja Navarro Colorado + + Borja Navarro Colorado + Metrical patterns annotation + + + + Natural Language Processing Group. Department of Software and Computing Systems. University of Alicante (Spain) + + + Sonetos de Garcilaso de La Vega. Biblioteca Virtual Miguel de Cervantes, edición de Ramón García González. + + + + + stressed syllable + unstressed syllable + + +

All metrical patterns have been extracted automatically.

+
+
+
+ + + + - X - + + + ¡Oh dulces prendas por mi mal halladas, + dulces y alegres, cuando Dios quería! + Juntas estáis en la memoria mía, + y con ella en mi muerte conjuradas. + + + ¿Quién me dijera, cuando en las pasadas + horas en tanto bien por vos me vía, + que me habíades de ser en algún día + con tan grave dolor representadas? + + + Pues en un hora junto me llevaste + todo el bien que por términos me distes, + llevadme junto al mal que dejaste. + + + Si no, sospecharé que me pusiste + en tantos bienes, porque deseaste + verme morir entre memorias tristes. + + + +
\ No newline at end of file diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_13.xml" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_13.xml" new file mode 100644 index 0000000..2250572 --- /dev/null +++ "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_13.xml" @@ -0,0 +1,58 @@ + + + + + Spanish Metrical Patterns Bank: Golden Age Sonnets. + Borja Navarro Colorado + + Borja Navarro Colorado + Metrical patterns annotation + + + + Natural Language Processing Group. Department of Software and Computing Systems. University of Alicante (Spain) + + + Sonetos de Garcilaso de La Vega. Biblioteca Virtual Miguel de Cervantes, edición de Ramón García González. + + + + + stressed syllable + unstressed syllable + + +

All metrical patterns have been extracted automatically.

+
+
+
+ + + + - XIII - + + + A Dafne ya los brazos le crecían, + y en luengos ramos vueltos se mostraban; + en verdes hojas vi que se tornaban + los cabellos que al oro oscurecían. + + + De áspera corteza se cubría + los tiernos miembros, que aún balbuciendo estaban; + los blancos pies en tierra se hincaban + y en torcidas raíces se volvían. + + + Aquel que fue la causa de tal daño, + a fuerza de llorar, crecer hacía + el árbol que con lágrimas regaba. + + + ¡Oh miserable estado, oh mal tamaño! + Que con llorarla crezca cada día + la causa y la razón por que lloraba! + + + +
\ No newline at end of file diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_23.xml" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_23.xml" new file mode 100644 index 0000000..42afe07 --- /dev/null +++ "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/GarcilasoDeLaVega_23.xml" @@ -0,0 +1,58 @@ + + + + + Spanish Metrical Patterns Bank: Golden Age Sonnets. + Borja Navarro Colorado + + Borja Navarro Colorado + Metrical patterns annotation + + + + Natural Language Processing Group. Department of Software and Computing Systems. University of Alicante (Spain) + + + Sonetos de Garcilaso de La Vega. Biblioteca Virtual Miguel de Cervantes, edición de Ramón García González. + + + + + stressed syllable + unstressed syllable + + +

All metrical patterns have been extracted automatically.

+
+
+
+ + + + - XXIII - + + + En tanto que de rosa y azucena + se muestra la color en vuestro gesto, + y que vuestro mirar ardiente, honesto, + enciende al corazón y lo refrena; + + + y en tanto que el cabello, que en la vena + del oro se escogió, con vuelo presto, + por el hermoso cuello blanco, enhiesto, + el viento mueve, esparce y desordena; + + + coged de vuestra alegre primavera + el dulce fruto, antes que el tiempo airado + cubra de nieve la hermosa cumbre. + + + Marchitará la rosa el viento helado, + todo lo mudará la edad ligera, + por no hacer mudanza en su costumbre. + + + +
\ No newline at end of file diff --git "a/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/Gongora_10.xml" "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/Gongora_10.xml" new file mode 100644 index 0000000..781c067 --- /dev/null +++ "b/14 - An\303\241lisis del soneto castellano del Siglo de Oro con m\303\251todos computacionales (Navarro Colorado)/Practica1_public/Practica1_public/sonetos/Gongora_10.xml" @@ -0,0 +1,58 @@ + + + + + Spanish Metrical Patterns Bank: Golden Age Sonnets. + Borja Navarro Colorado + + Borja Navarro Colorado + Metrical patterns annotation + + + + Natural Language Processing Group. Department of Software and Computing Systems. University of Alicante (Spain) + + + Sonetos de Gongora. Biblioteca Virtual Miguel de Cervantes, edición de Ramón García González. + + + + + stressed syllable + unstressed syllable + + +

All metrical patterns have been extracted automatically.

+
+
+
+ + + + - CVII - De Isabel de la Paz + + + De humildes padres hija, en pobres paños + envuelta se crió para criada + de la más que bellísima Hurtada, + do aprendió su provecho y nuestros daños. + + + De pajes fue orinal, y de picaños, + hasta que por barata y por taimada, + un caballero de la verde espada + la puso casa y la sirvió dos años. + + + Tulló a un Duque, y a cuatro mercadantes + más pobres los dejaron que el Decreto + sus ojos dulces, sus desdenes agros. + + + Esta es, lector, la vida y los milagros + de Isabel de la Paz, sea mi soneto + báculo a ciegos, Norte a navegantes. + + + +
\ No newline at end of file diff --git a/2 - Generacion computacional de poesia_ 15 anios de WASP (The Wishful Automatic Spanish Poet) (Gomez-Navarro)/Gervas-GeneracionAutomaticaDePoesiaDHSummer2016.pdf b/2 - Generacion computacional de poesia_ 15 anios de WASP (The Wishful Automatic Spanish Poet) (Gomez-Navarro)/Gervas-GeneracionAutomaticaDePoesiaDHSummer2016.pdf new file mode 100644 index 0000000..65bb551 Binary files /dev/null and b/2 - Generacion computacional de poesia_ 15 anios de WASP (The Wishful Automatic Spanish Poet) (Gomez-Navarro)/Gervas-GeneracionAutomaticaDePoesiaDHSummer2016.pdf differ diff --git a/3 - Investigacion, poesia y tecnologia_ un panorama de proyectos.(Mesa redonda)/Clara_Proyectos_que_dialogan.pdf b/3 - Investigacion, poesia y tecnologia_ un panorama de proyectos.(Mesa redonda)/Clara_Proyectos_que_dialogan.pdf new file mode 100644 index 0000000..717d1b5 Binary files /dev/null and b/3 - Investigacion, poesia y tecnologia_ un panorama de proyectos.(Mesa redonda)/Clara_Proyectos_que_dialogan.pdf differ diff --git a/3 - Investigacion, poesia y tecnologia_ un panorama de proyectos.(Mesa redonda)/Gimena_del_Rio_curso_de_verano_LINHD.pdf b/3 - Investigacion, poesia y tecnologia_ un panorama de proyectos.(Mesa redonda)/Gimena_del_Rio_curso_de_verano_LINHD.pdf new file mode 100644 index 0000000..f16982c Binary files /dev/null and b/3 - Investigacion, poesia y tecnologia_ un panorama de proyectos.(Mesa redonda)/Gimena_del_Rio_curso_de_verano_LINHD.pdf differ diff --git a/3 - Investigacion, poesia y tecnologia_ un panorama de proyectos.(Mesa redonda)/plantilla_ppt_introduccion.pdf b/3 - Investigacion, poesia y tecnologia_ un panorama de proyectos.(Mesa redonda)/plantilla_ppt_introduccion.pdf new file mode 100644 index 0000000..8804cae Binary files /dev/null and b/3 - Investigacion, poesia y tecnologia_ un panorama de proyectos.(Mesa redonda)/plantilla_ppt_introduccion.pdf differ diff --git a/3 - Investigacion, poesia y tecnologia_ un panorama de proyectos.(Mesa redonda)/ppt_gonzalezblanco.pdf b/3 - Investigacion, poesia y tecnologia_ un panorama de proyectos.(Mesa redonda)/ppt_gonzalezblanco.pdf new file mode 100644 index 0000000..9fb61fa Binary files /dev/null and b/3 - Investigacion, poesia y tecnologia_ un panorama de proyectos.(Mesa redonda)/ppt_gonzalezblanco.pdf differ diff --git a/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 1/ejercicio-1.txt b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 1/ejercicio-1.txt new file mode 100644 index 0000000..2ea2a49 --- /dev/null +++ b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 1/ejercicio-1.txt @@ -0,0 +1,13 @@ +Señora, qual soy venido +tal me parto +de trabajos más que farto, +dolorido. + +Quien no se farta de males +y vida desplaziente +de las penas desiguales +sufre callando paciente, +sino yo que sin sentido +me dirán +los que mis males verán, +ay perdido. \ No newline at end of file diff --git a/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 1/formulario-solucion-ejercicio-1.pdf b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 1/formulario-solucion-ejercicio-1.pdf new file mode 100644 index 0000000..b41c4e1 Binary files /dev/null and b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 1/formulario-solucion-ejercicio-1.pdf differ diff --git a/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 1/solucion-ejercicio-1.xml b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 1/solucion-ejercicio-1.xml new file mode 100644 index 0000000..c4e92ce --- /dev/null +++ b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 1/solucion-ejercicio-1.xml @@ -0,0 +1,19 @@ + + + + Señora, qual soy venido + tal me parto + de trabajos más que farto, + dolorido. + + + Quien no se farta de males + y vida desplaziente + de las penas desiguales + sufre callando paciente, + sino yo que sin sentido + me dirán + los que mis males verán, + ay perdido + + diff --git a/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 2/ejercicio-2.txt b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 2/ejercicio-2.txt new file mode 100644 index 0000000..793dee8 --- /dev/null +++ b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 2/ejercicio-2.txt @@ -0,0 +1,32 @@ + +MS Manuscript mp4a +ID Dutton_ID ID0315 +FOLIO Folio 38v-39r +STSIG Stanza_signature 4,8 +SYLL Syllable_signature 1x(1@8-1@4-1@8-1@4),1x(5@8-1@4-1@8-1@4) +FIRST First_line señora qual soy venido +Presentación crítica del texto sobre MP4: Gimena del Rio Riande + +Todos los datos de Repertorio métrico de la poesía cancioneril del siglo XV, Alcalá de Henares, Universidad de Alcalá de Henares, 1999, de Ana María Gómez Bravo +http://poemetca.linhd.es/ + + +========================================================= + +xyyx + + Señora, qual soy venido + tal me parto + de trabajos más que farto, + dolorido. + +ababxddx + + Quien no se farta de males + y vida desplaziente + de las penas desiguales + sufre callando paciente, + sino yo que sin sentido + me dirán + los que mis males verán, + ay perdido. \ No newline at end of file diff --git a/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 2/formulario-solucion-ejercicio-2-4475527.pdf b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 2/formulario-solucion-ejercicio-2-4475527.pdf new file mode 100644 index 0000000..07f39c9 Binary files /dev/null and b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 2/formulario-solucion-ejercicio-2-4475527.pdf differ diff --git a/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 2/solucion-ejercicio-2.xml b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 2/solucion-ejercicio-2.xml new file mode 100644 index 0000000..963cf97 --- /dev/null +++ b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 2/solucion-ejercicio-2.xml @@ -0,0 +1,60 @@ + + + + + + + Ejercicio: módulo verse + + + Laboratorio de Innovación en Humanidades Digitales + + + Creative Commons + Attribution-NonCommercial-ShareAlike 4.0 International + + + + +

Edición y análisis realizado por Gimena del Rio Riande, + quien amablemente ha cedido una versión digital del texto con fines didácticos.

+
+
+
+ + +
+ + Señora, qual soy venido + Juan Cornago + Marqués de Santillana + + + mp4a + Cancionero Musical de Palacio + + + ID0315 + + Gimena Rio Riande + + + Señora, qual soy venido + tal me parto + de trabajos más que farto, + dolorido. + + + Quien no se farta de males + y vida desplaziente + de las penas desiguales + sufre callando paciente, + sino yo que sin sentido + me dirán + los que mis males verán, + ay perdido. + +
+ +
+
\ No newline at end of file diff --git a/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 2/verse.rnc b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 2/verse.rnc new file mode 100644 index 0000000..3af5a69 --- /dev/null +++ b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/Ejercicio 2/verse.rnc @@ -0,0 +1,5453 @@ +namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0" +namespace rng = "http://relaxng.org/ns/structure/1.0" +namespace sch = "http://purl.oclc.org/dsdl/schematron" +default namespace tei = "http://www.tei-c.org/ns/1.0" +namespace teix = "http://www.tei-c.org/ns/Examples" +namespace xi = "http://www.w3.org/2001/XInclude" +namespace xlink = "http://www.w3.org/1999/xlink" + +# Schema generated from ODD source 2016-06-03T08:49:52Z. . +# TEI Edition: Version 3.0.0. Last updated on +# 29th March 2016, revision 89ba24e +# TEI Edition Location: http://www.tei-c.org/Vault/P5/Version 3.0.0/ +# + +# +tei_macro.paraContent = + (text + | tei_model.gLike + | tei_model.phrase + | tei_model.inter + | tei_model.global + | tei_lg + | tei_model.lLike)* +tei_macro.limitedContent = + (text | tei_model.limitedPhrase | tei_model.inter)* +tei_macro.phraseSeq = + (text | tei_model.gLike | tei_model.phrase | tei_model.global)* +tei_macro.phraseSeq.limited = + (text | tei_model.limitedPhrase | tei_model.global)* +tei_macro.specialPara = + (text + | tei_model.gLike + | tei_model.phrase + | tei_model.inter + | tei_model.divPart + | tei_model.global)* +tei_macro.xtext = (text | tei_model.gLike)* +tei_macro.anyXML = + element * - (tei:* | teix:egXML) { + attribute * { text }*, + (text | tei_macro.anyXML)* + } +tei_att.ascribed.attributes = tei_att.ascribed.attribute.who +tei_att.ascribed.attribute.who = + + ## indicates the person, or group of people, to whom the element content is ascribed. + attribute who { + list { xsd:anyURI+ } + }? +tei_att.canonical.attributes = + tei_att.canonical.attribute.key, tei_att.canonical.attribute.ref +tei_att.canonical.attribute.key = + + ## provides an externally-defined means of identifying the entity (or entities) being named, using a coded value of some kind. + attribute key { xsd:string }? +tei_att.canonical.attribute.ref = + + ## (reference) provides an explicit means of locating a full definition or identity for the entity being named by means of one or more URIs. + attribute ref { + list { xsd:anyURI+ } + }? +tei_att.ranging.attributes = + tei_att.ranging.attribute.atLeast, + tei_att.ranging.attribute.atMost, + tei_att.ranging.attribute.min, + tei_att.ranging.attribute.max, + tei_att.ranging.attribute.confidence +tei_att.ranging.attribute.atLeast = + + ## gives a minimum estimated value for the approximate measurement. + attribute atLeast { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.ranging.attribute.atMost = + + ## gives a maximum estimated value for the approximate measurement. + attribute atMost { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.ranging.attribute.min = + + ## where the measurement summarizes more than one observation or a range, supplies the minimum value observed. + attribute min { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.ranging.attribute.max = + + ## where the measurement summarizes more than one observation or a range, supplies the maximum value observed. + attribute max { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.ranging.attribute.confidence = + + ## specifies the degree of statistical confidence (between zero and one) that a value falls within the range specified by min and max, or the proportion of observed values that fall within that range. + attribute confidence { xsd:double }? +tei_att.dimensions.attributes = + tei_att.ranging.attributes, + tei_att.dimensions.attribute.unit, + tei_att.dimensions.attribute.quantity, + tei_att.dimensions.attribute.extent, + tei_att.dimensions.attribute.precision, + tei_att.dimensions.attribute.scope +tei_att.dimensions.attribute.unit = + + ## names the unit used for the measurement + ## Suggested values include: 1] cm(centimetres) ; 2] mm(millimetres) ; 3] in(inches) ; 4] lines; 5] chars(characters) + attribute unit { + + ## (centimetres) + "cm" + | + ## (millimetres) + "mm" + | + ## (inches) + "in" + | + ## lines of text + "lines" + | + ## (characters) characters of text + "chars" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.dimensions.attribute.quantity = + + ## specifies the length in the units specified + attribute quantity { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.dimensions.attribute.extent = + + ## indicates the size of the object concerned using a project-specific vocabulary combining quantity and units in a single string of words. + attribute extent { xsd:string }? +tei_att.dimensions.attribute.precision = + + ## characterizes the precision of the values specified by the other attributes. + attribute precision { + + ## + "high" + | + ## + "medium" + | + ## + "low" + | + ## + "unknown" + }? +tei_att.dimensions.attribute.scope = + + ## where the measurement summarizes more than one observation, specifies the applicability of this measurement. + ## Sample values include: 1] all; 2] most; 3] range + attribute scope { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.written.attributes = tei_att.written.attribute.hand +tei_att.written.attribute.hand = + + ## points to a handNote element describing the hand considered responsible for the textual content of the element concerned. + attribute hand { xsd:anyURI }? +tei_att.breaking.attributes = tei_att.breaking.attribute.break +tei_att.breaking.attribute.break = + + ## indicates whether or not the element bearing this attribute should be considered to mark the end of an orthographic token in the same way as whitespace. + attribute break { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.cReferencing.attributes = tei_att.cReferencing.attribute.cRef +tei_att.cReferencing.attribute.cRef = + + ## (canonical reference) specifies the destination of the pointer by supplying a canonical reference expressed using the scheme defined in a refsDecl element in the TEI header + attribute cRef { xsd:string }? +tei_att.datable.w3c.attributes = + tei_att.datable.w3c.attribute.when, + tei_att.datable.w3c.attribute.notBefore, + tei_att.datable.w3c.attribute.notAfter, + tei_att.datable.w3c.attribute.from, + tei_att.datable.w3c.attribute.to +tei_att.datable.w3c.attribute.when = + + ## supplies the value of the date or time in a standard form, e.g. yyyy-mm-dd. + attribute when { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }? +tei_att.datable.w3c.attribute.notBefore = + + ## specifies the earliest possible date for the event in standard form, e.g. yyyy-mm-dd. + attribute notBefore { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }? +tei_att.datable.w3c.attribute.notAfter = + + ## specifies the latest possible date for the event in standard form, e.g. yyyy-mm-dd. + attribute notAfter { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }? +tei_att.datable.w3c.attribute.from = + + ## indicates the starting point of the period in standard form, e.g. yyyy-mm-dd. + attribute from { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }? +tei_att.datable.w3c.attribute.to = + + ## indicates the ending point of the period in standard form, e.g. yyyy-mm-dd. + attribute to { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }? +sch:pattern [ + id = "verse-heb-att.datable.w3c-att-datable-w3c-when-constraint-1" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@when]" + "\x{a}" ~ + " " + sch:report [ + role = "nonfatal" + test = "@notBefore|@notAfter|@from|@to" + "The @when attribute cannot be used with any other att.datable.w3c attributes." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +sch:pattern [ + id = "verse-heb-att.datable.w3c-att-datable-w3c-from-constraint-2" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@from]" + "\x{a}" ~ + " " + sch:report [ + role = "nonfatal" + test = "@notBefore" + "The @from and @notBefore attributes cannot be used together." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +sch:pattern [ + id = "verse-heb-att.datable.w3c-att-datable-w3c-to-constraint-3" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@to]" + "\x{a}" ~ + " " + sch:report [ + role = "nonfatal" + test = "@notAfter" + "The @to and @notAfter attributes cannot be used together." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +tei_att.datable.attributes = + tei_att.datable.w3c.attributes, + tei_att.datable.attribute.calendar, + tei_att.datable.attribute.period +tei_att.datable.attribute.calendar = + + ## indicates the system or calendar to which the date represented by the content of this element belongs. + attribute calendar { xsd:anyURI }? +sch:pattern [ + id = "verse-heb-att.datable-calendar-calendar-constraint-4" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@calendar]" + "\x{a}" ~ + " " + sch:assert [ + test = "string-length(.) gt 0" + "\x{a}" ~ + "@calendar indicates the system or calendar to which the date represented by the content of this element\x{a}" ~ + "belongs, but this " + sch:name [ ] + " element has no textual content." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +tei_att.datable.attribute.period = + + ## supplies a pointer to some location defining a named period of time within which the datable item is understood to have occurred. + attribute period { xsd:anyURI }? +tei_att.declarable.attributes = tei_att.declarable.attribute.default +tei_att.declarable.attribute.default = + + ## indicates whether or not this element is selected by default when its parent is selected. + [ a:defaultValue = "false" ] + attribute default { + + ## This element is selected if its parent is selected + "true" + | + ## This element can only be selected explicitly, unless it is the only one of its kind, in which case it is selected if its parent is selected. + "false" + }? +tei_att.declaring.attributes = tei_att.declaring.attribute.decls +tei_att.declaring.attribute.decls = + + ## identifies one or more declarable elements within the header, which are understood to apply to the element bearing this attribute and its content. + attribute decls { + list { xsd:anyURI+ } + }? +tei_att.fragmentable.attributes = tei_att.fragmentable.attribute.part +tei_att.fragmentable.attribute.part = + + ## specifies whether or not its parent element is fragmented in some way, typically by some other overlapping structure: for example a speech which is divided between two or more verse stanzas, a paragraph which is split across a page division, a verse line which is divided between two speakers. + [ a:defaultValue = "N" ] + attribute part { + + ## (yes) the element is fragmented in some (unspecified) respect + "Y" + | + ## (no) the element is not fragmented, or no claim is made as to its completeness + "N" + | + ## (initial) this is the initial part of a fragmented element + "I" + | + ## (medial) this is a medial part of a fragmented element + "M" + | + ## (final) this is the final part of a fragmented element + "F" + }? +tei_att.divLike.attributes = + tei_att.metrical.attributes, + tei_att.fragmentable.attributes, + tei_att.divLike.attribute.org, + tei_att.divLike.attribute.sample +tei_att.divLike.attribute.org = + + ## (organization) specifies how the content of the division is organized. + [ a:defaultValue = "uniform" ] + attribute org { + + ## no claim is made about the sequence in which the immediate contents of this division are to be processed, or their inter-relationships. + "composite" + | + ## the immediate contents of this element are regarded as forming a logical unit, to be processed in sequence. + "uniform" + }? +tei_att.divLike.attribute.sample = + + ## indicates whether this division is a sample of the original source and if so, from which part. + [ a:defaultValue = "complete" ] + attribute sample { + + ## division lacks material present at end in source. + "initial" + | + ## division lacks material at start and end. + "medial" + | + ## division lacks material at start. + "final" + | + ## position of sampled material within original unknown. + "unknown" + | + ## division is not a sample. + "complete" + }? +tei_att.docStatus.attributes = tei_att.docStatus.attribute.status +tei_att.docStatus.attribute.status = + + ## describes the status of a document either currently or, when associated with a dated element, at the time indicated. + ## Sample values include: 1] approved; 2] candidate; 3] cleared; 4] deprecated; 5] draft; 6] embargoed; 7] expired; 8] frozen; 9] galley; 10] proposed; 11] published; 12] recommendation; 13] submitted; 14] unfinished; 15] withdrawn + [ a:defaultValue = "draft" ] + attribute status { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.global.responsibility.attributes = + tei_att.global.responsibility.attribute.cert, + tei_att.global.responsibility.attribute.resp +tei_att.global.responsibility.attribute.cert = + + ## (certainty) signifies the degree of certainty associated with the intervention or interpretation. + attribute cert { + xsd:double + | ( + ## + "high" + | + ## + "medium" + | + ## + "low" + | + ## + "unknown") + }? +tei_att.global.responsibility.attribute.resp = + + ## (responsible party) indicates the agency responsible for the intervention or interpretation, for example an editor or transcriber. + attribute resp { + list { xsd:anyURI+ } + }? +tei_att.editLike.attributes = + tei_att.dimensions.attributes, + tei_att.source.attributes, + tei_att.editLike.attribute.evidence, + tei_att.editLike.attribute.instant +tei_att.editLike.attribute.evidence = + + ## indicates the nature of the evidence supporting the reliability or accuracy of the intervention or interpretation. + ## Suggested values include: 1] internal; 2] external; 3] conjecture + attribute evidence { + list { + ( + ## there is internal evidence to support the intervention. + "internal" + | + ## there is external evidence to support the intervention. + "external" + | + ## the intervention or interpretation has been made by the editor, cataloguer, or scholar on the basis of their expertise. + "conjecture" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" })+ + } + }? +tei_att.editLike.attribute.instant = + + ## indicates whether this is an instant revision or not. + [ a:defaultValue = "false" ] + attribute instant { + xsd:boolean + | ( + ## + "unknown" + | + ## + "inapplicable") + }? +tei_att.global.rendition.attributes = + tei_att.global.rendition.attribute.rend, + tei_att.global.rendition.attribute.style, + tei_att.global.rendition.attribute.rendition +tei_att.global.rendition.attribute.rend = + + ## (rendition) indicates how the element in question was rendered or presented in the source text. + attribute rend { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.global.rendition.attribute.style = + + ## contains an expression in some formal style definition language which defines the rendering or presentation used for this element in the source text + attribute style { xsd:string }? +tei_att.global.rendition.attribute.rendition = + + ## points to a description of the rendering or presentation used for this element in the source text. + attribute rendition { + list { xsd:anyURI+ } + }? +tei_att.global.attributes = + tei_att.global.rendition.attributes, + tei_att.global.responsibility.attributes, + tei_att.global.attribute.xmlid, + tei_att.global.attribute.n, + tei_att.global.attribute.xmllang, + tei_att.global.attribute.xmlbase, + tei_att.global.attribute.xmlspace +tei_att.global.attribute.xmlid = + + ## (identifier) provides a unique identifier for the element bearing the attribute. + attribute xml:id { xsd:ID }? +tei_att.global.attribute.n = + + ## (number) gives a number (or other label) for an element, which is not necessarily unique within the document. + attribute n { xsd:string }? +tei_att.global.attribute.xmllang = + + ## (language) indicates the language of the element content using a tag generated according to BCP 47. + attribute xml:lang { + xsd:language + | ( + ## + "") + }? +tei_att.global.attribute.xmlbase = + + ## provides a base URI reference with which applications can resolve relative URI references into absolute URI references. + attribute xml:base { xsd:anyURI }? +tei_att.global.attribute.xmlspace = + + ## signals an intention about how white space should be managed by applications. + attribute xml:space { + + ## signals that the application's default white-space processing modes are acceptable + "default" + | + ## indicates the intent that applications preserve all white space + "preserve" + }? +tei_att.handFeatures.attributes = + tei_att.handFeatures.attribute.scribe, + tei_att.handFeatures.attribute.scribeRef, + tei_att.handFeatures.attribute.script, + tei_att.handFeatures.attribute.scriptRef, + tei_att.handFeatures.attribute.medium, + tei_att.handFeatures.attribute.scope +tei_att.handFeatures.attribute.scribe = + + ## gives a name or other identifier for the scribe believed to be responsible for this hand. + attribute scribe { xsd:Name }? +tei_att.handFeatures.attribute.scribeRef = + + ## points to a full description of the scribe concerned, typically supplied by a person element elsewhere in the description. + attribute scribeRef { + list { xsd:anyURI+ } + }? +tei_att.handFeatures.attribute.script = + + ## characterizes the particular script or writing style used by this hand, for example secretary, copperplate, Chancery, Italian, etc. + attribute script { + list { xsd:Name+ } + }? +tei_att.handFeatures.attribute.scriptRef = + + ## points to a full description of the script or writing style used by this hand, typically supplied by a scriptNote element elsewhere in the description. + attribute scriptRef { + list { xsd:anyURI+ } + }? +tei_att.handFeatures.attribute.medium = + + ## describes the tint or type of ink, e.g. brown, or other writing medium, e.g. pencil + attribute medium { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.handFeatures.attribute.scope = + + ## specifies how widely this hand is used in the manuscript. + attribute scope { + + ## only this hand is used throughout the manuscript + "sole" + | + ## this hand is used through most of the manuscript + "major" + | + ## this hand is used occasionally in the manuscript + "minor" + }? +tei_att.internetMedia.attributes = + tei_att.internetMedia.attribute.mimeType +tei_att.internetMedia.attribute.mimeType = + + ## (MIME media type) specifies the applicable multimedia internet mail extension (MIME) media type + attribute mimeType { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.media.attributes = + tei_att.internetMedia.attributes, + tei_att.media.attribute.width, + tei_att.media.attribute.height, + tei_att.media.attribute.scale +tei_att.media.attribute.width = + + ## Where the media are displayed, indicates the display width + attribute width { + xsd:token { + pattern = + "[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)" + } + }? +tei_att.media.attribute.height = + + ## Where the media are displayed, indicates the display height + attribute height { + xsd:token { + pattern = + "[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)" + } + }? +tei_att.media.attribute.scale = + + ## Where the media are displayed, indicates a scale factor to be applied when generating the desired display size + attribute scale { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.resourced.attributes = tei_att.resourced.attribute.url +tei_att.resourced.attribute.url = + + ## (uniform resource locator) specifies the URL from which the media concerned may be obtained. + attribute url { xsd:anyURI } +tei_att.measurement.attributes = + tei_att.measurement.attribute.unit, + tei_att.measurement.attribute.quantity, + tei_att.measurement.attribute.commodity +tei_att.measurement.attribute.unit = + + ## indicates the units used for the measurement, usually using the standard symbol for the desired units. + ## Suggested values include: 1] m(metre) ; 2] kg(kilogram) ; 3] s(second) ; 4] Hz(hertz) ; 5] Pa(pascal) ; 6] Ω(ohm) ; 7] L(litre) ; 8] t(tonne) ; 9] ha(hectare) ; 10] Å(ångström) ; 11] mL(millilitre) ; 12] cm(centimetre) ; 13] dB(decibel) ; 14] kbit(kilobit) ; 15] Kibit(kibibit) ; 16] kB(kilobyte) ; 17] KiB(kibibyte) ; 18] MB(megabyte) ; 19] MiB(mebibyte) + attribute unit { + + ## (metre) SI base unit of length + "m" + | + ## (kilogram) SI base unit of mass + "kg" + | + ## (second) SI base unit of time + "s" + | + ## (hertz) SI unit of frequency + "Hz" + | + ## (pascal) SI unit of pressure or stress + "Pa" + | + ## (ohm) SI unit of electric resistance + "Ω" + | + ## (litre) 1 dm³ + "L" + | + ## (tonne) 10³ kg + "t" + | + ## (hectare) 1 hm² + "ha" + | + ## (ångström) 10⁻¹⁰ m + "Å" + | + ## (millilitre) + "mL" + | + ## (centimetre) + "cm" + | + ## (decibel) see remarks, below + "dB" + | + ## (kilobit) 10³ or 1000 bits + "kbit" + | + ## (kibibit) 2¹⁰ or 1024 bits + "Kibit" + | + ## (kilobyte) 10³ or 1000 bytes + "kB" + | + ## (kibibyte) 2¹⁰ or 1024 bytes + "KiB" + | + ## (megabyte) 10⁶ or 1 000 000 bytes + "MB" + | + ## (mebibyte) 2²⁰ or 1 048 576 bytes + "MiB" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.measurement.attribute.quantity = + + ## specifies the number of the specified units that comprise the measurement + attribute quantity { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.measurement.attribute.commodity = + + ## indicates the substance that is being measured + attribute commodity { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.naming.attributes = + tei_att.canonical.attributes, + tei_att.naming.attribute.role, + tei_att.naming.attribute.nymRef +tei_att.naming.attribute.role = + + ## may be used to specify further information about the entity referenced by this name in the form of a set of whitespace-separated values, for example the occupation of a person, or the status of a place. + attribute role { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.naming.attribute.nymRef = + + ## (reference to the canonical name) provides a means of locating the canonical form (nym) of the names associated with the object named by the element bearing it. + attribute nymRef { + list { xsd:anyURI+ } + }? +tei_att.placement.attributes = tei_att.placement.attribute.place +tei_att.placement.attribute.place = + + ## specifies where this item is placed. + ## Suggested values include: 1] below; 2] bottom; 3] margin; 4] top; 5] opposite; 6] overleaf; 7] above; 8] end; 9] inline; 10] inspace + attribute place { + list { + ( + ## below the line + "below" + | + ## at the foot of the page + "bottom" + | + ## in the margin (left, right, or both) + "margin" + | + ## at the top of the page + "top" + | + ## on the opposite, i.e. facing, page + "opposite" + | + ## on the other side of the leaf + "overleaf" + | + ## above the line + "above" + | + ## at the end of e.g. chapter or volume. + "end" + | + ## within the body of the text. + "inline" + | + ## in a predefined space, for example left by an earlier scribe. + "inspace" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" })+ + } + }? +tei_att.typed.attributes = + tei_att.typed.attribute.type, tei_att.typed.attribute.subtype +tei_att.typed.attribute.type = + + ## characterizes the element in some sense, using any convenient classification scheme or typology. + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.typed.attribute.subtype = + + ## provides a sub-categorization of the element, if needed + attribute subtype { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +sch:pattern [ + id = "verse-heb-att.typed-subtypeTyped-constraint-5" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@subtype]" + "\x{a}" ~ + " " + sch:assert [ + test = "@type" + "The " + sch:name [ ] + " element should not be categorized in detail with @subtype unless also categorized in general with @type" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +tei_att.pointing.attributes = + tei_att.pointing.attribute.targetLang, + tei_att.pointing.attribute.target, + tei_att.pointing.attribute.evaluate +tei_att.pointing.attribute.targetLang = + + ## specifies the language of the content to be found at the destination referenced by target, using a language tag generated according to BCP 47. + attribute targetLang { + xsd:language + | ( + ## + "") + }? +sch:pattern [ + id = "verse-heb-att.pointing-targetLang-targetLang-constraint-6" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[not(self::tei:schemaSpec)][@targetLang]" + "\x{a}" ~ + " " + sch:assert [ + test = "@target" + "@targetLang should only be used on " + sch:name [ ] + " if @target is specified." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +tei_att.pointing.attribute.target = + + ## specifies the destination of the reference by supplying one or more URI References + attribute target { + list { xsd:anyURI+ } + }? +tei_att.pointing.attribute.evaluate = + + ## specifies the intended meaning when the target of a pointer is itself a pointer. + attribute evaluate { + + ## if the element pointed to is itself a pointer, then the target of that pointer will be taken, and so on, until an element is found which is not a pointer. + "all" + | + ## if the element pointed to is itself a pointer, then its target (whether a pointer or not) is taken as the target of this pointer. + "one" + | + ## no further evaluation of targets is carried out beyond that needed to find the element specified in the pointer's target. + "none" + }? +tei_att.sortable.attributes = tei_att.sortable.attribute.sortKey +tei_att.sortable.attribute.sortKey = + + ## supplies the sort key for this element in an index, list or group which contains it. + attribute sortKey { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.edition.attributes = + tei_att.edition.attribute.ed, tei_att.edition.attribute.edRef +tei_att.edition.attribute.ed = + + ## (edition) supplies a sigil or other arbitrary identifier for the source edition in which the associated feature (for example, a page, column, or line break) occurs at this point in the text. + attribute ed { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.edition.attribute.edRef = + + ## (edition reference) provides a pointer to the source edition in which the associated feature (for example, a page, column, or line break) occurs at this point in the text. + attribute edRef { + list { xsd:anyURI+ } + }? +tei_att.spanning.attributes = tei_att.spanning.attribute.spanTo +tei_att.spanning.attribute.spanTo = + + ## indicates the end of a span initiated by the element bearing this attribute. + attribute spanTo { xsd:anyURI }? +sch:pattern [ + id = "verse-heb-att.spanning-spanTo-spanTo-2-constraint-7" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@spanTo]" + "\x{a}" ~ + " " + sch:assert [ + test = + "id(substring(@spanTo,2)) and following::*[@xml:id=substring(current()/@spanTo,2)]" + "\x{a}" ~ + "The element indicated by @spanTo (" + sch:value-of [ select = "@spanTo" ] + ") must follow the current element " + sch:name [ ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +tei_att.styleDef.attributes = + tei_att.styleDef.attribute.scheme, + tei_att.styleDef.attribute.schemeVersion +tei_att.styleDef.attribute.scheme = + + ## identifies the language used to describe the rendition. + attribute scheme { + + ## Cascading Stylesheet Language + "css" + | + ## Extensible Stylesheet Language Formatting Objects + "xslfo" + | + ## Informal free text description + "free" + | + ## A user-defined rendition description language + "other" + }? +tei_att.styleDef.attribute.schemeVersion = + + ## supplies a version number for the style language provided in scheme. + attribute schemeVersion { + xsd:token { pattern = "[\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3}" } + }? +sch:pattern [ + id = + "verse-heb-att.styleDef-schemeVersion-schemeVersionRequiresScheme-constraint-8" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@schemeVersion]" + "\x{a}" ~ + " " + sch:assert [ + test = "@scheme and not(@scheme = 'free')" + "\x{a}" ~ + " @schemeVersion can only be used if @scheme is specified.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +tei_att.timed.attributes = + tei_att.timed.attribute.start, tei_att.timed.attribute.end +tei_att.timed.attribute.start = + + ## indicates the location within a temporal alignment at which this element begins. + attribute start { xsd:anyURI }? +tei_att.timed.attribute.end = + + ## indicates the location within a temporal alignment at which this element ends. + attribute end { xsd:anyURI }? +tei_att.transcriptional.attributes = + tei_att.editLike.attributes, + tei_att.written.attributes, + tei_att.transcriptional.attribute.status, + tei_att.transcriptional.attribute.cause, + tei_att.transcriptional.attribute.seq +tei_att.transcriptional.attribute.status = + + ## indicates the effect of the intervention, for example in the case of a deletion, strikeouts which include too much or too little text, or in the case of an addition, an insertion which duplicates some of the text already present. + ## Sample values include: 1] duplicate; 2] duplicate-partial; 3] excessStart; 4] excessEnd; 5] shortStart; 6] shortEnd; 7] partial; 8] unremarkable + [ a:defaultValue = "unremarkable" ] + attribute status { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.transcriptional.attribute.cause = + + ## documents the presumed cause for the intervention. + ## Suggested values include: 1] fix; 2] unclear + attribute cause { + + ## repeated for the purpose of fixation + "fix" + | + ## repeated to clarify a previously illegible or badly written text or mark + "unclear" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.transcriptional.attribute.seq = + + ## (sequence) assigns a sequence number related to the order in which the encoded features carrying this attribute are believed to have occurred. + attribute seq { xsd:nonNegativeInteger }? +tei_att.translatable.attributes = + tei_att.translatable.attribute.versionDate +tei_att.translatable.attribute.versionDate = + + ## specifies the date on which the source text was extracted and sent to the translator + attribute versionDate { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }? +tei_att.citing.attributes = + tei_att.citing.attribute.unit, + tei_att.citing.attribute.from, + tei_att.citing.attribute.to +tei_att.citing.attribute.unit = + + ## identifies the unit of information conveyed by the element, e.g. columns, pages, volume. + ## Suggested values include: 1] volume; 2] issue; 3] page; 4] line; 5] chapter; 6] part; 7] column + attribute unit { + + ## the element contains a volume number. + "volume" + | + ## the element contains an issue number, or volume and issue numbers. + "issue" + | + ## the element contains a page number or page range. + "page" + | + ## the element contains a line number or line range. + "line" + | + ## the element contains a chapter indication (number and/or title) + "chapter" + | + ## the element identifies a part of a book or collection. + "part" + | + ## the element identifies a column. + "column" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.citing.attribute.from = + + ## specifies the starting point of the range of units indicated by the unit attribute. + attribute from { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.citing.attribute.to = + + ## specifies the end-point of the range of units indicated by the unit attribute. + attribute to { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_model.nameLike.agent = tei_name +tei_model.nameLike.agent_alternation = tei_name +tei_model.nameLike.agent_sequence = tei_name +tei_model.nameLike.agent_sequenceOptional = tei_name? +tei_model.nameLike.agent_sequenceOptionalRepeatable = tei_name* +tei_model.nameLike.agent_sequenceRepeatable = tei_name+ +tei_model.segLike = notAllowed +tei_model.hiLike = tei_hi +tei_model.hiLike_alternation = tei_hi +tei_model.hiLike_sequence = tei_hi +tei_model.hiLike_sequenceOptional = tei_hi? +tei_model.hiLike_sequenceOptionalRepeatable = tei_hi* +tei_model.hiLike_sequenceRepeatable = tei_hi+ +tei_model.emphLike = + tei_foreign + | tei_emph + | tei_distinct + | tei_mentioned + | tei_soCalled + | tei_gloss + | tei_term + | tei_title +tei_model.emphLike_alternation = + tei_foreign + | tei_emph + | tei_distinct + | tei_mentioned + | tei_soCalled + | tei_gloss + | tei_term + | tei_title +tei_model.emphLike_sequence = + tei_foreign, + tei_emph, + tei_distinct, + tei_mentioned, + tei_soCalled, + tei_gloss, + tei_term, + tei_title +tei_model.emphLike_sequenceOptional = + tei_foreign?, + tei_emph?, + tei_distinct?, + tei_mentioned?, + tei_soCalled?, + tei_gloss?, + tei_term?, + tei_title? +tei_model.emphLike_sequenceOptionalRepeatable = + tei_foreign*, + tei_emph*, + tei_distinct*, + tei_mentioned*, + tei_soCalled*, + tei_gloss*, + tei_term*, + tei_title* +tei_model.emphLike_sequenceRepeatable = + tei_foreign+, + tei_emph+, + tei_distinct+, + tei_mentioned+, + tei_soCalled+, + tei_gloss+, + tei_term+, + tei_title+ +tei_model.highlighted = tei_model.hiLike | tei_model.emphLike +tei_model.dateLike = tei_date | tei_time +tei_model.dateLike_alternation = tei_date | tei_time +tei_model.dateLike_sequence = tei_date, tei_time +tei_model.dateLike_sequenceOptional = tei_date?, tei_time? +tei_model.dateLike_sequenceOptionalRepeatable = tei_date*, tei_time* +tei_model.dateLike_sequenceRepeatable = tei_date+, tei_time+ +tei_model.dimLike = tei_height | tei_depth | tei_width +tei_model.measureLike = + tei_num + | tei_measure + | tei_measureGrp + | tei_dim + | tei_height + | tei_depth + | tei_width +tei_model.measureLike_alternation = + tei_num + | tei_measure + | tei_measureGrp + | tei_dim + | tei_height + | tei_depth + | tei_width +tei_model.measureLike_sequence = + tei_num, + tei_measure, + tei_measureGrp, + tei_dim, + tei_height, + tei_depth, + tei_width +tei_model.measureLike_sequenceOptional = + tei_num?, + tei_measure?, + tei_measureGrp?, + tei_dim?, + tei_height?, + tei_depth?, + tei_width? +tei_model.measureLike_sequenceOptionalRepeatable = + tei_num*, + tei_measure*, + tei_measureGrp*, + tei_dim*, + tei_height*, + tei_depth*, + tei_width* +tei_model.measureLike_sequenceRepeatable = + tei_num+, + tei_measure+, + tei_measureGrp+, + tei_dim+, + tei_height+, + tei_depth+, + tei_width+ +tei_model.egLike = notAllowed +tei_model.egLike_alternation = notAllowed +tei_model.egLike_sequence = empty +tei_model.egLike_sequenceOptional = empty +tei_model.egLike_sequenceOptionalRepeatable = empty +tei_model.egLike_sequenceRepeatable = notAllowed +tei_model.graphicLike = tei_media | tei_graphic | tei_binaryObject +tei_model.offsetLike = notAllowed +tei_model.offsetLike_alternation = notAllowed +tei_model.offsetLike_sequence = empty +tei_model.offsetLike_sequenceOptional = empty +tei_model.offsetLike_sequenceOptionalRepeatable = empty +tei_model.offsetLike_sequenceRepeatable = notAllowed +tei_model.pPart.msdesc = + tei_catchwords + | tei_dimensions + | tei_heraldry + | tei_locus + | tei_locusGrp + | tei_material + | tei_objectType + | tei_origDate + | tei_origPlace + | tei_secFol + | tei_signatures + | tei_stamp + | tei_watermark +tei_model.pPart.editorial = tei_choice | tei_abbr | tei_expan +tei_model.pPart.editorial_alternation = + tei_choice | tei_abbr | tei_expan +tei_model.pPart.editorial_sequence = tei_choice, tei_abbr, tei_expan +tei_model.pPart.editorial_sequenceOptional = + tei_choice?, tei_abbr?, tei_expan? +tei_model.pPart.editorial_sequenceOptionalRepeatable = + tei_choice*, tei_abbr*, tei_expan* +tei_model.pPart.editorial_sequenceRepeatable = + tei_choice+, tei_abbr+, tei_expan+ +tei_model.pPart.transcriptional = + tei_sic + | tei_corr + | tei_reg + | tei_orig + | tei_add + | tei_del + | tei_unclear +tei_model.pPart.transcriptional_alternation = + tei_sic + | tei_corr + | tei_reg + | tei_orig + | tei_add + | tei_del + | tei_unclear +tei_model.pPart.transcriptional_sequence = + tei_sic, tei_corr, tei_reg, tei_orig, tei_add, tei_del, tei_unclear +tei_model.pPart.transcriptional_sequenceOptional = + tei_sic?, + tei_corr?, + tei_reg?, + tei_orig?, + tei_add?, + tei_del?, + tei_unclear? +tei_model.pPart.transcriptional_sequenceOptionalRepeatable = + tei_sic*, + tei_corr*, + tei_reg*, + tei_orig*, + tei_add*, + tei_del*, + tei_unclear* +tei_model.pPart.transcriptional_sequenceRepeatable = + tei_sic+, + tei_corr+, + tei_reg+, + tei_orig+, + tei_add+, + tei_del+, + tei_unclear+ +tei_model.pPart.edit = + tei_model.pPart.editorial | tei_model.pPart.transcriptional +tei_model.ptrLike = tei_ptr | tei_ref +tei_model.lPart = tei_caesura | tei_rhyme +tei_model.global.meta = tei_index +tei_model.milestoneLike = + tei_milestone | tei_gb | tei_pb | tei_lb | tei_cb +tei_model.gLike = notAllowed +tei_model.oddDecl = notAllowed +tei_model.oddDecl_alternation = notAllowed +tei_model.oddDecl_sequence = empty +tei_model.oddDecl_sequenceOptional = empty +tei_model.oddDecl_sequenceOptionalRepeatable = empty +tei_model.oddDecl_sequenceRepeatable = notAllowed +tei_model.phrase.xml = notAllowed +tei_model.specDescLike = notAllowed +tei_model.biblLike = + tei_bibl | tei_biblStruct | tei_listBibl | tei_biblFull | tei_msDesc +tei_model.biblLike_alternation = + tei_bibl | tei_biblStruct | tei_listBibl | tei_biblFull | tei_msDesc +tei_model.biblLike_sequence = + tei_bibl, tei_biblStruct, tei_listBibl, tei_biblFull, tei_msDesc +tei_model.biblLike_sequenceOptional = + tei_bibl?, tei_biblStruct?, tei_listBibl?, tei_biblFull?, tei_msDesc? +tei_model.biblLike_sequenceOptionalRepeatable = + tei_bibl*, tei_biblStruct*, tei_listBibl*, tei_biblFull*, tei_msDesc* +tei_model.biblLike_sequenceRepeatable = + tei_bibl+, tei_biblStruct+, tei_listBibl+, tei_biblFull+, tei_msDesc+ +tei_model.headLike = tei_head +tei_model.headLike_alternation = tei_head +tei_model.headLike_sequence = tei_head +tei_model.headLike_sequenceOptional = tei_head? +tei_model.headLike_sequenceOptionalRepeatable = tei_head* +tei_model.headLike_sequenceRepeatable = tei_head+ +tei_model.labelLike = tei_desc | tei_label +tei_model.labelLike_alternation = tei_desc | tei_label +tei_model.labelLike_sequence = tei_desc, tei_label +tei_model.labelLike_sequenceOptional = tei_desc?, tei_label? +tei_model.labelLike_sequenceOptionalRepeatable = tei_desc*, tei_label* +tei_model.labelLike_sequenceRepeatable = tei_desc+, tei_label+ +tei_model.listLike = tei_list +tei_model.listLike_alternation = tei_list +tei_model.listLike_sequence = tei_list +tei_model.listLike_sequenceOptional = tei_list? +tei_model.listLike_sequenceOptionalRepeatable = tei_list* +tei_model.listLike_sequenceRepeatable = tei_list+ +tei_model.noteLike = tei_note +tei_model.lLike = tei_l +tei_model.lLike_alternation = tei_l +tei_model.lLike_sequence = tei_l +tei_model.lLike_sequenceOptional = tei_l? +tei_model.lLike_sequenceOptionalRepeatable = tei_l* +tei_model.lLike_sequenceRepeatable = tei_l+ +tei_model.pLike = tei_p +tei_model.pLike_alternation = tei_p +tei_model.pLike_sequence = tei_p +tei_model.pLike_sequenceOptional = tei_p? +tei_model.pLike_sequenceOptionalRepeatable = tei_p* +tei_model.pLike_sequenceRepeatable = tei_p+ +tei_model.stageLike = tei_stage +tei_model.stageLike_alternation = tei_stage +tei_model.stageLike_sequence = tei_stage +tei_model.stageLike_sequenceOptional = tei_stage? +tei_model.stageLike_sequenceOptionalRepeatable = tei_stage* +tei_model.stageLike_sequenceRepeatable = tei_stage+ +tei_model.entryPart = notAllowed +tei_model.global.edit = tei_gap +tei_model.divPart = tei_model.lLike | tei_model.pLike | tei_lg | tei_sp +tei_model.placeNamePart = notAllowed +tei_model.placeNamePart_alternation = notAllowed +tei_model.placeNamePart_sequence = empty +tei_model.placeNamePart_sequenceOptional = empty +tei_model.placeNamePart_sequenceOptionalRepeatable = empty +tei_model.placeNamePart_sequenceRepeatable = notAllowed +tei_model.placeStateLike = tei_model.placeNamePart +tei_model.placeStateLike_alternation = + tei_model.placeNamePart_alternation +tei_model.placeStateLike_sequence = tei_model.placeNamePart_sequence +tei_model.placeStateLike_sequenceOptional = + tei_model.placeNamePart_sequenceOptional? +tei_model.placeStateLike_sequenceOptionalRepeatable = + tei_model.placeNamePart_sequenceOptionalRepeatable* +tei_model.placeStateLike_sequenceRepeatable = + tei_model.placeNamePart_sequenceRepeatable+ +tei_model.publicationStmtPart.agency = + tei_publisher | tei_distributor | tei_authority +tei_model.publicationStmtPart.detail = + tei_address | tei_date | tei_pubPlace | tei_idno | tei_availability +tei_model.availabilityPart = tei_licence +tei_model.certLike = notAllowed +tei_model.descLike = tei_desc +tei_model.glossLike = tei_gloss +tei_model.quoteLike = tei_quote | tei_cit +tei_model.quoteLike_alternation = tei_quote | tei_cit +tei_model.quoteLike_sequence = tei_quote, tei_cit +tei_model.quoteLike_sequenceOptional = tei_quote?, tei_cit? +tei_model.quoteLike_sequenceOptionalRepeatable = tei_quote*, tei_cit* +tei_model.quoteLike_sequenceRepeatable = tei_quote+, tei_cit+ +tei_model.qLike = + tei_model.quoteLike | tei_said | tei_q | tei_floatingText +tei_model.qLike_alternation = + tei_model.quoteLike_alternation | tei_said | tei_q | tei_floatingText +tei_model.qLike_sequence = + tei_model.quoteLike_sequence, tei_said, tei_q, tei_floatingText +tei_model.qLike_sequenceOptional = + tei_model.quoteLike_sequenceOptional?, + tei_said?, + tei_q?, + tei_floatingText? +tei_model.qLike_sequenceOptionalRepeatable = + tei_model.quoteLike_sequenceOptionalRepeatable*, + tei_said*, + tei_q*, + tei_floatingText* +tei_model.qLike_sequenceRepeatable = + tei_model.quoteLike_sequenceRepeatable+, + tei_said+, + tei_q+, + tei_floatingText+ +tei_model.respLike = + tei_author + | tei_editor + | tei_respStmt + | tei_meeting + | tei_sponsor + | tei_funder + | tei_principal +tei_model.divWrapper = + tei_meeting + | tei_byline + | tei_dateline + | tei_argument + | tei_epigraph + | tei_salute + | tei_docAuthor + | tei_docDate +tei_model.divTopPart = tei_model.headLike | tei_opener | tei_signed +tei_model.divTop = tei_model.divWrapper | tei_model.divTopPart +tei_model.frontPart.drama = notAllowed +tei_model.pLike.front = + tei_head + | tei_byline + | tei_argument + | tei_epigraph + | tei_docTitle + | tei_titlePart + | tei_docAuthor + | tei_docEdition + | tei_docImprint + | tei_docDate +tei_model.divBottomPart = + tei_trailer | tei_closer | tei_signed | tei_postscript +tei_model.divBottom = tei_model.divWrapper | tei_model.divBottomPart +tei_model.titlepagePart = + tei_graphic + | tei_binaryObject + | tei_byline + | tei_argument + | tei_epigraph + | tei_docTitle + | tei_titlePart + | tei_docAuthor + | tei_imprimatur + | tei_docEdition + | tei_docImprint + | tei_docDate +tei_model.msQuoteLike = + tei_title + | tei_colophon + | tei_explicit + | tei_finalRubric + | tei_incipit + | tei_rubric +tei_model.msItemPart = + tei_model.biblLike + | tei_model.quoteLike + | tei_model.respLike + | tei_model.msQuoteLike + | tei_textLang + | tei_idno + | tei_filiation + | tei_msItem + | tei_msItemStruct + | tei_decoNote +tei_model.choicePart = + tei_sic + | tei_corr + | tei_reg + | tei_orig + | tei_unclear + | tei_abbr + | tei_expan +tei_model.imprintPart = + tei_publisher | tei_biblScope | tei_pubPlace | tei_distributor +tei_model.catDescPart = notAllowed +tei_model.addressLike = tei_email | tei_address +tei_model.addressLike_alternation = tei_email | tei_address +tei_model.addressLike_sequence = tei_email, tei_address +tei_model.addressLike_sequenceOptional = tei_email?, tei_address? +tei_model.addressLike_sequenceOptionalRepeatable = + tei_email*, tei_address* +tei_model.addressLike_sequenceRepeatable = tei_email+, tei_address+ +tei_model.nameLike = + tei_model.nameLike.agent + | tei_model.offsetLike + | tei_model.placeStateLike + | tei_rs + | tei_idno +tei_model.nameLike_alternation = + tei_model.nameLike.agent_alternation + | tei_model.offsetLike_alternation + | tei_model.placeStateLike_alternation + | tei_rs + | tei_idno +tei_model.nameLike_sequence = + tei_model.nameLike.agent_sequence, + tei_model.offsetLike_sequence, + tei_model.placeStateLike_sequence, + tei_rs, + tei_idno +tei_model.nameLike_sequenceOptional = + tei_model.nameLike.agent_sequenceOptional?, + tei_model.offsetLike_sequenceOptional?, + tei_model.placeStateLike_sequenceOptional?, + tei_rs?, + tei_idno? +tei_model.nameLike_sequenceOptionalRepeatable = + tei_model.nameLike.agent_sequenceOptionalRepeatable*, + tei_model.offsetLike_sequenceOptionalRepeatable*, + tei_model.placeStateLike_sequenceOptionalRepeatable*, + tei_rs*, + tei_idno* +tei_model.nameLike_sequenceRepeatable = + tei_model.nameLike.agent_sequenceRepeatable+, + tei_model.offsetLike_sequenceRepeatable+, + tei_model.placeStateLike_sequenceRepeatable+, + tei_rs+, + tei_idno+ +tei_model.global = + tei_model.global.meta + | tei_model.milestoneLike + | tei_model.noteLike + | tei_model.global.edit +tei_model.biblPart = + tei_model.respLike + | tei_model.imprintPart + | tei_series + | tei_citedRange + | tei_bibl + | tei_relatedItem + | tei_textLang + | tei_edition + | tei_extent + | tei_availability + | tei_msIdentifier +tei_model.frontPart = + tei_model.frontPart.drama | tei_divGen | tei_titlePage +tei_model.addrPart = + tei_model.nameLike + | tei_addrLine + | tei_street + | tei_postCode + | tei_postBox +tei_model.pPart.data = + tei_model.dateLike + | tei_model.measureLike + | tei_model.addressLike + | tei_model.nameLike +tei_model.inter = + tei_model.egLike + | tei_model.oddDecl + | tei_model.biblLike + | tei_model.labelLike + | tei_model.listLike + | tei_model.stageLike + | tei_model.qLike +tei_model.common = tei_model.divPart | tei_model.inter +tei_model.phrase = + tei_model.segLike + | tei_model.highlighted + | tei_model.graphicLike + | tei_model.pPart.msdesc + | tei_model.pPart.edit + | tei_model.ptrLike + | tei_model.lPart + | tei_model.phrase.xml + | tei_model.specDescLike + | tei_model.pPart.data +tei_model.limitedPhrase = + tei_model.hiLike + | tei_model.emphLike + | tei_model.pPart.msdesc + | tei_model.pPart.editorial + | tei_model.ptrLike + | tei_model.phrase.xml + | tei_model.pPart.data +tei_model.divLike = tei_div +tei_model.divGenLike = tei_divGen +tei_model.div1Like = tei_div1 +tei_model.div2Like = tei_div2 +tei_model.div3Like = tei_div3 +tei_model.div4Like = tei_div4 +tei_model.div5Like = tei_div5 +tei_model.div6Like = tei_div6 +tei_model.div7Like = tei_div7 +tei_model.applicationLike = tei_application +tei_model.teiHeaderPart = + tei_encodingDesc | tei_profileDesc | tei_xenoData +tei_model.sourceDescPart = notAllowed +tei_model.encodingDescPart = + tei_projectDesc + | tei_samplingDecl + | tei_editorialDecl + | tei_tagsDecl + | tei_styleDefDecl + | tei_refsDecl + | tei_listPrefixDef + | tei_classDecl + | tei_geoDecl + | tei_appInfo + | tei_metDecl +tei_model.editorialDeclPart = + tei_correction + | tei_normalization + | tei_quotation + | tei_hyphenation + | tei_segmentation + | tei_stdVals + | tei_interpretation + | tei_punctuation +tei_model.profileDescPart = + tei_abstract + | tei_creation + | tei_langUsage + | tei_textClass + | tei_calendarDesc + | tei_correspDesc +tei_model.correspActionPart = + tei_model.dateLike + | tei_model.addressLike + | tei_model.nameLike + | tei_note +tei_model.correspContextPart = + tei_model.ptrLike | tei_model.pLike | tei_note +tei_model.correspDescPart = + tei_note | tei_correspAction | tei_correspContext +tei_att.source.attributes = tei_att.source.attribute.source +tei_att.source.attribute.source = + + ## provides a pointer to the bibliographical source from which a quotation or citation is drawn. + attribute source { + list { xsd:anyURI+ } + }? +tei_model.resourceLike = tei_text +tei_att.personal.attributes = + tei_att.naming.attributes, + tei_att.personal.attribute.full, + tei_att.personal.attribute.sort +tei_att.personal.attribute.full = + + ## indicates whether the name component is given in full, as an abbreviation or simply as an initial. + [ a:defaultValue = "yes" ] + attribute full { + + ## the name component is spelled out in full. + "yes" + | + ## (abbreviated) the name component is given in an abbreviated form. + "abb" + | + ## (initial letter) the name component is indicated only by one initial. + "init" + }? +tei_att.personal.attribute.sort = + + ## specifies the sort order of the name component in relation to others within the name. + attribute sort { xsd:nonNegativeInteger }? +tei_att.milestoneUnit.attributes = tei_att.milestoneUnit.attribute.unit +tei_att.milestoneUnit.attribute.unit = + + ## provides a conventional name for the kind of section changing at this milestone. + ## Suggested values include: 1] page; 2] column; 3] line; 4] book; 5] poem; 6] canto; 7] speaker; 8] stanza; 9] act; 10] scene; 11] section; 12] absent; 13] unnumbered + attribute unit { + + ## physical page breaks (synonymous with the pb element). + "page" + | + ## column breaks. + "column" + | + ## line breaks (synonymous with the lb element). + "line" + | + ## any units termed book, liber, etc. + "book" + | + ## individual poems in a collection. + "poem" + | + ## cantos or other major sections of a poem. + "canto" + | + ## changes of speaker or narrator. + "speaker" + | + ## stanzas within a poem, book, or canto. + "stanza" + | + ## acts within a play. + "act" + | + ## scenes within a play or act. + "scene" + | + ## sections of any kind. + "section" + | + ## passages not present in the reference edition. + "absent" + | + ## passages present in the text, but not to be included as part of the reference. + "unnumbered" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + } +tei_p = + + ## (paragraph) marks paragraphs in prose. [3.1. Paragraphs 7.2.5. Speech Contents] + element p { + tei_macro.paraContent + >> sch:pattern [ + id = "verse-heb-p-abstractModel-p-constraint-4" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:p" + "\x{a}" ~ + " " + sch:report [ + test = + "(ancestor::tei:p or ancestor::tei:ab) and not(parent::tei:exemplum |parent::tei:item |parent::tei:note |parent::tei:q |parent::tei:quote |parent::tei:remarks |parent::tei:said |parent::tei:sp |parent::tei:stage |parent::tei:cell |parent::tei:figure)" + "\x{a}" ~ + " Abstract model violation: Paragraphs may not contain other paragraphs or ab elements.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "verse-heb-p-abstractModel-structure-l-constraint-5" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:p" + "\x{a}" ~ + " " + sch:report [ + test = + "ancestor::tei:l[not(.//tei:note//tei:p[. = current()])]" + "\x{a}" ~ + " Abstract model violation: Lines may not contain higher-level structural elements such as div, p, or ab.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.declaring.attributes, + tei_att.fragmentable.attributes, + tei_att.written.attributes, + empty + } +tei_foreign = + + ## identifies a word or phrase as belonging to some language other than that of the surrounding text. [3.3.2.1. Foreign Words or Expressions] + element foreign { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_emph = + + ## (emphasized) marks words or phrases which are stressed or emphasized for linguistic or rhetorical effect. [3.3.2.2. Emphatic Words and Phrases 3.3.2. Emphasis, Foreign Words, and Unusual Language] + element emph { + tei_macro.paraContent, tei_att.global.attributes, empty + } +tei_hi = + + ## (highlighted) marks a word or phrase as graphically distinct from the surrounding text, for reasons concerning which no claim is made. [3.3.2.2. Emphatic Words and Phrases 3.3.2. Emphasis, Foreign Words, and Unusual Language] + element hi { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.written.attributes, + empty + } +tei_distinct = + + ## identifies any word or phrase which is regarded as linguistically distinct, for example as archaic, technical, dialectal, non-preferred, etc., or as forming part of a sublanguage. [3.3.2.3. Other Linguistically Distinct Material] + element distinct { + tei_macro.phraseSeq, + tei_att.global.attributes, + + ## specifies the sublanguage or register to which the word or phrase is being assigned + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## specifies how the phrase is distinct diachronically + attribute time { xsd:string }?, + + ## specifies how the phrase is distinct diatopically + attribute space { xsd:string }?, + + ## specifies how the phrase is distinct diastatically + attribute social { xsd:string }?, + empty + } +tei_said = + + ## (speech or thought) indicates passages thought or spoken aloud, whether explicitly indicated in the source or not, whether directly or indirectly reported, whether by real people or fictional characters. [3.3.3. Quotation] + element said { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.ascribed.attributes, + + ## may be used to indicate whether the quoted matter is regarded as having been vocalized or signed. + [ a:defaultValue = "unknown" ] + attribute aloud { + xsd:boolean + | ( + ## + "unknown" + | + ## + "inapplicable") + }?, + + ## may be used to indicate whether the quoted matter is regarded as direct or indirect speech. + [ a:defaultValue = "true" ] + attribute direct { + xsd:boolean + | ( + ## + "unknown" + | + ## + "inapplicable") + }?, + empty + } +tei_quote = + + ## (quotation) contains a phrase or passage attributed by the narrator or author to some agency external to the text. [3.3.3. Quotation 4.3.1. Grouped Texts] + element quote { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.msExcerpt.attributes, + tei_att.source.attributes, + empty + } +tei_q = + + ## (quoted) contains material which is distinguished from the surrounding text using quotation marks or a similar method, for any one of a variety of reasons including, but not limited to: direct speech or thought, technical terms or jargon, authorial distance, quotations from elsewhere, and passages that are mentioned but not used. [3.3.3. Quotation] + element q { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.ascribed.attributes, + tei_att.source.attributes, + + ## may be used to indicate whether the offset passage is spoken or thought, or to characterize it more finely. + ## Suggested values include: 1] spoken; 2] thought; 3] written; 4] soCalled; 5] foreign; 6] distinct; 7] term; 8] emph; 9] mentioned + attribute type { + + ## representation of speech + "spoken" + | + ## representation of thought, e.g. internal monologue + "thought" + | + ## quotation from a written source + "written" + | + ## authorial distance + "soCalled" + | + ## + "foreign" + | + ## linguistically distinct + "distinct" + | + ## technical term + "term" + | + ## rhetorically emphasized + "emph" + | + ## refering to itself, not its normal referent + "mentioned" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_cit = + + ## (cited quotation) contains a quotation from some other document, together with a bibliographic reference to its source. In a dictionary it may contain an example text with at least one occurrence of the word form, used in the sense being described, or a translation of the headword, or an example. [3.3.3. Quotation 4.3.1. Grouped Texts 9.3.5.1. Examples] + element cit { + (tei_model.qLike + | tei_model.egLike + | tei_model.biblLike + | tei_model.ptrLike + | tei_model.global + | tei_model.entryPart)+, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_mentioned = + + ## marks words or phrases mentioned, not used. [3.3.3. Quotation] + element mentioned { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_soCalled = + + ## contains a word or phrase for which the author or narrator indicates a disclaiming of responsibility, for example by the use of scare quotes or italics. [3.3.3. Quotation] + element soCalled { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_desc = + + ## (description) contains a brief description of the object documented by its parent element, including its intended usage, purpose, or application where this is appropriate. [22.4.1. Description of Components] + element desc { + tei_macro.limitedContent, + tei_att.global.attributes, + tei_att.translatable.attributes, + tei_att.typed.attributes, + empty + } +tei_gloss = + + ## identifies a phrase or word used to provide a gloss or definition for some other word or phrase. [3.3.4. Terms, Glosses, Equivalents, and Descriptions 22.4.1. Description of Components] + element gloss { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.declaring.attributes, + tei_att.translatable.attributes, + tei_att.typed.attributes, + tei_att.pointing.attributes, + tei_att.cReferencing.attributes, + empty + } +tei_term = + + ## contains a single-word, multi-word, or symbolic designation which is regarded as a technical term. [3.3.4. Terms, Glosses, Equivalents, and Descriptions] + element term { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.declaring.attributes, + tei_att.pointing.attributes, + tei_att.typed.attributes, + tei_att.canonical.attributes, + tei_att.sortable.attributes, + tei_att.cReferencing.attributes, + empty + } +tei_sic = + + ## (Latin for thus or so + ## ) contains text reproduced although apparently incorrect or inaccurate. [3.4.1. Apparent Errors] + element sic { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.source.attributes, + empty + } +tei_corr = + + ## (correction) contains the correct form of a passage apparently erroneous in the copy text. [3.4.1. Apparent Errors] + element corr { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_choice = + + ## groups a number of alternative encodings for the same point in a text. [3.4. Simple Editorial Changes] + element choice { + (tei_model.choicePart | tei_choice)*, + tei_att.global.attributes, + empty + } +tei_reg = + + ## (regularization) contains a reading which has been regularized or normalized in some sense. [3.4.2. Regularization and + ## Normalization 12. Critical Apparatus] + element reg { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_orig = + + ## (original form) contains a reading which is marked as following the original, rather than being normalized or corrected. [3.4.2. Regularization and + ## Normalization 12. Critical Apparatus] + element orig { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.source.attributes, + empty + } +tei_gap = + + ## indicates a point where material has been omitted in a transcription, whether for editorial reasons described in the TEI header, as part of sampling practice, or because the material is illegible, invisible, or inaudible. [3.4.3. Additions, Deletions, and Omissions] + element gap { + (tei_model.descLike | tei_model.certLike)*, + tei_att.global.attributes, + tei_att.timed.attributes, + tei_att.editLike.attributes, + + ## gives the reason for omission. Sample values include sampling, inaudible, irrelevant, cancelled. + attribute reason { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + + ## in the case of text omitted from the transcription because of deliberate deletion by an identifiable hand, indicates the hand which made the deletion. + attribute hand { xsd:anyURI }?, + + ## in the case of text omitted because of damage, categorizes the cause of the damage, if it can be identified. + ## Sample values include: 1] rubbing; 2] mildew; 3] smoke + attribute agent { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_add = + + ## (addition) contains letters, words, or phrases inserted in the source text by an author, scribe, or a previous annotator or corrector. [3.4.3. Additions, Deletions, and Omissions] + element add { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.transcriptional.attributes, + tei_att.placement.attributes, + tei_att.typed.attributes, + empty + } +tei_del = + + ## (deletion) contains a letter, word, or passage deleted, marked as deleted, or otherwise indicated as superfluous or spurious in the copy text by an author, scribe, or a previous annotator or corrector. [3.4.3. Additions, Deletions, and Omissions] + element del { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.transcriptional.attributes, + tei_att.typed.attributes, + empty + } +tei_unclear = + + ## contains a word, phrase, or passage which cannot be transcribed with certainty because it is illegible or inaudible in the source. [11.3.3.1. Damage, Illegibility, and Supplied Text 3.4.3. Additions, Deletions, and Omissions] + element unclear { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.editLike.attributes, + + ## indicates why the material is hard to transcribe. + attribute reason { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + + ## Where the difficulty in transcription arises from action (partial deletion, etc.) assignable to an identifiable hand, signifies the hand responsible for the action. + attribute hand { xsd:anyURI }?, + + ## Where the difficulty in transcription arises from damage, categorizes the cause of the damage, if it can be identified. + ## Sample values include: 1] rubbing; 2] mildew; 3] smoke + attribute agent { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_name = + + ## (name, proper noun) contains a proper noun or noun phrase. [3.5.1. Referring Strings] + element name { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.personal.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_rs = + + ## (referencing string) contains a general purpose name or referring string. [13.2.1. Personal Names 3.5.1. Referring Strings] + element rs { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + tei_att.source.attributes, + empty + } +tei_email = + + ## (electronic mail address) contains an email address identifying a location to which email messages can be delivered. [3.5.2. Addresses] + element email { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_address = + + ## contains a postal address, for example of a publisher, an organization, or an individual. [3.5.2. Addresses 2.2.4. Publication, Distribution, Licensing, etc. 3.11.2.4. Imprint, Size of a Document, and Reprint Information] + element address { + (tei_model.global*, (tei_model.addrPart, tei_model.global*)+), + tei_att.global.attributes, + empty + } +tei_addrLine = + + ## (address line) contains one line of a postal address. [3.5.2. Addresses 2.2.4. Publication, Distribution, Licensing, etc. 3.11.2.4. Imprint, Size of a Document, and Reprint Information] + element addrLine { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_street = + + ## contains a full street address including any name or number identifying a building as well as the name of the street or route on which it is located. [3.5.2. Addresses] + element street { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_postCode = + + ## (postal code) contains a numerical or alphanumeric code used as part of a postal address to simplify sorting or delivery of mail. [3.5.2. Addresses] + element postCode { text, tei_att.global.attributes, empty } +tei_postBox = + + ## (postal box or post office box) contains a number or other identifier for some postal delivery point other than a street address. [3.5.2. Addresses] + element postBox { text, tei_att.global.attributes, empty } +tei_num = + + ## (number) contains a number, written in any form. [3.5.3. Numbers and + ## Measures] + element num { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.ranging.attributes, + + ## indicates the type of numeric value. + ## Suggested values include: 1] cardinal; 2] ordinal; 3] fraction; 4] percentage + attribute type { + + ## absolute number, e.g. 21, 21.5 + "cardinal" + | + ## ordinal number, e.g. 21st + "ordinal" + | + ## fraction, e.g. one half or three-quarters + "fraction" + | + ## a percentage + "percentage" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## supplies the value of the number in standard form. + attribute value { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }?, + empty + } +tei_measure = + + ## contains a word or phrase referring to some quantity of an object or commodity, usually comprising a number, a unit, and a commodity name. [3.5.3. Numbers and + ## Measures] + element measure { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.measurement.attributes, + + ## specifies the type of measurement in any convenient typology. + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_measureGrp = + + ## (measure group) contains a group of dimensional specifications which relate to the same object, for example the height and width of a manuscript page. [10.3.4. Dimensions] + element measureGrp { + (text | tei_model.gLike | tei_model.measureLike)*, + tei_att.global.attributes, + tei_att.measurement.attributes, + tei_att.typed.attributes, + empty + } +tei_date = + + ## contains a date in any format. [3.5.4. Dates and Times 2.2.4. Publication, Distribution, Licensing, etc. 2.6. The Revision Description 3.11.2.4. Imprint, Size of a Document, and Reprint Information 15.2.3. The Setting Description 13.3.6. Dates and Times] + element date { + (text | tei_model.gLike | tei_model.phrase | tei_model.global)*, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_time = + + ## contains a phrase defining a time of day in any format. [3.5.4. Dates and Times] + element time { + (text | tei_model.gLike | tei_model.phrase | tei_model.global)*, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_abbr = + + ## (abbreviation) contains an abbreviation of any sort. [3.5.5. Abbreviations and Their Expansions] + element abbr { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.source.attributes, + tei_att.typed.attribute.subtype, + + ## allows the encoder to classify the abbreviation according to some convenient typology. + ## Sample values include: 1] suspension; 2] contraction; 3] brevigraph; 4] superscription; 5] acronym; 6] title; 7] organization; 8] geographic + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_expan = + + ## (expansion) contains the expansion of an abbreviation. [3.5.5. Abbreviations and Their Expansions] + element expan { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.editLike.attributes, + empty + } +tei_ptr = + + ## (pointer) defines a pointer to another location. [3.6. Simple Links and Cross-References 16.1. Links] + element ptr { + empty + >> sch:pattern [ + id = "verse-heb-ptr-ptrAtts-constraint-6" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:ptr" + "\x{a}" ~ + " " + sch:report [ + test = "@target and @cRef" + "Only one of the\x{a}" ~ + "attributes @target and @cRef may be supplied on " + sch:name [ ] + "." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.pointing.attributes, + tei_att.internetMedia.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + tei_att.cReferencing.attributes, + empty + } +tei_ref = + + ## (reference) defines a reference to another location, possibly modified by additional text or comment. [3.6. Simple Links and Cross-References 16.1. Links] + element ref { + tei_macro.paraContent + >> sch:pattern [ + id = "verse-heb-ref-refAtts-constraint-7" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:ref" + "\x{a}" ~ + " " + sch:report [ + test = "@target and @cRef" + "Only one of the\x{a}" ~ + " attributes @target' and @cRef' may be supplied on " + sch:name [ ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.pointing.attributes, + tei_att.internetMedia.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + tei_att.cReferencing.attributes, + empty + } +tei_list = + + ## contains any sequence of items organized as a list. [3.7. Lists] + element list { + ((tei_model.divTop | tei_model.global)*, + ((tei_item, tei_model.global*)+ + | (tei_headLabel?, + tei_headItem?, + (tei_label, tei_model.global*, tei_item, tei_model.global*)+)), + (tei_model.divBottom, tei_model.global*)*) + >> sch:pattern [ + id = "verse-heb-list-gloss-list-must-have-labels-constraint-9" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:list[@type='gloss']" + "\x{a}" ~ + " " + sch:assert [ + test = "tei:label" + 'The content of a "gloss" list should include a sequence of one or more pairs of a label element followed by an item element' + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.sortable.attributes, + tei_att.typed.attribute.subtype, + + ## describes the nature of the items in the list. + ## Suggested values include: 1] gloss; 2] index; 3] instructions; 4] litany; 5] syllogism + attribute type { + + ## each list item glosses some term or concept, which is given by a label element preceding the list item. + "gloss" + | + ## each list item is an entry in an index such as the alphabetical topical index at the back of a print volume. + "index" + | + ## each list item is a step in a sequence of instructions, as in a recipe. + "instructions" + | + ## each list item is one of a sequence of petitions, supplications or invocations, typically in a religious ritual. + "litany" + | + ## each list item is part of an argument consisting of two or more propositions and a final conclusion derived from them. + "syllogism" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_item = + + ## contains one component of a list. [3.7. Lists 2.6. The Revision Description] + element item { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.sortable.attributes, + empty + } +tei_label = + + ## contains any label or heading used to identify part of a text, typically but not exclusively in a list or glossary. [3.7. Lists] + element label { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.placement.attributes, + tei_att.written.attributes, + empty + } +tei_head = + + ## (heading) contains any type of heading, for example the title of a section, or the heading of a list, glossary, manuscript description, etc. [4.2.1. Headings and Trailers] + element head { + (text + | tei_lg + | tei_model.gLike + | tei_model.phrase + | tei_model.inter + | tei_model.lLike + | tei_model.global)*, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.written.attributes, + empty + } +tei_headLabel = + + ## (heading for list labels) contains the heading for the label or term column in a glossary list or similar structured list. [3.7. Lists] + element headLabel { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_headItem = + + ## (heading for list items) contains the heading for the item or gloss column in a glossary list or similar structured list. [3.7. Lists] + element headItem { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_note = + + ## contains a note or annotation. [3.8.1. Notes and Simple Annotation 2.2.6. The Notes Statement 3.11.2.8. Notes and Statement of Language 9.3.5.4. Notes within Entries] + element note { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.placement.attributes, + tei_att.pointing.attributes, + tei_att.source.attributes, + tei_att.typed.attributes, + tei_att.written.attributes, + + ## indicates whether the copy text shows the exact place of reference for the note. + [ a:defaultValue = "true" ] attribute anchored { xsd:boolean }?, + + ## points to the end of the span to which the note is attached, if the note is not embedded in the text at that point. + attribute targetEnd { + list { xsd:anyURI+ } + }?, + empty + } +tei_index = + + ## (index entry) marks a location to be indexed for whatever purpose. [3.8.2. Index Entries] + element index { + (tei_term, tei_index?)*, + tei_att.global.attributes, + tei_att.spanning.attributes, + + ## a single word which follows the rules defining a legal XML name (see ), supplying a name to specify which index (of several) the index entry belongs to. + attribute indexName { xsd:Name }?, + empty + } +tei_media = + + ## indicates the location of any form of external media such as an audio or video clip etc. [3.9. Graphics and Other Non-textual Components] + element media { + tei_model.descLike*, + tei_att.typed.attributes, + tei_att.global.attributes, + tei_att.media.attribute.width, + tei_att.media.attribute.height, + tei_att.media.attribute.scale, + tei_att.resourced.attributes, + tei_att.declaring.attributes, + tei_att.timed.attributes, + + ## (MIME media type) specifies the applicable multimedia internet mail extension (MIME) media type + attribute mimeType { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }, + empty + } +tei_graphic = + + ## indicates the location of a graphic or illustration, either forming part of a text, or providing an image of it. [3.9. Graphics and Other Non-textual Components 11.1. Digital Facsimiles] + element graphic { + tei_model.descLike*, + tei_att.global.attributes, + tei_att.media.attributes, + tei_att.resourced.attributes, + tei_att.declaring.attributes, + empty + } +tei_binaryObject = + + ## provides encoded binary data representing an inline graphic, audio, video or other object. [3.9. Graphics and Other Non-textual Components] + element binaryObject { + text, + tei_att.global.attributes, + tei_att.media.attributes, + tei_att.timed.attributes, + tei_att.typed.attributes, + + ## The encoding used to encode the binary data. If not specified, this is assumed to be Base64. + attribute encoding { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + empty + } +tei_milestone = + + ## marks a boundary point separating any kind of section of a text, typically but not necessarily indicating a point at which some part of a standard reference system changes, where the change is not represented by a structural element. [3.10.3. Milestone + ## Elements] + element milestone { + empty, + tei_att.global.attributes, + tei_att.milestoneUnit.attributes, + tei_att.typed.attributes, + tei_att.edition.attributes, + tei_att.spanning.attributes, + tei_att.breaking.attributes, + empty + } +tei_gb = + + ## (gathering begins) marks the point in a transcribed codex at which a new gathering or quire begins. [3.10.3. Milestone + ## Elements] + element gb { + empty, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.spanning.attributes, + tei_att.breaking.attributes, + empty + } +tei_pb = + + ## (page break) marks the start of a new page in a paginated document. [3.10.3. Milestone + ## Elements] + element pb { + empty, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.edition.attributes, + tei_att.spanning.attributes, + tei_att.breaking.attributes, + empty + } +tei_lb = + + ## (line break) marks the start of a new (typographic) line in some edition or version of a text. [3.10.3. Milestone + ## Elements 7.2.5. Speech Contents] + element lb { + empty, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.edition.attributes, + tei_att.spanning.attributes, + tei_att.breaking.attributes, + empty + } +tei_cb = + + ## (column break) marks the beginning of a new column of a text on a multi-column page. [3.10.3. Milestone + ## Elements] + element cb { + empty, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.edition.attributes, + tei_att.spanning.attributes, + tei_att.breaking.attributes, + empty + } +tei_analytic = + + ## (analytic level) contains bibliographic elements describing an item (e.g. an article or poem) published within a monograph or journal and not as an independent publication. [3.11.2.1. Analytic, Monographic, and Series Levels] + element analytic { + (tei_author + | tei_editor + | tei_respStmt + | tei_title + | tei_model.ptrLike + | tei_date + | tei_textLang + | tei_idno + | tei_availability)*, + tei_att.global.attributes, + empty + } +tei_monogr = + + ## (monographic level) contains bibliographic elements describing an item (e.g. a book or journal) published as an independent item (i.e. as a separate physical object). [3.11.2.1. Analytic, Monographic, and Series Levels] + element monogr { + ((((tei_author | tei_editor | tei_meeting | tei_respStmt), + (tei_author | tei_editor | tei_meeting | tei_respStmt)*, + tei_title+, + (tei_model.ptrLike + | tei_idno + | tei_textLang + | tei_editor + | tei_respStmt)*) + | ((tei_title | tei_model.ptrLike | tei_idno)+, + (tei_textLang + | tei_author + | tei_editor + | tei_meeting + | tei_respStmt)*) + | (tei_authority, tei_idno))?, + tei_availability*, + tei_model.noteLike*, + (tei_edition, + (tei_idno + | tei_model.ptrLike + | tei_editor + | tei_sponsor + | tei_funder + | tei_respStmt)*)*, + tei_imprint, + (tei_imprint | tei_extent | tei_biblScope)*), + tei_att.global.attributes, + empty + } +tei_series = + + ## (series information) contains information about the series in which a book or other bibliographic item has appeared. [3.11.2.1. Analytic, Monographic, and Series Levels] + element series { + (text + | tei_model.gLike + | tei_title + | tei_model.ptrLike + | tei_editor + | tei_respStmt + | tei_biblScope + | tei_idno + | tei_textLang + | tei_model.global + | tei_availability)*, + tei_att.global.attributes, + empty + } +tei_author = + + ## in a bibliographic reference, contains the name(s) of an author, personal or corporate, of a work; for example in the same form as that provided by a recognized bibliographic name authority. [3.11.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement] + element author { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + empty + } +tei_editor = + + ## contains a secondary statement of responsibility for a bibliographic item, for example the name of an individual, institution or organization, (or of several such) acting as editor, compiler, translator, etc. [3.11.2.2. Titles, Authors, and Editors] + element editor { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + empty + } +tei_respStmt = + + ## (statement of responsibility) supplies a statement of responsibility for the intellectual content of a text, edition, recording, or series, where the specialized elements for authors, editors, etc. do not suffice or do not apply. May also be used to encode information about individuals or organizations which have played a role in the production or distribution of a bibliographic work. [3.11.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.2. The Edition Statement 2.2.5. The Series Statement] + element respStmt { + ((tei_resp+, tei_model.nameLike.agent+) + | (tei_model.nameLike.agent+, tei_resp+)), + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_resp = + + ## (responsibility) contains a phrase describing the nature of a person's intellectual responsibility, or an organization's role in the production or distribution of a work. [3.11.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.2. The Edition Statement 2.2.5. The Series Statement] + element resp { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + tei_att.canonical.attributes, + tei_att.datable.attributes, + empty + } +tei_title = + + ## contains a title for any kind of work. [3.11.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.5. The Series Statement] + element title { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.canonical.attributes, + tei_att.typed.attribute.subtype, + + ## classifies the title according to some convenient typology. + ## Sample values include: 1] main; 2] sub(subordinate) ; 3] alt(alternate) ; 4] short; 5] desc(descriptive) + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## indicates the bibliographic level for a title, that is, whether it identifies an article, book, journal, series, or unpublished material. + attribute level { + + ## (analytic) the title applies to an analytic item, such as an article, poem, or other work published as part of a larger item. + "a" + | + ## (monographic) the title applies to a monograph such as a book or other item considered to be a distinct publication, including single volumes of multi-volume works + "m" + | + ## (journal) the title applies to any serial or periodical publication such as a journal, magazine, or newspaper + "j" + | + ## (series) the title applies to a series of otherwise distinct publications such as a collection + "s" + | + ## (unpublished) the title applies to any unpublished material (including theses and dissertations unless published by a commercial press) + "u" + }?, + empty + } +tei_meeting = + + ## contains the formalized descriptive title for a meeting or conference, for use in a bibliographic description for an item derived from such a meeting, or as a heading or preamble to publications emanating from it. [3.11.2.2. Titles, Authors, and Editors] + element meeting { + tei_macro.limitedContent, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_imprint = + + ## groups information relating to the publication or distribution of a bibliographic item. [3.11.2.4. Imprint, Size of a Document, and Reprint Information] + element imprint { + ((tei_classCode | tei_catRef)*, + ((tei_model.imprintPart | tei_model.dateLike), + tei_respStmt*, + tei_model.global*)+), + tei_att.global.attributes, + empty + } +tei_publisher = + + ## provides the name of the organization responsible for the publication or distribution of a bibliographic item. [3.11.2.4. Imprint, Size of a Document, and Reprint Information 2.2.4. Publication, Distribution, Licensing, etc.] + element publisher { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_biblScope = + + ## (scope of bibliographic reference) defines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work. [3.11.2.5. Scopes and Ranges in Bibliographic Citations] + element biblScope { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.citing.attributes, + empty + } +tei_citedRange = + + ## (cited range) defines the range of cited content, often represented by pages or other units [3.11.2.5. Scopes and Ranges in Bibliographic Citations] + element citedRange { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.pointing.attributes, + tei_att.citing.attributes, + empty + } +tei_pubPlace = + + ## (publication place) contains the name of the place where a bibliographic item was published. [3.11.2.4. Imprint, Size of a Document, and Reprint Information] + element pubPlace { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + empty + } +tei_bibl = + + ## (bibliographic citation) contains a loosely-structured bibliographic citation of which the sub-components may or may not be explicitly tagged. [3.11.1. Methods of Encoding Bibliographic References and Lists of References 2.2.7. The Source Description 15.3.2. Declarable Elements] + element bibl { + (text + | tei_model.gLike + | tei_model.highlighted + | tei_model.pPart.data + | tei_model.pPart.edit + | tei_model.segLike + | tei_model.ptrLike + | tei_model.biblPart + | tei_model.global)*, + tei_att.global.attributes, + tei_att.declarable.attributes, + tei_att.typed.attributes, + tei_att.sortable.attributes, + tei_att.docStatus.attributes, + empty + } +tei_biblStruct = + + ## (structured bibliographic citation) contains a structured bibliographic citation, in which only bibliographic sub-elements appear and in a specified order. [3.11.1. Methods of Encoding Bibliographic References and Lists of References 2.2.7. The Source Description 15.3.2. Declarable Elements] + element biblStruct { + (tei_analytic*, + (tei_monogr, tei_series*)+, + (tei_model.noteLike + | tei_idno + | tei_model.ptrLike + | tei_relatedItem + | tei_citedRange)*) + >> sch:pattern [ + id = + "verse-heb-biblStruct-deprecate-altIdentifier-child-constraint-8" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:biblStruct" + "\x{a}" ~ + " " + sch:report [ + role = "nonfatal" + test = "child::tei:idno" + "WARNING: use of deprecated method — the use of the idno element as a direct child of the biblStruct element will be removed from the TEI on 2016-09-18" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.declarable.attributes, + tei_att.typed.attributes, + tei_att.sortable.attributes, + tei_att.docStatus.attributes, + empty + } +tei_listBibl = + + ## (citation list) contains a list of bibliographic citations of any kind. [3.11.1. Methods of Encoding Bibliographic References and Lists of References 2.2.7. The Source Description 15.3.2. Declarable Elements] + element listBibl { + (tei_model.headLike*, + (tei_model.biblLike | tei_model.milestoneLike)+, + empty*), + tei_att.global.attributes, + tei_att.sortable.attributes, + tei_att.declarable.attributes, + tei_att.typed.attributes, + empty + } +tei_relatedItem = + + ## contains or references some other bibliographic item which is related to the present one in some specified manner, for example as a constituent or alternative version of it. [3.11.2.7. Related Items] + element relatedItem { + ((tei_model.biblLike | tei_model.ptrLike)?) + >> sch:pattern [ + id = "verse-heb-relatedItem-targetorcontent1-constraint-9" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:relatedItem" + "\x{a}" ~ + " " + sch:report [ + test = "@target and count( child::* ) > 0" + "\x{a}" ~ + "If the @target attribute on " + sch:name [ ] + " is used, the\x{a}" ~ + "relatedItem element must be empty" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "verse-heb-relatedItem-targetorcontent1-constraint-7" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:relatedItem" + "\x{a}" ~ + " " + sch:assert [ + test = "@target or child::*" + "A relatedItem element should have either a 'target' attribute\x{a}" ~ + " or a child element to indicate the related bibliographic item" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.typed.attributes, + + ## points to the related bibliographic element by means of an absolute or relative URI reference + attribute target { xsd:anyURI }?, + empty + } +tei_l = + + ## (verse line) contains a single, possibly incomplete, line of verse. [3.12.1. Core Tags for Verse 3.12. Passages of Verse or Drama 7.2.5. Speech Contents] + element l { + ((text + | tei_model.gLike + | tei_model.phrase + | tei_model.inter + | tei_model.global)*) + >> sch:pattern [ + id = "verse-heb-l-abstractModel-structure-l-constraint-10" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:l" + "\x{a}" ~ + " " + sch:report [ + test = + "ancestor::tei:l[not(.//tei:note//tei:l[. = current()])]" + "\x{a}" ~ + " Abstract model violation: Lines may not contain lines or lg elements.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.metrical.attributes, + tei_att.enjamb.attributes, + tei_att.fragmentable.attributes, + empty + } +tei_lg = + + ## (line group) contains one or more verse lines functioning as a formal unit, e.g. a stanza, refrain, verse paragraph, etc. [3.12.1. Core Tags for Verse 3.12. Passages of Verse or Drama 7.2.5. Speech Contents] + element lg { + ((tei_model.divTop | tei_model.global)*, + (tei_model.lLike + | tei_model.stageLike + | tei_model.labelLike + | tei_lg), + (tei_model.lLike + | tei_model.stageLike + | tei_model.labelLike + | tei_model.global + | tei_lg)*, + (tei_model.divBottom, tei_model.global*)*) + >> sch:pattern [ + id = "verse-heb-lg-atleast1oflggapl-constraint-8" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:lg" + "\x{a}" ~ + " " + sch:assert [ + test = + "count(descendant::tei:lg|descendant::tei:l|descendant::tei:gap) > 0" + "An lg element\x{a}" ~ + " must contain at least one child l, lg or gap element." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "verse-heb-lg-abstractModel-structure-l-constraint-11" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:lg" + "\x{a}" ~ + " " + sch:report [ + test = + "ancestor::tei:l[not(.//tei:note//tei:lg[. = current()])]" + "\x{a}" ~ + " Abstract model violation: Lines may not contain line groups.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_sp = + + ## (speech) contains an individual speech in a performance text, or a passage presented as such in a prose or verse text. [3.12.2. Core Tags for Drama 3.12. Passages of Verse or Drama 7.2.2. Speeches and Speakers] + element sp { + (tei_model.global*, + (tei_speaker, tei_model.global*)?, + ((tei_lg + | tei_model.lLike + | tei_model.pLike + | tei_model.listLike + | tei_model.stageLike + | tei_model.qLike), + tei_model.global*)+), + tei_att.global.attributes, + tei_att.ascribed.attributes, + empty + } +tei_speaker = + + ## contains a specialized form of heading or label, giving the name of one or more speakers in a dramatic text or fragment. [3.12.2. Core Tags for Drama] + element speaker { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_stage = + + ## (stage direction) contains any kind of stage direction within a dramatic text or fragment. [3.12.2. Core Tags for Drama 3.12. Passages of Verse or Drama 7.2.4. Stage Directions] + element stage { + tei_macro.specialPara, + tei_att.ascribed.attributes, + tei_att.global.attributes, + tei_att.placement.attributes, + + ## indicates the kind of stage direction. + ## Suggested values include: 1] setting; 2] entrance; 3] exit; 4] business; 5] novelistic; 6] delivery; 7] modifier; 8] location; 9] mixed + attribute type { + list { + ( + ## describes a setting. + "setting" + | + ## describes an entrance. + "entrance" + | + ## describes an exit. + "exit" + | + ## describes stage business. + "business" + | + ## is a narrative, motivating stage direction. + "novelistic" + | + ## describes how a character speaks. + "delivery" + | + ## gives some detail about a character. + "modifier" + | + ## describes a location. + "location" + | + ## more than one of the above + "mixed" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" })* + } + }?, + empty + } +tei_teiCorpus = + + ## contains the whole of a TEI encoded corpus, comprising a single corpus header and one or more TEI elements, each containing a single text header and a text. [4. Default Text Structure 15.1. Varieties of Composite Text] + element teiCorpus { + (tei_teiHeader, + ((tei_model.resourceLike+, (tei_TEI | tei_teiCorpus)*) + | (tei_TEI | tei_teiCorpus)+)), + tei_att.global.attributes, + + ## The version of the TEI scheme + [ a:defaultValue = "5.0" ] + attribute version { + xsd:token { pattern = "[\d]+(\.[\d]+){0,2}" } + }?, + empty + } +tei_divGen = + + ## (automatically generated text division) indicates the location at which a textual division generated automatically by a text-processing application is to appear. [3.8.2. Index Entries] + element divGen { + tei_model.headLike*, + tei_att.global.attributes, + + ## specifies what type of generated text division (e.g. index, table of contents, etc.) is to appear. + ## Sample values include: 1] index; 2] toc; 3] figlist; 4] tablist + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_textLang = + + ## (text language) describes the languages and writing systems identified within the bibliographic work being described, rather than its description. [3.11.2.4. Imprint, Size of a Document, and Reprint Information 10.6.6. Languages and Writing Systems] + element textLang { + tei_macro.phraseSeq, + tei_att.global.attributes, + + ## (main language) supplies a code which identifies the chief language used in the bibliographic work. + attribute mainLang { + xsd:language + | ( + ## + "") + }?, + + ## (other languages) one or more codes identifying any other languages used in the bibliographic work. + attribute otherLangs { + list { + (xsd:language + | ( + ## + ""))* + } + }?, + empty + } +tei_att.patternReplacement.attributes = + tei_att.patternReplacement.attribute.matchPattern, + tei_att.patternReplacement.attribute.replacementPattern +tei_att.patternReplacement.attribute.matchPattern = + + ## specifies a regular expression against which the values of other attributes can be matched. + attribute matchPattern { xsd:token } +tei_att.patternReplacement.attribute.replacementPattern = + + ## specifies a replacement pattern, that is, the skeleton of a relative or absolute URI containing references to groups in the matchPattern which, once subpattern substitution has been performed, complete the URI. + attribute replacementPattern { text } +tei_teiHeader = + + ## (TEI header) supplies descriptive and declarative metadata associated with a digital resource or set of resources. [2.1.1. The TEI Header and Its Components 15.1. Varieties of Composite Text] + element teiHeader { + (tei_fileDesc, tei_model.teiHeaderPart*, tei_revisionDesc?), + tei_att.global.attributes, + + ## specifies the kind of document to which the header is attached, for example whether it is a corpus or individual text. + ## Sample values include: 1] text; 2] corpus + [ a:defaultValue = "text" ] + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_fileDesc = + + ## (file description) contains a full bibliographic description of an electronic file. [2.2. The File Description 2.1.1. The TEI Header and Its Components] + element fileDesc { + ((tei_titleStmt, + tei_editionStmt?, + tei_extent?, + tei_publicationStmt, + tei_seriesStmt?, + tei_notesStmt?), + tei_sourceDesc+), + tei_att.global.attributes, + empty + } +tei_titleStmt = + + ## (title statement) groups information about the title of a work and those responsible for its content. [2.2.1. The Title Statement 2.2. The File Description] + element titleStmt { + (tei_title+, tei_model.respLike*), tei_att.global.attributes, empty + } +tei_sponsor = + + ## specifies the name of a sponsoring organization or institution. [2.2.1. The Title Statement] + element sponsor { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_funder = + + ## (funding body) specifies the name of an individual, institution, or organization responsible for the funding of a project or text. [2.2.1. The Title Statement] + element funder { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_principal = + + ## (principal researcher) supplies the name of the principal researcher responsible for the creation of an electronic text. [2.2.1. The Title Statement] + element principal { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_editionStmt = + + ## (edition statement) groups information relating to one edition of a text. [2.2.2. The Edition Statement 2.2. The File Description] + element editionStmt { + (tei_model.pLike+ | (tei_edition, tei_model.respLike*)), + tei_att.global.attributes, + empty + } +tei_edition = + + ## describes the particularities of one edition of a text. [2.2.2. The Edition Statement] + element edition { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_extent = + + ## describes the approximate size of a text stored on some carrier medium or of some other object, digital or non-digital, specified in any convenient units. [2.2.3. Type and Extent of File 2.2. The File Description 3.11.2.4. Imprint, Size of a Document, and Reprint Information 10.7.1. Object Description] + element extent { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_publicationStmt = + + ## (publication statement) groups information concerning the publication or distribution of an electronic or other text. [2.2.4. Publication, Distribution, Licensing, etc. 2.2. The File Description] + element publicationStmt { + ((tei_model.publicationStmtPart.agency, + tei_model.publicationStmtPart.detail*)+ + | tei_model.pLike+), + tei_att.global.attributes, + empty + } +tei_distributor = + + ## supplies the name of a person or other agency responsible for the distribution of a text. [2.2.4. Publication, Distribution, Licensing, etc.] + element distributor { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_authority = + + ## (release authority) supplies the name of a person or other agency responsible for making a work available, other than a publisher or distributor. [2.2.4. Publication, Distribution, Licensing, etc.] + element authority { + tei_macro.phraseSeq.limited, tei_att.global.attributes, empty + } +tei_idno = + + ## (identifier) supplies any form of identifier used to identify some object, such as a bibliographic item, a person, a title, an organization, etc. in a standardized way. [2.2.4. Publication, Distribution, Licensing, etc. 2.2.5. The Series Statement 3.11.2.4. Imprint, Size of a Document, and Reprint Information] + element idno { + (text | tei_model.gLike | tei_idno)*, + tei_att.global.attributes, + tei_att.sortable.attributes, + + ## categorizes the identifier, for example as an ISBN, Social Security number, etc. + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_availability = + + ## supplies information about the availability of a text, for example any restrictions on its use or distribution, its copyright status, any licence applying to it, etc. [2.2.4. Publication, Distribution, Licensing, etc.] + element availability { + (tei_model.availabilityPart | tei_model.pLike)+, + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## supplies a code identifying the current availability of the text. + [ a:defaultValue = "unknown" ] + attribute status { + + ## the text is freely available. + "free" + | + ## the status of the text is unknown. + "unknown" + | + ## the text is not freely available. + "restricted" + }?, + empty + } +tei_licence = + + ## contains information about a licence or other legal agreement applicable to the text. [2.2.4. Publication, Distribution, Licensing, etc.] + element licence { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.pointing.attributes, + tei_att.datable.attributes, + empty + } +tei_seriesStmt = + + ## (series statement) groups information about the series, if any, to which a publication belongs. [2.2.5. The Series Statement 2.2. The File Description] + element seriesStmt { + (tei_model.pLike+ + | (tei_title+, + (tei_editor | tei_respStmt)*, + (tei_idno | tei_biblScope)*)), + tei_att.global.attributes, + empty + } +tei_notesStmt = + + ## (notes statement) collects together any notes providing information about a text additional to that recorded in other parts of the bibliographic description. [2.2.6. The Notes Statement 2.2. The File Description] + element notesStmt { + (tei_model.noteLike | tei_relatedItem)+, + tei_att.global.attributes, + empty + } +tei_sourceDesc = + + ## (source description) describes the source from which an electronic text was derived or generated, typically a bibliographic description in the case of a digitized text, or a phrase such as "born digital" for a text which has no previous existence. [2.2.7. The Source Description] + element sourceDesc { + (tei_model.pLike+ + | (tei_model.biblLike + | tei_model.sourceDescPart + | tei_model.listLike)+), + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_biblFull = + + ## (fully-structured bibliographic citation) contains a fully-structured bibliographic citation, in which all components of the TEI file description are present. [3.11.1. Methods of Encoding Bibliographic References and Lists of References 2.2. The File Description 2.2.7. The Source Description 15.3.2. Declarable Elements] + element biblFull { + ((tei_titleStmt, + tei_editionStmt?, + tei_extent?, + tei_publicationStmt, + tei_seriesStmt?, + tei_notesStmt?), + tei_sourceDesc*), + tei_att.global.attributes, + tei_att.declarable.attributes, + tei_att.sortable.attributes, + tei_att.docStatus.attributes, + empty + } +tei_encodingDesc = + + ## (encoding description) documents the relationship between an electronic text and the source or sources from which it was derived. [2.3. The Encoding Description 2.1.1. The TEI Header and Its Components] + element encodingDesc { + (tei_model.encodingDescPart | tei_model.pLike)+, + tei_att.global.attributes, + empty + } +tei_projectDesc = + + ## (project description) describes in detail the aim or purpose for which an electronic file was encoded, together with any other relevant information concerning the process by which it was assembled or collected. [2.3.1. The Project Description 2.3. The Encoding Description 15.3.2. Declarable Elements] + element projectDesc { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_samplingDecl = + + ## (sampling declaration) contains a prose description of the rationale and methods used in sampling texts in the creation of a corpus or collection. [2.3.2. The Sampling Declaration 2.3. The Encoding Description 15.3.2. Declarable Elements] + element samplingDecl { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_editorialDecl = + + ## (editorial practice declaration) provides details of editorial principles and practices applied during the encoding of a text. [2.3.3. The Editorial Practices Declaration 2.3. The Encoding Description 15.3.2. Declarable Elements] + element editorialDecl { + (tei_model.pLike | tei_model.editorialDeclPart)+, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_correction = + + ## (correction principles) states how and under what circumstances corrections have been made in the text. [2.3.3. The Editorial Practices Declaration 15.3.2. Declarable Elements] + element correction { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## indicates the degree of correction applied to the text. + [ a:defaultValue = "unknown" ] + attribute status { + + ## the text has been thoroughly checked and proofread. + "high" + | + ## the text has been checked at least once. + "medium" + | + ## the text has not been checked. + "low" + | + ## the correction status of the text is unknown. + "unknown" + }?, + + ## indicates the method adopted to indicate corrections within the text. + [ a:defaultValue = "silent" ] + attribute method { + + ## corrections have been made silently + "silent" + | + ## corrections have been represented using markup + "markup" + }?, + empty + } +tei_normalization = + + ## indicates the extent of normalization or regularization of the original source carried out in converting it to electronic form. [2.3.3. The Editorial Practices Declaration 15.3.2. Declarable Elements] + element normalization { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## indicates a bibliographic description or other resource documenting the principles underlying the normalization carried out. + attribute source { xsd:anyURI }?, + + ## indicates the method adopted to indicate normalizations within the text. + [ a:defaultValue = "silent" ] + attribute method { + + ## normalization made silently + "silent" + | + ## normalization represented using markup + "markup" + }?, + empty + } +tei_quotation = + + ## specifies editorial practice adopted with respect to quotation marks in the original. [2.3.3. The Editorial Practices Declaration 15.3.2. Declarable Elements] + element quotation { + (tei_model.pLike*) + >> sch:pattern [ + id = "verse-heb-quotation-quotationContents-constraint-12" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:quotation" + "\x{a}" ~ + " " + sch:report [ + test = "not(@marks) and not (tei:p)" + "\x{a}" ~ + "On " + sch:name [ ] + ", either the @marks attribute should be used, or a paragraph of description provided" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## (quotation marks) indicates whether or not quotation marks have been retained as content within the text. + attribute marks { + + ## no quotation marks have been retained + "none" + | + ## some quotation marks have been retained + "some" + | + ## all quotation marks have been retained + "all" + }?, + empty + } +tei_hyphenation = + + ## summarizes the way in which hyphenation in a source text has been treated in an encoded version of it. [2.3.3. The Editorial Practices Declaration 15.3.2. Declarable Elements] + element hyphenation { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## (end-of-line) indicates whether or not end-of-line hyphenation has been retained in a text. + [ a:defaultValue = "some" ] + attribute eol { + + ## all end-of-line hyphenation has been retained, even though the lineation of the original may not have been. + "all" + | + ## end-of-line hyphenation has been retained in some cases. + "some" + | + ## all soft end-of-line hyphenation has been removed: any remaining end-of-line hyphenation should be retained. + "hard" + | + ## all end-of-line hyphenation has been removed: any remaining hyphenation occurred within the line. + "none" + }?, + empty + } +tei_segmentation = + + ## describes the principles according to which the text has been segmented, for example into sentences, tone-units, graphemic strata, etc. [2.3.3. The Editorial Practices Declaration 15.3.2. Declarable Elements] + element segmentation { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_stdVals = + + ## (standard values) specifies the format used when standardized date or number values are supplied. [2.3.3. The Editorial Practices Declaration 15.3.2. Declarable Elements] + element stdVals { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_interpretation = + + ## describes the scope of any analytic or interpretive information added to the text in addition to the transcription. [2.3.3. The Editorial Practices Declaration] + element interpretation { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_punctuation = + + ## specifies editorial practice adopted with respect to punctuation marks in the original. [2.3.3. The Editorial Practices Declaration 3.2. Treatment of Punctuation] + element punctuation { + tei_model.pLike*, + tei_att.declarable.attributes, + tei_att.global.attributes, + + ## indicates whether or not punctation marks have been retained as content within the text. + attribute marks { + + ## no punctuation marks have been retained + "none" + | + ## some punctuation marks have been retained + "some" + | + ## all punctuation marks have been retained + "all" + }?, + + ## indicates whether punctation marks have been captured inside or outside of an adjacent element. + attribute placement { + + ## punctuation marks are captured inside adjacent elements + "internal" + | + ## punctuation marks are captured outside adjacent elements + "external" + }?, + empty + } +tei_tagsDecl = + + ## (tagging declaration) provides detailed information about the tagging applied to a document. [2.3.4. The Tagging Declaration 2.3. The Encoding Description] + element tagsDecl { + (tei_rendition*, tei_namespace*), + tei_att.global.attributes, + + ## indicates whether the element types listed exhaustively include all those found within text, or represent only a subset. + attribute partial { xsd:boolean }?, + empty + } +tei_tagUsage = + + ## documents the usage of a specific element within a specified document. [2.3.4. The Tagging Declaration] + element tagUsage { + tei_macro.limitedContent, + tei_att.global.attributes, + + ## (generic identifier) specifies the name (generic identifier) of the element indicated by the tag, within the namespace indicated by the parent namespace element. + attribute gi { xsd:Name }, + + ## specifies the number of occurrences of this element within the text. + attribute occurs { xsd:nonNegativeInteger }?, + + ## (with unique identifier) specifies the number of occurrences of this element within the text which bear a distinct value for the global xml:id attribute. + attribute withId { xsd:nonNegativeInteger }?, + + ## specifies the identifier of a rendition element which defines how this element was rendered in the source text. + attribute render { + list { xsd:anyURI+ } + }?, + empty + } +tei_namespace = + + ## supplies the formal name of the namespace to which the elements documented by its children belong. [2.3.4. The Tagging Declaration] + element namespace { + tei_tagUsage+, + tei_att.global.attributes, + + ## specifies the full formal name of the namespace concerned. + attribute name { xsd:anyURI }, + empty + } +tei_rendition = + + ## supplies information about the rendition or appearance of one or more elements in the source text. [2.3.4. The Tagging Declaration] + element rendition { + tei_macro.limitedContent, + tei_att.global.attributes, + tei_att.styleDef.attributes, + + ## where CSS is used, provides a way of defining pseudo-elements, that is, styling rules applicable to specific sub-portions of an element. + ## Sample values include: 1] first-line; 2] first-letter; 3] before; 4] after + attribute scope { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## contains a selector or series of selectors specifying the elements to which the contained style description applies, expressed in the language specified in the scheme attribute. + attribute selector { xsd:string }?, + empty + } +tei_styleDefDecl = + + ## (style definition language declaration) specifies the name of the formal language in which style or renditional information is supplied elsewhere in the document. The specific version of the scheme may also be supplied. [2.3.5. The Default Style Definition Language Declaration] + element styleDefDecl { + tei_model.pLike*, + tei_att.global.attributes, + tei_att.declarable.attributes, + tei_att.styleDef.attributes, + empty + } +tei_refsDecl = + + ## (references declaration) specifies how canonical references are constructed for this text. [2.3.6.3. Milestone Method 2.3. The Encoding Description 2.3.6. The Reference System Declaration] + element refsDecl { + (tei_model.pLike+ | tei_cRefPattern+ | tei_refState+), + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_cRefPattern = + + ## (canonical reference pattern) specifies an expression and replacement pattern for transforming a canonical reference into a URI. [2.3.6.3. Milestone Method 2.3.6. The Reference System Declaration 2.3.6.2. Search-and-Replace Method] + element cRefPattern { + tei_model.pLike*, + tei_att.global.attributes, + tei_att.patternReplacement.attributes, + empty + } +tei_prefixDef = + + ## (prefixing scheme used in data.pointer values) defines a prefixing scheme used in data.pointer values, showing how abbreviated URIs using the scheme may be expanded into full URIs. [16.2.3. Using Abbreviated Pointers] + element prefixDef { + tei_model.pLike*, + tei_att.global.attributes, + tei_att.patternReplacement.attributes, + + ## supplies a name which functions as the prefix for an abbreviated pointing scheme such as a private URI scheme. The prefix constitutes the text preceding the first colon. + attribute ident { xsd:Name }, + empty + } +tei_listPrefixDef = + + ## (list of prefix definitions) contains a list of definitions of prefixing schemes used in data.pointer values, showing how abbreviated URIs using each scheme may be expanded into full URIs. [16.2.3. Using Abbreviated Pointers] + element listPrefixDef { + (tei_prefixDef | tei_listPrefixDef)+, + tei_att.global.attributes, + empty + } +tei_refState = + + ## (reference state) specifies one component of a canonical reference defined by the milestone method. [2.3.6.3. Milestone Method 2.3.6. The Reference System Declaration] + element refState { + empty, + tei_att.global.attributes, + tei_att.milestoneUnit.attributes, + tei_att.edition.attributes, + + ## specifies the fixed length of the reference component. + attribute length { xsd:nonNegativeInteger }?, + + ## (delimiter) supplies a delimiting string following the reference component. + attribute delim { xsd:string }?, + empty + } +tei_classDecl = + + ## (classification declarations) contains one or more taxonomies defining any classificatory codes used elsewhere in the text. [2.3.7. The Classification Declaration 2.3. The Encoding Description] + element classDecl { tei_taxonomy+, tei_att.global.attributes, empty } +tei_taxonomy = + + ## defines a typology either implicitly, by means of a bibliographic citation, or explicitly by a structured taxonomy. [2.3.7. The Classification Declaration] + element taxonomy { + ((tei_model.glossLike | tei_model.descLike)* + | (tei_category | tei_taxonomy)+ + | (tei_model.biblLike, (tei_category | tei_taxonomy)*)), + tei_att.global.attributes, + empty + } +tei_category = + + ## contains an individual descriptive category, possibly nested within a superordinate category, within a user-defined taxonomy. [2.3.7. The Classification Declaration] + element category { + ((tei_catDesc+ | (tei_model.descLike | tei_model.glossLike)*), + tei_category*), + tei_att.global.attributes, + empty + } +tei_catDesc = + + ## (category description) describes some category within a taxonomy or text typology, either in the form of a brief prose description or in terms of the situational parameters used by the TEI formal textDesc. [2.3.7. The Classification Declaration] + element catDesc { + (text | tei_model.limitedPhrase | tei_model.catDescPart)*, + tei_att.global.attributes, + empty + } +tei_geoDecl = + + ## (geographic coordinates declaration) documents the notation and the datum used for geographic coordinates expressed as content of the geo element elsewhere within the document. [2.3.8. The Geographic Coordinates Declaration] + element geoDecl { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## supplies a commonly used code name for the datum employed. + ## Suggested values include: 1] WGS84(World Geodetic System) ; 2] MGRS(Military Grid Reference System) ; 3] OSGB36(ordnance survey great britain) ; 4] ED50(European Datum coordinate system) + [ a:defaultValue = "WGS84" ] + attribute datum { + + ## (World Geodetic System) a pair of numbers to be interpreted as latitude followed by longitude according to the World Geodetic System. + "WGS84" + | + ## (Military Grid Reference System) the values supplied are geospatial entity object codes, based on + "MGRS" + | + ## (ordnance survey great britain) the value supplied is to be interpreted as a British National Grid Reference. + "OSGB36" + | + ## (European Datum coordinate system) the value supplied is to be interpreted as latitude followed by longitude according to the European Datum coordinate system. + "ED50" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_appInfo = + + ## (application information) records information about an application which has edited the TEI file. [2.3.10. The Application Information Element] + element appInfo { + tei_model.applicationLike+, tei_att.global.attributes, empty + } +tei_application = + + ## provides information about an application which has acted upon the document. [2.3.10. The Application Information Element] + element application { + (tei_model.labelLike+, (tei_model.ptrLike* | tei_model.pLike*)), + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.datable.attributes, + + ## supplies an identifier for the application, independent of its version number or display name. + attribute ident { xsd:Name }, + + ## supplies a version number for the application, independent of its identifier or display name. + attribute version { + xsd:token { + pattern = "[\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3}" + } + }, + empty + } +tei_profileDesc = + + ## (text-profile description) provides a detailed description of non-bibliographic aspects of a text, specifically the languages and sublanguages used, the situation in which it was produced, the participants and their setting. [2.4. The Profile Description 2.1.1. The TEI Header and Its Components] + element profileDesc { + tei_model.profileDescPart*, tei_att.global.attributes, empty + } +tei_handNote = + + ## (note on hand) describes a particular style or hand distinguished within a manuscript. [10.7.2. Writing, Decoration, and Other Notations] + element handNote { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.handFeatures.attributes, + empty + } +tei_abstract = + + ## contains a summary or formal abstract prefixed to an existing source document by the encoder. [2.4.4. Abstracts] + element abstract { + (tei_model.pLike | tei_model.listLike)+, + tei_att.global.attributes, + tei_att.source.attributes, + empty + } +tei_creation = + + ## contains information about the creation of a text. [2.4.1. Creation 2.4. The Profile Description] + element creation { + (text | tei_model.limitedPhrase | tei_listChange)*, + tei_att.global.attributes, + tei_att.datable.attributes, + empty + } +tei_langUsage = + + ## (language usage) describes the languages, sublanguages, registers, dialects, etc. represented within a text. [2.4.2. Language Usage 2.4. The Profile Description 15.3.2. Declarable Elements] + element langUsage { + (tei_model.pLike+ | tei_language+), + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_language = + + ## characterizes a single language or sublanguage used within a text. [2.4.2. Language Usage] + element language { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + + ## (identifier) Supplies a language code constructed as defined in BCP 47 which is used to identify the language documented by this element, and which is referenced by the global xml:lang attribute. + attribute ident { + xsd:language + | ( + ## + "") + }, + + ## specifies the approximate percentage (by volume) of the text which uses this language. + attribute usage { xsd:nonNegativeInteger }?, + empty + } +tei_textClass = + + ## (text classification) groups information which describes the nature or topic of a text in terms of a standard classification scheme, thesaurus, etc. [2.4.3. The Text Classification] + element textClass { + (tei_classCode | tei_catRef | tei_keywords)*, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_keywords = + + ## contains a list of keywords or phrases identifying the topic or nature of a text. [2.4.3. The Text Classification] + element keywords { + (tei_term+ | tei_list), + tei_att.global.attributes, + + ## identifies the controlled vocabulary within which the set of keywords concerned is defined identifies the classification scheme within which the set of categories concerned is defined, for example by a taxonomy element, or by some other resource. + attribute scheme { xsd:anyURI }?, + empty + } +tei_classCode = + + ## (classification code) contains the classification code used for this text in some standard classification system. [2.4.3. The Text Classification] + element classCode { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + + ## identifies the classification system in use, as defined by for example by a taxonomy element, or some other resource. + attribute scheme { xsd:anyURI }, + empty + } +tei_catRef = + + ## (category reference) specifies one or more defined categories within some taxonomy or text typology. [2.4.3. The Text Classification] + element catRef { + empty, + tei_att.global.attributes, + tei_att.pointing.attributes, + + ## identifies the classification scheme within which the set of categories concerned is defined, for example by a taxonomy element, or by some other resource. + attribute scheme { xsd:anyURI }?, + empty + } +tei_calendarDesc = + + ## (calendar description) contains a description of the calendar system used in any dating expression found in the text. [2.4. The Profile Description 2.4.5. Calendar Description] + element calendarDesc { + tei_calendar+, tei_att.global.attributes, empty + } +tei_calendar = + + ## describes a calendar or dating system used in a dating formula in the text. [2.4.5. Calendar Description] + element calendar { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.pointing.attributes, + empty + } +tei_correspDesc = + + ## (correspondence + ## description) contains a description of the actions related to one act of correspondence. [2.4.6. Correspondence Description] + element correspDesc { + (tei_model.correspDescPart+ | tei_model.pLike+), + tei_att.declarable.attributes, + tei_att.canonical.attributes, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_correspAction = + + ## contains a structured description of the place, the name of a person/organization and the date related to the sending/receiving of a message or any other action related to the correspondence [2.4.6. Correspondence Description] + element correspAction { + (tei_model.correspActionPart+ | tei_model.pLike+), + tei_att.global.attributes, + tei_att.typed.attribute.subtype, + tei_att.sortable.attributes, + + ## describes the nature of the action. + ## Suggested values include: 1] sent; 2] received; 3] transmitted; 4] redirected; 5] forwarded + attribute type { + + ## information concerning the sending or dispatch of a message + "sent" + | + ## information concerning the receipt of a message + "received" + | + ## information concerning the transmission of a message, i.e. between the dispatch and the next receipt, redirect or forwarding + "transmitted" + | + ## information concerning the redirection of an unread message. + "redirected" + | + ## information concerning the forwarding of a message. + "forwarded" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_correspContext = + + ## (correspondence context) provides references to preceding or following correspondence related to this piece of correspondence. [2.4.6. Correspondence Description] + element correspContext { + tei_model.correspContextPart+, tei_att.global.attributes, empty + } +tei_xenoData = + + ## (outside metadata) provides a container element into which metadata in non-TEI formats may be placed. [2.5. Non-TEI Metadata] + element xenoData { + (text | tei_macro.anyXML), + tei_att.global.attributes, + tei_att.declarable.attributes, + tei_att.typed.attributes, + empty + } +tei_revisionDesc = + + ## (revision description) summarizes the revision history for a file. [2.6. The Revision Description 2.1.1. The TEI Header and Its Components] + element revisionDesc { + (tei_list | tei_listChange | tei_change+), + tei_att.global.attributes, + tei_att.docStatus.attributes, + empty + } +tei_change = + + ## documents a change or set of changes made during the production of a source document, or during the revision of an electronic file. [2.6. The Revision Description 2.4.1. Creation 11.7. Identifying Changes and Revisions] + element change { + tei_macro.specialPara, + tei_att.ascribed.attributes, + tei_att.datable.attributes, + tei_att.docStatus.attributes, + tei_att.global.attributes, + tei_att.typed.attributes, + + ## points to one or more elements that belong to this change. + attribute target { + list { xsd:anyURI+ } + }?, + empty + } +tei_typeNote = + + ## describes a particular font or other significant typographic feature distinguished within the description of a printed resource. [10.7.2. Writing, Decoration, and Other Notations] + element typeNote { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.handFeatures.attributes, + empty + } +tei_scriptNote = + + ## describes a particular script distinguished within the description of a manuscript or similar resource. [10.7.2. Writing, Decoration, and Other Notations] + element scriptNote { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.handFeatures.attributes, + empty + } +tei_listChange = + + ## groups a number of change descriptions associated with either the creation of a source text or the revision of an encoded text. [2.6. The Revision Description 11.7. Identifying Changes and Revisions] + element listChange { + (tei_listChange | tei_change)+, + tei_att.global.attributes, + tei_att.sortable.attributes, + tei_att.typed.attributes, + + ## indicates whether the ordering of its child change elements is to be considered significant or not + [ a:defaultValue = "true" ] attribute ordered { xsd:boolean }?, + empty + } +tei_TEI = + + ## (TEI document) contains a single TEI-conformant document, combining a single TEI header with one or more members of the model.resourceLike class. Multiple TEI elements may be combined to form a teiCorpus element. [4. Default Text Structure 15.1. Varieties of Composite Text] + element TEI { + (tei_teiHeader, tei_model.resourceLike+) + >> sch:ns [ prefix = "tei" uri = "http://www.tei-c.org/ns/1.0" ] + >> sch:ns [ prefix = "xs" uri = "http://www.w3.org/2001/XMLSchema" ] + >> sch:ns [ + prefix = "rng" + uri = "http://relaxng.org/ns/structure/1.0" + ], + tei_att.global.attributes, + tei_att.typed.attributes, + + ## specifies the major version number of the TEI Guidelines against which this document is valid. + attribute version { + xsd:token { pattern = "[\d]+(\.[\d]+){0,2}" } + }?, + empty + } +tei_text = + + ## contains a single text of any kind, whether unitary or composite, for example a poem or drama, a collection of essays, a novel, a dictionary, or a corpus sample. [4. Default Text Structure 15.1. Varieties of Composite Text] + element text { + (tei_model.global*, + (tei_front, tei_model.global*)?, + (tei_body | tei_group), + tei_model.global*, + (tei_back, tei_model.global*)?), + tei_att.global.attributes, + tei_att.declaring.attributes, + tei_att.typed.attributes, + tei_att.written.attributes, + empty + } +tei_body = + + ## (text body) contains the whole body of a single unitary text, excluding any front or back matter. [4. Default Text Structure] + element body { + (tei_model.global*, + (tei_model.divTop, (tei_model.global | tei_model.divTop)*)?, + (tei_model.divGenLike, + (tei_model.global | tei_model.divGenLike)*)?, + ((tei_model.divLike, (tei_model.global | tei_model.divGenLike)*)+ + | (tei_model.div1Like, + (tei_model.global | tei_model.divGenLike)*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.divLike, + (tei_model.global | tei_model.divGenLike)*)+ + | (tei_model.div1Like, + (tei_model.global | tei_model.divGenLike)*)+)?)), + (tei_model.divBottom, tei_model.global*)*), + tei_att.global.attributes, + tei_att.declaring.attributes, + empty + } +tei_group = + + ## contains the body of a composite text, grouping together a sequence of distinct texts (or groups of such texts) which are regarded as a unit for some purpose, for example the collected works of an author, a sequence of prose essays, etc. [4. Default Text Structure 4.3.1. Grouped Texts 15.1. Varieties of Composite Text] + element group { + ((tei_model.divTop | tei_model.global)*, + ((tei_text | tei_group), + (tei_text | tei_group | tei_model.global)*), + tei_model.divBottom*), + tei_att.global.attributes, + tei_att.declaring.attributes, + tei_att.typed.attributes, + empty + } +tei_floatingText = + + ## contains a single text of any kind, whether unitary or composite, which interrupts the text containing it at any point and after which the surrounding text resumes. [4.3.2. Floating Texts] + element floatingText { + (tei_model.global*, + (tei_front, tei_model.global*)?, + (tei_body | tei_group), + tei_model.global*, + (tei_back, tei_model.global*)?), + tei_att.global.attributes, + tei_att.declaring.attributes, + tei_att.typed.attributes, + empty + } +tei_div = + + ## (text division) contains a subdivision of the front, body, or back of a text. [4.1. Divisions of the Body] + element div { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.divLike | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.divLike | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?) + >> sch:pattern [ + id = "verse-heb-div-abstractModel-structure-l-constraint-13" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:div" + "\x{a}" ~ + " " + sch:report [ + test = "ancestor::tei:l" + "\x{a}" ~ + " Abstract model violation: Lines may not contain higher-level structural elements such as div.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "verse-heb-div-abstractModel-structure-p-constraint-14" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:div" + "\x{a}" ~ + " " + sch:report [ + test = + "ancestor::tei:p or ancestor::tei:ab and not(ancestor::tei:floatingText)" + "\x{a}" ~ + " Abstract model violation: p and ab may not contain higher-level structural elements such as div.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + tei_att.written.attributes, + empty + } +tei_div1 = + + ## (level-1 text division) contains a first-level subdivision of the front, body, or back of a text. [4.1.2. Numbered Divisions] + element div1 { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.div2Like | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.div2Like | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_div2 = + + ## (level-2 text division) contains a second-level subdivision of the front, body, or back of a text. [4.1.2. Numbered Divisions] + element div2 { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.div3Like | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.div3Like | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_div3 = + + ## (level-3 text division) contains a third-level subdivision of the front, body, or back of a text. [4.1.2. Numbered Divisions] + element div3 { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.div4Like | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.div4Like | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_div4 = + + ## (level-4 text division) contains a fourth-level subdivision of the front, body, or back of a text. [4.1.2. Numbered Divisions] + element div4 { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.div5Like | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.div5Like | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_div5 = + + ## (level-5 text division) contains a fifth-level subdivision of the front, body, or back of a text. [4.1.2. Numbered Divisions] + element div5 { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.div6Like | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.div6Like | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_div6 = + + ## (level-6 text division) contains a sixth-level subdivision of the front, body, or back of a text. [4.1.2. Numbered Divisions] + element div6 { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.div7Like | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.div7Like | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_div7 = + + ## (level-7 text division) contains the smallest possible subdivision of the front, body or back of a text, larger than a paragraph. [4.1.2. Numbered Divisions] + element div7 { + ((tei_model.divTop | tei_model.global)*, + ((tei_model.common, tei_model.global*)+, + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_trailer = + + ## contains a closing title or footer appearing at the end of a division of a text. [4.2.4. Content of Textual Divisions 4.2. Elements Common to All Divisions] + element trailer { + (text + | tei_lg + | tei_model.gLike + | tei_model.phrase + | tei_model.inter + | tei_model.lLike + | tei_model.global)*, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_byline = + + ## contains the primary statement of responsibility given for a work on its title page or at the head or end of the work. [4.2.2. Openers and Closers 4.5. Front Matter] + element byline { + (text + | tei_model.gLike + | tei_model.phrase + | tei_docAuthor + | tei_model.global)*, + tei_att.global.attributes, + empty + } +tei_dateline = + + ## contains a brief description of the place, date, time, etc. of production of a letter, newspaper story, or other work, prefixed or suffixed to it as a kind of heading or trailer. [4.2.2. Openers and Closers] + element dateline { + (text + | tei_model.gLike + | tei_model.phrase + | tei_model.global + | tei_docDate)*, + tei_att.global.attributes, + empty + } +tei_argument = + + ## contains a formal list or prose description of the topics addressed by a subdivision of a text. [4.2. Elements Common to All Divisions 4.6. Title Pages] + element argument { + ((tei_model.global | tei_model.headLike)*, + (tei_model.common, tei_model.global*)+), + tei_att.global.attributes, + empty + } +tei_epigraph = + + ## contains a quotation, anonymous or attributed, appearing at the start or end of a section or on a title page. [4.2.3. Arguments, Epigraphs, and Postscripts 4.2. Elements Common to All Divisions 4.6. Title Pages] + element epigraph { + (tei_model.common | tei_model.global)*, + tei_att.global.attributes, + empty + } +tei_opener = + + ## groups together dateline, byline, salutation, and similar phrases appearing as a preliminary group at the start of a division, especially of a letter. [4.2. Elements Common to All Divisions] + element opener { + (text + | tei_model.gLike + | tei_model.phrase + | tei_argument + | tei_byline + | tei_dateline + | tei_epigraph + | tei_salute + | tei_signed + | tei_model.global)*, + tei_att.global.attributes, + tei_att.written.attributes, + empty + } +tei_closer = + + ## groups together salutations, datelines, and similar phrases appearing as a final group at the end of a division, especially of a letter. [4.2.2. Openers and Closers 4.2. Elements Common to All Divisions] + element closer { + (text + | tei_model.gLike + | tei_signed + | tei_dateline + | tei_salute + | tei_model.phrase + | tei_model.global)*, + tei_att.global.attributes, + tei_att.written.attributes, + empty + } +tei_salute = + + ## (salutation) contains a salutation or greeting prefixed to a foreword, dedicatory epistle, or other division of a text, or the salutation in the closing of a letter, preface, etc. [4.2.2. Openers and Closers] + element salute { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.written.attributes, + empty + } +tei_signed = + + ## (signature) contains the closing salutation, etc., appended to a foreword, dedicatory epistle, or other division of a text. [4.2.2. Openers and Closers] + element signed { + tei_macro.paraContent, tei_att.global.attributes, empty + } +tei_postscript = + + ## contains a postscript, e.g. to a letter. [4.2. Elements Common to All Divisions] + element postscript { + ((tei_model.global | tei_model.divTopPart)*, + tei_model.common, + (tei_model.global | tei_model.common)*, + (tei_model.divBottomPart, tei_model.global*)*), + tei_att.global.attributes, + empty + } +tei_titlePage = + + ## (title page) contains the title page of a text, appearing within the front or back matter. [4.6. Title Pages] + element titlePage { + (tei_model.global*, + tei_model.titlepagePart, + (tei_model.titlepagePart | tei_model.global)*), + tei_att.global.attributes, + + ## classifies the title page according to any convenient typology. + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_docTitle = + + ## (document title) contains the title of a document, including all its constituents, as given on a title page. [4.6. Title Pages] + element docTitle { + (tei_model.global*, (tei_titlePart, tei_model.global*)+), + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_titlePart = + + ## contains a subsection or division of the title of a work, as indicated on a title page. [4.6. Title Pages] + element titlePart { + tei_macro.paraContent, + tei_att.global.attributes, + + ## specifies the role of this subdivision of the title. + ## Suggested values include: 1] main; 2] sub(subordinate) ; 3] alt(alternate) ; 4] short; 5] desc(descriptive) + [ a:defaultValue = "main" ] + attribute type { + + ## main title of the work + "main" + | + ## (subordinate) subtitle of the work + "sub" + | + ## (alternate) alternative title of the work + "alt" + | + ## abbreviated form of title + "short" + | + ## (descriptive) descriptive paraphrase of the work + "desc" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_docAuthor = + + ## (document author) contains the name of the author of the document, as given on the title page (often but not always contained in a byline). [4.6. Title Pages] + element docAuthor { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_imprimatur = + + ## contains a formal statement authorizing the publication of a work, sometimes required to appear on a title page or its verso. [4.6. Title Pages] + element imprimatur { + tei_macro.paraContent, tei_att.global.attributes, empty + } +tei_docEdition = + + ## (document edition) contains an edition statement as presented on a title page of a document. [4.6. Title Pages] + element docEdition { + tei_macro.paraContent, tei_att.global.attributes, empty + } +tei_docImprint = + + ## (document imprint) contains the imprint statement (place and date of publication, publisher name), as given (usually) at the foot of a title page. [4.6. Title Pages] + element docImprint { + (text + | tei_model.gLike + | tei_model.phrase + | tei_pubPlace + | tei_docDate + | tei_publisher + | tei_model.global)*, + tei_att.global.attributes, + empty + } +tei_docDate = + + ## (document date) contains the date of a document, as given on a title page or in a dateline. [4.6. Title Pages] + element docDate { + tei_macro.phraseSeq, + tei_att.global.attributes, + + ## gives the value of the date in standard form, i.e. YYYY-MM-DD. + attribute when { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }?, + empty + } +tei_front = + + ## (front matter) contains any prefatory matter (headers, abstracts, title page, prefaces, dedications, etc.) found at the start of a document, before the main body. [4.6. Title Pages 4. Default Text Structure] + element front { + ((tei_model.frontPart + | tei_model.pLike + | tei_model.pLike.front + | tei_model.global)*, + (((tei_model.div1Like, + (tei_model.div1Like | tei_model.frontPart | tei_model.global)*) + | (tei_model.divLike, + (tei_model.divLike + | tei_model.frontPart + | tei_model.global)*)), + (tei_model.divBottom, + (tei_model.divBottom | tei_model.global)*)?)?), + tei_att.global.attributes, + tei_att.declaring.attributes, + empty + } +tei_back = + + ## (back matter) contains any appendixes, etc. following the main part of a text. [4.7. Back Matter 4. Default Text Structure] + element back { + ((tei_model.frontPart + | tei_model.pLike.front + | tei_model.pLike + | tei_model.listLike + | tei_model.global)*, + ((tei_model.div1Like, + (tei_model.frontPart | tei_model.div1Like | tei_model.global)*) + | (tei_model.divLike, + (tei_model.frontPart + | tei_model.divLike + | tei_model.global)*))?, + (tei_model.divBottomPart, + (tei_model.divBottomPart | tei_model.global)*)?), + tei_att.global.attributes, + tei_att.declaring.attributes, + empty + } +tei_att.msExcerpt.attributes = tei_att.msExcerpt.attribute.defective +tei_att.msExcerpt.attribute.defective = + + ## indicates whether the passage being quoted is defective, i.e. incomplete through loss or damage. + [ a:defaultValue = "false" ] + attribute defective { + xsd:boolean + | ( + ## + "unknown" + | + ## + "inapplicable") + }? +tei_msDesc = + + ## (manuscript description) contains a description of a single identifiable manuscript or other text-bearing object. [10.1. Overview] + element msDesc { + (tei_msIdentifier, + tei_model.headLike*, + (tei_model.pLike+ + | (tei_msContents?, + tei_physDesc?, + tei_history?, + tei_additional?, + (tei_msPart* | tei_msFrag*)))), + tei_att.global.attributes, + tei_att.sortable.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_catchwords = + + ## describes the system used to ensure correct ordering of the quires making up a codex or incunable, typically by means of annotations at the foot of the page. [10.3.7. Catchwords, Signatures, Secundo Folio] + element catchwords { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_dimensions = + + ## contains a dimensional specification. [10.3.4. Dimensions] + element dimensions { + ((tei_dim | tei_model.dimLike)*) + >> sch:pattern [ + id = "verse-heb-dimensions-duplicateDim-constraint-15" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:dimensions" + "\x{a}" ~ + " " + sch:report [ + test = "count(tei:width)> 1" + "\x{a}" ~ + "The element " + sch:name [ ] + " may appear once only\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "verse-heb-dimensions-duplicateDim-constraint-16" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:dimensions" + "\x{a}" ~ + " " + sch:report [ + test = "count(tei:height)> 1" + "\x{a}" ~ + "The element " + sch:name [ ] + " may appear once only\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "verse-heb-dimensions-duplicateDim-constraint-17" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:dimensions" + "\x{a}" ~ + " " + sch:report [ + test = "count(tei:depth)> 1" + "\x{a}" ~ + "The element " + sch:name [ ] + " may appear once only\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.dimensions.attributes, + + ## indicates which aspect of the object is being measured. + ## Sample values include: 1] leaves; 2] ruled; 3] pricked; 4] written; 5] miniatures; 6] binding; 7] box + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_dim = + + ## contains any single measurement forming part of a dimensional specification of some sort. [10.3.4. Dimensions] + element dim { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.dimensions.attributes, + empty + } +tei_height = + + ## contains a measurement measured along the axis at right angles to the bottom of the written surface, i.e. parallel to the spine for a codex or book. [10.3.4. Dimensions] + element height { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.dimensions.attributes, + empty + } +tei_depth = + + ## contains a measurement measured across the spine of a book or codex, or (for other text-bearing objects) perpendicular to the measurement given by the width element. [10.3.4. Dimensions] + element depth { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.dimensions.attributes, + empty + } +tei_width = + + ## contains a measurement measured along the axis parallel to the bottom of the written surface, i.e. perpendicular to the spine of a book or codex. [10.3.4. Dimensions] + element width { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.dimensions.attributes, + empty + } +tei_heraldry = + + ## contains a heraldic formula or phrase, typically found as part of a blazon, coat of arms, etc. [10.3.8. Heraldry] + element heraldry { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_locus = + + ## defines a location within a manuscript or manuscript part, usually as a (possibly discontinuous) sequence of folio references. [10.3.5. References to Locations within a Manuscript] + element locus { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.pointing.attributes, + + ## identifies the foliation scheme in terms of which the location is being specified by pointing to some foliation element defining it, or to some other equivalent resource. + attribute scheme { xsd:anyURI }?, + + ## specifies the starting point of the location in a normalized form, typically a page number. + attribute from { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## specifies the end-point of the location in a normalized form, typically as a page number. + attribute to { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_locusGrp = + + ## groups a number of locations which together form a distinct but discontinuous item within a manuscript or manuscript part, according to a specific foliation. [10.3.5. References to Locations within a Manuscript] + element locusGrp { + tei_locus+, + tei_att.global.attributes, + + ## identifies the foliation scheme in terms of which all the locations contained by the group are specified by pointing to some foliation element defining it, or to some other equivalent resource. + attribute scheme { xsd:anyURI }?, + empty + } +tei_material = + + ## contains a word or phrase describing the material of which the object being described is composed. [10.3.2. Material and Object Type] + element material { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_objectType = + + ## contains a word or phrase describing the type of object being referred to. [10.3.2. Material and Object Type] + element objectType { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_origDate = + + ## (origin date) contains any form of date, used to identify the date of origin for a manuscript or manuscript part. [10.3.1. Origination] + element origDate { + (text | tei_model.gLike | tei_model.phrase | tei_model.global)*, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_origPlace = + + ## (origin place) contains any form of place name, used to identify the place of origin for a manuscript or manuscript part. [10.3.1. Origination] + element origPlace { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_secFol = + + ## (second folio) marks the word or words taken from a fixed point in a codex (typically the beginning of the second leaf) in order to provide a unique identifier for it. [10.3.7. Catchwords, Signatures, Secundo Folio] + element secFol { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_signatures = + + ## contains discussion of the leaf or quire signatures found within a codex. [10.3.7. Catchwords, Signatures, Secundo Folio] + element signatures { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_stamp = + + ## contains a word or phrase describing a stamp or similar device. [10.3.3. Watermarks and Stamps] + element stamp { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.datable.attributes, + empty + } +tei_watermark = + + ## contains a word or phrase describing a watermark or similar device. [10.3.3. Watermarks and Stamps] + element watermark { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_msIdentifier = + + ## (manuscript identifier) contains the information required to identify the manuscript being described. [10.4. The Manuscript Identifier] + element msIdentifier { + ((tei_institution?, tei_repository?, tei_collection*, tei_idno?), + (tei_msName | tei_altIdentifier)*) + >> sch:pattern [ + id = "verse-heb-msIdentifier-msId_minimal-constraint-18" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:msIdentifier" + "\x{a}" ~ + " " + sch:report [ + test = + "not(parent::tei:msPart) and (local-name(*[1])='idno' or local-name(*[1])='altIdentifier' or normalize-space(.)='')" + "An msIdentifier must contain either a repository or location of some type, or a manuscript name" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + empty + } +tei_institution = + + ## contains the name of an organization such as a university or library, with which a manuscript is identified, generally its holding institution. [10.4. The Manuscript Identifier] + element institution { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.naming.attributes, + empty + } +tei_repository = + + ## contains the name of a repository within which manuscripts are stored, possibly forming part of an institution. [10.4. The Manuscript Identifier] + element repository { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.naming.attributes, + empty + } +tei_collection = + + ## contains the name of a collection of manuscripts, not necessarily located within a single repository. [10.4. The Manuscript Identifier] + element collection { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + empty + } +tei_altIdentifier = + + ## (alternative identifier) contains an alternative or former structured identifier used for a manuscript, such as a former catalogue number. [10.4. The Manuscript Identifier] + element altIdentifier { + (tei_institution?, + tei_repository?, + tei_collection?, + tei_idno, + tei_note?), + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_msName = + + ## (alternative name) contains any form of unstructured alternative name used for a manuscript, such as an ocellus nominum, or nickname. [10.4. The Manuscript Identifier] + element msName { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_colophon = + + ## contains the colophon of a manuscript item: that is, a statement providing information regarding the date, place, agency, or reason for production of the manuscript. [10.6.1. The msItem and msItemStruct Elements] + element colophon { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_explicit = + + ## contains the explicit of a manuscript item, that is, the closing words of the text proper, exclusive of any rubric or colophon which might follow it. [10.6.1. The msItem and msItemStruct Elements] + element explicit { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.msExcerpt.attributes, + empty + } +tei_filiation = + + ## contains information concerning the manuscript's filiation, i.e. its relationship to other surviving manuscripts of the same text, its protographs, antigraphs and apographs. [10.6.1. The msItem and msItemStruct Elements] + element filiation { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_finalRubric = + + ## contains the string of words that denotes the end of a text division, often with an assertion as to its author and title, usually set off from the text itself by red ink, by a different size or type of script, or by some other such visual device. [10.6.1. The msItem and msItemStruct Elements] + element finalRubric { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_incipit = + + ## contains the incipit of a manuscript item, that is the opening words of the text proper, exclusive of any rubric which might precede it, of sufficient length to identify the work uniquely; such incipits were, in former times, frequently used a means of reference to a work, in place of a title. [10.6.1. The msItem and msItemStruct Elements] + element incipit { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.msExcerpt.attributes, + empty + } +tei_msContents = + + ## (manuscript contents) describes the intellectual content of a manuscript or manuscript part, either as a series of paragraphs or as a series of structured manuscript items. [10.6. Intellectual Content] + element msContents { + (tei_model.pLike+ + | (tei_summary?, + tei_textLang?, + tei_titlePage?, + (tei_msItem | tei_msItemStruct)*)), + tei_att.global.attributes, + tei_att.msExcerpt.attributes, + + ## identifies the text types or classifications applicable to this object by pointing to other elements or resources defining the classification concerned. + attribute class { + list { xsd:anyURI+ } + }?, + empty + } +tei_msItem = + + ## (manuscript item) describes an individual work or item within the intellectual content of a manuscript or manuscript part. [10.6.1. The msItem and msItemStruct Elements] + element msItem { + ((tei_locus | tei_locusGrp)*, + (tei_model.pLike+ + | (tei_model.titlepagePart + | tei_model.msItemPart + | tei_model.global)+)), + tei_att.global.attributes, + tei_att.msExcerpt.attributes, + + ## identifies the text types or classifications applicable to this item by pointing to other elements or resources defining the classification concerned. + attribute class { + list { xsd:anyURI+ } + }?, + empty + } +tei_msItemStruct = + + ## (structured manuscript item) contains a structured description for an individual work or item within the intellectual content of a manuscript or manuscript part. [10.6.1. The msItem and msItemStruct Elements] + element msItemStruct { + ((tei_locus | tei_locusGrp)?, + (tei_model.pLike+ + | (tei_author*, + tei_respStmt*, + tei_title*, + tei_rubric?, + tei_incipit?, + tei_msItemStruct*, + tei_explicit?, + tei_finalRubric?, + tei_colophon*, + tei_decoNote*, + tei_listBibl*, + (tei_bibl | tei_biblStruct)*, + tei_model.noteLike*, + tei_textLang?))), + tei_att.global.attributes, + tei_att.msExcerpt.attributes, + + ## identifies the text types or classifications applicable to this item by pointing to other elements or resources defining the classification concerned. + attribute class { + list { xsd:anyURI+ } + }?, + empty + } +tei_rubric = + + ## contains the text of any rubric or heading attached to a particular manuscript item, that is, a string of words through which a manuscript signals the beginning of a text division, often with an assertion as to its author and title, which is in some way set off from the text itself, usually in red ink, or by use of different size or type of script, or some other such visual device. [10.6.1. The msItem and msItemStruct Elements] + element rubric { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_summary = + + ## contains an overview of the available information concerning some aspect of an item (for example, its intellectual content, history, layout, typography etc.) as a complement or alternative to the more detailed information carried by more specific elements. [10.6. Intellectual Content] + element summary { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_physDesc = + + ## (physical description) contains a full physical description of a manuscript or manuscript part, optionally subdivided using more specialized elements from the model.physDescPart class. [10.7. Physical Description] + element physDesc { + (tei_model.pLike*, + tei_objectDesc?, + tei_handDesc?, + tei_typeDesc?, + tei_scriptDesc?, + tei_musicNotation?, + tei_decoDesc?, + tei_additions?, + tei_bindingDesc?, + tei_sealDesc?, + tei_accMat?), + tei_att.global.attributes, + empty + } +tei_objectDesc = + + ## contains a description of the physical components making up the object which is being described. [10.7.1. Object Description] + element objectDesc { + (tei_model.pLike+ | (tei_supportDesc?, tei_layoutDesc?)), + tei_att.global.attributes, + + ## a short project-specific name identifying the physical form of the carrier, for example as a codex, roll, fragment, partial leaf, cutting etc. + attribute form { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_supportDesc = + + ## (support description) groups elements describing the physical support for the written part of a manuscript. [10.7.1. Object Description] + element supportDesc { + (tei_model.pLike+ + | (tei_support?, + tei_extent?, + tei_foliation*, + tei_collation?, + tei_condition?)), + tei_att.global.attributes, + + ## a short project-defined name for the material composing the majority of the support + ## Suggested values include: 1] paper; 2] parch(parchment) ; 3] mixed + attribute material { + + ## + "paper" + | + ## (parchment) + "parch" + | + ## + "mixed" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_support = + + ## contains a description of the materials etc. which make up the physical support for the written part of a manuscript. [10.7.1. Object Description] + element support { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_collation = + + ## contains a description of how the leaves or bifolia are physically arranged. [10.7.1. Object Description] + element collation { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_foliation = + + ## describes the numbering system or systems used to count the leaves or pages in a codex. [10.7.1.4. Foliation] + element foliation { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_condition = + + ## contains a description of the physical condition of the manuscript. [10.7.1.5. Condition] + element condition { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_layoutDesc = + + ## (layout description) collects the set of layout descriptions applicable to a manuscript. [10.7.2. Writing, Decoration, and Other Notations] + element layoutDesc { + (tei_model.pLike+ | (tei_summary?, tei_layout+)), + tei_att.global.attributes, + empty + } +tei_layout = + + ## describes how text is laid out on the page, including information about any ruling, pricking, or other evidence of page-preparation techniques. [10.7.2. Writing, Decoration, and Other Notations] + element layout { + tei_macro.specialPara, + tei_att.global.attributes, + + ## specifies the number of columns per page + attribute columns { + list { xsd:nonNegativeInteger, xsd:nonNegativeInteger? } + }?, + + ## specifies the number of ruled lines per column + attribute ruledLines { + list { xsd:nonNegativeInteger, xsd:nonNegativeInteger? } + }?, + + ## specifies the number of written lines per column + attribute writtenLines { + list { xsd:nonNegativeInteger, xsd:nonNegativeInteger? } + }?, + empty + } +tei_handDesc = + + ## (description of hands) contains a description of all the different kinds of writing used in a manuscript. [10.7.2. Writing, Decoration, and Other Notations] + element handDesc { + (tei_model.pLike+ | (tei_summary?, tei_handNote+)), + tei_att.global.attributes, + + ## specifies the number of distinct hands identified within the manuscript + attribute hands { xsd:nonNegativeInteger }?, + empty + } +tei_typeDesc = + + ## contains a description of the typefaces or other aspects of the printing of an incunable or other printed source. [10.7.2.1. Writing] + element typeDesc { + (tei_model.pLike+ | (tei_summary?, tei_typeNote+)), + tei_att.global.attributes, + empty + } +tei_scriptDesc = + + ## contains a description of the scripts used in a manuscript or similar source. [10.7.2.1. Writing] + element scriptDesc { + (tei_model.pLike+ | (tei_summary?, tei_scriptNote+)), + tei_att.global.attributes, + empty + } +tei_musicNotation = + + ## contains description of type of musical notation. [10.7.2. Writing, Decoration, and Other Notations] + element musicNotation { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_decoDesc = + + ## (decoration description) contains a description of the decoration of a manuscript, either as a sequence of paragraphs, or as a sequence of topically organized decoNote elements. [10.7.3. Bindings, Seals, and Additional Material] + element decoDesc { + (tei_model.pLike+ | (tei_summary?, tei_decoNote+)), + tei_att.global.attributes, + empty + } +tei_decoNote = + + ## (note on decoration) contains a note describing either a decorative component of a manuscript, or a fairly homogenous class of such components. [10.7.3. Bindings, Seals, and Additional Material] + element decoNote { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_additions = + + ## contains a description of any significant additions found within a manuscript, such as marginalia or other annotations. [10.7.2. Writing, Decoration, and Other Notations] + element additions { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_bindingDesc = + + ## (binding description) describes the present and former bindings of a manuscript, either as a series of paragraphs or as a series of distinct binding elements, one for each binding of the manuscript. [10.7.3.1. Binding Descriptions] + element bindingDesc { + ((tei_model.pLike | tei_decoNote | tei_condition)+ | tei_binding+), + tei_att.global.attributes, + empty + } +tei_binding = + + ## contains a description of one binding, i.e. type of covering, boards, etc. applied to a manuscript. [10.7.3.1. Binding Descriptions] + element binding { + (tei_model.pLike | tei_condition | tei_decoNote)+, + tei_att.global.attributes, + tei_att.datable.attributes, + + ## specifies whether or not the binding is contemporary with the majority of its contents + attribute contemporary { + xsd:boolean + | ( + ## + "unknown" + | + ## + "inapplicable") + }?, + empty + } +tei_sealDesc = + + ## (seal description) describes the seals or other external items attached to a manuscript, either as a series of paragraphs or as a series of distinct seal elements, possibly with additional decoNotes. [10.7.3.2. Seals] + element sealDesc { + (tei_model.pLike+ + | (tei_summary?, (tei_decoNote | tei_seal | tei_condition)+)), + tei_att.global.attributes, + empty + } +tei_seal = + + ## contains a description of one seal or similar attachment applied to a manuscript. [10.7.3.2. Seals] + element seal { + (tei_model.pLike | tei_decoNote)+, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.datable.attributes, + + ## specifies whether or not the seal is contemporary with the item to which it is affixed + attribute contemporary { + xsd:boolean + | ( + ## + "unknown" + | + ## + "inapplicable") + }?, + empty + } +tei_accMat = + + ## (accompanying material) contains details of any significant additional material which may be closely associated with the manuscript being described, such as non-contemporaneous documents or fragments bound in with the manuscript at some earlier historical period. [10.7.3.3. Accompanying Material] + element accMat { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_history = + + ## groups elements describing the full history of a manuscript or manuscript part. [10.8. History] + element history { + (tei_model.pLike+ + | (tei_summary?, tei_origin?, tei_provenance*, tei_acquisition?)), + tei_att.global.attributes, + empty + } +tei_origin = + + ## contains any descriptive or other information concerning the origin of a manuscript or manuscript part. [10.8. History] + element origin { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.datable.attributes, + empty + } +tei_provenance = + + ## contains any descriptive or other information concerning a single identifiable episode during the history of a manuscript or manuscript part, after its creation but before its acquisition. [10.8. History] + element provenance { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.typed.attributes, + tei_att.source.attributes, + empty + } +tei_acquisition = + + ## contains any descriptive or other information concerning the process by which a manuscript or manuscript part entered the holding institution. [10.8. History] + element acquisition { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.datable.attributes, + empty + } +tei_additional = + + ## groups additional information, combining bibliographic information about a manuscript, or surrogate copies of it with curatorial or administrative information. [10.9. Additional Information] + element additional { + (tei_adminInfo?, tei_surrogates?, tei_listBibl?), + tei_att.global.attributes, + empty + } +tei_adminInfo = + + ## (administrative information) contains information about the present custody and availability of the manuscript, and also about the record description itself. [10.9.1. Administrative Information] + element adminInfo { + (tei_recordHist?, + tei_availability?, + tei_custodialHist?, + tei_model.noteLike?), + tei_att.global.attributes, + empty + } +tei_recordHist = + + ## (recorded history) provides information about the source and revision status of the parent manuscript description itself. [10.9.1. Administrative Information] + element recordHist { + (tei_model.pLike+ | (tei_source, tei_change*)), + tei_att.global.attributes, + empty + } +tei_source = + + ## describes the original source for the information contained with a manuscript description. [10.9.1.1. Record History] + element source { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_custodialHist = + + ## (custodial history) contains a description of a manuscript's custodial history, either as running prose or as a series of dated custodial events. [10.9.1.2. Availability and Custodial History] + element custodialHist { + (tei_model.pLike+ | tei_custEvent+), + tei_att.global.attributes, + empty + } +tei_custEvent = + + ## (custodial event) describes a single event during the custodial history of a manuscript. [10.9.1.2. Availability and Custodial History] + element custEvent { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.typed.attributes, + empty + } +tei_surrogates = + + ## contains information about any representations of the manuscript being described which may exist in the holding institution or elsewhere. [10.9. Additional Information] + element surrogates { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_msPart = + + ## (manuscript part) contains information about an originally distinct manuscript or part of a manuscript, which is now part of a composite manuscript. [10.10. Manuscript Parts] + element msPart { + ((tei_altIdentifier | tei_msIdentifier), + tei_model.headLike*, + (tei_model.pLike+ + | (tei_msContents?, + tei_physDesc?, + tei_history?, + tei_additional?, + tei_msPart*))) + >> sch:pattern [ + id = + "verse-heb-msPart-deprecate-altIdentifier-child-constraint-19" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:msPart" + "\x{a}" ~ + " " + sch:report [ + role = "nonfatal" + test = "child::tei:altIdentifier" + "WARNING: use of deprecated method — the use of the altIdentifier element as a direct child of the msPart element will be removed from the TEI on 2016-09-09" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + empty + } +tei_msFrag = + + ## (manuscript fragment) contains information about a fragment of a scattered manuscript now held as a single unit or bound into a larger manuscript. [10.11. Manuscript Fragments] + element msFrag { + ((tei_altIdentifier | tei_msIdentifier), + tei_model.headLike*, + (tei_model.pLike+ + | (tei_msContents?, + tei_physDesc?, + tei_history?, + tei_additional?))), + tei_att.global.attributes, + empty + } +tei_att.metrical.attributes = + tei_att.metrical.attribute.met, + tei_att.metrical.attribute.real, + tei_att.metrical.attribute.rhyme +tei_att.metrical.attribute.met = + + ## (metrical structure, conventional) contains a user-specified encoding for the conventional metrical structure of the element. + attribute met { xsd:token }? +tei_att.metrical.attribute.real = + + ## (metrical structure, realized) contains a user-specified encoding for the actual realization of the conventional metrical structure applicable to the element. + attribute real { xsd:token }? +tei_att.metrical.attribute.rhyme = + + ## (rhyme scheme) specifies the rhyme scheme applicable to a group of verse lines. + attribute rhyme { xsd:token }? +tei_att.enjamb.attributes = tei_att.enjamb.attribute.enjamb +tei_att.enjamb.attribute.enjamb = + + ## (enjambement) indicates that the end of a verse line is marked by enjambement. + ## Sample values include: 1] no; 2] yes; 3] weak; 4] strong + attribute enjamb { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_metDecl = + + ## (metrical notation declaration) documents the notation employed to represent a metrical pattern when this is specified as the value of a met, real, or rhyme attribute on any structural element of a metrical text (e.g. lg, l, or seg). [6.6. Metrical Notation Declaration 6.4. Rhyme and Metrical Analysis] + element metDecl { + ((tei_model.pLike | tei_model.noteLike)+ | tei_metSym+), + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## indicates whether the notation conveys the abstract metrical form, its actual prosodic realization, or the rhyme scheme, or some combination thereof. + [ a:defaultValue = "met real" ] + attribute type { + list { + ( + ## (met attribute) declaration applies to the abstract metrical form recorded on the met attribute + "met" + | + ## (real attribute) declaration applies to the actual realization of the conventional metrical structure recorded on the real attribute + "real" + | + ## declaration applies to the rhyme scheme recorded on the rhyme attribute + "rhyme"), + ( + ## (met attribute) declaration applies to the abstract metrical form recorded on the met attribute + "met" + | + ## (real attribute) declaration applies to the actual realization of the conventional metrical structure recorded on the real attribute + "real" + | + ## declaration applies to the rhyme scheme recorded on the rhyme attribute + "rhyme")?, + ( + ## (met attribute) declaration applies to the abstract metrical form recorded on the met attribute + "met" + | + ## (real attribute) declaration applies to the actual realization of the conventional metrical structure recorded on the real attribute + "real" + | + ## declaration applies to the rhyme scheme recorded on the rhyme attribute + "rhyme")? + } + }?, + + ## (regular expression pattern) specifies a regular expression defining any value that is legal for this notation. + attribute pattern { xsd:token }?, + empty + } +tei_metSym = + + ## (metrical notation symbol) documents the intended significance of a particular character or character sequence within a metrical notation, either explicitly or in terms of other symbol elements in the same metDecl. [6.6. Metrical Notation Declaration] + element metSym { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + + ## specifies the character or character sequence being documented. + attribute value { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }, + + ## specifies whether the symbol is defined in terms of other symbols (terminal is set to false) or in prose (terminal is set to true). + [ a:defaultValue = "true" ] attribute terminal { xsd:boolean }?, + empty + } +tei_caesura = + + ## marks the point at which a metrical line may be divided. [6.2. Components of the Verse Line] + element caesura { empty, tei_att.global.attributes, empty } +tei_rhyme = + + ## marks the rhyming part of a metrical line. [6.5. Rhyme] + element rhyme { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.typed.attributes, + + ## provides a label (usually a single letter) to identify which part of a rhyme scheme this rhyming string instantiates. + attribute label { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +start = tei_TEI | tei_teiCorpus diff --git a/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/tei-poesia.pdf b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/tei-poesia.pdf new file mode 100644 index 0000000..5fa675e Binary files /dev/null and b/4 - Tecnologias de marcado especificas para poesia_ TEI-XML (Bermudez Sabel)/tei-poesia.pdf differ diff --git a/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/cuarto-solo.png b/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/cuarto-solo.png new file mode 100644 index 0000000..3302413 Binary files /dev/null and b/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/cuarto-solo.png differ diff --git a/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/ejercicio-3.txt b/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/ejercicio-3.txt new file mode 100644 index 0000000..06c4595 --- /dev/null +++ b/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/ejercicio-3.txt @@ -0,0 +1,31 @@ + +Alejandra Pizarnik + +Cuarto solo + + +(versión publicada) + +Si te atreves a sorprender +la verdad de esta vieja pared; +y sus fisuras, desgarraduras, +formando rostros, esfinges, +manos, clepsidras, +seguramente vendrá +una presencia para tu sed, +probablemente partirá +esta ausencia que te bebe. + + + + +(transcripción borrador) + +\\Si// te atreves a (...) sorprender +el sentido de esta vieja pared; +y sus fisura\\s,//(...) desgarraduras (...), +formando rostros, esfinges, +manos, clepsidras, (...) +una presencia para tu sed, +probablemente partirá +esta ausencia que te bebe. \ No newline at end of file diff --git a/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/formulario-solucion-ejercicio-3.pdf b/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/formulario-solucion-ejercicio-3.pdf new file mode 100644 index 0000000..bf8ce70 Binary files /dev/null and b/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/formulario-solucion-ejercicio-3.pdf differ diff --git a/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/solucion-ejercicio-3.xml b/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/solucion-ejercicio-3.xml new file mode 100644 index 0000000..b7922b3 --- /dev/null +++ b/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/solucion-ejercicio-3.xml @@ -0,0 +1,118 @@ + + + + + + + Ejercicio: módulo aparato crítico + + Transcripción y edición. + Helena Bermúdez Sabel + + + + Laboratorio de Innovación en Humanidades Digitales + + + Creative Commons + Attribution-NonCommercial-ShareAlike 4.0 International + + + + + + + + + 978-2-84292-402-7 + Une calligraphie des ombres : Les manuscrits d’Alejandra + Pizarnik + Une calligraphie des ombres + Mariana DiCio + + Saint Denis + Presses Universitaires Vincennes + 2014 + + + + + + + + + 978-84-264-2825-7 + Poesía completa + AlejandraPizarnik + Edición: 001 + + Barcelona + Lumen + 2005 + + + + + + + + + + + + + +
+ + Borrador manuscrito + Versión publicada + +
+
+ + + + <title>Cuarto solo + + Borrador + Edición + + + Alejandra Pizarnik + + + + Si alguna vez + + + + Si + Si + te atreves a + der + sorprender + + el sentido + la verdad + de esta vieja pared; + y sus + fisuras,; + fisuras, + desgarraduras + + , + formando rostros, esfinges, + manos, clepsidras, + + + seguramente vendrá + una presencia para tu sed, + probablemente partirá + esta ausencia que te bebe. + + +
+
diff --git a/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/tei-modulos.pdf b/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/tei-modulos.pdf new file mode 100644 index 0000000..7599acc Binary files /dev/null and b/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/tei-modulos.pdf differ diff --git a/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/verse.rnc b/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/verse.rnc new file mode 100644 index 0000000..b62c5a9 --- /dev/null +++ b/5 - TEI para el etiquetado de poesia. Otros modulos (edicion critica) y posibilidades (Bermudez Sabel)/verse.rnc @@ -0,0 +1,8039 @@ +namespace a = "http://relaxng.org/ns/compatibility/annotations/1.0" +namespace ns1 = "http://www.isocat.org/ns/dcr" +namespace rng = "http://relaxng.org/ns/structure/1.0" +namespace s = "http://www.ascc.net/xml/schematron" +namespace sch = "http://purl.oclc.org/dsdl/schematron" +default namespace tei = "http://www.tei-c.org/ns/1.0" +namespace teix = "http://www.tei-c.org/ns/Examples" +namespace xi = "http://www.w3.org/2001/XInclude" +namespace xlink = "http://www.w3.org/1999/xlink" + +# Schema generated from ODD source 2016-06-20T11:46:10Z. . +# TEI Edition: Version 3.0.0. Last updated on +# 29th March 2016, revision 89ba24e +# TEI Edition Location: http://www.tei-c.org/Vault/P5/Version 3.0.0/ +# + +# +tei_macro.paraContent = + (text + | tei_model.gLike + | tei_model.phrase + | tei_model.inter + | tei_model.global + | tei_lg + | tei_model.lLike)* +tei_macro.limitedContent = + (text | tei_model.limitedPhrase | tei_model.inter)* +tei_macro.phraseSeq = + (text | tei_model.gLike | tei_model.phrase | tei_model.global)* +tei_macro.phraseSeq.limited = + (text | tei_model.limitedPhrase | tei_model.global)* +tei_macro.specialPara = + (text + | tei_model.gLike + | tei_model.phrase + | tei_model.inter + | tei_model.divPart + | tei_model.global)* +tei_macro.xtext = (text | tei_model.gLike)* +tei_macro.anyXML = + element * - (tei:* | teix:egXML) { + attribute * { text }*, + (text | tei_macro.anyXML)* + } +tei_att.ascribed.attributes = tei_att.ascribed.attribute.who +tei_att.ascribed.attribute.who = + + ## indicates the person, or group of people, to whom the element content is ascribed. + attribute who { + list { xsd:anyURI+ } + }? +tei_att.canonical.attributes = + tei_att.canonical.attribute.key, tei_att.canonical.attribute.ref +tei_att.canonical.attribute.key = + + ## provides an externally-defined means of identifying the entity (or entities) being named, using a coded value of some kind. + attribute key { xsd:string }? +tei_att.canonical.attribute.ref = + + ## (reference) provides an explicit means of locating a full definition or identity for the entity being named by means of one or more URIs. + attribute ref { + list { xsd:anyURI+ } + }? +tei_att.ranging.attributes = + tei_att.ranging.attribute.atLeast, + tei_att.ranging.attribute.atMost, + tei_att.ranging.attribute.min, + tei_att.ranging.attribute.max, + tei_att.ranging.attribute.confidence +tei_att.ranging.attribute.atLeast = + + ## gives a minimum estimated value for the approximate measurement. + attribute atLeast { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.ranging.attribute.atMost = + + ## gives a maximum estimated value for the approximate measurement. + attribute atMost { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.ranging.attribute.min = + + ## where the measurement summarizes more than one observation or a range, supplies the minimum value observed. + attribute min { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.ranging.attribute.max = + + ## where the measurement summarizes more than one observation or a range, supplies the maximum value observed. + attribute max { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.ranging.attribute.confidence = + + ## specifies the degree of statistical confidence (between zero and one) that a value falls within the range specified by min and max, or the proportion of observed values that fall within that range. + attribute confidence { xsd:double }? +tei_att.dimensions.attributes = + tei_att.ranging.attributes, + tei_att.dimensions.attribute.unit, + tei_att.dimensions.attribute.quantity, + tei_att.dimensions.attribute.extent, + tei_att.dimensions.attribute.precision, + tei_att.dimensions.attribute.scope +tei_att.dimensions.attribute.unit = + + ## names the unit used for the measurement + ## Suggested values include: 1] cm(centimetres) ; 2] mm(millimetres) ; 3] in(inches) ; 4] lines; 5] chars(characters) + attribute unit { + + ## (centimetres) + "cm" + | + ## (millimetres) + "mm" + | + ## (inches) + "in" + | + ## lines of text + "lines" + | + ## (characters) characters of text + "chars" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.dimensions.attribute.quantity = + + ## specifies the length in the units specified + attribute quantity { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.dimensions.attribute.extent = + + ## indicates the size of the object concerned using a project-specific vocabulary combining quantity and units in a single string of words. + attribute extent { xsd:string }? +tei_att.dimensions.attribute.precision = + + ## characterizes the precision of the values specified by the other attributes. + attribute precision { + + ## + "high" + | + ## + "medium" + | + ## + "low" + | + ## + "unknown" + }? +tei_att.dimensions.attribute.scope = + + ## where the measurement summarizes more than one observation, specifies the applicability of this measurement. + ## Sample values include: 1] all; 2] most; 3] range + attribute scope { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.written.attributes = tei_att.written.attribute.hand +tei_att.written.attribute.hand = + + ## points to a handNote element describing the hand considered responsible for the textual content of the element concerned. + attribute hand { xsd:anyURI }? +tei_att.damaged.attributes = + tei_att.dimensions.attributes, + tei_att.written.attributes, + tei_att.damaged.attribute.agent, + tei_att.damaged.attribute.degree, + tei_att.damaged.attribute.group +tei_att.damaged.attribute.agent = + + ## categorizes the cause of the damage, if it can be identified. + ## Sample values include: 1] rubbing; 2] mildew; 3] smoke + attribute agent { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.damaged.attribute.degree = + + ## provides a coded representation of the degree of damage, either as a number between 0 (undamaged) and 1 (very extensively damaged), or as one of the codes high, medium, low, or unknown. The damage element with the degree attribute should only be used where the text may be read with some confidence; text supplied from other sources should be tagged as supplied. + attribute degree { + xsd:double + | ( + ## + "high" + | + ## + "medium" + | + ## + "low" + | + ## + "unknown") + }? +tei_att.damaged.attribute.group = + + ## assigns an arbitrary number to each stretch of damage regarded as forming part of the same physical phenomenon. + attribute group { xsd:nonNegativeInteger }? +tei_att.breaking.attributes = tei_att.breaking.attribute.break +tei_att.breaking.attribute.break = + + ## indicates whether or not the element bearing this attribute should be considered to mark the end of an orthographic token in the same way as whitespace. + attribute break { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.cReferencing.attributes = tei_att.cReferencing.attribute.cRef +tei_att.cReferencing.attribute.cRef = + + ## (canonical reference) specifies the destination of the pointer by supplying a canonical reference expressed using the scheme defined in a refsDecl element in the TEI header + attribute cRef { xsd:string }? +tei_att.datable.w3c.attributes = + tei_att.datable.w3c.attribute.when, + tei_att.datable.w3c.attribute.notBefore, + tei_att.datable.w3c.attribute.notAfter, + tei_att.datable.w3c.attribute.from, + tei_att.datable.w3c.attribute.to +tei_att.datable.w3c.attribute.when = + + ## supplies the value of the date or time in a standard form, e.g. yyyy-mm-dd. + attribute when { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }? +tei_att.datable.w3c.attribute.notBefore = + + ## specifies the earliest possible date for the event in standard form, e.g. yyyy-mm-dd. + attribute notBefore { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }? +tei_att.datable.w3c.attribute.notAfter = + + ## specifies the latest possible date for the event in standard form, e.g. yyyy-mm-dd. + attribute notAfter { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }? +tei_att.datable.w3c.attribute.from = + + ## indicates the starting point of the period in standard form, e.g. yyyy-mm-dd. + attribute from { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }? +tei_att.datable.w3c.attribute.to = + + ## indicates the ending point of the period in standard form, e.g. yyyy-mm-dd. + attribute to { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }? +sch:pattern [ + id = "app-att.datable.w3c-att-datable-w3c-when-constraint-1" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@when]" + "\x{a}" ~ + " " + sch:report [ + role = "nonfatal" + test = "@notBefore|@notAfter|@from|@to" + "The @when attribute cannot be used with any other att.datable.w3c attributes." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +sch:pattern [ + id = "app-att.datable.w3c-att-datable-w3c-from-constraint-2" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@from]" + "\x{a}" ~ + " " + sch:report [ + role = "nonfatal" + test = "@notBefore" + "The @from and @notBefore attributes cannot be used together." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +sch:pattern [ + id = "app-att.datable.w3c-att-datable-w3c-to-constraint-3" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@to]" + "\x{a}" ~ + " " + sch:report [ + role = "nonfatal" + test = "@notAfter" + "The @to and @notAfter attributes cannot be used together." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +tei_att.datable.attributes = + tei_att.datable.w3c.attributes, + tei_att.datable.iso.attributes, + tei_att.datable.custom.attributes, + tei_att.datable.attribute.calendar, + tei_att.datable.attribute.period +tei_att.datable.attribute.calendar = + + ## indicates the system or calendar to which the date represented by the content of this element belongs. + attribute calendar { xsd:anyURI }? +sch:pattern [ + id = "app-att.datable-calendar-calendar-constraint-4" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@calendar]" + "\x{a}" ~ + " " + sch:assert [ + test = "string-length(.) gt 0" + "\x{a}" ~ + "@calendar indicates the system or calendar to which the date represented by the content of this element\x{a}" ~ + "belongs, but this " + sch:name [ ] + " element has no textual content." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +tei_att.datable.attribute.period = + + ## supplies a pointer to some location defining a named period of time within which the datable item is understood to have occurred. + attribute period { xsd:anyURI }? +tei_att.datcat.attributes = + tei_att.datcat.attribute.datcat, tei_att.datcat.attribute.valueDatcat +tei_att.datcat.attribute.datcat = + + ## contains a PID (persistent identifier) that aligns the given element with the appropriate Data Category (or categories) in ISOcat. + attribute ns1:datcat { + list { xsd:anyURI+ } + }? +tei_att.datcat.attribute.valueDatcat = + + ## contains a PID (persistent identifier) that aligns the content of the given element or the value of the given attribute with the appropriate simple Data Category (or categories) in ISOcat. + attribute ns1:valueDatcat { + list { xsd:anyURI+ } + }? +tei_att.declarable.attributes = tei_att.declarable.attribute.default +tei_att.declarable.attribute.default = + + ## indicates whether or not this element is selected by default when its parent is selected. + [ a:defaultValue = "false" ] + attribute default { + + ## This element is selected if its parent is selected + "true" + | + ## This element can only be selected explicitly, unless it is the only one of its kind, in which case it is selected if its parent is selected. + "false" + }? +tei_att.declaring.attributes = tei_att.declaring.attribute.decls +tei_att.declaring.attribute.decls = + + ## identifies one or more declarable elements within the header, which are understood to apply to the element bearing this attribute and its content. + attribute decls { + list { xsd:anyURI+ } + }? +tei_att.fragmentable.attributes = tei_att.fragmentable.attribute.part +tei_att.fragmentable.attribute.part = + + ## specifies whether or not its parent element is fragmented in some way, typically by some other overlapping structure: for example a speech which is divided between two or more verse stanzas, a paragraph which is split across a page division, a verse line which is divided between two speakers. + [ a:defaultValue = "N" ] + attribute part { + + ## (yes) the element is fragmented in some (unspecified) respect + "Y" + | + ## (no) the element is not fragmented, or no claim is made as to its completeness + "N" + | + ## (initial) this is the initial part of a fragmented element + "I" + | + ## (medial) this is a medial part of a fragmented element + "M" + | + ## (final) this is the final part of a fragmented element + "F" + }? +tei_att.divLike.attributes = + tei_att.metrical.attributes, + tei_att.fragmentable.attributes, + tei_att.divLike.attribute.org, + tei_att.divLike.attribute.sample +tei_att.divLike.attribute.org = + + ## (organization) specifies how the content of the division is organized. + [ a:defaultValue = "uniform" ] + attribute org { + + ## no claim is made about the sequence in which the immediate contents of this division are to be processed, or their inter-relationships. + "composite" + | + ## the immediate contents of this element are regarded as forming a logical unit, to be processed in sequence. + "uniform" + }? +tei_att.divLike.attribute.sample = + + ## indicates whether this division is a sample of the original source and if so, from which part. + [ a:defaultValue = "complete" ] + attribute sample { + + ## division lacks material present at end in source. + "initial" + | + ## division lacks material at start and end. + "medial" + | + ## division lacks material at start. + "final" + | + ## position of sampled material within original unknown. + "unknown" + | + ## division is not a sample. + "complete" + }? +tei_att.docStatus.attributes = tei_att.docStatus.attribute.status +tei_att.docStatus.attribute.status = + + ## describes the status of a document either currently or, when associated with a dated element, at the time indicated. + ## Sample values include: 1] approved; 2] candidate; 3] cleared; 4] deprecated; 5] draft; 6] embargoed; 7] expired; 8] frozen; 9] galley; 10] proposed; 11] published; 12] recommendation; 13] submitted; 14] unfinished; 15] withdrawn + [ a:defaultValue = "draft" ] + attribute status { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.global.responsibility.attributes = + tei_att.global.responsibility.attribute.cert, + tei_att.global.responsibility.attribute.resp +tei_att.global.responsibility.attribute.cert = + + ## (certainty) signifies the degree of certainty associated with the intervention or interpretation. + attribute cert { + xsd:double + | ( + ## + "high" + | + ## + "medium" + | + ## + "low" + | + ## + "unknown") + }? +tei_att.global.responsibility.attribute.resp = + + ## (responsible party) indicates the agency responsible for the intervention or interpretation, for example an editor or transcriber. + attribute resp { + list { xsd:anyURI+ } + }? +tei_att.editLike.attributes = + tei_att.dimensions.attributes, + tei_att.source.attributes, + tei_att.editLike.attribute.evidence, + tei_att.editLike.attribute.instant +tei_att.editLike.attribute.evidence = + + ## indicates the nature of the evidence supporting the reliability or accuracy of the intervention or interpretation. + ## Suggested values include: 1] internal; 2] external; 3] conjecture + attribute evidence { + list { + ( + ## there is internal evidence to support the intervention. + "internal" + | + ## there is external evidence to support the intervention. + "external" + | + ## the intervention or interpretation has been made by the editor, cataloguer, or scholar on the basis of their expertise. + "conjecture" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" })+ + } + }? +tei_att.editLike.attribute.instant = + + ## indicates whether this is an instant revision or not. + [ a:defaultValue = "false" ] + attribute instant { + xsd:boolean + | ( + ## + "unknown" + | + ## + "inapplicable") + }? +tei_att.global.rendition.attributes = + tei_att.global.rendition.attribute.rend, + tei_att.global.rendition.attribute.style, + tei_att.global.rendition.attribute.rendition +tei_att.global.rendition.attribute.rend = + + ## (rendition) indicates how the element in question was rendered or presented in the source text. + attribute rend { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.global.rendition.attribute.style = + + ## contains an expression in some formal style definition language which defines the rendering or presentation used for this element in the source text + attribute style { xsd:string }? +tei_att.global.rendition.attribute.rendition = + + ## points to a description of the rendering or presentation used for this element in the source text. + attribute rendition { + list { xsd:anyURI+ } + }? +tei_att.global.attributes = + tei_att.global.rendition.attributes, + tei_att.global.linking.attributes, + tei_att.global.facs.attributes, + tei_att.global.change.attributes, + tei_att.global.responsibility.attributes, + tei_att.global.attribute.xmlid, + tei_att.global.attribute.n, + tei_att.global.attribute.xmllang, + tei_att.global.attribute.xmlbase, + tei_att.global.attribute.xmlspace +tei_att.global.attribute.xmlid = + + ## (identifier) provides a unique identifier for the element bearing the attribute. + attribute xml:id { xsd:ID }? +tei_att.global.attribute.n = + + ## (number) gives a number (or other label) for an element, which is not necessarily unique within the document. + attribute n { xsd:string }? +tei_att.global.attribute.xmllang = + + ## (language) indicates the language of the element content using a tag generated according to BCP 47. + attribute xml:lang { + xsd:language + | ( + ## + "") + }? +tei_att.global.attribute.xmlbase = + + ## provides a base URI reference with which applications can resolve relative URI references into absolute URI references. + attribute xml:base { xsd:anyURI }? +tei_att.global.attribute.xmlspace = + + ## signals an intention about how white space should be managed by applications. + attribute xml:space { + + ## signals that the application's default white-space processing modes are acceptable + "default" + | + ## indicates the intent that applications preserve all white space + "preserve" + }? +tei_att.handFeatures.attributes = + tei_att.handFeatures.attribute.scribe, + tei_att.handFeatures.attribute.scribeRef, + tei_att.handFeatures.attribute.script, + tei_att.handFeatures.attribute.scriptRef, + tei_att.handFeatures.attribute.medium, + tei_att.handFeatures.attribute.scope +tei_att.handFeatures.attribute.scribe = + + ## gives a name or other identifier for the scribe believed to be responsible for this hand. + attribute scribe { xsd:Name }? +tei_att.handFeatures.attribute.scribeRef = + + ## points to a full description of the scribe concerned, typically supplied by a person element elsewhere in the description. + attribute scribeRef { + list { xsd:anyURI+ } + }? +tei_att.handFeatures.attribute.script = + + ## characterizes the particular script or writing style used by this hand, for example secretary, copperplate, Chancery, Italian, etc. + attribute script { + list { xsd:Name+ } + }? +tei_att.handFeatures.attribute.scriptRef = + + ## points to a full description of the script or writing style used by this hand, typically supplied by a scriptNote element elsewhere in the description. + attribute scriptRef { + list { xsd:anyURI+ } + }? +tei_att.handFeatures.attribute.medium = + + ## describes the tint or type of ink, e.g. brown, or other writing medium, e.g. pencil + attribute medium { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.handFeatures.attribute.scope = + + ## specifies how widely this hand is used in the manuscript. + attribute scope { + + ## only this hand is used throughout the manuscript + "sole" + | + ## this hand is used through most of the manuscript + "major" + | + ## this hand is used occasionally in the manuscript + "minor" + }? +tei_att.internetMedia.attributes = + tei_att.internetMedia.attribute.mimeType +tei_att.internetMedia.attribute.mimeType = + + ## (MIME media type) specifies the applicable multimedia internet mail extension (MIME) media type + attribute mimeType { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.media.attributes = + tei_att.internetMedia.attributes, + tei_att.media.attribute.width, + tei_att.media.attribute.height, + tei_att.media.attribute.scale +tei_att.media.attribute.width = + + ## Where the media are displayed, indicates the display width + attribute width { + xsd:token { + pattern = + "[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)" + } + }? +tei_att.media.attribute.height = + + ## Where the media are displayed, indicates the display height + attribute height { + xsd:token { + pattern = + "[\-+]?\d+(\.\d+)?(%|cm|mm|in|pt|pc|px|em|ex|gd|rem|vw|vh|vm)" + } + }? +tei_att.media.attribute.scale = + + ## Where the media are displayed, indicates a scale factor to be applied when generating the desired display size + attribute scale { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.resourced.attributes = tei_att.resourced.attribute.url +tei_att.resourced.attribute.url = + + ## (uniform resource locator) specifies the URL from which the media concerned may be obtained. + attribute url { xsd:anyURI } +tei_att.measurement.attributes = + tei_att.measurement.attribute.unit, + tei_att.measurement.attribute.quantity, + tei_att.measurement.attribute.commodity +tei_att.measurement.attribute.unit = + + ## indicates the units used for the measurement, usually using the standard symbol for the desired units. + ## Suggested values include: 1] m(metre) ; 2] kg(kilogram) ; 3] s(second) ; 4] Hz(hertz) ; 5] Pa(pascal) ; 6] Ω(ohm) ; 7] L(litre) ; 8] t(tonne) ; 9] ha(hectare) ; 10] Å(ångström) ; 11] mL(millilitre) ; 12] cm(centimetre) ; 13] dB(decibel) ; 14] kbit(kilobit) ; 15] Kibit(kibibit) ; 16] kB(kilobyte) ; 17] KiB(kibibyte) ; 18] MB(megabyte) ; 19] MiB(mebibyte) + attribute unit { + + ## (metre) SI base unit of length + "m" + | + ## (kilogram) SI base unit of mass + "kg" + | + ## (second) SI base unit of time + "s" + | + ## (hertz) SI unit of frequency + "Hz" + | + ## (pascal) SI unit of pressure or stress + "Pa" + | + ## (ohm) SI unit of electric resistance + "Ω" + | + ## (litre) 1 dm³ + "L" + | + ## (tonne) 10³ kg + "t" + | + ## (hectare) 1 hm² + "ha" + | + ## (ångström) 10⁻¹⁰ m + "Å" + | + ## (millilitre) + "mL" + | + ## (centimetre) + "cm" + | + ## (decibel) see remarks, below + "dB" + | + ## (kilobit) 10³ or 1000 bits + "kbit" + | + ## (kibibit) 2¹⁰ or 1024 bits + "Kibit" + | + ## (kilobyte) 10³ or 1000 bytes + "kB" + | + ## (kibibyte) 2¹⁰ or 1024 bytes + "KiB" + | + ## (megabyte) 10⁶ or 1 000 000 bytes + "MB" + | + ## (mebibyte) 2²⁰ or 1 048 576 bytes + "MiB" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.measurement.attribute.quantity = + + ## specifies the number of the specified units that comprise the measurement + attribute quantity { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.measurement.attribute.commodity = + + ## indicates the substance that is being measured + attribute commodity { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.naming.attributes = + tei_att.canonical.attributes, + tei_att.naming.attribute.role, + tei_att.naming.attribute.nymRef +tei_att.naming.attribute.role = + + ## may be used to specify further information about the entity referenced by this name in the form of a set of whitespace-separated values, for example the occupation of a person, or the status of a place. + attribute role { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.naming.attribute.nymRef = + + ## (reference to the canonical name) provides a means of locating the canonical form (nym) of the names associated with the object named by the element bearing it. + attribute nymRef { + list { xsd:anyURI+ } + }? +tei_att.placement.attributes = tei_att.placement.attribute.place +tei_att.placement.attribute.place = + + ## specifies where this item is placed. + ## Suggested values include: 1] below; 2] bottom; 3] margin; 4] top; 5] opposite; 6] overleaf; 7] above; 8] end; 9] inline; 10] inspace + attribute place { + list { + ( + ## below the line + "below" + | + ## at the foot of the page + "bottom" + | + ## in the margin (left, right, or both) + "margin" + | + ## at the top of the page + "top" + | + ## on the opposite, i.e. facing, page + "opposite" + | + ## on the other side of the leaf + "overleaf" + | + ## above the line + "above" + | + ## at the end of e.g. chapter or volume. + "end" + | + ## within the body of the text. + "inline" + | + ## in a predefined space, for example left by an earlier scribe. + "inspace" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" })+ + } + }? +tei_att.typed.attributes = + tei_att.typed.attribute.type, tei_att.typed.attribute.subtype +tei_att.typed.attribute.type = + + ## characterizes the element in some sense, using any convenient classification scheme or typology. + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.typed.attribute.subtype = + + ## provides a sub-categorization of the element, if needed + attribute subtype { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +sch:pattern [ + id = "app-att.typed-subtypeTyped-constraint-5" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@subtype]" + "\x{a}" ~ + " " + sch:assert [ + test = "@type" + "The " + sch:name [ ] + " element should not be categorized in detail with @subtype unless also categorized in general with @type" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +tei_att.pointing.attributes = + tei_att.pointing.attribute.targetLang, + tei_att.pointing.attribute.target, + tei_att.pointing.attribute.evaluate +tei_att.pointing.attribute.targetLang = + + ## specifies the language of the content to be found at the destination referenced by target, using a language tag generated according to BCP 47. + attribute targetLang { + xsd:language + | ( + ## + "") + }? +sch:pattern [ + id = "app-att.pointing-targetLang-targetLang-constraint-6" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[not(self::tei:schemaSpec)][@targetLang]" + "\x{a}" ~ + " " + sch:assert [ + test = "@target" + "@targetLang should only be used on " + sch:name [ ] + " if @target is specified." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +tei_att.pointing.attribute.target = + + ## specifies the destination of the reference by supplying one or more URI References + attribute target { + list { xsd:anyURI+ } + }? +tei_att.pointing.attribute.evaluate = + + ## specifies the intended meaning when the target of a pointer is itself a pointer. + attribute evaluate { + + ## if the element pointed to is itself a pointer, then the target of that pointer will be taken, and so on, until an element is found which is not a pointer. + "all" + | + ## if the element pointed to is itself a pointer, then its target (whether a pointer or not) is taken as the target of this pointer. + "one" + | + ## no further evaluation of targets is carried out beyond that needed to find the element specified in the pointer's target. + "none" + }? +tei_att.pointing.group.attributes = + tei_att.pointing.attributes, + tei_att.typed.attributes, + tei_att.pointing.group.attribute.domains, + tei_att.pointing.group.attribute.targFunc +tei_att.pointing.group.attribute.domains = + + ## optionally specifies the identifiers of the elements within which all elements indicated by the contents of this element lie. + attribute domains { + list { xsd:anyURI, xsd:anyURI, xsd:anyURI* } + }? +tei_att.pointing.group.attribute.targFunc = + + ## (target function) describes the function of each of the values of the target attribute of the enclosed link, join, or alt tags. + attribute targFunc { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }, + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }, + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }* + } + }? +tei_att.segLike.attributes = + tei_att.metrical.attributes, + tei_att.datcat.attributes, + tei_att.fragmentable.attributes, + tei_att.segLike.attribute.function +tei_att.segLike.attribute.function = + + ## characterizes the function of the segment. + attribute function { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.sortable.attributes = tei_att.sortable.attribute.sortKey +tei_att.sortable.attribute.sortKey = + + ## supplies the sort key for this element in an index, list or group which contains it. + attribute sortKey { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.edition.attributes = + tei_att.edition.attribute.ed, tei_att.edition.attribute.edRef +tei_att.edition.attribute.ed = + + ## (edition) supplies a sigil or other arbitrary identifier for the source edition in which the associated feature (for example, a page, column, or line break) occurs at this point in the text. + attribute ed { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.edition.attribute.edRef = + + ## (edition reference) provides a pointer to the source edition in which the associated feature (for example, a page, column, or line break) occurs at this point in the text. + attribute edRef { + list { xsd:anyURI+ } + }? +tei_att.spanning.attributes = tei_att.spanning.attribute.spanTo +tei_att.spanning.attribute.spanTo = + + ## indicates the end of a span initiated by the element bearing this attribute. + attribute spanTo { xsd:anyURI }? +sch:pattern [ + id = "app-att.spanning-spanTo-spanTo-2-constraint-7" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@spanTo]" + "\x{a}" ~ + " " + sch:assert [ + test = + "id(substring(@spanTo,2)) and following::*[@xml:id=substring(current()/@spanTo,2)]" + "\x{a}" ~ + "The element indicated by @spanTo (" + sch:value-of [ select = "@spanTo" ] + ") must follow the current element " + sch:name [ ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +tei_att.styleDef.attributes = + tei_att.styleDef.attribute.scheme, + tei_att.styleDef.attribute.schemeVersion +tei_att.styleDef.attribute.scheme = + + ## identifies the language used to describe the rendition. + attribute scheme { + + ## Cascading Stylesheet Language + "css" + | + ## Extensible Stylesheet Language Formatting Objects + "xslfo" + | + ## Informal free text description + "free" + | + ## A user-defined rendition description language + "other" + }? +tei_att.styleDef.attribute.schemeVersion = + + ## supplies a version number for the style language provided in scheme. + attribute schemeVersion { + xsd:token { pattern = "[\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3}" } + }? +sch:pattern [ + id = + "app-att.styleDef-schemeVersion-schemeVersionRequiresScheme-constraint-8" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:*[@schemeVersion]" + "\x{a}" ~ + " " + sch:assert [ + test = "@scheme and not(@scheme = 'free')" + "\x{a}" ~ + " @schemeVersion can only be used if @scheme is specified.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " +] +tei_att.timed.attributes = + tei_att.timed.attribute.start, tei_att.timed.attribute.end +tei_att.timed.attribute.start = + + ## indicates the location within a temporal alignment at which this element begins. + attribute start { xsd:anyURI }? +tei_att.timed.attribute.end = + + ## indicates the location within a temporal alignment at which this element ends. + attribute end { xsd:anyURI }? +tei_att.transcriptional.attributes = + tei_att.editLike.attributes, + tei_att.written.attributes, + tei_att.transcriptional.attribute.status, + tei_att.transcriptional.attribute.cause, + tei_att.transcriptional.attribute.seq +tei_att.transcriptional.attribute.status = + + ## indicates the effect of the intervention, for example in the case of a deletion, strikeouts which include too much or too little text, or in the case of an addition, an insertion which duplicates some of the text already present. + ## Sample values include: 1] duplicate; 2] duplicate-partial; 3] excessStart; 4] excessEnd; 5] shortStart; 6] shortEnd; 7] partial; 8] unremarkable + [ a:defaultValue = "unremarkable" ] + attribute status { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.transcriptional.attribute.cause = + + ## documents the presumed cause for the intervention. + ## Suggested values include: 1] fix; 2] unclear + attribute cause { + + ## repeated for the purpose of fixation + "fix" + | + ## repeated to clarify a previously illegible or badly written text or mark + "unclear" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.transcriptional.attribute.seq = + + ## (sequence) assigns a sequence number related to the order in which the encoded features carrying this attribute are believed to have occurred. + attribute seq { xsd:nonNegativeInteger }? +tei_att.translatable.attributes = + tei_att.translatable.attribute.versionDate +tei_att.translatable.attribute.versionDate = + + ## specifies the date on which the source text was extracted and sent to the translator + attribute versionDate { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }? +tei_att.citing.attributes = + tei_att.citing.attribute.unit, + tei_att.citing.attribute.from, + tei_att.citing.attribute.to +tei_att.citing.attribute.unit = + + ## identifies the unit of information conveyed by the element, e.g. columns, pages, volume. + ## Suggested values include: 1] volume; 2] issue; 3] page; 4] line; 5] chapter; 6] part; 7] column + attribute unit { + + ## the element contains a volume number. + "volume" + | + ## the element contains an issue number, or volume and issue numbers. + "issue" + | + ## the element contains a page number or page range. + "page" + | + ## the element contains a line number or line range. + "line" + | + ## the element contains a chapter indication (number and/or title) + "chapter" + | + ## the element identifies a part of a book or collection. + "part" + | + ## the element identifies a column. + "column" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.citing.attribute.from = + + ## specifies the starting point of the range of units indicated by the unit attribute. + attribute from { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.citing.attribute.to = + + ## specifies the end-point of the range of units indicated by the unit attribute. + attribute to { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_model.nameLike.agent = tei_name | tei_orgName | tei_persName +tei_model.nameLike.agent_alternation = + tei_name | tei_orgName | tei_persName +tei_model.nameLike.agent_sequence = tei_name, tei_orgName, tei_persName +tei_model.nameLike.agent_sequenceOptional = + tei_name?, tei_orgName?, tei_persName? +tei_model.nameLike.agent_sequenceOptionalRepeatable = + tei_name*, tei_orgName*, tei_persName* +tei_model.nameLike.agent_sequenceRepeatable = + tei_name+, tei_orgName+, tei_persName+ +tei_model.segLike = tei_seg +tei_model.hiLike = tei_hi +tei_model.hiLike_alternation = tei_hi +tei_model.hiLike_sequence = tei_hi +tei_model.hiLike_sequenceOptional = tei_hi? +tei_model.hiLike_sequenceOptionalRepeatable = tei_hi* +tei_model.hiLike_sequenceRepeatable = tei_hi+ +tei_model.emphLike = + tei_foreign + | tei_emph + | tei_distinct + | tei_mentioned + | tei_soCalled + | tei_gloss + | tei_term + | tei_title +tei_model.emphLike_alternation = + tei_foreign + | tei_emph + | tei_distinct + | tei_mentioned + | tei_soCalled + | tei_gloss + | tei_term + | tei_title +tei_model.emphLike_sequence = + tei_foreign, + tei_emph, + tei_distinct, + tei_mentioned, + tei_soCalled, + tei_gloss, + tei_term, + tei_title +tei_model.emphLike_sequenceOptional = + tei_foreign?, + tei_emph?, + tei_distinct?, + tei_mentioned?, + tei_soCalled?, + tei_gloss?, + tei_term?, + tei_title? +tei_model.emphLike_sequenceOptionalRepeatable = + tei_foreign*, + tei_emph*, + tei_distinct*, + tei_mentioned*, + tei_soCalled*, + tei_gloss*, + tei_term*, + tei_title* +tei_model.emphLike_sequenceRepeatable = + tei_foreign+, + tei_emph+, + tei_distinct+, + tei_mentioned+, + tei_soCalled+, + tei_gloss+, + tei_term+, + tei_title+ +tei_model.highlighted = tei_model.hiLike | tei_model.emphLike +tei_model.dateLike = tei_date | tei_time +tei_model.dateLike_alternation = tei_date | tei_time +tei_model.dateLike_sequence = tei_date, tei_time +tei_model.dateLike_sequenceOptional = tei_date?, tei_time? +tei_model.dateLike_sequenceOptionalRepeatable = tei_date*, tei_time* +tei_model.dateLike_sequenceRepeatable = tei_date+, tei_time+ +tei_model.dimLike = tei_height | tei_depth | tei_width +tei_model.measureLike = + tei_num + | tei_measure + | tei_measureGrp + | tei_dim + | tei_height + | tei_depth + | tei_width + | tei_geo +tei_model.measureLike_alternation = + tei_num + | tei_measure + | tei_measureGrp + | tei_dim + | tei_height + | tei_depth + | tei_width + | tei_geo +tei_model.measureLike_sequence = + tei_num, + tei_measure, + tei_measureGrp, + tei_dim, + tei_height, + tei_depth, + tei_width, + tei_geo +tei_model.measureLike_sequenceOptional = + tei_num?, + tei_measure?, + tei_measureGrp?, + tei_dim?, + tei_height?, + tei_depth?, + tei_width?, + tei_geo? +tei_model.measureLike_sequenceOptionalRepeatable = + tei_num*, + tei_measure*, + tei_measureGrp*, + tei_dim*, + tei_height*, + tei_depth*, + tei_width*, + tei_geo* +tei_model.measureLike_sequenceRepeatable = + tei_num+, + tei_measure+, + tei_measureGrp+, + tei_dim+, + tei_height+, + tei_depth+, + tei_width+, + tei_geo+ +tei_model.egLike = notAllowed +tei_model.egLike_alternation = notAllowed +tei_model.egLike_sequence = empty +tei_model.egLike_sequenceOptional = empty +tei_model.egLike_sequenceOptionalRepeatable = empty +tei_model.egLike_sequenceRepeatable = notAllowed +tei_model.graphicLike = tei_media | tei_graphic | tei_binaryObject +tei_model.offsetLike = tei_offset | tei_geogFeat +tei_model.offsetLike_alternation = tei_offset | tei_geogFeat +tei_model.offsetLike_sequence = tei_offset, tei_geogFeat +tei_model.offsetLike_sequenceOptional = tei_offset?, tei_geogFeat? +tei_model.offsetLike_sequenceOptionalRepeatable = + tei_offset*, tei_geogFeat* +tei_model.offsetLike_sequenceRepeatable = tei_offset+, tei_geogFeat+ +tei_model.pPart.msdesc = + tei_catchwords + | tei_dimensions + | tei_heraldry + | tei_locus + | tei_locusGrp + | tei_material + | tei_objectType + | tei_origDate + | tei_origPlace + | tei_secFol + | tei_signatures + | tei_stamp + | tei_watermark +tei_model.pPart.editorial = + tei_choice | tei_abbr | tei_expan | tei_ex | tei_am | tei_subst +tei_model.pPart.editorial_alternation = + tei_choice | tei_abbr | tei_expan | tei_ex | tei_am | tei_subst +tei_model.pPart.editorial_sequence = + tei_choice, tei_abbr, tei_expan, tei_ex, tei_am, tei_subst +tei_model.pPart.editorial_sequenceOptional = + tei_choice?, tei_abbr?, tei_expan?, tei_ex?, tei_am?, tei_subst? +tei_model.pPart.editorial_sequenceOptionalRepeatable = + tei_choice*, tei_abbr*, tei_expan*, tei_ex*, tei_am*, tei_subst* +tei_model.pPart.editorial_sequenceRepeatable = + tei_choice+, tei_abbr+, tei_expan+, tei_ex+, tei_am+, tei_subst+ +tei_model.pPart.transcriptional = + tei_sic + | tei_corr + | tei_reg + | tei_orig + | tei_add + | tei_del + | tei_unclear + | tei_damage + | tei_handShift + | tei_restore + | tei_supplied + | tei_surplus + | tei_secl + | tei_mod + | tei_redo + | tei_retrace + | tei_undo +tei_model.pPart.transcriptional_alternation = + tei_sic + | tei_corr + | tei_reg + | tei_orig + | tei_add + | tei_del + | tei_unclear + | tei_damage + | tei_handShift + | tei_restore + | tei_supplied + | tei_surplus + | tei_secl + | tei_mod + | tei_redo + | tei_retrace + | tei_undo +tei_model.pPart.transcriptional_sequence = + tei_sic, + tei_corr, + tei_reg, + tei_orig, + tei_add, + tei_del, + tei_unclear, + tei_damage, + tei_handShift, + tei_restore, + tei_supplied, + tei_surplus, + tei_secl, + tei_mod, + tei_redo, + tei_retrace, + tei_undo +tei_model.pPart.transcriptional_sequenceOptional = + tei_sic?, + tei_corr?, + tei_reg?, + tei_orig?, + tei_add?, + tei_del?, + tei_unclear?, + tei_damage?, + tei_handShift?, + tei_restore?, + tei_supplied?, + tei_surplus?, + tei_secl?, + tei_mod?, + tei_redo?, + tei_retrace?, + tei_undo? +tei_model.pPart.transcriptional_sequenceOptionalRepeatable = + tei_sic*, + tei_corr*, + tei_reg*, + tei_orig*, + tei_add*, + tei_del*, + tei_unclear*, + tei_damage*, + tei_handShift*, + tei_restore*, + tei_supplied*, + tei_surplus*, + tei_secl*, + tei_mod*, + tei_redo*, + tei_retrace*, + tei_undo* +tei_model.pPart.transcriptional_sequenceRepeatable = + tei_sic+, + tei_corr+, + tei_reg+, + tei_orig+, + tei_add+, + tei_del+, + tei_unclear+, + tei_damage+, + tei_handShift+, + tei_restore+, + tei_supplied+, + tei_surplus+, + tei_secl+, + tei_mod+, + tei_redo+, + tei_retrace+, + tei_undo+ +tei_model.pPart.edit = + tei_model.pPart.editorial | tei_model.pPart.transcriptional +tei_model.linePart = + tei_model.segLike + | tei_model.hiLike + | tei_model.pPart.transcriptional + | tei_choice + | tei_zone + | tei_line +tei_model.ptrLike = tei_ptr | tei_ref +tei_model.lPart = tei_caesura | tei_rhyme +tei_model.global.meta = + tei_index + | tei_substJoin + | tei_listTranspose + | tei_link + | tei_linkGrp + | tei_timeline + | tei_join + | tei_joinGrp + | tei_alt + | tei_altGrp +tei_model.milestoneLike = + tei_milestone + | tei_gb + | tei_pb + | tei_lb + | tei_cb + | tei_fw + | tei_anchor +tei_model.gLike = notAllowed +tei_model.oddDecl = notAllowed +tei_model.oddDecl_alternation = notAllowed +tei_model.oddDecl_sequence = empty +tei_model.oddDecl_sequenceOptional = empty +tei_model.oddDecl_sequenceOptionalRepeatable = empty +tei_model.oddDecl_sequenceRepeatable = notAllowed +tei_model.phrase.xml = notAllowed +tei_model.specDescLike = notAllowed +tei_model.biblLike = + tei_bibl | tei_biblStruct | tei_listBibl | tei_biblFull | tei_msDesc +tei_model.biblLike_alternation = + tei_bibl | tei_biblStruct | tei_listBibl | tei_biblFull | tei_msDesc +tei_model.biblLike_sequence = + tei_bibl, tei_biblStruct, tei_listBibl, tei_biblFull, tei_msDesc +tei_model.biblLike_sequenceOptional = + tei_bibl?, tei_biblStruct?, tei_listBibl?, tei_biblFull?, tei_msDesc? +tei_model.biblLike_sequenceOptionalRepeatable = + tei_bibl*, tei_biblStruct*, tei_listBibl*, tei_biblFull*, tei_msDesc* +tei_model.biblLike_sequenceRepeatable = + tei_bibl+, tei_biblStruct+, tei_listBibl+, tei_biblFull+, tei_msDesc+ +tei_model.headLike = tei_head +tei_model.headLike_alternation = tei_head +tei_model.headLike_sequence = tei_head +tei_model.headLike_sequenceOptional = tei_head? +tei_model.headLike_sequenceOptionalRepeatable = tei_head* +tei_model.headLike_sequenceRepeatable = tei_head+ +tei_model.labelLike = tei_desc | tei_label +tei_model.labelLike_alternation = tei_desc | tei_label +tei_model.labelLike_sequence = tei_desc, tei_label +tei_model.labelLike_sequenceOptional = tei_desc?, tei_label? +tei_model.labelLike_sequenceOptionalRepeatable = tei_desc*, tei_label* +tei_model.labelLike_sequenceRepeatable = tei_desc+, tei_label+ +tei_model.listLike = + tei_list + | tei_listApp + | tei_listWit + | tei_listOrg + | tei_listEvent + | tei_listPerson + | tei_listPlace + | tei_listNym +tei_model.listLike_alternation = + tei_list + | tei_listApp + | tei_listWit + | tei_listOrg + | tei_listEvent + | tei_listPerson + | tei_listPlace + | tei_listNym +tei_model.listLike_sequence = + tei_list, + tei_listApp, + tei_listWit, + tei_listOrg, + tei_listEvent, + tei_listPerson, + tei_listPlace, + tei_listNym +tei_model.listLike_sequenceOptional = + tei_list?, + tei_listApp?, + tei_listWit?, + tei_listOrg?, + tei_listEvent?, + tei_listPerson?, + tei_listPlace?, + tei_listNym? +tei_model.listLike_sequenceOptionalRepeatable = + tei_list*, + tei_listApp*, + tei_listWit*, + tei_listOrg*, + tei_listEvent*, + tei_listPerson*, + tei_listPlace*, + tei_listNym* +tei_model.listLike_sequenceRepeatable = + tei_list+, + tei_listApp+, + tei_listWit+, + tei_listOrg+, + tei_listEvent+, + tei_listPerson+, + tei_listPlace+, + tei_listNym+ +tei_model.noteLike = tei_note | tei_witDetail +tei_model.lLike = tei_l +tei_model.lLike_alternation = tei_l +tei_model.lLike_sequence = tei_l +tei_model.lLike_sequenceOptional = tei_l? +tei_model.lLike_sequenceOptionalRepeatable = tei_l* +tei_model.lLike_sequenceRepeatable = tei_l+ +tei_model.pLike = tei_p | tei_ab +tei_model.pLike_alternation = tei_p | tei_ab +tei_model.pLike_sequence = tei_p, tei_ab +tei_model.pLike_sequenceOptional = tei_p?, tei_ab? +tei_model.pLike_sequenceOptionalRepeatable = tei_p*, tei_ab* +tei_model.pLike_sequenceRepeatable = tei_p+, tei_ab+ +tei_model.stageLike = tei_stage +tei_model.stageLike_alternation = tei_stage +tei_model.stageLike_sequence = tei_stage +tei_model.stageLike_sequenceOptional = tei_stage? +tei_model.stageLike_sequenceOptionalRepeatable = tei_stage* +tei_model.stageLike_sequenceRepeatable = tei_stage+ +tei_model.entryPart = notAllowed +tei_model.eventLike = tei_event | tei_listEvent +tei_model.global.edit = + tei_gap + | tei_addSpan + | tei_damageSpan + | tei_delSpan + | tei_space + | tei_app +tei_model.divPart = tei_model.lLike | tei_model.pLike | tei_lg | tei_sp +tei_model.persStateLike = + tei_persName + | tei_affiliation + | tei_age + | tei_education + | tei_faith + | tei_floruit + | tei_langKnowledge + | tei_nationality + | tei_occupation + | tei_residence + | tei_sex + | tei_socecStatus + | tei_state + | tei_trait +tei_model.personLike = tei_org | tei_person | tei_personGrp +tei_model.personPart = + tei_model.biblLike + | tei_model.eventLike + | tei_model.persStateLike + | tei_idno + | tei_birth + | tei_death +tei_model.placeNamePart = + tei_placeName + | tei_bloc + | tei_country + | tei_region + | tei_district + | tei_settlement + | tei_geogName +tei_model.placeNamePart_alternation = + tei_placeName + | tei_bloc + | tei_country + | tei_region + | tei_district + | tei_settlement + | tei_geogName +tei_model.placeNamePart_sequence = + tei_placeName, + tei_bloc, + tei_country, + tei_region, + tei_district, + tei_settlement, + tei_geogName +tei_model.placeNamePart_sequenceOptional = + tei_placeName?, + tei_bloc?, + tei_country?, + tei_region?, + tei_district?, + tei_settlement?, + tei_geogName? +tei_model.placeNamePart_sequenceOptionalRepeatable = + tei_placeName*, + tei_bloc*, + tei_country*, + tei_region*, + tei_district*, + tei_settlement*, + tei_geogName* +tei_model.placeNamePart_sequenceRepeatable = + tei_placeName+, + tei_bloc+, + tei_country+, + tei_region+, + tei_district+, + tei_settlement+, + tei_geogName+ +tei_model.placeStateLike = + tei_model.placeNamePart + | tei_climate + | tei_location + | tei_population + | tei_state + | tei_terrain + | tei_trait +tei_model.placeStateLike_alternation = + tei_model.placeNamePart_alternation + | tei_climate + | tei_location + | tei_population + | tei_state + | tei_terrain + | tei_trait +tei_model.placeStateLike_sequence = + tei_model.placeNamePart_sequence, + tei_climate, + tei_location, + tei_population, + tei_state, + tei_terrain, + tei_trait +tei_model.placeStateLike_sequenceOptional = + tei_model.placeNamePart_sequenceOptional?, + tei_climate?, + tei_location?, + tei_population?, + tei_state?, + tei_terrain?, + tei_trait? +tei_model.placeStateLike_sequenceOptionalRepeatable = + tei_model.placeNamePart_sequenceOptionalRepeatable*, + tei_climate*, + tei_location*, + tei_population*, + tei_state*, + tei_terrain*, + tei_trait* +tei_model.placeStateLike_sequenceRepeatable = + tei_model.placeNamePart_sequenceRepeatable+, + tei_climate+, + tei_location+, + tei_population+, + tei_state+, + tei_terrain+, + tei_trait+ +tei_model.orgPart = + tei_model.eventLike | tei_listOrg | tei_listPerson | tei_listPlace +tei_model.publicationStmtPart.agency = + tei_publisher | tei_distributor | tei_authority +tei_model.publicationStmtPart.detail = + tei_address | tei_date | tei_pubPlace | tei_idno | tei_availability +tei_model.availabilityPart = tei_licence +tei_model.certLike = notAllowed +tei_model.descLike = tei_desc +tei_model.glossLike = tei_gloss +tei_model.quoteLike = tei_quote | tei_cit +tei_model.quoteLike_alternation = tei_quote | tei_cit +tei_model.quoteLike_sequence = tei_quote, tei_cit +tei_model.quoteLike_sequenceOptional = tei_quote?, tei_cit? +tei_model.quoteLike_sequenceOptionalRepeatable = tei_quote*, tei_cit* +tei_model.quoteLike_sequenceRepeatable = tei_quote+, tei_cit+ +tei_model.qLike = + tei_model.quoteLike | tei_said | tei_q | tei_floatingText +tei_model.qLike_alternation = + tei_model.quoteLike_alternation | tei_said | tei_q | tei_floatingText +tei_model.qLike_sequence = + tei_model.quoteLike_sequence, tei_said, tei_q, tei_floatingText +tei_model.qLike_sequenceOptional = + tei_model.quoteLike_sequenceOptional?, + tei_said?, + tei_q?, + tei_floatingText? +tei_model.qLike_sequenceOptionalRepeatable = + tei_model.quoteLike_sequenceOptionalRepeatable*, + tei_said*, + tei_q*, + tei_floatingText* +tei_model.qLike_sequenceRepeatable = + tei_model.quoteLike_sequenceRepeatable+, + tei_said+, + tei_q+, + tei_floatingText+ +tei_model.respLike = + tei_author + | tei_editor + | tei_respStmt + | tei_meeting + | tei_sponsor + | tei_funder + | tei_principal +tei_model.divWrapper = + tei_meeting + | tei_byline + | tei_dateline + | tei_argument + | tei_epigraph + | tei_salute + | tei_docAuthor + | tei_docDate +tei_model.divTopPart = tei_model.headLike | tei_opener | tei_signed +tei_model.divTop = tei_model.divWrapper | tei_model.divTopPart +tei_model.frontPart.drama = notAllowed +tei_model.pLike.front = + tei_head + | tei_byline + | tei_argument + | tei_epigraph + | tei_docTitle + | tei_titlePart + | tei_docAuthor + | tei_docEdition + | tei_docImprint + | tei_docDate +tei_model.divBottomPart = + tei_trailer | tei_closer | tei_signed | tei_postscript +tei_model.divBottom = tei_model.divWrapper | tei_model.divBottomPart +tei_model.titlepagePart = + tei_graphic + | tei_binaryObject + | tei_byline + | tei_argument + | tei_epigraph + | tei_docTitle + | tei_titlePart + | tei_docAuthor + | tei_imprimatur + | tei_docEdition + | tei_docImprint + | tei_docDate +tei_model.msQuoteLike = + tei_title + | tei_colophon + | tei_explicit + | tei_finalRubric + | tei_incipit + | tei_rubric +tei_model.msItemPart = + tei_model.biblLike + | tei_model.quoteLike + | tei_model.respLike + | tei_model.msQuoteLike + | tei_textLang + | tei_idno + | tei_filiation + | tei_msItem + | tei_msItemStruct + | tei_decoNote +tei_model.choicePart = + tei_sic + | tei_corr + | tei_reg + | tei_orig + | tei_unclear + | tei_abbr + | tei_expan + | tei_ex + | tei_am + | tei_seg +tei_model.imprintPart = + tei_publisher | tei_biblScope | tei_pubPlace | tei_distributor +tei_model.catDescPart = notAllowed +tei_model.addressLike = tei_email | tei_address | tei_affiliation +tei_model.addressLike_alternation = + tei_email | tei_address | tei_affiliation +tei_model.addressLike_sequence = tei_email, tei_address, tei_affiliation +tei_model.addressLike_sequenceOptional = + tei_email?, tei_address?, tei_affiliation? +tei_model.addressLike_sequenceOptionalRepeatable = + tei_email*, tei_address*, tei_affiliation* +tei_model.addressLike_sequenceRepeatable = + tei_email+, tei_address+, tei_affiliation+ +tei_model.nameLike = + tei_model.nameLike.agent + | tei_model.offsetLike + | tei_model.placeStateLike + | tei_rs + | tei_idno + | tei_model.persNamePart +tei_model.nameLike_alternation = + tei_model.nameLike.agent_alternation + | tei_model.offsetLike_alternation + | tei_model.placeStateLike_alternation + | tei_rs + | tei_idno + | tei_model.persNamePart_alternation +tei_model.nameLike_sequence = + tei_model.nameLike.agent_sequence, + tei_model.offsetLike_sequence, + tei_model.placeStateLike_sequence, + tei_rs, + tei_idno, + tei_model.persNamePart_sequence +tei_model.nameLike_sequenceOptional = + tei_model.nameLike.agent_sequenceOptional?, + tei_model.offsetLike_sequenceOptional?, + tei_model.placeStateLike_sequenceOptional?, + tei_rs?, + tei_idno?, + tei_model.persNamePart_sequenceOptional? +tei_model.nameLike_sequenceOptionalRepeatable = + tei_model.nameLike.agent_sequenceOptionalRepeatable*, + tei_model.offsetLike_sequenceOptionalRepeatable*, + tei_model.placeStateLike_sequenceOptionalRepeatable*, + tei_rs*, + tei_idno*, + tei_model.persNamePart_sequenceOptionalRepeatable* +tei_model.nameLike_sequenceRepeatable = + tei_model.nameLike.agent_sequenceRepeatable+, + tei_model.offsetLike_sequenceRepeatable+, + tei_model.placeStateLike_sequenceRepeatable+, + tei_rs+, + tei_idno+, + tei_model.persNamePart_sequenceRepeatable+ +tei_model.global = + tei_model.global.meta + | tei_model.milestoneLike + | tei_model.noteLike + | tei_model.global.edit + | tei_metamark +tei_model.biblPart = + tei_model.respLike + | tei_model.imprintPart + | tei_series + | tei_citedRange + | tei_bibl + | tei_relatedItem + | tei_textLang + | tei_edition + | tei_extent + | tei_availability + | tei_msIdentifier + | tei_listRelation +tei_model.frontPart = + tei_model.frontPart.drama | tei_divGen | tei_titlePage +tei_model.addrPart = + tei_model.nameLike + | tei_addrLine + | tei_street + | tei_postCode + | tei_postBox +tei_model.pPart.data = + tei_model.dateLike + | tei_model.measureLike + | tei_model.addressLike + | tei_model.nameLike +tei_model.inter = + tei_model.egLike + | tei_model.oddDecl + | tei_model.biblLike + | tei_model.labelLike + | tei_model.listLike + | tei_model.stageLike + | tei_model.qLike +tei_model.common = tei_model.divPart | tei_model.inter +tei_model.phrase = + tei_model.segLike + | tei_model.highlighted + | tei_model.graphicLike + | tei_model.pPart.msdesc + | tei_model.pPart.edit + | tei_model.ptrLike + | tei_model.lPart + | tei_model.phrase.xml + | tei_model.specDescLike + | tei_model.pPart.data +tei_model.limitedPhrase = + tei_model.hiLike + | tei_model.emphLike + | tei_model.pPart.msdesc + | tei_model.pPart.editorial + | tei_model.ptrLike + | tei_model.phrase.xml + | tei_model.pPart.data +tei_model.divLike = tei_div +tei_model.divGenLike = tei_divGen +tei_model.div1Like = tei_div1 +tei_model.div2Like = tei_div2 +tei_model.div3Like = tei_div3 +tei_model.div4Like = tei_div4 +tei_model.div5Like = tei_div5 +tei_model.div6Like = tei_div6 +tei_model.div7Like = tei_div7 +tei_model.applicationLike = tei_application +tei_model.teiHeaderPart = + tei_encodingDesc | tei_profileDesc | tei_xenoData +tei_model.sourceDescPart = notAllowed +tei_model.encodingDescPart = + tei_projectDesc + | tei_samplingDecl + | tei_editorialDecl + | tei_tagsDecl + | tei_styleDefDecl + | tei_refsDecl + | tei_listPrefixDef + | tei_classDecl + | tei_geoDecl + | tei_appInfo + | tei_metDecl + | tei_variantEncoding +tei_model.editorialDeclPart = + tei_correction + | tei_normalization + | tei_quotation + | tei_hyphenation + | tei_segmentation + | tei_stdVals + | tei_interpretation + | tei_punctuation +tei_model.profileDescPart = + tei_abstract + | tei_creation + | tei_langUsage + | tei_textClass + | tei_calendarDesc + | tei_correspDesc + | tei_handNotes + | tei_listTranspose +tei_model.correspActionPart = + tei_model.dateLike + | tei_model.addressLike + | tei_model.nameLike + | tei_note +tei_model.correspContextPart = + tei_model.ptrLike | tei_model.pLike | tei_note +tei_model.correspDescPart = + tei_note | tei_correspAction | tei_correspContext +tei_att.source.attributes = tei_att.source.attribute.source +tei_att.source.attribute.source = + + ## provides a pointer to the bibliographical source from which a quotation or citation is drawn. + attribute source { + list { xsd:anyURI+ } + }? +tei_model.resourceLike = tei_text | tei_facsimile | tei_sourceDoc +tei_att.personal.attributes = + tei_att.naming.attributes, + tei_att.personal.attribute.full, + tei_att.personal.attribute.sort +tei_att.personal.attribute.full = + + ## indicates whether the name component is given in full, as an abbreviation or simply as an initial. + [ a:defaultValue = "yes" ] + attribute full { + + ## the name component is spelled out in full. + "yes" + | + ## (abbreviated) the name component is given in an abbreviated form. + "abb" + | + ## (initial letter) the name component is indicated only by one initial. + "init" + }? +tei_att.personal.attribute.sort = + + ## specifies the sort order of the name component in relation to others within the name. + attribute sort { xsd:nonNegativeInteger }? +tei_model.placeLike = tei_place +tei_att.milestoneUnit.attributes = tei_att.milestoneUnit.attribute.unit +tei_att.milestoneUnit.attribute.unit = + + ## provides a conventional name for the kind of section changing at this milestone. + ## Suggested values include: 1] page; 2] column; 3] line; 4] book; 5] poem; 6] canto; 7] speaker; 8] stanza; 9] act; 10] scene; 11] section; 12] absent; 13] unnumbered + attribute unit { + + ## physical page breaks (synonymous with the pb element). + "page" + | + ## column breaks. + "column" + | + ## line breaks (synonymous with the lb element). + "line" + | + ## any units termed book, liber, etc. + "book" + | + ## individual poems in a collection. + "poem" + | + ## cantos or other major sections of a poem. + "canto" + | + ## changes of speaker or narrator. + "speaker" + | + ## stanzas within a poem, book, or canto. + "stanza" + | + ## acts within a play. + "act" + | + ## scenes within a play or act. + "scene" + | + ## sections of any kind. + "section" + | + ## passages not present in the reference edition. + "absent" + | + ## passages present in the text, but not to be included as part of the reference. + "unnumbered" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + } +tei_p = + + ## (paragraph) marks paragraphs in prose. [3.1. Paragraphs 7.2.5. Speech Contents] + element p { + tei_macro.paraContent + >> sch:pattern [ + id = "app-p-abstractModel-p-constraint-4" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:p" + "\x{a}" ~ + " " + sch:report [ + test = + "(ancestor::tei:p or ancestor::tei:ab) and not(parent::tei:exemplum |parent::tei:item |parent::tei:note |parent::tei:q |parent::tei:quote |parent::tei:remarks |parent::tei:said |parent::tei:sp |parent::tei:stage |parent::tei:cell |parent::tei:figure)" + "\x{a}" ~ + " Abstract model violation: Paragraphs may not contain other paragraphs or ab elements.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "app-p-abstractModel-structure-l-constraint-5" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:p" + "\x{a}" ~ + " " + sch:report [ + test = + "ancestor::tei:l[not(.//tei:note//tei:p[. = current()])]" + "\x{a}" ~ + " Abstract model violation: Lines may not contain higher-level structural elements such as div, p, or ab.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.declaring.attributes, + tei_att.fragmentable.attributes, + tei_att.written.attributes, + empty + } +tei_foreign = + + ## identifies a word or phrase as belonging to some language other than that of the surrounding text. [3.3.2.1. Foreign Words or Expressions] + element foreign { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_emph = + + ## (emphasized) marks words or phrases which are stressed or emphasized for linguistic or rhetorical effect. [3.3.2.2. Emphatic Words and Phrases 3.3.2. Emphasis, Foreign Words, and Unusual Language] + element emph { + tei_macro.paraContent, tei_att.global.attributes, empty + } +tei_hi = + + ## (highlighted) marks a word or phrase as graphically distinct from the surrounding text, for reasons concerning which no claim is made. [3.3.2.2. Emphatic Words and Phrases 3.3.2. Emphasis, Foreign Words, and Unusual Language] + element hi { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.written.attributes, + empty + } +tei_distinct = + + ## identifies any word or phrase which is regarded as linguistically distinct, for example as archaic, technical, dialectal, non-preferred, etc., or as forming part of a sublanguage. [3.3.2.3. Other Linguistically Distinct Material] + element distinct { + tei_macro.phraseSeq, + tei_att.global.attributes, + + ## specifies the sublanguage or register to which the word or phrase is being assigned + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## specifies how the phrase is distinct diachronically + attribute time { xsd:string }?, + + ## specifies how the phrase is distinct diatopically + attribute space { xsd:string }?, + + ## specifies how the phrase is distinct diastatically + attribute social { xsd:string }?, + empty + } +tei_said = + + ## (speech or thought) indicates passages thought or spoken aloud, whether explicitly indicated in the source or not, whether directly or indirectly reported, whether by real people or fictional characters. [3.3.3. Quotation] + element said { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.ascribed.attributes, + + ## may be used to indicate whether the quoted matter is regarded as having been vocalized or signed. + [ a:defaultValue = "unknown" ] + attribute aloud { + xsd:boolean + | ( + ## + "unknown" + | + ## + "inapplicable") + }?, + + ## may be used to indicate whether the quoted matter is regarded as direct or indirect speech. + [ a:defaultValue = "true" ] + attribute direct { + xsd:boolean + | ( + ## + "unknown" + | + ## + "inapplicable") + }?, + empty + } +tei_quote = + + ## (quotation) contains a phrase or passage attributed by the narrator or author to some agency external to the text. [3.3.3. Quotation 4.3.1. Grouped Texts] + element quote { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.msExcerpt.attributes, + tei_att.source.attributes, + empty + } +tei_q = + + ## (quoted) contains material which is distinguished from the surrounding text using quotation marks or a similar method, for any one of a variety of reasons including, but not limited to: direct speech or thought, technical terms or jargon, authorial distance, quotations from elsewhere, and passages that are mentioned but not used. [3.3.3. Quotation] + element q { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.ascribed.attributes, + tei_att.source.attributes, + + ## may be used to indicate whether the offset passage is spoken or thought, or to characterize it more finely. + ## Suggested values include: 1] spoken; 2] thought; 3] written; 4] soCalled; 5] foreign; 6] distinct; 7] term; 8] emph; 9] mentioned + attribute type { + + ## representation of speech + "spoken" + | + ## representation of thought, e.g. internal monologue + "thought" + | + ## quotation from a written source + "written" + | + ## authorial distance + "soCalled" + | + ## + "foreign" + | + ## linguistically distinct + "distinct" + | + ## technical term + "term" + | + ## rhetorically emphasized + "emph" + | + ## refering to itself, not its normal referent + "mentioned" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_cit = + + ## (cited quotation) contains a quotation from some other document, together with a bibliographic reference to its source. In a dictionary it may contain an example text with at least one occurrence of the word form, used in the sense being described, or a translation of the headword, or an example. [3.3.3. Quotation 4.3.1. Grouped Texts 9.3.5.1. Examples] + element cit { + (tei_model.qLike + | tei_model.egLike + | tei_model.biblLike + | tei_model.ptrLike + | tei_model.global + | tei_model.entryPart)+, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_mentioned = + + ## marks words or phrases mentioned, not used. [3.3.3. Quotation] + element mentioned { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_soCalled = + + ## contains a word or phrase for which the author or narrator indicates a disclaiming of responsibility, for example by the use of scare quotes or italics. [3.3.3. Quotation] + element soCalled { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_desc = + + ## (description) contains a brief description of the object documented by its parent element, including its intended usage, purpose, or application where this is appropriate. [22.4.1. Description of Components] + element desc { + tei_macro.limitedContent, + tei_att.global.attributes, + tei_att.translatable.attributes, + tei_att.typed.attributes, + empty + } +tei_gloss = + + ## identifies a phrase or word used to provide a gloss or definition for some other word or phrase. [3.3.4. Terms, Glosses, Equivalents, and Descriptions 22.4.1. Description of Components] + element gloss { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.declaring.attributes, + tei_att.translatable.attributes, + tei_att.typed.attributes, + tei_att.pointing.attributes, + tei_att.cReferencing.attributes, + empty + } +tei_term = + + ## contains a single-word, multi-word, or symbolic designation which is regarded as a technical term. [3.3.4. Terms, Glosses, Equivalents, and Descriptions] + element term { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.declaring.attributes, + tei_att.pointing.attributes, + tei_att.typed.attributes, + tei_att.canonical.attributes, + tei_att.sortable.attributes, + tei_att.cReferencing.attributes, + empty + } +tei_sic = + + ## (Latin for thus or so + ## ) contains text reproduced although apparently incorrect or inaccurate. [3.4.1. Apparent Errors] + element sic { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.source.attributes, + empty + } +tei_corr = + + ## (correction) contains the correct form of a passage apparently erroneous in the copy text. [3.4.1. Apparent Errors] + element corr { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_choice = + + ## groups a number of alternative encodings for the same point in a text. [3.4. Simple Editorial Changes] + element choice { + (tei_model.choicePart | tei_choice)*, + tei_att.global.attributes, + empty + } +tei_reg = + + ## (regularization) contains a reading which has been regularized or normalized in some sense. [3.4.2. Regularization and + ## Normalization 12. Critical Apparatus] + element reg { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_orig = + + ## (original form) contains a reading which is marked as following the original, rather than being normalized or corrected. [3.4.2. Regularization and + ## Normalization 12. Critical Apparatus] + element orig { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.source.attributes, + empty + } +tei_gap = + + ## indicates a point where material has been omitted in a transcription, whether for editorial reasons described in the TEI header, as part of sampling practice, or because the material is illegible, invisible, or inaudible. [3.4.3. Additions, Deletions, and Omissions] + element gap { + (tei_model.descLike | tei_model.certLike)*, + tei_att.global.attributes, + tei_att.timed.attributes, + tei_att.editLike.attributes, + + ## gives the reason for omission. Sample values include sampling, inaudible, irrelevant, cancelled. + attribute reason { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + + ## in the case of text omitted from the transcription because of deliberate deletion by an identifiable hand, indicates the hand which made the deletion. + attribute hand { xsd:anyURI }?, + + ## in the case of text omitted because of damage, categorizes the cause of the damage, if it can be identified. + ## Sample values include: 1] rubbing; 2] mildew; 3] smoke + attribute agent { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_add = + + ## (addition) contains letters, words, or phrases inserted in the source text by an author, scribe, or a previous annotator or corrector. [3.4.3. Additions, Deletions, and Omissions] + element add { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.transcriptional.attributes, + tei_att.placement.attributes, + tei_att.typed.attributes, + empty + } +tei_del = + + ## (deletion) contains a letter, word, or passage deleted, marked as deleted, or otherwise indicated as superfluous or spurious in the copy text by an author, scribe, or a previous annotator or corrector. [3.4.3. Additions, Deletions, and Omissions] + element del { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.transcriptional.attributes, + tei_att.typed.attributes, + empty + } +tei_unclear = + + ## contains a word, phrase, or passage which cannot be transcribed with certainty because it is illegible or inaudible in the source. [11.3.3.1. Damage, Illegibility, and Supplied Text 3.4.3. Additions, Deletions, and Omissions] + element unclear { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.editLike.attributes, + + ## indicates why the material is hard to transcribe. + attribute reason { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + + ## Where the difficulty in transcription arises from action (partial deletion, etc.) assignable to an identifiable hand, signifies the hand responsible for the action. + attribute hand { xsd:anyURI }?, + + ## Where the difficulty in transcription arises from damage, categorizes the cause of the damage, if it can be identified. + ## Sample values include: 1] rubbing; 2] mildew; 3] smoke + attribute agent { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_name = + + ## (name, proper noun) contains a proper noun or noun phrase. [3.5.1. Referring Strings] + element name { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.personal.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_rs = + + ## (referencing string) contains a general purpose name or referring string. [13.2.1. Personal Names 3.5.1. Referring Strings] + element rs { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + tei_att.source.attributes, + empty + } +tei_email = + + ## (electronic mail address) contains an email address identifying a location to which email messages can be delivered. [3.5.2. Addresses] + element email { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_address = + + ## contains a postal address, for example of a publisher, an organization, or an individual. [3.5.2. Addresses 2.2.4. Publication, Distribution, Licensing, etc. 3.11.2.4. Imprint, Size of a Document, and Reprint Information] + element address { + (tei_model.global*, (tei_model.addrPart, tei_model.global*)+), + tei_att.global.attributes, + empty + } +tei_addrLine = + + ## (address line) contains one line of a postal address. [3.5.2. Addresses 2.2.4. Publication, Distribution, Licensing, etc. 3.11.2.4. Imprint, Size of a Document, and Reprint Information] + element addrLine { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_street = + + ## contains a full street address including any name or number identifying a building as well as the name of the street or route on which it is located. [3.5.2. Addresses] + element street { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_postCode = + + ## (postal code) contains a numerical or alphanumeric code used as part of a postal address to simplify sorting or delivery of mail. [3.5.2. Addresses] + element postCode { text, tei_att.global.attributes, empty } +tei_postBox = + + ## (postal box or post office box) contains a number or other identifier for some postal delivery point other than a street address. [3.5.2. Addresses] + element postBox { text, tei_att.global.attributes, empty } +tei_num = + + ## (number) contains a number, written in any form. [3.5.3. Numbers and + ## Measures] + element num { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.ranging.attributes, + + ## indicates the type of numeric value. + ## Suggested values include: 1] cardinal; 2] ordinal; 3] fraction; 4] percentage + attribute type { + + ## absolute number, e.g. 21, 21.5 + "cardinal" + | + ## ordinal number, e.g. 21st + "ordinal" + | + ## fraction, e.g. one half or three-quarters + "fraction" + | + ## a percentage + "percentage" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## supplies the value of the number in standard form. + attribute value { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }?, + empty + } +tei_measure = + + ## contains a word or phrase referring to some quantity of an object or commodity, usually comprising a number, a unit, and a commodity name. [3.5.3. Numbers and + ## Measures] + element measure { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.measurement.attributes, + + ## specifies the type of measurement in any convenient typology. + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_measureGrp = + + ## (measure group) contains a group of dimensional specifications which relate to the same object, for example the height and width of a manuscript page. [10.3.4. Dimensions] + element measureGrp { + (text | tei_model.gLike | tei_model.measureLike)*, + tei_att.global.attributes, + tei_att.measurement.attributes, + tei_att.typed.attributes, + empty + } +tei_date = + + ## contains a date in any format. [3.5.4. Dates and Times 2.2.4. Publication, Distribution, Licensing, etc. 2.6. The Revision Description 3.11.2.4. Imprint, Size of a Document, and Reprint Information 15.2.3. The Setting Description 13.3.6. Dates and Times] + element date { + (text | tei_model.gLike | tei_model.phrase | tei_model.global)*, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_time = + + ## contains a phrase defining a time of day in any format. [3.5.4. Dates and Times] + element time { + (text | tei_model.gLike | tei_model.phrase | tei_model.global)*, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_abbr = + + ## (abbreviation) contains an abbreviation of any sort. [3.5.5. Abbreviations and Their Expansions] + element abbr { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.source.attributes, + tei_att.typed.attribute.subtype, + + ## allows the encoder to classify the abbreviation according to some convenient typology. + ## Sample values include: 1] suspension; 2] contraction; 3] brevigraph; 4] superscription; 5] acronym; 6] title; 7] organization; 8] geographic + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_expan = + + ## (expansion) contains the expansion of an abbreviation. [3.5.5. Abbreviations and Their Expansions] + element expan { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.editLike.attributes, + empty + } +tei_ptr = + + ## (pointer) defines a pointer to another location. [3.6. Simple Links and Cross-References 16.1. Links] + element ptr { + empty + >> sch:pattern [ + id = "app-ptr-ptrAtts-constraint-6" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:ptr" + "\x{a}" ~ + " " + sch:report [ + test = "@target and @cRef" + "Only one of the\x{a}" ~ + "attributes @target and @cRef may be supplied on " + sch:name [ ] + "." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.pointing.attributes, + tei_att.internetMedia.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + tei_att.cReferencing.attributes, + empty + } +tei_ref = + + ## (reference) defines a reference to another location, possibly modified by additional text or comment. [3.6. Simple Links and Cross-References 16.1. Links] + element ref { + tei_macro.paraContent + >> sch:pattern [ + id = "app-ref-refAtts-constraint-7" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:ref" + "\x{a}" ~ + " " + sch:report [ + test = "@target and @cRef" + "Only one of the\x{a}" ~ + " attributes @target' and @cRef' may be supplied on " + sch:name [ ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.pointing.attributes, + tei_att.internetMedia.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + tei_att.cReferencing.attributes, + empty + } +tei_list = + + ## contains any sequence of items organized as a list. [3.7. Lists] + element list { + ((tei_model.divTop | tei_model.global)*, + ((tei_item, tei_model.global*)+ + | (tei_headLabel?, + tei_headItem?, + (tei_label, tei_model.global*, tei_item, tei_model.global*)+)), + (tei_model.divBottom, tei_model.global*)*) + >> sch:pattern [ + id = "app-list-gloss-list-must-have-labels-constraint-9" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:list[@type='gloss']" + "\x{a}" ~ + " " + sch:assert [ + test = "tei:label" + 'The content of a "gloss" list should include a sequence of one or more pairs of a label element followed by an item element' + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.sortable.attributes, + tei_att.typed.attribute.subtype, + + ## describes the nature of the items in the list. + ## Suggested values include: 1] gloss; 2] index; 3] instructions; 4] litany; 5] syllogism + attribute type { + + ## each list item glosses some term or concept, which is given by a label element preceding the list item. + "gloss" + | + ## each list item is an entry in an index such as the alphabetical topical index at the back of a print volume. + "index" + | + ## each list item is a step in a sequence of instructions, as in a recipe. + "instructions" + | + ## each list item is one of a sequence of petitions, supplications or invocations, typically in a religious ritual. + "litany" + | + ## each list item is part of an argument consisting of two or more propositions and a final conclusion derived from them. + "syllogism" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_item = + + ## contains one component of a list. [3.7. Lists 2.6. The Revision Description] + element item { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.sortable.attributes, + empty + } +tei_label = + + ## contains any label or heading used to identify part of a text, typically but not exclusively in a list or glossary. [3.7. Lists] + element label { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.placement.attributes, + tei_att.written.attributes, + empty + } +tei_head = + + ## (heading) contains any type of heading, for example the title of a section, or the heading of a list, glossary, manuscript description, etc. [4.2.1. Headings and Trailers] + element head { + (text + | tei_lg + | tei_model.gLike + | tei_model.phrase + | tei_model.inter + | tei_model.lLike + | tei_model.global)*, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.written.attributes, + empty + } +tei_headLabel = + + ## (heading for list labels) contains the heading for the label or term column in a glossary list or similar structured list. [3.7. Lists] + element headLabel { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_headItem = + + ## (heading for list items) contains the heading for the item or gloss column in a glossary list or similar structured list. [3.7. Lists] + element headItem { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_note = + + ## contains a note or annotation. [3.8.1. Notes and Simple Annotation 2.2.6. The Notes Statement 3.11.2.8. Notes and Statement of Language 9.3.5.4. Notes within Entries] + element note { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.placement.attributes, + tei_att.pointing.attributes, + tei_att.source.attributes, + tei_att.typed.attributes, + tei_att.written.attributes, + + ## indicates whether the copy text shows the exact place of reference for the note. + [ a:defaultValue = "true" ] attribute anchored { xsd:boolean }?, + + ## points to the end of the span to which the note is attached, if the note is not embedded in the text at that point. + attribute targetEnd { + list { xsd:anyURI+ } + }?, + empty + } +tei_index = + + ## (index entry) marks a location to be indexed for whatever purpose. [3.8.2. Index Entries] + element index { + (tei_term, tei_index?)*, + tei_att.global.attributes, + tei_att.spanning.attributes, + + ## a single word which follows the rules defining a legal XML name (see ), supplying a name to specify which index (of several) the index entry belongs to. + attribute indexName { xsd:Name }?, + empty + } +tei_media = + + ## indicates the location of any form of external media such as an audio or video clip etc. [3.9. Graphics and Other Non-textual Components] + element media { + tei_model.descLike*, + tei_att.typed.attributes, + tei_att.global.attributes, + tei_att.media.attribute.width, + tei_att.media.attribute.height, + tei_att.media.attribute.scale, + tei_att.resourced.attributes, + tei_att.declaring.attributes, + tei_att.timed.attributes, + + ## (MIME media type) specifies the applicable multimedia internet mail extension (MIME) media type + attribute mimeType { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }, + empty + } +tei_graphic = + + ## indicates the location of a graphic or illustration, either forming part of a text, or providing an image of it. [3.9. Graphics and Other Non-textual Components 11.1. Digital Facsimiles] + element graphic { + tei_model.descLike*, + tei_att.global.attributes, + tei_att.media.attributes, + tei_att.resourced.attributes, + tei_att.declaring.attributes, + empty + } +tei_binaryObject = + + ## provides encoded binary data representing an inline graphic, audio, video or other object. [3.9. Graphics and Other Non-textual Components] + element binaryObject { + text, + tei_att.global.attributes, + tei_att.media.attributes, + tei_att.timed.attributes, + tei_att.typed.attributes, + + ## The encoding used to encode the binary data. If not specified, this is assumed to be Base64. + attribute encoding { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + empty + } +tei_milestone = + + ## marks a boundary point separating any kind of section of a text, typically but not necessarily indicating a point at which some part of a standard reference system changes, where the change is not represented by a structural element. [3.10.3. Milestone + ## Elements] + element milestone { + empty, + tei_att.global.attributes, + tei_att.milestoneUnit.attributes, + tei_att.typed.attributes, + tei_att.edition.attributes, + tei_att.spanning.attributes, + tei_att.breaking.attributes, + empty + } +tei_gb = + + ## (gathering begins) marks the point in a transcribed codex at which a new gathering or quire begins. [3.10.3. Milestone + ## Elements] + element gb { + empty, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.spanning.attributes, + tei_att.breaking.attributes, + empty + } +tei_pb = + + ## (page break) marks the start of a new page in a paginated document. [3.10.3. Milestone + ## Elements] + element pb { + empty, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.edition.attributes, + tei_att.spanning.attributes, + tei_att.breaking.attributes, + empty + } +tei_lb = + + ## (line break) marks the start of a new (typographic) line in some edition or version of a text. [3.10.3. Milestone + ## Elements 7.2.5. Speech Contents] + element lb { + empty, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.edition.attributes, + tei_att.spanning.attributes, + tei_att.breaking.attributes, + empty + } +tei_cb = + + ## (column break) marks the beginning of a new column of a text on a multi-column page. [3.10.3. Milestone + ## Elements] + element cb { + empty, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.edition.attributes, + tei_att.spanning.attributes, + tei_att.breaking.attributes, + empty + } +tei_analytic = + + ## (analytic level) contains bibliographic elements describing an item (e.g. an article or poem) published within a monograph or journal and not as an independent publication. [3.11.2.1. Analytic, Monographic, and Series Levels] + element analytic { + (tei_author + | tei_editor + | tei_respStmt + | tei_title + | tei_model.ptrLike + | tei_date + | tei_textLang + | tei_idno + | tei_availability)*, + tei_att.global.attributes, + empty + } +tei_monogr = + + ## (monographic level) contains bibliographic elements describing an item (e.g. a book or journal) published as an independent item (i.e. as a separate physical object). [3.11.2.1. Analytic, Monographic, and Series Levels] + element monogr { + ((((tei_author | tei_editor | tei_meeting | tei_respStmt), + (tei_author | tei_editor | tei_meeting | tei_respStmt)*, + tei_title+, + (tei_model.ptrLike + | tei_idno + | tei_textLang + | tei_editor + | tei_respStmt)*) + | ((tei_title | tei_model.ptrLike | tei_idno)+, + (tei_textLang + | tei_author + | tei_editor + | tei_meeting + | tei_respStmt)*) + | (tei_authority, tei_idno))?, + tei_availability*, + tei_model.noteLike*, + (tei_edition, + (tei_idno + | tei_model.ptrLike + | tei_editor + | tei_sponsor + | tei_funder + | tei_respStmt)*)*, + tei_imprint, + (tei_imprint | tei_extent | tei_biblScope)*), + tei_att.global.attributes, + empty + } +tei_series = + + ## (series information) contains information about the series in which a book or other bibliographic item has appeared. [3.11.2.1. Analytic, Monographic, and Series Levels] + element series { + (text + | tei_model.gLike + | tei_title + | tei_model.ptrLike + | tei_editor + | tei_respStmt + | tei_biblScope + | tei_idno + | tei_textLang + | tei_model.global + | tei_availability)*, + tei_att.global.attributes, + empty + } +tei_author = + + ## in a bibliographic reference, contains the name(s) of an author, personal or corporate, of a work; for example in the same form as that provided by a recognized bibliographic name authority. [3.11.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement] + element author { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + empty + } +tei_editor = + + ## contains a secondary statement of responsibility for a bibliographic item, for example the name of an individual, institution or organization, (or of several such) acting as editor, compiler, translator, etc. [3.11.2.2. Titles, Authors, and Editors] + element editor { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + empty + } +tei_respStmt = + + ## (statement of responsibility) supplies a statement of responsibility for the intellectual content of a text, edition, recording, or series, where the specialized elements for authors, editors, etc. do not suffice or do not apply. May also be used to encode information about individuals or organizations which have played a role in the production or distribution of a bibliographic work. [3.11.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.2. The Edition Statement 2.2.5. The Series Statement] + element respStmt { + ((tei_resp+, tei_model.nameLike.agent+) + | (tei_model.nameLike.agent+, tei_resp+)), + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_resp = + + ## (responsibility) contains a phrase describing the nature of a person's intellectual responsibility, or an organization's role in the production or distribution of a work. [3.11.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.2. The Edition Statement 2.2.5. The Series Statement] + element resp { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + tei_att.canonical.attributes, + tei_att.datable.attributes, + empty + } +tei_title = + + ## contains a title for any kind of work. [3.11.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.5. The Series Statement] + element title { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.canonical.attributes, + tei_att.typed.attribute.subtype, + + ## classifies the title according to some convenient typology. + ## Sample values include: 1] main; 2] sub(subordinate) ; 3] alt(alternate) ; 4] short; 5] desc(descriptive) + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## indicates the bibliographic level for a title, that is, whether it identifies an article, book, journal, series, or unpublished material. + attribute level { + + ## (analytic) the title applies to an analytic item, such as an article, poem, or other work published as part of a larger item. + "a" + | + ## (monographic) the title applies to a monograph such as a book or other item considered to be a distinct publication, including single volumes of multi-volume works + "m" + | + ## (journal) the title applies to any serial or periodical publication such as a journal, magazine, or newspaper + "j" + | + ## (series) the title applies to a series of otherwise distinct publications such as a collection + "s" + | + ## (unpublished) the title applies to any unpublished material (including theses and dissertations unless published by a commercial press) + "u" + }?, + empty + } +tei_meeting = + + ## contains the formalized descriptive title for a meeting or conference, for use in a bibliographic description for an item derived from such a meeting, or as a heading or preamble to publications emanating from it. [3.11.2.2. Titles, Authors, and Editors] + element meeting { + tei_macro.limitedContent, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_imprint = + + ## groups information relating to the publication or distribution of a bibliographic item. [3.11.2.4. Imprint, Size of a Document, and Reprint Information] + element imprint { + ((tei_classCode | tei_catRef)*, + ((tei_model.imprintPart | tei_model.dateLike), + tei_respStmt*, + tei_model.global*)+), + tei_att.global.attributes, + empty + } +tei_publisher = + + ## provides the name of the organization responsible for the publication or distribution of a bibliographic item. [3.11.2.4. Imprint, Size of a Document, and Reprint Information 2.2.4. Publication, Distribution, Licensing, etc.] + element publisher { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_biblScope = + + ## (scope of bibliographic reference) defines the scope of a bibliographic reference, for example as a list of page numbers, or a named subdivision of a larger work. [3.11.2.5. Scopes and Ranges in Bibliographic Citations] + element biblScope { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.citing.attributes, + empty + } +tei_citedRange = + + ## (cited range) defines the range of cited content, often represented by pages or other units [3.11.2.5. Scopes and Ranges in Bibliographic Citations] + element citedRange { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.pointing.attributes, + tei_att.citing.attributes, + empty + } +tei_pubPlace = + + ## (publication place) contains the name of the place where a bibliographic item was published. [3.11.2.4. Imprint, Size of a Document, and Reprint Information] + element pubPlace { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + empty + } +tei_bibl = + + ## (bibliographic citation) contains a loosely-structured bibliographic citation of which the sub-components may or may not be explicitly tagged. [3.11.1. Methods of Encoding Bibliographic References and Lists of References 2.2.7. The Source Description 15.3.2. Declarable Elements] + element bibl { + (text + | tei_model.gLike + | tei_model.highlighted + | tei_model.pPart.data + | tei_model.pPart.edit + | tei_model.segLike + | tei_model.ptrLike + | tei_model.biblPart + | tei_model.global)*, + tei_att.global.attributes, + tei_att.declarable.attributes, + tei_att.typed.attributes, + tei_att.sortable.attributes, + tei_att.docStatus.attributes, + empty + } +tei_biblStruct = + + ## (structured bibliographic citation) contains a structured bibliographic citation, in which only bibliographic sub-elements appear and in a specified order. [3.11.1. Methods of Encoding Bibliographic References and Lists of References 2.2.7. The Source Description 15.3.2. Declarable Elements] + element biblStruct { + (tei_analytic*, + (tei_monogr, tei_series*)+, + (tei_model.noteLike + | tei_idno + | tei_model.ptrLike + | tei_relatedItem + | tei_citedRange)*) + >> sch:pattern [ + id = + "app-biblStruct-deprecate-altIdentifier-child-constraint-8" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:biblStruct" + "\x{a}" ~ + " " + sch:report [ + role = "nonfatal" + test = "child::tei:idno" + "WARNING: use of deprecated method — the use of the idno element as a direct child of the biblStruct element will be removed from the TEI on 2016-09-18" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.declarable.attributes, + tei_att.typed.attributes, + tei_att.sortable.attributes, + tei_att.docStatus.attributes, + empty + } +tei_listBibl = + + ## (citation list) contains a list of bibliographic citations of any kind. [3.11.1. Methods of Encoding Bibliographic References and Lists of References 2.2.7. The Source Description 15.3.2. Declarable Elements] + element listBibl { + (tei_model.headLike*, + (tei_model.biblLike | tei_model.milestoneLike)+, + (tei_relation | tei_listRelation)*), + tei_att.global.attributes, + tei_att.sortable.attributes, + tei_att.declarable.attributes, + tei_att.typed.attributes, + empty + } +tei_relatedItem = + + ## contains or references some other bibliographic item which is related to the present one in some specified manner, for example as a constituent or alternative version of it. [3.11.2.7. Related Items] + element relatedItem { + ((tei_model.biblLike | tei_model.ptrLike)?) + >> sch:pattern [ + id = "app-relatedItem-targetorcontent1-constraint-9" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:relatedItem" + "\x{a}" ~ + " " + sch:report [ + test = "@target and count( child::* ) > 0" + "\x{a}" ~ + "If the @target attribute on " + sch:name [ ] + " is used, the\x{a}" ~ + "relatedItem element must be empty" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "app-relatedItem-targetorcontent1-constraint-7" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:relatedItem" + "\x{a}" ~ + " " + sch:assert [ + test = "@target or child::*" + "A relatedItem element should have either a 'target' attribute\x{a}" ~ + " or a child element to indicate the related bibliographic item" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.typed.attributes, + + ## points to the related bibliographic element by means of an absolute or relative URI reference + attribute target { xsd:anyURI }?, + empty + } +tei_l = + + ## (verse line) contains a single, possibly incomplete, line of verse. [3.12.1. Core Tags for Verse 3.12. Passages of Verse or Drama 7.2.5. Speech Contents] + element l { + ((text + | tei_model.gLike + | tei_model.phrase + | tei_model.inter + | tei_model.global)*) + >> sch:pattern [ + id = "app-l-abstractModel-structure-l-constraint-10" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:l" + "\x{a}" ~ + " " + sch:report [ + test = + "ancestor::tei:l[not(.//tei:note//tei:l[. = current()])]" + "\x{a}" ~ + " Abstract model violation: Lines may not contain lines or lg elements.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.metrical.attributes, + tei_att.enjamb.attributes, + tei_att.fragmentable.attributes, + empty + } +tei_lg = + + ## (line group) contains one or more verse lines functioning as a formal unit, e.g. a stanza, refrain, verse paragraph, etc. [3.12.1. Core Tags for Verse 3.12. Passages of Verse or Drama 7.2.5. Speech Contents] + element lg { + ((tei_model.divTop | tei_model.global)*, + (tei_model.lLike + | tei_model.stageLike + | tei_model.labelLike + | tei_lg), + (tei_model.lLike + | tei_model.stageLike + | tei_model.labelLike + | tei_model.global + | tei_lg)*, + (tei_model.divBottom, tei_model.global*)*) + >> sch:pattern [ + id = "app-lg-atleast1oflggapl-constraint-8" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:lg" + "\x{a}" ~ + " " + sch:assert [ + test = + "count(descendant::tei:lg|descendant::tei:l|descendant::tei:gap) > 0" + "An lg element\x{a}" ~ + " must contain at least one child l, lg or gap element." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "app-lg-abstractModel-structure-l-constraint-11" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:lg" + "\x{a}" ~ + " " + sch:report [ + test = + "ancestor::tei:l[not(.//tei:note//tei:lg[. = current()])]" + "\x{a}" ~ + " Abstract model violation: Lines may not contain line groups.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_sp = + + ## (speech) contains an individual speech in a performance text, or a passage presented as such in a prose or verse text. [3.12.2. Core Tags for Drama 3.12. Passages of Verse or Drama 7.2.2. Speeches and Speakers] + element sp { + (tei_model.global*, + (tei_speaker, tei_model.global*)?, + ((tei_lg + | tei_model.lLike + | tei_model.pLike + | tei_model.listLike + | tei_model.stageLike + | tei_model.qLike), + tei_model.global*)+), + tei_att.global.attributes, + tei_att.ascribed.attributes, + empty + } +tei_speaker = + + ## contains a specialized form of heading or label, giving the name of one or more speakers in a dramatic text or fragment. [3.12.2. Core Tags for Drama] + element speaker { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_stage = + + ## (stage direction) contains any kind of stage direction within a dramatic text or fragment. [3.12.2. Core Tags for Drama 3.12. Passages of Verse or Drama 7.2.4. Stage Directions] + element stage { + tei_macro.specialPara, + tei_att.ascribed.attributes, + tei_att.global.attributes, + tei_att.placement.attributes, + + ## indicates the kind of stage direction. + ## Suggested values include: 1] setting; 2] entrance; 3] exit; 4] business; 5] novelistic; 6] delivery; 7] modifier; 8] location; 9] mixed + attribute type { + list { + ( + ## describes a setting. + "setting" + | + ## describes an entrance. + "entrance" + | + ## describes an exit. + "exit" + | + ## describes stage business. + "business" + | + ## is a narrative, motivating stage direction. + "novelistic" + | + ## describes how a character speaks. + "delivery" + | + ## gives some detail about a character. + "modifier" + | + ## describes a location. + "location" + | + ## more than one of the above + "mixed" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" })* + } + }?, + empty + } +tei_teiCorpus = + + ## contains the whole of a TEI encoded corpus, comprising a single corpus header and one or more TEI elements, each containing a single text header and a text. [4. Default Text Structure 15.1. Varieties of Composite Text] + element teiCorpus { + (tei_teiHeader, + ((tei_model.resourceLike+, (tei_TEI | tei_teiCorpus)*) + | (tei_TEI | tei_teiCorpus)+)), + tei_att.global.attributes, + + ## The version of the TEI scheme + [ a:defaultValue = "5.0" ] + attribute version { + xsd:token { pattern = "[\d]+(\.[\d]+){0,2}" } + }?, + empty + } +tei_divGen = + + ## (automatically generated text division) indicates the location at which a textual division generated automatically by a text-processing application is to appear. [3.8.2. Index Entries] + element divGen { + tei_model.headLike*, + tei_att.global.attributes, + + ## specifies what type of generated text division (e.g. index, table of contents, etc.) is to appear. + ## Sample values include: 1] index; 2] toc; 3] figlist; 4] tablist + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_textLang = + + ## (text language) describes the languages and writing systems identified within the bibliographic work being described, rather than its description. [3.11.2.4. Imprint, Size of a Document, and Reprint Information 10.6.6. Languages and Writing Systems] + element textLang { + tei_macro.phraseSeq, + tei_att.global.attributes, + + ## (main language) supplies a code which identifies the chief language used in the bibliographic work. + attribute mainLang { + xsd:language + | ( + ## + "") + }?, + + ## (other languages) one or more codes identifying any other languages used in the bibliographic work. + attribute otherLangs { + list { + (xsd:language + | ( + ## + ""))* + } + }?, + empty + } +tei_att.patternReplacement.attributes = + tei_att.patternReplacement.attribute.matchPattern, + tei_att.patternReplacement.attribute.replacementPattern +tei_att.patternReplacement.attribute.matchPattern = + + ## specifies a regular expression against which the values of other attributes can be matched. + attribute matchPattern { xsd:token } +tei_att.patternReplacement.attribute.replacementPattern = + + ## specifies a replacement pattern, that is, the skeleton of a relative or absolute URI containing references to groups in the matchPattern which, once subpattern substitution has been performed, complete the URI. + attribute replacementPattern { text } +tei_teiHeader = + + ## (TEI header) supplies descriptive and declarative metadata associated with a digital resource or set of resources. [2.1.1. The TEI Header and Its Components 15.1. Varieties of Composite Text] + element teiHeader { + (tei_fileDesc, tei_model.teiHeaderPart*, tei_revisionDesc?), + tei_att.global.attributes, + + ## specifies the kind of document to which the header is attached, for example whether it is a corpus or individual text. + ## Sample values include: 1] text; 2] corpus + [ a:defaultValue = "text" ] + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_fileDesc = + + ## (file description) contains a full bibliographic description of an electronic file. [2.2. The File Description 2.1.1. The TEI Header and Its Components] + element fileDesc { + ((tei_titleStmt, + tei_editionStmt?, + tei_extent?, + tei_publicationStmt, + tei_seriesStmt?, + tei_notesStmt?), + tei_sourceDesc+), + tei_att.global.attributes, + empty + } +tei_titleStmt = + + ## (title statement) groups information about the title of a work and those responsible for its content. [2.2.1. The Title Statement 2.2. The File Description] + element titleStmt { + (tei_title+, tei_model.respLike*), tei_att.global.attributes, empty + } +tei_sponsor = + + ## specifies the name of a sponsoring organization or institution. [2.2.1. The Title Statement] + element sponsor { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_funder = + + ## (funding body) specifies the name of an individual, institution, or organization responsible for the funding of a project or text. [2.2.1. The Title Statement] + element funder { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_principal = + + ## (principal researcher) supplies the name of the principal researcher responsible for the creation of an electronic text. [2.2.1. The Title Statement] + element principal { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_editionStmt = + + ## (edition statement) groups information relating to one edition of a text. [2.2.2. The Edition Statement 2.2. The File Description] + element editionStmt { + (tei_model.pLike+ | (tei_edition, tei_model.respLike*)), + tei_att.global.attributes, + empty + } +tei_edition = + + ## describes the particularities of one edition of a text. [2.2.2. The Edition Statement] + element edition { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_extent = + + ## describes the approximate size of a text stored on some carrier medium or of some other object, digital or non-digital, specified in any convenient units. [2.2.3. Type and Extent of File 2.2. The File Description 3.11.2.4. Imprint, Size of a Document, and Reprint Information 10.7.1. Object Description] + element extent { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_publicationStmt = + + ## (publication statement) groups information concerning the publication or distribution of an electronic or other text. [2.2.4. Publication, Distribution, Licensing, etc. 2.2. The File Description] + element publicationStmt { + ((tei_model.publicationStmtPart.agency, + tei_model.publicationStmtPart.detail*)+ + | tei_model.pLike+), + tei_att.global.attributes, + empty + } +tei_distributor = + + ## supplies the name of a person or other agency responsible for the distribution of a text. [2.2.4. Publication, Distribution, Licensing, etc.] + element distributor { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_authority = + + ## (release authority) supplies the name of a person or other agency responsible for making a work available, other than a publisher or distributor. [2.2.4. Publication, Distribution, Licensing, etc.] + element authority { + tei_macro.phraseSeq.limited, tei_att.global.attributes, empty + } +tei_idno = + + ## (identifier) supplies any form of identifier used to identify some object, such as a bibliographic item, a person, a title, an organization, etc. in a standardized way. [2.2.4. Publication, Distribution, Licensing, etc. 2.2.5. The Series Statement 3.11.2.4. Imprint, Size of a Document, and Reprint Information] + element idno { + (text | tei_model.gLike | tei_idno)*, + tei_att.global.attributes, + tei_att.sortable.attributes, + + ## categorizes the identifier, for example as an ISBN, Social Security number, etc. + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_availability = + + ## supplies information about the availability of a text, for example any restrictions on its use or distribution, its copyright status, any licence applying to it, etc. [2.2.4. Publication, Distribution, Licensing, etc.] + element availability { + (tei_model.availabilityPart | tei_model.pLike)+, + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## supplies a code identifying the current availability of the text. + [ a:defaultValue = "unknown" ] + attribute status { + + ## the text is freely available. + "free" + | + ## the status of the text is unknown. + "unknown" + | + ## the text is not freely available. + "restricted" + }?, + empty + } +tei_licence = + + ## contains information about a licence or other legal agreement applicable to the text. [2.2.4. Publication, Distribution, Licensing, etc.] + element licence { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.pointing.attributes, + tei_att.datable.attributes, + empty + } +tei_seriesStmt = + + ## (series statement) groups information about the series, if any, to which a publication belongs. [2.2.5. The Series Statement 2.2. The File Description] + element seriesStmt { + (tei_model.pLike+ + | (tei_title+, + (tei_editor | tei_respStmt)*, + (tei_idno | tei_biblScope)*)), + tei_att.global.attributes, + empty + } +tei_notesStmt = + + ## (notes statement) collects together any notes providing information about a text additional to that recorded in other parts of the bibliographic description. [2.2.6. The Notes Statement 2.2. The File Description] + element notesStmt { + (tei_model.noteLike | tei_relatedItem)+, + tei_att.global.attributes, + empty + } +tei_sourceDesc = + + ## (source description) describes the source from which an electronic text was derived or generated, typically a bibliographic description in the case of a digitized text, or a phrase such as "born digital" for a text which has no previous existence. [2.2.7. The Source Description] + element sourceDesc { + (tei_model.pLike+ + | (tei_model.biblLike + | tei_model.sourceDescPart + | tei_model.listLike)+), + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_biblFull = + + ## (fully-structured bibliographic citation) contains a fully-structured bibliographic citation, in which all components of the TEI file description are present. [3.11.1. Methods of Encoding Bibliographic References and Lists of References 2.2. The File Description 2.2.7. The Source Description 15.3.2. Declarable Elements] + element biblFull { + ((tei_titleStmt, + tei_editionStmt?, + tei_extent?, + tei_publicationStmt, + tei_seriesStmt?, + tei_notesStmt?), + tei_sourceDesc*), + tei_att.global.attributes, + tei_att.declarable.attributes, + tei_att.sortable.attributes, + tei_att.docStatus.attributes, + empty + } +tei_encodingDesc = + + ## (encoding description) documents the relationship between an electronic text and the source or sources from which it was derived. [2.3. The Encoding Description 2.1.1. The TEI Header and Its Components] + element encodingDesc { + (tei_model.encodingDescPart | tei_model.pLike)+, + tei_att.global.attributes, + empty + } +tei_projectDesc = + + ## (project description) describes in detail the aim or purpose for which an electronic file was encoded, together with any other relevant information concerning the process by which it was assembled or collected. [2.3.1. The Project Description 2.3. The Encoding Description 15.3.2. Declarable Elements] + element projectDesc { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_samplingDecl = + + ## (sampling declaration) contains a prose description of the rationale and methods used in sampling texts in the creation of a corpus or collection. [2.3.2. The Sampling Declaration 2.3. The Encoding Description 15.3.2. Declarable Elements] + element samplingDecl { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_editorialDecl = + + ## (editorial practice declaration) provides details of editorial principles and practices applied during the encoding of a text. [2.3.3. The Editorial Practices Declaration 2.3. The Encoding Description 15.3.2. Declarable Elements] + element editorialDecl { + (tei_model.pLike | tei_model.editorialDeclPart)+, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_correction = + + ## (correction principles) states how and under what circumstances corrections have been made in the text. [2.3.3. The Editorial Practices Declaration 15.3.2. Declarable Elements] + element correction { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## indicates the degree of correction applied to the text. + [ a:defaultValue = "unknown" ] + attribute status { + + ## the text has been thoroughly checked and proofread. + "high" + | + ## the text has been checked at least once. + "medium" + | + ## the text has not been checked. + "low" + | + ## the correction status of the text is unknown. + "unknown" + }?, + + ## indicates the method adopted to indicate corrections within the text. + [ a:defaultValue = "silent" ] + attribute method { + + ## corrections have been made silently + "silent" + | + ## corrections have been represented using markup + "markup" + }?, + empty + } +tei_normalization = + + ## indicates the extent of normalization or regularization of the original source carried out in converting it to electronic form. [2.3.3. The Editorial Practices Declaration 15.3.2. Declarable Elements] + element normalization { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## indicates a bibliographic description or other resource documenting the principles underlying the normalization carried out. + attribute source { xsd:anyURI }?, + + ## indicates the method adopted to indicate normalizations within the text. + [ a:defaultValue = "silent" ] + attribute method { + + ## normalization made silently + "silent" + | + ## normalization represented using markup + "markup" + }?, + empty + } +tei_quotation = + + ## specifies editorial practice adopted with respect to quotation marks in the original. [2.3.3. The Editorial Practices Declaration 15.3.2. Declarable Elements] + element quotation { + (tei_model.pLike*) + >> sch:pattern [ + id = "app-quotation-quotationContents-constraint-12" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:quotation" + "\x{a}" ~ + " " + sch:report [ + test = "not(@marks) and not (tei:p)" + "\x{a}" ~ + "On " + sch:name [ ] + ", either the @marks attribute should be used, or a paragraph of description provided" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## (quotation marks) indicates whether or not quotation marks have been retained as content within the text. + attribute marks { + + ## no quotation marks have been retained + "none" + | + ## some quotation marks have been retained + "some" + | + ## all quotation marks have been retained + "all" + }?, + empty + } +tei_hyphenation = + + ## summarizes the way in which hyphenation in a source text has been treated in an encoded version of it. [2.3.3. The Editorial Practices Declaration 15.3.2. Declarable Elements] + element hyphenation { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## (end-of-line) indicates whether or not end-of-line hyphenation has been retained in a text. + [ a:defaultValue = "some" ] + attribute eol { + + ## all end-of-line hyphenation has been retained, even though the lineation of the original may not have been. + "all" + | + ## end-of-line hyphenation has been retained in some cases. + "some" + | + ## all soft end-of-line hyphenation has been removed: any remaining end-of-line hyphenation should be retained. + "hard" + | + ## all end-of-line hyphenation has been removed: any remaining hyphenation occurred within the line. + "none" + }?, + empty + } +tei_segmentation = + + ## describes the principles according to which the text has been segmented, for example into sentences, tone-units, graphemic strata, etc. [2.3.3. The Editorial Practices Declaration 15.3.2. Declarable Elements] + element segmentation { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_stdVals = + + ## (standard values) specifies the format used when standardized date or number values are supplied. [2.3.3. The Editorial Practices Declaration 15.3.2. Declarable Elements] + element stdVals { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_interpretation = + + ## describes the scope of any analytic or interpretive information added to the text in addition to the transcription. [2.3.3. The Editorial Practices Declaration] + element interpretation { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_punctuation = + + ## specifies editorial practice adopted with respect to punctuation marks in the original. [2.3.3. The Editorial Practices Declaration 3.2. Treatment of Punctuation] + element punctuation { + tei_model.pLike*, + tei_att.declarable.attributes, + tei_att.global.attributes, + + ## indicates whether or not punctation marks have been retained as content within the text. + attribute marks { + + ## no punctuation marks have been retained + "none" + | + ## some punctuation marks have been retained + "some" + | + ## all punctuation marks have been retained + "all" + }?, + + ## indicates whether punctation marks have been captured inside or outside of an adjacent element. + attribute placement { + + ## punctuation marks are captured inside adjacent elements + "internal" + | + ## punctuation marks are captured outside adjacent elements + "external" + }?, + empty + } +tei_tagsDecl = + + ## (tagging declaration) provides detailed information about the tagging applied to a document. [2.3.4. The Tagging Declaration 2.3. The Encoding Description] + element tagsDecl { + (tei_rendition*, tei_namespace*), + tei_att.global.attributes, + + ## indicates whether the element types listed exhaustively include all those found within text, or represent only a subset. + attribute partial { xsd:boolean }?, + empty + } +tei_tagUsage = + + ## documents the usage of a specific element within a specified document. [2.3.4. The Tagging Declaration] + element tagUsage { + tei_macro.limitedContent, + tei_att.global.attributes, + + ## (generic identifier) specifies the name (generic identifier) of the element indicated by the tag, within the namespace indicated by the parent namespace element. + attribute gi { xsd:Name }, + + ## specifies the number of occurrences of this element within the text. + attribute occurs { xsd:nonNegativeInteger }?, + + ## (with unique identifier) specifies the number of occurrences of this element within the text which bear a distinct value for the global xml:id attribute. + attribute withId { xsd:nonNegativeInteger }?, + + ## specifies the identifier of a rendition element which defines how this element was rendered in the source text. + attribute render { + list { xsd:anyURI+ } + }?, + empty + } +tei_namespace = + + ## supplies the formal name of the namespace to which the elements documented by its children belong. [2.3.4. The Tagging Declaration] + element namespace { + tei_tagUsage+, + tei_att.global.attributes, + + ## specifies the full formal name of the namespace concerned. + attribute name { xsd:anyURI }, + empty + } +tei_rendition = + + ## supplies information about the rendition or appearance of one or more elements in the source text. [2.3.4. The Tagging Declaration] + element rendition { + tei_macro.limitedContent, + tei_att.global.attributes, + tei_att.styleDef.attributes, + + ## where CSS is used, provides a way of defining pseudo-elements, that is, styling rules applicable to specific sub-portions of an element. + ## Sample values include: 1] first-line; 2] first-letter; 3] before; 4] after + attribute scope { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## contains a selector or series of selectors specifying the elements to which the contained style description applies, expressed in the language specified in the scheme attribute. + attribute selector { xsd:string }?, + empty + } +tei_styleDefDecl = + + ## (style definition language declaration) specifies the name of the formal language in which style or renditional information is supplied elsewhere in the document. The specific version of the scheme may also be supplied. [2.3.5. The Default Style Definition Language Declaration] + element styleDefDecl { + tei_model.pLike*, + tei_att.global.attributes, + tei_att.declarable.attributes, + tei_att.styleDef.attributes, + empty + } +tei_refsDecl = + + ## (references declaration) specifies how canonical references are constructed for this text. [2.3.6.3. Milestone Method 2.3. The Encoding Description 2.3.6. The Reference System Declaration] + element refsDecl { + (tei_model.pLike+ | tei_cRefPattern+ | tei_refState+), + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_cRefPattern = + + ## (canonical reference pattern) specifies an expression and replacement pattern for transforming a canonical reference into a URI. [2.3.6.3. Milestone Method 2.3.6. The Reference System Declaration 2.3.6.2. Search-and-Replace Method] + element cRefPattern { + tei_model.pLike*, + tei_att.global.attributes, + tei_att.patternReplacement.attributes, + empty + } +tei_prefixDef = + + ## (prefixing scheme used in data.pointer values) defines a prefixing scheme used in data.pointer values, showing how abbreviated URIs using the scheme may be expanded into full URIs. [16.2.3. Using Abbreviated Pointers] + element prefixDef { + tei_model.pLike*, + tei_att.global.attributes, + tei_att.patternReplacement.attributes, + + ## supplies a name which functions as the prefix for an abbreviated pointing scheme such as a private URI scheme. The prefix constitutes the text preceding the first colon. + attribute ident { xsd:Name }, + empty + } +tei_listPrefixDef = + + ## (list of prefix definitions) contains a list of definitions of prefixing schemes used in data.pointer values, showing how abbreviated URIs using each scheme may be expanded into full URIs. [16.2.3. Using Abbreviated Pointers] + element listPrefixDef { + (tei_prefixDef | tei_listPrefixDef)+, + tei_att.global.attributes, + empty + } +tei_refState = + + ## (reference state) specifies one component of a canonical reference defined by the milestone method. [2.3.6.3. Milestone Method 2.3.6. The Reference System Declaration] + element refState { + empty, + tei_att.global.attributes, + tei_att.milestoneUnit.attributes, + tei_att.edition.attributes, + + ## specifies the fixed length of the reference component. + attribute length { xsd:nonNegativeInteger }?, + + ## (delimiter) supplies a delimiting string following the reference component. + attribute delim { xsd:string }?, + empty + } +tei_classDecl = + + ## (classification declarations) contains one or more taxonomies defining any classificatory codes used elsewhere in the text. [2.3.7. The Classification Declaration 2.3. The Encoding Description] + element classDecl { tei_taxonomy+, tei_att.global.attributes, empty } +tei_taxonomy = + + ## defines a typology either implicitly, by means of a bibliographic citation, or explicitly by a structured taxonomy. [2.3.7. The Classification Declaration] + element taxonomy { + ((tei_model.glossLike | tei_model.descLike)* + | (tei_category | tei_taxonomy)+ + | (tei_model.biblLike, (tei_category | tei_taxonomy)*)), + tei_att.global.attributes, + empty + } +tei_category = + + ## contains an individual descriptive category, possibly nested within a superordinate category, within a user-defined taxonomy. [2.3.7. The Classification Declaration] + element category { + ((tei_catDesc+ | (tei_model.descLike | tei_model.glossLike)*), + tei_category*), + tei_att.global.attributes, + empty + } +tei_catDesc = + + ## (category description) describes some category within a taxonomy or text typology, either in the form of a brief prose description or in terms of the situational parameters used by the TEI formal textDesc. [2.3.7. The Classification Declaration] + element catDesc { + (text | tei_model.limitedPhrase | tei_model.catDescPart)*, + tei_att.global.attributes, + empty + } +tei_geoDecl = + + ## (geographic coordinates declaration) documents the notation and the datum used for geographic coordinates expressed as content of the geo element elsewhere within the document. [2.3.8. The Geographic Coordinates Declaration] + element geoDecl { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## supplies a commonly used code name for the datum employed. + ## Suggested values include: 1] WGS84(World Geodetic System) ; 2] MGRS(Military Grid Reference System) ; 3] OSGB36(ordnance survey great britain) ; 4] ED50(European Datum coordinate system) + [ a:defaultValue = "WGS84" ] + attribute datum { + + ## (World Geodetic System) a pair of numbers to be interpreted as latitude followed by longitude according to the World Geodetic System. + "WGS84" + | + ## (Military Grid Reference System) the values supplied are geospatial entity object codes, based on + "MGRS" + | + ## (ordnance survey great britain) the value supplied is to be interpreted as a British National Grid Reference. + "OSGB36" + | + ## (European Datum coordinate system) the value supplied is to be interpreted as latitude followed by longitude according to the European Datum coordinate system. + "ED50" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_appInfo = + + ## (application information) records information about an application which has edited the TEI file. [2.3.10. The Application Information Element] + element appInfo { + tei_model.applicationLike+, tei_att.global.attributes, empty + } +tei_application = + + ## provides information about an application which has acted upon the document. [2.3.10. The Application Information Element] + element application { + (tei_model.labelLike+, (tei_model.ptrLike* | tei_model.pLike*)), + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.datable.attributes, + + ## supplies an identifier for the application, independent of its version number or display name. + attribute ident { xsd:Name }, + + ## supplies a version number for the application, independent of its identifier or display name. + attribute version { + xsd:token { + pattern = "[\d]+[a-z]*[\d]*(\.[\d]+[a-z]*[\d]*){0,3}" + } + }, + empty + } +tei_profileDesc = + + ## (text-profile description) provides a detailed description of non-bibliographic aspects of a text, specifically the languages and sublanguages used, the situation in which it was produced, the participants and their setting. [2.4. The Profile Description 2.1.1. The TEI Header and Its Components] + element profileDesc { + tei_model.profileDescPart*, tei_att.global.attributes, empty + } +tei_handNote = + + ## (note on hand) describes a particular style or hand distinguished within a manuscript. [10.7.2. Writing, Decoration, and Other Notations] + element handNote { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.handFeatures.attributes, + empty + } +tei_abstract = + + ## contains a summary or formal abstract prefixed to an existing source document by the encoder. [2.4.4. Abstracts] + element abstract { + (tei_model.pLike | tei_model.listLike)+, + tei_att.global.attributes, + tei_att.source.attributes, + empty + } +tei_creation = + + ## contains information about the creation of a text. [2.4.1. Creation 2.4. The Profile Description] + element creation { + (text | tei_model.limitedPhrase | tei_listChange)*, + tei_att.global.attributes, + tei_att.datable.attributes, + empty + } +tei_langUsage = + + ## (language usage) describes the languages, sublanguages, registers, dialects, etc. represented within a text. [2.4.2. Language Usage 2.4. The Profile Description 15.3.2. Declarable Elements] + element langUsage { + (tei_model.pLike+ | tei_language+), + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_language = + + ## characterizes a single language or sublanguage used within a text. [2.4.2. Language Usage] + element language { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + + ## (identifier) Supplies a language code constructed as defined in BCP 47 which is used to identify the language documented by this element, and which is referenced by the global xml:lang attribute. + attribute ident { + xsd:language + | ( + ## + "") + }, + + ## specifies the approximate percentage (by volume) of the text which uses this language. + attribute usage { xsd:nonNegativeInteger }?, + empty + } +tei_textClass = + + ## (text classification) groups information which describes the nature or topic of a text in terms of a standard classification scheme, thesaurus, etc. [2.4.3. The Text Classification] + element textClass { + (tei_classCode | tei_catRef | tei_keywords)*, + tei_att.global.attributes, + tei_att.declarable.attributes, + empty + } +tei_keywords = + + ## contains a list of keywords or phrases identifying the topic or nature of a text. [2.4.3. The Text Classification] + element keywords { + (tei_term+ | tei_list), + tei_att.global.attributes, + + ## identifies the controlled vocabulary within which the set of keywords concerned is defined identifies the classification scheme within which the set of categories concerned is defined, for example by a taxonomy element, or by some other resource. + attribute scheme { xsd:anyURI }?, + empty + } +tei_classCode = + + ## (classification code) contains the classification code used for this text in some standard classification system. [2.4.3. The Text Classification] + element classCode { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + + ## identifies the classification system in use, as defined by for example by a taxonomy element, or some other resource. + attribute scheme { xsd:anyURI }, + empty + } +tei_catRef = + + ## (category reference) specifies one or more defined categories within some taxonomy or text typology. [2.4.3. The Text Classification] + element catRef { + empty, + tei_att.global.attributes, + tei_att.pointing.attributes, + + ## identifies the classification scheme within which the set of categories concerned is defined, for example by a taxonomy element, or by some other resource. + attribute scheme { xsd:anyURI }?, + empty + } +tei_calendarDesc = + + ## (calendar description) contains a description of the calendar system used in any dating expression found in the text. [2.4. The Profile Description 2.4.5. Calendar Description] + element calendarDesc { + tei_calendar+, tei_att.global.attributes, empty + } +tei_calendar = + + ## describes a calendar or dating system used in a dating formula in the text. [2.4.5. Calendar Description] + element calendar { + tei_model.pLike+, + tei_att.global.attributes, + tei_att.pointing.attributes, + empty + } +tei_correspDesc = + + ## (correspondence + ## description) contains a description of the actions related to one act of correspondence. [2.4.6. Correspondence Description] + element correspDesc { + (tei_model.correspDescPart+ | tei_model.pLike+), + tei_att.declarable.attributes, + tei_att.canonical.attributes, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_correspAction = + + ## contains a structured description of the place, the name of a person/organization and the date related to the sending/receiving of a message or any other action related to the correspondence [2.4.6. Correspondence Description] + element correspAction { + (tei_model.correspActionPart+ | tei_model.pLike+), + tei_att.global.attributes, + tei_att.typed.attribute.subtype, + tei_att.sortable.attributes, + + ## describes the nature of the action. + ## Suggested values include: 1] sent; 2] received; 3] transmitted; 4] redirected; 5] forwarded + attribute type { + + ## information concerning the sending or dispatch of a message + "sent" + | + ## information concerning the receipt of a message + "received" + | + ## information concerning the transmission of a message, i.e. between the dispatch and the next receipt, redirect or forwarding + "transmitted" + | + ## information concerning the redirection of an unread message. + "redirected" + | + ## information concerning the forwarding of a message. + "forwarded" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_correspContext = + + ## (correspondence context) provides references to preceding or following correspondence related to this piece of correspondence. [2.4.6. Correspondence Description] + element correspContext { + tei_model.correspContextPart+, tei_att.global.attributes, empty + } +tei_xenoData = + + ## (outside metadata) provides a container element into which metadata in non-TEI formats may be placed. [2.5. Non-TEI Metadata] + element xenoData { + (text | tei_macro.anyXML), + tei_att.global.attributes, + tei_att.declarable.attributes, + tei_att.typed.attributes, + empty + } +tei_revisionDesc = + + ## (revision description) summarizes the revision history for a file. [2.6. The Revision Description 2.1.1. The TEI Header and Its Components] + element revisionDesc { + (tei_list | tei_listChange | tei_change+), + tei_att.global.attributes, + tei_att.docStatus.attributes, + empty + } +tei_change = + + ## documents a change or set of changes made during the production of a source document, or during the revision of an electronic file. [2.6. The Revision Description 2.4.1. Creation 11.7. Identifying Changes and Revisions] + element change { + tei_macro.specialPara, + tei_att.ascribed.attributes, + tei_att.datable.attributes, + tei_att.docStatus.attributes, + tei_att.global.attributes, + tei_att.typed.attributes, + + ## points to one or more elements that belong to this change. + attribute target { + list { xsd:anyURI+ } + }?, + empty + } +tei_typeNote = + + ## describes a particular font or other significant typographic feature distinguished within the description of a printed resource. [10.7.2. Writing, Decoration, and Other Notations] + element typeNote { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.handFeatures.attributes, + empty + } +tei_scriptNote = + + ## describes a particular script distinguished within the description of a manuscript or similar resource. [10.7.2. Writing, Decoration, and Other Notations] + element scriptNote { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.handFeatures.attributes, + empty + } +tei_listChange = + + ## groups a number of change descriptions associated with either the creation of a source text or the revision of an encoded text. [2.6. The Revision Description 11.7. Identifying Changes and Revisions] + element listChange { + (tei_listChange | tei_change)+, + tei_att.global.attributes, + tei_att.sortable.attributes, + tei_att.typed.attributes, + + ## indicates whether the ordering of its child change elements is to be considered significant or not + [ a:defaultValue = "true" ] attribute ordered { xsd:boolean }?, + empty + } +tei_TEI = + + ## (TEI document) contains a single TEI-conformant document, combining a single TEI header with one or more members of the model.resourceLike class. Multiple TEI elements may be combined to form a teiCorpus element. [4. Default Text Structure 15.1. Varieties of Composite Text] + element TEI { + (tei_teiHeader, tei_model.resourceLike+) + >> sch:ns [ prefix = "tei" uri = "http://www.tei-c.org/ns/1.0" ] + >> sch:ns [ prefix = "xs" uri = "http://www.w3.org/2001/XMLSchema" ] + >> sch:ns [ + prefix = "rng" + uri = "http://relaxng.org/ns/structure/1.0" + ], + tei_att.global.attributes, + tei_att.typed.attributes, + + ## specifies the major version number of the TEI Guidelines against which this document is valid. + attribute version { + xsd:token { pattern = "[\d]+(\.[\d]+){0,2}" } + }?, + empty + } +tei_text = + + ## contains a single text of any kind, whether unitary or composite, for example a poem or drama, a collection of essays, a novel, a dictionary, or a corpus sample. [4. Default Text Structure 15.1. Varieties of Composite Text] + element text { + (tei_model.global*, + (tei_front, tei_model.global*)?, + (tei_body | tei_group), + tei_model.global*, + (tei_back, tei_model.global*)?), + tei_att.global.attributes, + tei_att.declaring.attributes, + tei_att.typed.attributes, + tei_att.written.attributes, + empty + } +tei_body = + + ## (text body) contains the whole body of a single unitary text, excluding any front or back matter. [4. Default Text Structure] + element body { + (tei_model.global*, + (tei_model.divTop, (tei_model.global | tei_model.divTop)*)?, + (tei_model.divGenLike, + (tei_model.global | tei_model.divGenLike)*)?, + ((tei_model.divLike, (tei_model.global | tei_model.divGenLike)*)+ + | (tei_model.div1Like, + (tei_model.global | tei_model.divGenLike)*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.divLike, + (tei_model.global | tei_model.divGenLike)*)+ + | (tei_model.div1Like, + (tei_model.global | tei_model.divGenLike)*)+)?)), + (tei_model.divBottom, tei_model.global*)*), + tei_att.global.attributes, + tei_att.declaring.attributes, + empty + } +tei_group = + + ## contains the body of a composite text, grouping together a sequence of distinct texts (or groups of such texts) which are regarded as a unit for some purpose, for example the collected works of an author, a sequence of prose essays, etc. [4. Default Text Structure 4.3.1. Grouped Texts 15.1. Varieties of Composite Text] + element group { + ((tei_model.divTop | tei_model.global)*, + ((tei_text | tei_group), + (tei_text | tei_group | tei_model.global)*), + tei_model.divBottom*), + tei_att.global.attributes, + tei_att.declaring.attributes, + tei_att.typed.attributes, + empty + } +tei_floatingText = + + ## contains a single text of any kind, whether unitary or composite, which interrupts the text containing it at any point and after which the surrounding text resumes. [4.3.2. Floating Texts] + element floatingText { + (tei_model.global*, + (tei_front, tei_model.global*)?, + (tei_body | tei_group), + tei_model.global*, + (tei_back, tei_model.global*)?), + tei_att.global.attributes, + tei_att.declaring.attributes, + tei_att.typed.attributes, + empty + } +tei_div = + + ## (text division) contains a subdivision of the front, body, or back of a text. [4.1. Divisions of the Body] + element div { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.divLike | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.divLike | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?) + >> sch:pattern [ + id = "app-div-abstractModel-structure-l-constraint-13" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:div" + "\x{a}" ~ + " " + sch:report [ + test = "ancestor::tei:l" + "\x{a}" ~ + " Abstract model violation: Lines may not contain higher-level structural elements such as div.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "app-div-abstractModel-structure-p-constraint-14" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:div" + "\x{a}" ~ + " " + sch:report [ + test = + "ancestor::tei:p or ancestor::tei:ab and not(ancestor::tei:floatingText)" + "\x{a}" ~ + " Abstract model violation: p and ab may not contain higher-level structural elements such as div.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + tei_att.written.attributes, + empty + } +tei_div1 = + + ## (level-1 text division) contains a first-level subdivision of the front, body, or back of a text. [4.1.2. Numbered Divisions] + element div1 { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.div2Like | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.div2Like | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_div2 = + + ## (level-2 text division) contains a second-level subdivision of the front, body, or back of a text. [4.1.2. Numbered Divisions] + element div2 { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.div3Like | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.div3Like | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_div3 = + + ## (level-3 text division) contains a third-level subdivision of the front, body, or back of a text. [4.1.2. Numbered Divisions] + element div3 { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.div4Like | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.div4Like | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_div4 = + + ## (level-4 text division) contains a fourth-level subdivision of the front, body, or back of a text. [4.1.2. Numbered Divisions] + element div4 { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.div5Like | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.div5Like | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_div5 = + + ## (level-5 text division) contains a fifth-level subdivision of the front, body, or back of a text. [4.1.2. Numbered Divisions] + element div5 { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.div6Like | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.div6Like | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_div6 = + + ## (level-6 text division) contains a sixth-level subdivision of the front, body, or back of a text. [4.1.2. Numbered Divisions] + element div6 { + ((tei_model.divTop | tei_model.global)*, + ((((tei_model.div7Like | tei_model.divGenLike), tei_model.global*)+ + | ((tei_model.common, tei_model.global*)+, + ((tei_model.div7Like | tei_model.divGenLike), + tei_model.global*)*)), + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_div7 = + + ## (level-7 text division) contains the smallest possible subdivision of the front, body or back of a text, larger than a paragraph. [4.1.2. Numbered Divisions] + element div7 { + ((tei_model.divTop | tei_model.global)*, + ((tei_model.common, tei_model.global*)+, + (tei_model.divBottom, tei_model.global*)*)?), + tei_att.global.attributes, + tei_att.divLike.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_trailer = + + ## contains a closing title or footer appearing at the end of a division of a text. [4.2.4. Content of Textual Divisions 4.2. Elements Common to All Divisions] + element trailer { + (text + | tei_lg + | tei_model.gLike + | tei_model.phrase + | tei_model.inter + | tei_model.lLike + | tei_model.global)*, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_byline = + + ## contains the primary statement of responsibility given for a work on its title page or at the head or end of the work. [4.2.2. Openers and Closers 4.5. Front Matter] + element byline { + (text + | tei_model.gLike + | tei_model.phrase + | tei_docAuthor + | tei_model.global)*, + tei_att.global.attributes, + empty + } +tei_dateline = + + ## contains a brief description of the place, date, time, etc. of production of a letter, newspaper story, or other work, prefixed or suffixed to it as a kind of heading or trailer. [4.2.2. Openers and Closers] + element dateline { + (text + | tei_model.gLike + | tei_model.phrase + | tei_model.global + | tei_docDate)*, + tei_att.global.attributes, + empty + } +tei_argument = + + ## contains a formal list or prose description of the topics addressed by a subdivision of a text. [4.2. Elements Common to All Divisions 4.6. Title Pages] + element argument { + ((tei_model.global | tei_model.headLike)*, + (tei_model.common, tei_model.global*)+), + tei_att.global.attributes, + empty + } +tei_epigraph = + + ## contains a quotation, anonymous or attributed, appearing at the start or end of a section or on a title page. [4.2.3. Arguments, Epigraphs, and Postscripts 4.2. Elements Common to All Divisions 4.6. Title Pages] + element epigraph { + (tei_model.common | tei_model.global)*, + tei_att.global.attributes, + empty + } +tei_opener = + + ## groups together dateline, byline, salutation, and similar phrases appearing as a preliminary group at the start of a division, especially of a letter. [4.2. Elements Common to All Divisions] + element opener { + (text + | tei_model.gLike + | tei_model.phrase + | tei_argument + | tei_byline + | tei_dateline + | tei_epigraph + | tei_salute + | tei_signed + | tei_model.global)*, + tei_att.global.attributes, + tei_att.written.attributes, + empty + } +tei_closer = + + ## groups together salutations, datelines, and similar phrases appearing as a final group at the end of a division, especially of a letter. [4.2.2. Openers and Closers 4.2. Elements Common to All Divisions] + element closer { + (text + | tei_model.gLike + | tei_signed + | tei_dateline + | tei_salute + | tei_model.phrase + | tei_model.global)*, + tei_att.global.attributes, + tei_att.written.attributes, + empty + } +tei_salute = + + ## (salutation) contains a salutation or greeting prefixed to a foreword, dedicatory epistle, or other division of a text, or the salutation in the closing of a letter, preface, etc. [4.2.2. Openers and Closers] + element salute { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.written.attributes, + empty + } +tei_signed = + + ## (signature) contains the closing salutation, etc., appended to a foreword, dedicatory epistle, or other division of a text. [4.2.2. Openers and Closers] + element signed { + tei_macro.paraContent, tei_att.global.attributes, empty + } +tei_postscript = + + ## contains a postscript, e.g. to a letter. [4.2. Elements Common to All Divisions] + element postscript { + ((tei_model.global | tei_model.divTopPart)*, + tei_model.common, + (tei_model.global | tei_model.common)*, + (tei_model.divBottomPart, tei_model.global*)*), + tei_att.global.attributes, + empty + } +tei_titlePage = + + ## (title page) contains the title page of a text, appearing within the front or back matter. [4.6. Title Pages] + element titlePage { + (tei_model.global*, + tei_model.titlepagePart, + (tei_model.titlepagePart | tei_model.global)*), + tei_att.global.attributes, + + ## classifies the title page according to any convenient typology. + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_docTitle = + + ## (document title) contains the title of a document, including all its constituents, as given on a title page. [4.6. Title Pages] + element docTitle { + (tei_model.global*, (tei_titlePart, tei_model.global*)+), + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_titlePart = + + ## contains a subsection or division of the title of a work, as indicated on a title page. [4.6. Title Pages] + element titlePart { + tei_macro.paraContent, + tei_att.global.attributes, + + ## specifies the role of this subdivision of the title. + ## Suggested values include: 1] main; 2] sub(subordinate) ; 3] alt(alternate) ; 4] short; 5] desc(descriptive) + [ a:defaultValue = "main" ] + attribute type { + + ## main title of the work + "main" + | + ## (subordinate) subtitle of the work + "sub" + | + ## (alternate) alternative title of the work + "alt" + | + ## abbreviated form of title + "short" + | + ## (descriptive) descriptive paraphrase of the work + "desc" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_docAuthor = + + ## (document author) contains the name of the author of the document, as given on the title page (often but not always contained in a byline). [4.6. Title Pages] + element docAuthor { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_imprimatur = + + ## contains a formal statement authorizing the publication of a work, sometimes required to appear on a title page or its verso. [4.6. Title Pages] + element imprimatur { + tei_macro.paraContent, tei_att.global.attributes, empty + } +tei_docEdition = + + ## (document edition) contains an edition statement as presented on a title page of a document. [4.6. Title Pages] + element docEdition { + tei_macro.paraContent, tei_att.global.attributes, empty + } +tei_docImprint = + + ## (document imprint) contains the imprint statement (place and date of publication, publisher name), as given (usually) at the foot of a title page. [4.6. Title Pages] + element docImprint { + (text + | tei_model.gLike + | tei_model.phrase + | tei_pubPlace + | tei_docDate + | tei_publisher + | tei_model.global)*, + tei_att.global.attributes, + empty + } +tei_docDate = + + ## (document date) contains the date of a document, as given on a title page or in a dateline. [4.6. Title Pages] + element docDate { + tei_macro.phraseSeq, + tei_att.global.attributes, + + ## gives the value of the date in standard form, i.e. YYYY-MM-DD. + attribute when { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }?, + empty + } +tei_front = + + ## (front matter) contains any prefatory matter (headers, abstracts, title page, prefaces, dedications, etc.) found at the start of a document, before the main body. [4.6. Title Pages 4. Default Text Structure] + element front { + ((tei_model.frontPart + | tei_model.pLike + | tei_model.pLike.front + | tei_model.global)*, + (((tei_model.div1Like, + (tei_model.div1Like | tei_model.frontPart | tei_model.global)*) + | (tei_model.divLike, + (tei_model.divLike + | tei_model.frontPart + | tei_model.global)*)), + (tei_model.divBottom, + (tei_model.divBottom | tei_model.global)*)?)?), + tei_att.global.attributes, + tei_att.declaring.attributes, + empty + } +tei_back = + + ## (back matter) contains any appendixes, etc. following the main part of a text. [4.7. Back Matter 4. Default Text Structure] + element back { + ((tei_model.frontPart + | tei_model.pLike.front + | tei_model.pLike + | tei_model.listLike + | tei_model.global)*, + ((tei_model.div1Like, + (tei_model.frontPart | tei_model.div1Like | tei_model.global)*) + | (tei_model.divLike, + (tei_model.frontPart + | tei_model.divLike + | tei_model.global)*))?, + (tei_model.divBottomPart, + (tei_model.divBottomPart | tei_model.global)*)?), + tei_att.global.attributes, + tei_att.declaring.attributes, + empty + } +tei_att.global.facs.attributes = tei_att.global.facs.attribute.facs +tei_att.global.facs.attribute.facs = + + ## (facsimile) points to all or part of an image which corresponds with the content of the element. + attribute facs { + list { xsd:anyURI+ } + }? +tei_att.global.change.attributes = + tei_att.global.change.attribute.change +tei_att.global.change.attribute.change = + + ## points to one or more change elements documenting a state or revision campaign to which the element bearing this attribute and its children have been assigned by the encoder. + attribute change { + list { xsd:anyURI+ } + }? +tei_att.coordinated.attributes = + tei_att.coordinated.attribute.start, + tei_att.coordinated.attribute.ulx, + tei_att.coordinated.attribute.uly, + tei_att.coordinated.attribute.lrx, + tei_att.coordinated.attribute.lry, + tei_att.coordinated.attribute.points +tei_att.coordinated.attribute.start = + + ## indicates the element within a transcription of the text containing at least the start of the writing represented by this zone or surface. + attribute start { xsd:anyURI }? +tei_att.coordinated.attribute.ulx = + + ## gives the x coordinate value for the upper left corner of a rectangular space. + attribute ulx { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.coordinated.attribute.uly = + + ## gives the y coordinate value for the upper left corner of a rectangular space. + attribute uly { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.coordinated.attribute.lrx = + + ## gives the x coordinate value for the lower right corner of a rectangular space. + attribute lrx { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.coordinated.attribute.lry = + + ## gives the y coordinate value for the lower right corner of a rectangular space. + attribute lry { + xsd:double + | xsd:token { pattern = "(\-?[\d]+/\-?[\d]+)" } + | xsd:decimal + }? +tei_att.coordinated.attribute.points = + + ## identifies a two dimensional area within the bounding box specified by the other attributes by means of a series of pairs of numbers, each of which gives the x,y coordinates of a point on a line enclosing the area. + attribute points { + list { + xsd:token { pattern = "(\-?[0-9]+\.?[0-9]*,\-?[0-9]+\.?[0-9]*)" }, + xsd:token { pattern = "(\-?[0-9]+\.?[0-9]*,\-?[0-9]+\.?[0-9]*)" }, + xsd:token { pattern = "(\-?[0-9]+\.?[0-9]*,\-?[0-9]+\.?[0-9]*)" }, + xsd:token { pattern = "(\-?[0-9]+\.?[0-9]*,\-?[0-9]+\.?[0-9]*)" }* + } + }? +tei_facsimile = + + ## contains a representation of some written source in the form of a set of images rather than as transcribed or encoded text. [11.1. Digital Facsimiles] + element facsimile { + (tei_front?, + (tei_model.graphicLike | tei_surface | tei_surfaceGrp)+, + tei_back?), + tei_att.global.attributes, + tei_att.declaring.attributes, + empty + } +tei_sourceDoc = + + ## contains a transcription or other representation of a single source document potentially forming part of a dossier génétique or collection of sources. [11.1. Digital Facsimiles 11.2.2. Embedded Transcription] + element sourceDoc { + (tei_model.global + | tei_model.graphicLike + | tei_surface + | tei_surfaceGrp)+, + tei_att.global.attributes, + tei_att.declaring.attributes, + empty + } +tei_surface = + + ## defines a written surface as a two-dimensional coordinate space, optionally grouping one or more graphic representations of that space, zones of interest within that space, and transcriptions of the writing within them. [11.1. Digital Facsimiles 11.2.2. Embedded Transcription] + element surface { + ((tei_model.global | tei_model.labelLike | tei_model.graphicLike)*, + ((tei_zone | tei_line | tei_surface | tei_surfaceGrp), + tei_model.global*)*), + tei_att.global.attributes, + tei_att.coordinated.attributes, + tei_att.declaring.attributes, + tei_att.typed.attributes, + + ## describes the method by which this surface is or was connected to the main surface + ## Sample values include: 1] glued; 2] pinned; 3] sewn + attribute attachment { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## indicates whether the surface is attached and folded in such a way as to provide two writing surfaces + attribute flipping { xsd:boolean }?, + empty + } +tei_surfaceGrp = + + ## defines any kind of useful grouping of written surfaces, for example the recto and verso of a single leaf, which the encoder wishes to treat as a single unit. [11.1. Digital Facsimiles] + element surfaceGrp { + (tei_model.global | tei_surface | tei_surfaceGrp)+, + tei_att.global.attributes, + tei_att.declaring.attributes, + tei_att.typed.attributes, + empty + } +tei_zone = + + ## defines any two-dimensional area within a surface element. [11.1. Digital Facsimiles 11.2.2. Embedded Transcription] + element zone { + (text + | tei_model.graphicLike + | tei_model.global + | tei_surface + | tei_model.linePart)*, + tei_att.global.attributes, + tei_att.coordinated.attributes, + tei_att.typed.attributes, + tei_att.written.attributes, + + ## indicates the amount by which this zone has been rotated clockwise, with respect to the normal orientation of the parent surface element as implied by the dimensions given in the msDesc element or by the coordinates of the surface itself. The orientation is expressed in arc degrees. + [ a:defaultValue = "0" ] + attribute rotate { xsd:nonNegativeInteger }?, + empty + } +tei_addSpan = + + ## (added span of text) marks the beginning of a longer sequence of text added by an author, scribe, annotator or corrector (see also add). [11.3.1.4. Additions and Deletions] + element addSpan { + empty + >> sch:pattern [ + id = "app-addSpan-spanTo-constraint-9" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:addSpan" + "\x{a}" ~ + " " + sch:assert [ + test = "@spanTo" + "The @spanTo attribute of " + sch:name [ ] + " is required." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "app-addSpan-spanTo_fr-constraint-10" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:addSpan" + "\x{a}" ~ + " " + sch:assert [ + test = "@spanTo" + "L'attribut spanTo est requis." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.transcriptional.attributes, + tei_att.placement.attributes, + tei_att.typed.attributes, + tei_att.spanning.attributes, + empty + } +tei_damage = + + ## contains an area of damage to the text witness. [11.3.3.1. Damage, Illegibility, and Supplied Text] + element damage { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.damaged.attributes, + empty + } +tei_damageSpan = + + ## (damaged span of text) marks the beginning of a longer sequence of text which is damaged in some way but still legible. [11.3.3.1. Damage, Illegibility, and Supplied Text] + element damageSpan { + empty + >> sch:pattern [ + id = "app-damageSpan-spanTo-constraint-11" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:damageSpan" + "\x{a}" ~ + " " + sch:assert [ + test = "@spanTo" + "\x{a}" ~ + "The @spanTo attribute of " + sch:name [ ] + " is required." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "app-damageSpan-spanTo_fr-constraint-12" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:damageSpan" + "\x{a}" ~ + " " + sch:assert [ + test = "@spanTo" + "L'attribut spanTo est requis." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.damaged.attributes, + tei_att.typed.attributes, + tei_att.spanning.attributes, + empty + } +tei_delSpan = + + ## (deleted span of text) marks the beginning of a longer sequence of text deleted, marked as deleted, or otherwise signaled as superfluous or spurious by an author, scribe, annotator, or corrector. [11.3.1.4. Additions and Deletions] + element delSpan { + empty + >> sch:pattern [ + id = "app-delSpan-spanTo-constraint-13" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:delSpan" + "\x{a}" ~ + " " + sch:assert [ + test = "@spanTo" + "The @spanTo attribute of " + sch:name [ ] + " is required." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "app-delSpan-spanTo_fr-constraint-14" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:delSpan" + "\x{a}" ~ + " " + sch:assert [ + test = "@spanTo" + "L'attribut spanTo est requis." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.transcriptional.attributes, + tei_att.typed.attributes, + tei_att.spanning.attributes, + empty + } +tei_ex = + + ## (editorial expansion) contains a sequence of letters added by an editor or transcriber when expanding an abbreviation. [11.3.1.2. Abbreviation and Expansion] + element ex { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.editLike.attributes, + empty + } +tei_fw = + + ## (forme work) contains a running head (e.g. a header, footer), catchword, or similar material appearing on the current page. [11.6. Headers, Footers, and Similar Matter] + element fw { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.placement.attributes, + tei_att.written.attributes, + + ## classifies the material encoded according to some useful typology. + ## Sample values include: 1] header; 2] footer; 3] pageNum(page number) ; 4] lineNum(line number) ; 5] sig(signature) ; 6] catch(catchword) + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_handNotes = + + ## contains one or more handNote elements documenting the different hands identified within the source texts. [11.3.2.1. Document Hands] + element handNotes { tei_handNote+, tei_att.global.attributes, empty } +tei_handShift = + + ## marks the beginning of a sequence of text written in a new hand, or the beginning of a scribal stint. [11.3.2.1. Document Hands] + element handShift { + empty, + tei_att.global.attributes, + tei_att.handFeatures.attributes, + tei_att.source.attributes, + + ## indicates a handNote element describing the hand concerned. + attribute new { xsd:anyURI }?, + empty + } +tei_am = + + ## (abbreviation marker) contains a sequence of letters or signs present in an abbreviation which are omitted or replaced in the expanded form of the abbreviation. [11.3.1.2. Abbreviation and Expansion] + element am { + (text | tei_model.gLike | tei_model.pPart.transcriptional)*, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.editLike.attributes, + empty + } +tei_restore = + + ## indicates restoration of text to an earlier state by cancellation of an editorial or authorial marking or instruction. [11.3.1.6. Cancellation of Deletions and Other Markings] + element restore { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.transcriptional.attributes, + tei_att.typed.attributes, + empty + } +tei_space = + + ## indicates the location of a significant space in the text. [11.5.1. Space] + element space { + (tei_model.descLike | tei_model.certLike)*, + tei_att.global.attribute.xmlid, + tei_att.global.attribute.n, + tei_att.global.attribute.xmllang, + tei_att.global.attribute.xmlbase, + tei_att.global.attribute.xmlspace, + tei_att.global.rendition.attribute.rend, + tei_att.global.rendition.attribute.style, + tei_att.global.rendition.attribute.rendition, + tei_att.global.linking.attribute.corresp, + tei_att.global.linking.attribute.synch, + tei_att.global.linking.attribute.sameAs, + tei_att.global.linking.attribute.copyOf, + tei_att.global.linking.attribute.next, + tei_att.global.linking.attribute.prev, + tei_att.global.linking.attribute.exclude, + tei_att.global.linking.attribute.select, + tei_att.global.facs.attribute.facs, + tei_att.global.change.attribute.change, + tei_att.global.responsibility.attribute.cert, + tei_att.typed.attributes, + tei_att.dimensions.attributes, + tei_att.source.attributes, + + ## (responsible party) (responsible party) indicates the individual responsible for identifying and measuring the space + attribute resp { + list { xsd:anyURI+ } + }?, + + ## (dimension) indicates whether the space is horizontal or vertical. + attribute dim { + + ## the space is horizontal. + "horizontal" + | + ## the space is vertical. + "vertical" + }?, + empty + } +tei_subst = + + ## (substitution) groups one or more deletions with one or more additions when the combination is to be regarded as a single intervention in the text. [11.3.1.5. Substitutions] + element subst { + ((tei_add | tei_del | tei_model.milestoneLike)+) + >> sch:pattern [ + id = "app-subst-substContents1-constraint-15" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:subst" + "\x{a}" ~ + " " + sch:assert [ + test = "child::tei:add and child::tei:del" + "\x{a}" ~ + " " + sch:name [ ] + " must have at least one child add and at least one child del" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.transcriptional.attributes, + empty + } +tei_substJoin = + + ## (substitution join) identifies a series of possibly fragmented additions, deletions or other revisions on a manuscript that combine to make up a single intervention in the text [11.3.1.5. Substitutions] + element substJoin { + (tei_model.descLike | tei_model.certLike)*, + tei_att.global.attributes, + tei_att.pointing.attributes, + tei_att.transcriptional.attributes, + empty + } +tei_supplied = + + ## signifies text supplied by the transcriber or editor for any reason; for example because the original cannot be read due to physical damage, or because of an obvious omission by the author or scribe. [11.3.3.1. Damage, Illegibility, and Supplied Text] + element supplied { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.editLike.attributes, + + ## one or more words indicating why the text has had to be supplied, e.g. overbinding, faded-ink, lost-folio, omitted-in-original. + attribute reason { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + empty + } +tei_surplus = + + ## marks text present in the source which the editor believes to be superfluous or redundant. [11.3.3.1. Damage, Illegibility, and Supplied Text] + element surplus { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.editLike.attributes, + + ## one or more words indicating why this text is believed to be superfluous, e.g. repeated, interpolated etc. + attribute reason { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + empty + } +tei_secl = + + ## (secluded text) Secluded. Marks text present in the source which the editor believes to be genuine but out of its original place (which is unknown). [11.3.1.7. Text Omitted from or Supplied in the Transcription] + element secl { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.editLike.attributes, + + ## one or more words indicating why this text has been secluded, e.g. interpolated etc. + attribute reason { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + empty + } +tei_line = + + ## contains the transcription of a topographic line in the source document [11.2.2. Embedded Transcription] + element line { + (text | tei_model.global | tei_model.gLike | tei_model.linePart)*, + tei_att.typed.attributes, + tei_att.global.attributes, + tei_att.coordinated.attributes, + tei_att.written.attributes, + empty + } +tei_listTranspose = + + ## supplies a list of transpositions, each of which is indicated at some point in a document typically by means of metamarks. [11.3.4.5. Transpositions] + element listTranspose { + tei_transpose+, tei_att.global.attributes, empty + } +tei_metamark = + + ## contains or describes any kind of graphic or written signal within a document the function of which is to determine how it should be read rather than forming part of the actual content of the document. [11.3.4.2. Metamarks] + element metamark { + tei_macro.specialPara, + tei_att.spanning.attributes, + tei_att.placement.attributes, + tei_att.global.attributes, + + ## describes the function (for example status, insertion, deletion, transposition) of the metamark. + attribute function { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## identifies one or more elements to which the metamark applies. + attribute target { + list { xsd:anyURI+ } + }?, + empty + } +tei_mod = + + ## represents any kind of modification identified within a single document. [11.3.4.1. Generic Modification] + element mod { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.transcriptional.attributes, + tei_att.typed.attributes, + tei_att.spanning.attributes, + empty + } +tei_redo = + + ## indicates one or more cancelled interventions in a document which have subsequently been marked as reaffirmed or repeated. [11.3.4.4. Confirmation, Cancellation, and Reinstatement of Modifications] + element redo { + empty, + tei_att.global.attributes, + tei_att.spanning.attributes, + tei_att.transcriptional.attributes, + + ## points to one or more elements representing the interventions which are being reasserted. + attribute target { + list { xsd:anyURI+ } + }?, + empty + } +tei_retrace = + + ## contains a sequence of writing which has been retraced, for example by over-inking, to clarify or fix it. [11.3.4.3. Fixation and Clarification] + element retrace { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.spanning.attributes, + tei_att.transcriptional.attributes, + empty + } +tei_transpose = + + ## describes a single textual transposition as an ordered list of at least two pointers specifying the order in which the elements indicated should be re-combined. [11.3.4.5. Transpositions] + element transpose { + (tei_ptr, tei_ptr+), tei_att.global.attributes, empty + } +tei_undo = + + ## indicates one or more marked-up interventions in a document which have subsequently been marked for cancellation. [11.3.4.4. Confirmation, Cancellation, and Reinstatement of Modifications] + element undo { + empty, + tei_att.global.attributes, + tei_att.spanning.attributes, + tei_att.transcriptional.attributes, + + ## points to one or more elements representing the interventions which are to be reverted or undone. + attribute target { + list { xsd:anyURI+ } + }?, + empty + } +tei_att.metrical.attributes = + tei_att.metrical.attribute.met, + tei_att.metrical.attribute.real, + tei_att.metrical.attribute.rhyme +tei_att.metrical.attribute.met = + + ## (metrical structure, conventional) contains a user-specified encoding for the conventional metrical structure of the element. + attribute met { xsd:token }? +tei_att.metrical.attribute.real = + + ## (metrical structure, realized) contains a user-specified encoding for the actual realization of the conventional metrical structure applicable to the element. + attribute real { xsd:token }? +tei_att.metrical.attribute.rhyme = + + ## (rhyme scheme) specifies the rhyme scheme applicable to a group of verse lines. + attribute rhyme { xsd:token }? +tei_att.enjamb.attributes = tei_att.enjamb.attribute.enjamb +tei_att.enjamb.attribute.enjamb = + + ## (enjambement) indicates that the end of a verse line is marked by enjambement. + ## Sample values include: 1] no; 2] yes; 3] weak; 4] strong + attribute enjamb { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_metDecl = + + ## (metrical notation declaration) documents the notation employed to represent a metrical pattern when this is specified as the value of a met, real, or rhyme attribute on any structural element of a metrical text (e.g. lg, l, or seg). [6.6. Metrical Notation Declaration 6.4. Rhyme and Metrical Analysis] + element metDecl { + ((tei_model.pLike | tei_model.noteLike)+ | tei_metSym+), + tei_att.global.attributes, + tei_att.declarable.attributes, + + ## indicates whether the notation conveys the abstract metrical form, its actual prosodic realization, or the rhyme scheme, or some combination thereof. + [ a:defaultValue = "met real" ] + attribute type { + list { + ( + ## (met attribute) declaration applies to the abstract metrical form recorded on the met attribute + "met" + | + ## (real attribute) declaration applies to the actual realization of the conventional metrical structure recorded on the real attribute + "real" + | + ## declaration applies to the rhyme scheme recorded on the rhyme attribute + "rhyme"), + ( + ## (met attribute) declaration applies to the abstract metrical form recorded on the met attribute + "met" + | + ## (real attribute) declaration applies to the actual realization of the conventional metrical structure recorded on the real attribute + "real" + | + ## declaration applies to the rhyme scheme recorded on the rhyme attribute + "rhyme")?, + ( + ## (met attribute) declaration applies to the abstract metrical form recorded on the met attribute + "met" + | + ## (real attribute) declaration applies to the actual realization of the conventional metrical structure recorded on the real attribute + "real" + | + ## declaration applies to the rhyme scheme recorded on the rhyme attribute + "rhyme")? + } + }?, + + ## (regular expression pattern) specifies a regular expression defining any value that is legal for this notation. + attribute pattern { xsd:token }?, + empty + } +tei_metSym = + + ## (metrical notation symbol) documents the intended significance of a particular character or character sequence within a metrical notation, either explicitly or in terms of other symbol elements in the same metDecl. [6.6. Metrical Notation Declaration] + element metSym { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + + ## specifies the character or character sequence being documented. + attribute value { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }, + + ## specifies whether the symbol is defined in terms of other symbols (terminal is set to false) or in prose (terminal is set to true). + [ a:defaultValue = "true" ] attribute terminal { xsd:boolean }?, + empty + } +tei_caesura = + + ## marks the point at which a metrical line may be divided. [6.2. Components of the Verse Line] + element caesura { empty, tei_att.global.attributes, empty } +tei_rhyme = + + ## marks the rhyming part of a metrical line. [6.5. Rhyme] + element rhyme { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.typed.attributes, + + ## provides a label (usually a single letter) to identify which part of a rhyme scheme this rhyming string instantiates. + attribute label { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_att.msExcerpt.attributes = tei_att.msExcerpt.attribute.defective +tei_att.msExcerpt.attribute.defective = + + ## indicates whether the passage being quoted is defective, i.e. incomplete through loss or damage. + [ a:defaultValue = "false" ] + attribute defective { + xsd:boolean + | ( + ## + "unknown" + | + ## + "inapplicable") + }? +tei_msDesc = + + ## (manuscript description) contains a description of a single identifiable manuscript or other text-bearing object. [10.1. Overview] + element msDesc { + (tei_msIdentifier, + tei_model.headLike*, + (tei_model.pLike+ + | (tei_msContents?, + tei_physDesc?, + tei_history?, + tei_additional?, + (tei_msPart* | tei_msFrag*)))), + tei_att.global.attributes, + tei_att.sortable.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + empty + } +tei_catchwords = + + ## describes the system used to ensure correct ordering of the quires making up a codex or incunable, typically by means of annotations at the foot of the page. [10.3.7. Catchwords, Signatures, Secundo Folio] + element catchwords { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_dimensions = + + ## contains a dimensional specification. [10.3.4. Dimensions] + element dimensions { + ((tei_dim | tei_model.dimLike)*) + >> sch:pattern [ + id = "app-dimensions-duplicateDim-constraint-15" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:dimensions" + "\x{a}" ~ + " " + sch:report [ + test = "count(tei:width)> 1" + "\x{a}" ~ + "The element " + sch:name [ ] + " may appear once only\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "app-dimensions-duplicateDim-constraint-16" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:dimensions" + "\x{a}" ~ + " " + sch:report [ + test = "count(tei:height)> 1" + "\x{a}" ~ + "The element " + sch:name [ ] + " may appear once only\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "app-dimensions-duplicateDim-constraint-17" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:dimensions" + "\x{a}" ~ + " " + sch:report [ + test = "count(tei:depth)> 1" + "\x{a}" ~ + "The element " + sch:name [ ] + " may appear once only\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.dimensions.attributes, + + ## indicates which aspect of the object is being measured. + ## Sample values include: 1] leaves; 2] ruled; 3] pricked; 4] written; 5] miniatures; 6] binding; 7] box + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_dim = + + ## contains any single measurement forming part of a dimensional specification of some sort. [10.3.4. Dimensions] + element dim { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.dimensions.attributes, + empty + } +tei_height = + + ## contains a measurement measured along the axis at right angles to the bottom of the written surface, i.e. parallel to the spine for a codex or book. [10.3.4. Dimensions] + element height { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.dimensions.attributes, + empty + } +tei_depth = + + ## contains a measurement measured across the spine of a book or codex, or (for other text-bearing objects) perpendicular to the measurement given by the width element. [10.3.4. Dimensions] + element depth { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.dimensions.attributes, + empty + } +tei_width = + + ## contains a measurement measured along the axis parallel to the bottom of the written surface, i.e. perpendicular to the spine of a book or codex. [10.3.4. Dimensions] + element width { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.dimensions.attributes, + empty + } +tei_heraldry = + + ## contains a heraldic formula or phrase, typically found as part of a blazon, coat of arms, etc. [10.3.8. Heraldry] + element heraldry { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_locus = + + ## defines a location within a manuscript or manuscript part, usually as a (possibly discontinuous) sequence of folio references. [10.3.5. References to Locations within a Manuscript] + element locus { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.pointing.attributes, + + ## identifies the foliation scheme in terms of which the location is being specified by pointing to some foliation element defining it, or to some other equivalent resource. + attribute scheme { xsd:anyURI }?, + + ## specifies the starting point of the location in a normalized form, typically a page number. + attribute from { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## specifies the end-point of the location in a normalized form, typically as a page number. + attribute to { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_locusGrp = + + ## groups a number of locations which together form a distinct but discontinuous item within a manuscript or manuscript part, according to a specific foliation. [10.3.5. References to Locations within a Manuscript] + element locusGrp { + tei_locus+, + tei_att.global.attributes, + + ## identifies the foliation scheme in terms of which all the locations contained by the group are specified by pointing to some foliation element defining it, or to some other equivalent resource. + attribute scheme { xsd:anyURI }?, + empty + } +tei_material = + + ## contains a word or phrase describing the material of which the object being described is composed. [10.3.2. Material and Object Type] + element material { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_objectType = + + ## contains a word or phrase describing the type of object being referred to. [10.3.2. Material and Object Type] + element objectType { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.canonical.attributes, + empty + } +tei_origDate = + + ## (origin date) contains any form of date, used to identify the date of origin for a manuscript or manuscript part. [10.3.1. Origination] + element origDate { + (text | tei_model.gLike | tei_model.phrase | tei_model.global)*, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_origPlace = + + ## (origin place) contains any form of place name, used to identify the place of origin for a manuscript or manuscript part. [10.3.1. Origination] + element origPlace { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + empty + } +tei_secFol = + + ## (second folio) marks the word or words taken from a fixed point in a codex (typically the beginning of the second leaf) in order to provide a unique identifier for it. [10.3.7. Catchwords, Signatures, Secundo Folio] + element secFol { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_signatures = + + ## contains discussion of the leaf or quire signatures found within a codex. [10.3.7. Catchwords, Signatures, Secundo Folio] + element signatures { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_stamp = + + ## contains a word or phrase describing a stamp or similar device. [10.3.3. Watermarks and Stamps] + element stamp { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.datable.attributes, + empty + } +tei_watermark = + + ## contains a word or phrase describing a watermark or similar device. [10.3.3. Watermarks and Stamps] + element watermark { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_msIdentifier = + + ## (manuscript identifier) contains the information required to identify the manuscript being described. [10.4. The Manuscript Identifier] + element msIdentifier { + ((tei_placeName?, + tei_bloc?, + tei_country?, + tei_region?, + tei_district?, + tei_settlement?, + tei_geogName?, + tei_institution?, + tei_repository?, + tei_collection*, + tei_idno?), + (tei_msName | tei_altIdentifier)*) + >> sch:pattern [ + id = "app-msIdentifier-msId_minimal-constraint-18" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:msIdentifier" + "\x{a}" ~ + " " + sch:report [ + test = + "not(parent::tei:msPart) and (local-name(*[1])='idno' or local-name(*[1])='altIdentifier' or normalize-space(.)='')" + "An msIdentifier must contain either a repository or location of some type, or a manuscript name" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + empty + } +tei_institution = + + ## contains the name of an organization such as a university or library, with which a manuscript is identified, generally its holding institution. [10.4. The Manuscript Identifier] + element institution { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.naming.attributes, + empty + } +tei_repository = + + ## contains the name of a repository within which manuscripts are stored, possibly forming part of an institution. [10.4. The Manuscript Identifier] + element repository { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.naming.attributes, + empty + } +tei_collection = + + ## contains the name of a collection of manuscripts, not necessarily located within a single repository. [10.4. The Manuscript Identifier] + element collection { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + empty + } +tei_altIdentifier = + + ## (alternative identifier) contains an alternative or former structured identifier used for a manuscript, such as a former catalogue number. [10.4. The Manuscript Identifier] + element altIdentifier { + (tei_placeName?, + tei_bloc?, + tei_country?, + tei_region?, + tei_district?, + tei_settlement?, + tei_geogName?, + tei_institution?, + tei_repository?, + tei_collection?, + tei_idno, + tei_note?), + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_msName = + + ## (alternative name) contains any form of unstructured alternative name used for a manuscript, such as an ocellus nominum, or nickname. [10.4. The Manuscript Identifier] + element msName { + tei_macro.xtext, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_colophon = + + ## contains the colophon of a manuscript item: that is, a statement providing information regarding the date, place, agency, or reason for production of the manuscript. [10.6.1. The msItem and msItemStruct Elements] + element colophon { + tei_macro.phraseSeq, tei_att.global.attributes, empty + } +tei_explicit = + + ## contains the explicit of a manuscript item, that is, the closing words of the text proper, exclusive of any rubric or colophon which might follow it. [10.6.1. The msItem and msItemStruct Elements] + element explicit { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.msExcerpt.attributes, + empty + } +tei_filiation = + + ## contains information concerning the manuscript's filiation, i.e. its relationship to other surviving manuscripts of the same text, its protographs, antigraphs and apographs. [10.6.1. The msItem and msItemStruct Elements] + element filiation { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_finalRubric = + + ## contains the string of words that denotes the end of a text division, often with an assertion as to its author and title, usually set off from the text itself by red ink, by a different size or type of script, or by some other such visual device. [10.6.1. The msItem and msItemStruct Elements] + element finalRubric { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_incipit = + + ## contains the incipit of a manuscript item, that is the opening words of the text proper, exclusive of any rubric which might precede it, of sufficient length to identify the work uniquely; such incipits were, in former times, frequently used a means of reference to a work, in place of a title. [10.6.1. The msItem and msItemStruct Elements] + element incipit { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.msExcerpt.attributes, + empty + } +tei_msContents = + + ## (manuscript contents) describes the intellectual content of a manuscript or manuscript part, either as a series of paragraphs or as a series of structured manuscript items. [10.6. Intellectual Content] + element msContents { + (tei_model.pLike+ + | (tei_summary?, + tei_textLang?, + tei_titlePage?, + (tei_msItem | tei_msItemStruct)*)), + tei_att.global.attributes, + tei_att.msExcerpt.attributes, + + ## identifies the text types or classifications applicable to this object by pointing to other elements or resources defining the classification concerned. + attribute class { + list { xsd:anyURI+ } + }?, + empty + } +tei_msItem = + + ## (manuscript item) describes an individual work or item within the intellectual content of a manuscript or manuscript part. [10.6.1. The msItem and msItemStruct Elements] + element msItem { + ((tei_locus | tei_locusGrp)*, + (tei_model.pLike+ + | (tei_model.titlepagePart + | tei_model.msItemPart + | tei_model.global)+)), + tei_att.global.attributes, + tei_att.msExcerpt.attributes, + + ## identifies the text types or classifications applicable to this item by pointing to other elements or resources defining the classification concerned. + attribute class { + list { xsd:anyURI+ } + }?, + empty + } +tei_msItemStruct = + + ## (structured manuscript item) contains a structured description for an individual work or item within the intellectual content of a manuscript or manuscript part. [10.6.1. The msItem and msItemStruct Elements] + element msItemStruct { + ((tei_locus | tei_locusGrp)?, + (tei_model.pLike+ + | (tei_author*, + tei_respStmt*, + tei_title*, + tei_rubric?, + tei_incipit?, + tei_msItemStruct*, + tei_explicit?, + tei_finalRubric?, + tei_colophon*, + tei_decoNote*, + tei_listBibl*, + (tei_bibl | tei_biblStruct)*, + tei_model.noteLike*, + tei_textLang?))), + tei_att.global.attributes, + tei_att.msExcerpt.attributes, + + ## identifies the text types or classifications applicable to this item by pointing to other elements or resources defining the classification concerned. + attribute class { + list { xsd:anyURI+ } + }?, + empty + } +tei_rubric = + + ## contains the text of any rubric or heading attached to a particular manuscript item, that is, a string of words through which a manuscript signals the beginning of a text division, often with an assertion as to its author and title, which is in some way set off from the text itself, usually in red ink, or by use of different size or type of script, or some other such visual device. [10.6.1. The msItem and msItemStruct Elements] + element rubric { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_summary = + + ## contains an overview of the available information concerning some aspect of an item (for example, its intellectual content, history, layout, typography etc.) as a complement or alternative to the more detailed information carried by more specific elements. [10.6. Intellectual Content] + element summary { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_physDesc = + + ## (physical description) contains a full physical description of a manuscript or manuscript part, optionally subdivided using more specialized elements from the model.physDescPart class. [10.7. Physical Description] + element physDesc { + (tei_model.pLike*, + tei_objectDesc?, + tei_handDesc?, + tei_typeDesc?, + tei_scriptDesc?, + tei_musicNotation?, + tei_decoDesc?, + tei_additions?, + tei_bindingDesc?, + tei_sealDesc?, + tei_accMat?), + tei_att.global.attributes, + empty + } +tei_objectDesc = + + ## contains a description of the physical components making up the object which is being described. [10.7.1. Object Description] + element objectDesc { + (tei_model.pLike+ | (tei_supportDesc?, tei_layoutDesc?)), + tei_att.global.attributes, + + ## a short project-specific name identifying the physical form of the carrier, for example as a codex, roll, fragment, partial leaf, cutting etc. + attribute form { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_supportDesc = + + ## (support description) groups elements describing the physical support for the written part of a manuscript. [10.7.1. Object Description] + element supportDesc { + (tei_model.pLike+ + | (tei_support?, + tei_extent?, + tei_foliation*, + tei_collation?, + tei_condition?)), + tei_att.global.attributes, + + ## a short project-defined name for the material composing the majority of the support + ## Suggested values include: 1] paper; 2] parch(parchment) ; 3] mixed + attribute material { + + ## + "paper" + | + ## (parchment) + "parch" + | + ## + "mixed" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_support = + + ## contains a description of the materials etc. which make up the physical support for the written part of a manuscript. [10.7.1. Object Description] + element support { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_collation = + + ## contains a description of how the leaves or bifolia are physically arranged. [10.7.1. Object Description] + element collation { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_foliation = + + ## describes the numbering system or systems used to count the leaves or pages in a codex. [10.7.1.4. Foliation] + element foliation { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_condition = + + ## contains a description of the physical condition of the manuscript. [10.7.1.5. Condition] + element condition { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_layoutDesc = + + ## (layout description) collects the set of layout descriptions applicable to a manuscript. [10.7.2. Writing, Decoration, and Other Notations] + element layoutDesc { + (tei_model.pLike+ | (tei_summary?, tei_layout+)), + tei_att.global.attributes, + empty + } +tei_layout = + + ## describes how text is laid out on the page, including information about any ruling, pricking, or other evidence of page-preparation techniques. [10.7.2. Writing, Decoration, and Other Notations] + element layout { + tei_macro.specialPara, + tei_att.global.attributes, + + ## specifies the number of columns per page + attribute columns { + list { xsd:nonNegativeInteger, xsd:nonNegativeInteger? } + }?, + + ## specifies the number of ruled lines per column + attribute ruledLines { + list { xsd:nonNegativeInteger, xsd:nonNegativeInteger? } + }?, + + ## specifies the number of written lines per column + attribute writtenLines { + list { xsd:nonNegativeInteger, xsd:nonNegativeInteger? } + }?, + empty + } +tei_handDesc = + + ## (description of hands) contains a description of all the different kinds of writing used in a manuscript. [10.7.2. Writing, Decoration, and Other Notations] + element handDesc { + (tei_model.pLike+ | (tei_summary?, tei_handNote+)), + tei_att.global.attributes, + + ## specifies the number of distinct hands identified within the manuscript + attribute hands { xsd:nonNegativeInteger }?, + empty + } +tei_typeDesc = + + ## contains a description of the typefaces or other aspects of the printing of an incunable or other printed source. [10.7.2.1. Writing] + element typeDesc { + (tei_model.pLike+ | (tei_summary?, tei_typeNote+)), + tei_att.global.attributes, + empty + } +tei_scriptDesc = + + ## contains a description of the scripts used in a manuscript or similar source. [10.7.2.1. Writing] + element scriptDesc { + (tei_model.pLike+ | (tei_summary?, tei_scriptNote+)), + tei_att.global.attributes, + empty + } +tei_musicNotation = + + ## contains description of type of musical notation. [10.7.2. Writing, Decoration, and Other Notations] + element musicNotation { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_decoDesc = + + ## (decoration description) contains a description of the decoration of a manuscript, either as a sequence of paragraphs, or as a sequence of topically organized decoNote elements. [10.7.3. Bindings, Seals, and Additional Material] + element decoDesc { + (tei_model.pLike+ | (tei_summary?, tei_decoNote+)), + tei_att.global.attributes, + empty + } +tei_decoNote = + + ## (note on decoration) contains a note describing either a decorative component of a manuscript, or a fairly homogenous class of such components. [10.7.3. Bindings, Seals, and Additional Material] + element decoNote { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_additions = + + ## contains a description of any significant additions found within a manuscript, such as marginalia or other annotations. [10.7.2. Writing, Decoration, and Other Notations] + element additions { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_bindingDesc = + + ## (binding description) describes the present and former bindings of a manuscript, either as a series of paragraphs or as a series of distinct binding elements, one for each binding of the manuscript. [10.7.3.1. Binding Descriptions] + element bindingDesc { + ((tei_model.pLike | tei_decoNote | tei_condition)+ | tei_binding+), + tei_att.global.attributes, + empty + } +tei_binding = + + ## contains a description of one binding, i.e. type of covering, boards, etc. applied to a manuscript. [10.7.3.1. Binding Descriptions] + element binding { + (tei_model.pLike | tei_condition | tei_decoNote)+, + tei_att.global.attributes, + tei_att.datable.attributes, + + ## specifies whether or not the binding is contemporary with the majority of its contents + attribute contemporary { + xsd:boolean + | ( + ## + "unknown" + | + ## + "inapplicable") + }?, + empty + } +tei_sealDesc = + + ## (seal description) describes the seals or other external items attached to a manuscript, either as a series of paragraphs or as a series of distinct seal elements, possibly with additional decoNotes. [10.7.3.2. Seals] + element sealDesc { + (tei_model.pLike+ + | (tei_summary?, (tei_decoNote | tei_seal | tei_condition)+)), + tei_att.global.attributes, + empty + } +tei_seal = + + ## contains a description of one seal or similar attachment applied to a manuscript. [10.7.3.2. Seals] + element seal { + (tei_model.pLike | tei_decoNote)+, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.datable.attributes, + + ## specifies whether or not the seal is contemporary with the item to which it is affixed + attribute contemporary { + xsd:boolean + | ( + ## + "unknown" + | + ## + "inapplicable") + }?, + empty + } +tei_accMat = + + ## (accompanying material) contains details of any significant additional material which may be closely associated with the manuscript being described, such as non-contemporaneous documents or fragments bound in with the manuscript at some earlier historical period. [10.7.3.3. Accompanying Material] + element accMat { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_history = + + ## groups elements describing the full history of a manuscript or manuscript part. [10.8. History] + element history { + (tei_model.pLike+ + | (tei_summary?, tei_origin?, tei_provenance*, tei_acquisition?)), + tei_att.global.attributes, + empty + } +tei_origin = + + ## contains any descriptive or other information concerning the origin of a manuscript or manuscript part. [10.8. History] + element origin { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.datable.attributes, + empty + } +tei_provenance = + + ## contains any descriptive or other information concerning a single identifiable episode during the history of a manuscript or manuscript part, after its creation but before its acquisition. [10.8. History] + element provenance { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.typed.attributes, + tei_att.source.attributes, + empty + } +tei_acquisition = + + ## contains any descriptive or other information concerning the process by which a manuscript or manuscript part entered the holding institution. [10.8. History] + element acquisition { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.datable.attributes, + empty + } +tei_additional = + + ## groups additional information, combining bibliographic information about a manuscript, or surrogate copies of it with curatorial or administrative information. [10.9. Additional Information] + element additional { + (tei_adminInfo?, tei_surrogates?, tei_listBibl?), + tei_att.global.attributes, + empty + } +tei_adminInfo = + + ## (administrative information) contains information about the present custody and availability of the manuscript, and also about the record description itself. [10.9.1. Administrative Information] + element adminInfo { + (tei_recordHist?, + tei_availability?, + tei_custodialHist?, + tei_model.noteLike?), + tei_att.global.attributes, + empty + } +tei_recordHist = + + ## (recorded history) provides information about the source and revision status of the parent manuscript description itself. [10.9.1. Administrative Information] + element recordHist { + (tei_model.pLike+ | (tei_source, tei_change*)), + tei_att.global.attributes, + empty + } +tei_source = + + ## describes the original source for the information contained with a manuscript description. [10.9.1.1. Record History] + element source { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_custodialHist = + + ## (custodial history) contains a description of a manuscript's custodial history, either as running prose or as a series of dated custodial events. [10.9.1.2. Availability and Custodial History] + element custodialHist { + (tei_model.pLike+ | tei_custEvent+), + tei_att.global.attributes, + empty + } +tei_custEvent = + + ## (custodial event) describes a single event during the custodial history of a manuscript. [10.9.1.2. Availability and Custodial History] + element custEvent { + tei_macro.specialPara, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.typed.attributes, + empty + } +tei_surrogates = + + ## contains information about any representations of the manuscript being described which may exist in the holding institution or elsewhere. [10.9. Additional Information] + element surrogates { + tei_macro.specialPara, tei_att.global.attributes, empty + } +tei_msPart = + + ## (manuscript part) contains information about an originally distinct manuscript or part of a manuscript, which is now part of a composite manuscript. [10.10. Manuscript Parts] + element msPart { + ((tei_altIdentifier | tei_msIdentifier), + tei_model.headLike*, + (tei_model.pLike+ + | (tei_msContents?, + tei_physDesc?, + tei_history?, + tei_additional?, + tei_msPart*))) + >> sch:pattern [ + id = "app-msPart-deprecate-altIdentifier-child-constraint-19" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:msPart" + "\x{a}" ~ + " " + sch:report [ + role = "nonfatal" + test = "child::tei:altIdentifier" + "WARNING: use of deprecated method — the use of the altIdentifier element as a direct child of the msPart element will be removed from the TEI on 2016-09-09" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + empty + } +tei_msFrag = + + ## (manuscript fragment) contains information about a fragment of a scattered manuscript now held as a single unit or bound into a larger manuscript. [10.11. Manuscript Fragments] + element msFrag { + ((tei_altIdentifier | tei_msIdentifier), + tei_model.headLike*, + (tei_model.pLike+ + | (tei_msContents?, + tei_physDesc?, + tei_history?, + tei_additional?))), + tei_att.global.attributes, + empty + } +tei_model.rdgLike = tei_rdg +tei_model.rdgPart = + tei_wit | tei_witStart | tei_witEnd | tei_lacunaStart | tei_lacunaEnd +tei_att.rdgPart.attributes = tei_att.rdgPart.attribute.wit +tei_att.rdgPart.attribute.wit = + + ## (witness or witnesses) contains a space-delimited list of one or more sigla indicating the witnesses to this reading beginning or ending at this point. + attribute wit { + list { xsd:anyURI+ } + }? +tei_att.witnessed.attributes = tei_att.witnessed.attribute.wit +tei_att.witnessed.attribute.wit = + + ## (witness or witnesses) contains a space-delimited list of one or more pointers indicating the witnesses which attest to a given reading. + attribute wit { + list { xsd:anyURI+ } + }? +tei_att.textCritical.attributes = + tei_att.source.attributes, + tei_att.written.attributes, + tei_att.textCritical.attribute.type, + tei_att.textCritical.attribute.cause, + tei_att.textCritical.attribute.varSeq +tei_att.textCritical.attribute.type = + + ## classifies the reading according to some useful typology. + ## Sample values include: 1] substantive; 2] orthographic + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.textCritical.attribute.cause = + + ## classifies the cause for the variant reading, according to any appropriate typology of possible origins. + ## Sample values include: 1] homeoteleuton; 2] homeoarchy; 3] paleographicConfusion; 4] haplography; 5] dittography; 6] falseEmendation + attribute cause { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }? +tei_att.textCritical.attribute.varSeq = + + ## (variant sequence) provides a number indicating the position of this reading in a sequence, when there is reason to presume a sequence to the variants. + attribute varSeq { xsd:nonNegativeInteger }? +tei_app = + + ## (apparatus entry) contains one entry in a critical apparatus, with an optional lemma and usually one or more readings or notes on the relevant passage. [12.1.1. The Apparatus Entry] + element app { + (tei_lem?, + (tei_model.rdgLike | tei_model.noteLike | tei_wit | tei_rdgGrp)*), + tei_att.global.attributes, + + ## classifies the variation contained in this element according to some convenient typology. + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## identifies the beginning of the lemma in the base text. + attribute from { xsd:anyURI }?, + + ## identifies the endpoint of the lemma in the base text. + attribute to { xsd:anyURI }?, + + ## (location) indicates the location of the variation, when the location-referenced method of apparatus markup is used. + attribute loc { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + empty + } +tei_listApp = + + ## (list of apparatus entries) contains a list of apparatus entries. [12.2. Linking the Apparatus to the Text] + element listApp { + (tei_model.headLike*, (tei_app | tei_listApp)+), + tei_att.global.attributes, + tei_att.sortable.attributes, + tei_att.declarable.attributes, + tei_att.typed.attributes, + empty + } +tei_lem = + + ## (lemma) contains the lemma, or base text, of a textual variation. [12.1. The Apparatus Entry, Readings, and Witnesses] + element lem { + (text + | tei_model.divLike + | tei_model.divPart + | tei_model.gLike + | tei_model.phrase + | tei_model.inter + | tei_model.global + | tei_model.rdgPart)*, + tei_att.global.attributes, + tei_att.textCritical.attributes, + tei_att.witnessed.attributes, + empty + } +tei_rdg = + + ## (reading) contains a single reading within a textual variation. [12.1. The Apparatus Entry, Readings, and Witnesses] + element rdg { + (text + | tei_model.divLike + | tei_model.divPart + | tei_model.gLike + | tei_model.phrase + | tei_model.inter + | tei_model.global + | tei_model.rdgPart)*, + tei_att.global.attributes, + tei_att.textCritical.attributes, + tei_att.witnessed.attributes, + empty + } +tei_rdgGrp = + + ## (reading group) within a textual variation, groups two or more readings perceived to have a genetic relationship or other affinity. [12.1. The Apparatus Entry, Readings, and Witnesses] + element rdgGrp { + (((tei_rdgGrp, tei_wit?) + | ((tei_lem, tei_wit?)?, (tei_model.rdgLike, tei_wit?))*)+) + >> sch:pattern [ + id = "app-rdgGrp-only1lem-constraint-16" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:rdgGrp" + "\x{a}" ~ + " " + sch:assert [ + test = "count(tei:lem) < 2" + "Only one element may appear within a " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.textCritical.attributes, + empty + } +tei_witDetail = + + ## (witness detail) gives further information about a particular witness, or witnesses, to a particular reading. [12.1. The Apparatus Entry, Readings, and Witnesses] + element witDetail { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.placement.attributes, + tei_att.source.attributes, + tei_att.pointing.attributes, + + ## (witnesses) indicates the sigil or sigla identifying the witness or witnesses to which the detail refers. + attribute wit { + list { xsd:anyURI+ } + }, + + ## describes the type of information given about the witness. + attribute type { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_wit = + + ## contains a list of one or more sigla of witnesses attesting a given reading, in a textual variation. [12.1.4. Witness Information] + element wit { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.rdgPart.attributes, + empty + } +tei_listWit = + + ## (witness list) lists definitions for all the witnesses referred to by a critical apparatus, optionally grouped hierarchically. [12.1. The Apparatus Entry, Readings, and Witnesses] + element listWit { + (tei_model.headLike?, (tei_witness | tei_listWit)+), + tei_att.global.attributes, + tei_att.sortable.attributes, + empty + } +tei_witness = + + ## contains either a description of a single witness referred to within the critical apparatus, or a list of witnesses which is to be referred to by a single sigil. [12.1. The Apparatus Entry, Readings, and Witnesses] + element witness { + tei_macro.limitedContent, + tei_att.global.attributes, + tei_att.sortable.attributes, + empty + } +tei_witStart = + + ## (fragmented witness start) indicates the beginning, or resumption, of the text of a fragmentary witness. [12.1.5. Fragmentary Witnesses] + element witStart { + empty, tei_att.global.attributes, tei_att.rdgPart.attributes, empty + } +tei_witEnd = + + ## (fragmented witness end) indicates the end, or suspension, of the text of a fragmentary witness. [12.1.5. Fragmentary Witnesses] + element witEnd { + empty, tei_att.global.attributes, tei_att.rdgPart.attributes, empty + } +tei_lacunaStart = + + ## indicates the beginning of a lacuna in the text of a mostly complete textual witness. [12.1.5. Fragmentary Witnesses] + element lacunaStart { + empty, tei_att.global.attributes, tei_att.rdgPart.attributes, empty + } +tei_lacunaEnd = + + ## indicates the end of a lacuna in a mostly complete textual witness. [12.1.5. Fragmentary Witnesses] + element lacunaEnd { + empty, tei_att.global.attributes, tei_att.rdgPart.attributes, empty + } +tei_variantEncoding = + + ## declares the method used to encode text-critical variants. [12.1.1. The Apparatus Entry] + element variantEncoding { + empty, + tei_att.global.attributes, + + ## indicates which method is used to encode the apparatus of variants. + attribute method { + + ## apparatus uses line numbers or other canonical reference scheme referenced in a base text. + "location-referenced" + | + ## apparatus indicates the precise locations of the beginning and ending of each lemma relative to a base text. + "double-end-point" + | + ## alternate readings of a passage are given in parallel in the text; no notion of a base text is necessary. + "parallel-segmentation" + }, + + ## indicates whether the apparatus appears within the running text or external to it. + attribute location { + + ## apparatus appears within the running text. + "internal" + | + ## apparatus appears outside the base text. + "external" + } + >> sch:pattern [ + id = + "app-variantEncoding-location-variantEncodingLocation-constraint-10" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:variantEncoding" + "\x{a}" ~ + " " + sch:assert [ + test = + "(@location != 'external') or (@method != 'parallel-segmentation')" + "\x{a}" ~ + ' The @location value "external" is inconsistent with the\x{a}' ~ + " parallel-segmentation method of apparatus markup." + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + empty + } +tei_att.datable.custom.attributes = + tei_att.datable.custom.attribute.when-custom, + tei_att.datable.custom.attribute.notBefore-custom, + tei_att.datable.custom.attribute.notAfter-custom, + tei_att.datable.custom.attribute.from-custom, + tei_att.datable.custom.attribute.to-custom, + tei_att.datable.custom.attribute.datingPoint, + tei_att.datable.custom.attribute.datingMethod +tei_att.datable.custom.attribute.when-custom = + + ## supplies the value of a date or time in some custom standard form. + attribute when-custom { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.datable.custom.attribute.notBefore-custom = + + ## specifies the earliest possible date for the event in some custom standard form. + attribute notBefore-custom { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.datable.custom.attribute.notAfter-custom = + + ## specifies the latest possible date for the event in some custom standard form. + attribute notAfter-custom { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.datable.custom.attribute.from-custom = + + ## indicates the starting point of the period in some custom standard form. + attribute from-custom { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.datable.custom.attribute.to-custom = + + ## indicates the ending point of the period in some custom standard form. + attribute to-custom { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }? +tei_att.datable.custom.attribute.datingPoint = + + ## supplies a pointer to some location defining a named point in time with reference to which the datable item is understood to have occurred + attribute datingPoint { xsd:anyURI }? +tei_att.datable.custom.attribute.datingMethod = + + ## supplies a pointer to a calendar element or other means of interpreting the values of the custom dating attributes. + attribute datingMethod { xsd:anyURI }? +tei_model.persNamePart = + tei_surname + | tei_forename + | tei_genName + | tei_nameLink + | tei_addName + | tei_roleName +tei_model.persNamePart_alternation = + tei_surname + | tei_forename + | tei_genName + | tei_nameLink + | tei_addName + | tei_roleName +tei_model.persNamePart_sequence = + tei_surname, + tei_forename, + tei_genName, + tei_nameLink, + tei_addName, + tei_roleName +tei_model.persNamePart_sequenceOptional = + tei_surname?, + tei_forename?, + tei_genName?, + tei_nameLink?, + tei_addName?, + tei_roleName? +tei_model.persNamePart_sequenceOptionalRepeatable = + tei_surname*, + tei_forename*, + tei_genName*, + tei_nameLink*, + tei_addName*, + tei_roleName* +tei_model.persNamePart_sequenceRepeatable = + tei_surname+, + tei_forename+, + tei_genName+, + tei_nameLink+, + tei_addName+, + tei_roleName+ +tei_att.datable.iso.attributes = + tei_att.datable.iso.attribute.when-iso, + tei_att.datable.iso.attribute.notBefore-iso, + tei_att.datable.iso.attribute.notAfter-iso, + tei_att.datable.iso.attribute.from-iso, + tei_att.datable.iso.attribute.to-iso +tei_att.datable.iso.attribute.when-iso = + + ## supplies the value of a date or time in a standard form. + attribute when-iso { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + | xsd:token { pattern = "[0-9.,DHMPRSTWYZ/:+\-]+" } + }? +tei_att.datable.iso.attribute.notBefore-iso = + + ## specifies the earliest possible date for the event in standard form, e.g. yyyy-mm-dd. + attribute notBefore-iso { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + | xsd:token { pattern = "[0-9.,DHMPRSTWYZ/:+\-]+" } + }? +tei_att.datable.iso.attribute.notAfter-iso = + + ## specifies the latest possible date for the event in standard form, e.g. yyyy-mm-dd. + attribute notAfter-iso { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + | xsd:token { pattern = "[0-9.,DHMPRSTWYZ/:+\-]+" } + }? +tei_att.datable.iso.attribute.from-iso = + + ## indicates the starting point of the period in standard form. + attribute from-iso { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + | xsd:token { pattern = "[0-9.,DHMPRSTWYZ/:+\-]+" } + }? +tei_att.datable.iso.attribute.to-iso = + + ## indicates the ending point of the period in standard form. + attribute to-iso { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + | xsd:token { pattern = "[0-9.,DHMPRSTWYZ/:+\-]+" } + }? +tei_orgName = + + ## (organization name) contains an organizational name. [13.2.2. Organizational Names] + element orgName { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.personal.attributes, + tei_att.typed.attributes, + empty + } +tei_persName = + + ## (personal name) contains a proper noun or proper-noun phrase referring to a person, possibly including one or more of the person's forenames, surnames, honorifics, added names, etc. [13.2.1. Personal Names] + element persName { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.personal.attributes, + tei_att.typed.attributes, + empty + } +tei_surname = + + ## contains a family (inherited) name, as opposed to a given, baptismal, or nick name. [13.2.1. Personal Names] + element surname { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.personal.attributes, + tei_att.typed.attributes, + empty + } +tei_forename = + + ## contains a forename, given or baptismal name. [13.2.1. Personal Names] + element forename { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.personal.attributes, + tei_att.typed.attributes, + empty + } +tei_genName = + + ## (generational name component) contains a name component used to distinguish otherwise similar names on the basis of the relative ages or generations of the persons named. [13.2.1. Personal Names] + element genName { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.personal.attributes, + tei_att.typed.attributes, + empty + } +tei_nameLink = + + ## (name link) contains a connecting phrase or link used within a name but not regarded as part of it, such as van der or of. [13.2.1. Personal Names] + element nameLink { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.typed.attributes, + empty + } +tei_addName = + + ## (additional name) contains an additional name component, such as a nickname, epithet, or alias, or any other descriptive phrase used within a personal name. [13.2.1. Personal Names] + element addName { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.personal.attributes, + tei_att.typed.attributes, + empty + } +tei_roleName = + + ## contains a name component which indicates that the referent has a particular role or position in society, such as an official title or rank. [13.2.1. Personal Names] + element roleName { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.personal.attributes, + tei_att.typed.attributes, + empty + } +tei_placeName = + + ## contains an absolute or relative place name. [13.2.3. Place Names] + element placeName { + tei_macro.phraseSeq, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.global.attributes, + tei_att.personal.attributes, + tei_att.typed.attributes, + empty + } +tei_bloc = + + ## contains the name of a geo-political unit consisting of two or more nation states or countries. [13.2.3. Place Names] + element bloc { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + tei_att.datable.attributes, + empty + } +tei_country = + + ## contains the name of a geo-political unit, such as a nation, country, colony, or commonwealth, larger than or administratively superior to a region and smaller than a bloc. [13.2.3. Place Names] + element country { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + tei_att.datable.attributes, + empty + } +tei_region = + + ## contains the name of an administrative unit such as a state, province, or county, larger than a settlement, but smaller than a country. [13.2.3. Place Names] + element region { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + tei_att.datable.attributes, + empty + } +tei_district = + + ## contains the name of any kind of subdivision of a settlement, such as a parish, ward, or other administrative or geographic unit. [13.2.3. Place Names] + element district { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + tei_att.datable.attributes, + empty + } +tei_settlement = + + ## contains the name of a settlement such as a city, town, or village identified as a single geo-political or administrative unit. [13.2.3. Place Names] + element settlement { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + tei_att.datable.attributes, + empty + } +tei_offset = + + ## marks that part of a relative temporal or spatial expression which indicates the direction of the offset between the two place names, dates, or times involved in the expression. [13.2.3. Place Names] + element offset { + tei_macro.phraseSeq, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + empty + } +tei_geogName = + + ## (geographical name) identifies a name associated with some geographical feature such as Windrush Valley or Mount Sinai. [13.2.3. Place Names] + element geogName { + tei_macro.phraseSeq, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + empty + } +tei_geogFeat = + + ## (geographical feature name) contains a common noun identifying some geographical feature contained within a geographic name, such as valley, mount, etc. [13.2.3. Place Names] + element geogFeat { + tei_macro.phraseSeq, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.global.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + empty + } +tei_affiliation = + + ## contains an informal description of a person's present or past affiliation with some organization, for example an employer or sponsor. [15.2.2. The Participant Description] + element affiliation { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.datable.attributes, + tei_att.naming.attributes, + empty + } +tei_age = + + ## specifies the age of a person. [13.3.2.1. Personal Characteristics] + element age { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.datable.attributes, + + ## supplies a numeric code representing the age or age group + attribute value { xsd:nonNegativeInteger }?, + empty + } +tei_birth = + + ## contains information about a person's birth, such as its date and place. [15.2.2. The Participant Description] + element birth { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.datable.attributes, + tei_att.naming.attributes, + empty + } +tei_climate = + + ## contains information about the physical climate of a place. [13.3.4.3. States, Traits, and Events] + element climate { + (tei_model.headLike*, + (tei_model.pLike+ | tei_model.labelLike+), + (tei_model.noteLike | tei_model.biblLike)*, + tei_climate*), + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + empty + } +tei_death = + + ## contains information about a person's death, such as its date and place. [15.2.2. The Participant Description] + element death { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.datable.attributes, + tei_att.naming.attributes, + empty + } +tei_education = + + ## contains a description of the educational experience of a person. [15.2.2. The Participant Description] + element education { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.datable.attributes, + tei_att.naming.attributes, + empty + } +tei_event = + + ## contains data relating to any kind of significant event associated with a person, place, or organization. [13.3.1. Basic Principles] + element event { + (tei_model.headLike*, + (tei_model.pLike+ | tei_model.labelLike+), + (tei_model.noteLike + | tei_model.biblLike + | tei_linkGrp + | tei_link)*, + tei_event*), + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + tei_att.naming.attributes, + tei_att.sortable.attributes, + + ## indicates the location of an event by pointing to a place element + attribute where { xsd:anyURI }?, + empty + } +tei_faith = + + ## specifies the faith, religion, or belief set of a person. [13.3.2.1. Personal Characteristics] + element faith { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.datable.attributes, + tei_att.canonical.attributes, + empty + } +tei_floruit = + + ## contains information about a person's period of activity. [13.3.2.1. Personal Characteristics] + element floruit { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + empty + } +tei_geo = + + ## (geographical coordinates) contains any expression of a set of geographic coordinates, representing a point, line, or area on the surface of the earth in some notation. [13.3.4.1. Varieties of Location] + element geo { + text, tei_att.global.attributes, tei_att.declaring.attributes, empty + } +tei_langKnowledge = + + ## (language knowledge) summarizes the state of a person's linguistic knowledge, either as prose or by a list of langKnown elements. [13.3.2.1. Personal Characteristics] + element langKnowledge { + (tei_model.pLike | tei_langKnown+), + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + + ## supplies one or more valid language tags for the languages specified + attribute tags { + list { + (xsd:language + | ( + ## + ""))+ + } + }?, + empty + } +tei_langKnown = + + ## (language known) summarizes the state of a person's linguistic competence, i.e., knowledge of a single language. [15.2.2. The Participant Description] + element langKnown { + tei_macro.phraseSeq.limited, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + + ## supplies a valid language tag for the language concerned. + attribute tag { + xsd:language + | ( + ## + "") + }, + + ## a code indicating the person's level of knowledge for this language + attribute level { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_listOrg = + + ## (list of organizations) contains a list of elements, each of which provides information about an identifiable organization. [13.2.2. Organizational Names] + element listOrg { + (tei_model.headLike*, + (tei_org | tei_listOrg)+, + (tei_relation | tei_listRelation)*), + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.declarable.attributes, + tei_att.sortable.attributes, + empty + } +tei_listEvent = + + ## (list of events) contains a list of descriptions, each of which provides information about an identifiable event. [13.3.1. Basic Principles] + element listEvent { + (tei_model.headLike*, + (tei_event | tei_listEvent)+, + (tei_relation | tei_listRelation)*), + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.declarable.attributes, + tei_att.sortable.attributes, + empty + } +tei_listPerson = + + ## (list of persons) contains a list of descriptions, each of which provides information about an identifiable person or a group of people, for example the participants in a language interaction, or the people referred to in a historical source. [13.3.2. The Person Element 15.2. Contextual Information 2.4. The Profile Description 15.3.2. Declarable Elements] + element listPerson { + (tei_model.headLike*, + (tei_model.personLike | tei_listPerson)+, + (tei_relation | tei_listRelation)*), + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.declarable.attributes, + tei_att.sortable.attributes, + empty + } +tei_listPlace = + + ## (list of places) contains a list of places, optionally followed by a list of relationships (other than containment) defined amongst them. [2.2.7. The Source Description 13.3.4. Places] + element listPlace { + (tei_model.headLike*, + (tei_model.placeLike | tei_listPlace)+, + (tei_relation | tei_listRelation)*), + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.declarable.attributes, + tei_att.sortable.attributes, + empty + } +tei_location = + + ## defines the location of a place as a set of geographical coordinates, in terms of other named geo-political entities, or as an address. [13.3.4. Places] + element location { + (tei_model.labelLike + | tei_model.placeNamePart + | tei_model.offsetLike + | tei_model.measureLike + | tei_model.addressLike + | tei_model.noteLike + | tei_model.biblLike)*, + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + empty + } +tei_nationality = + + ## contains an informal description of a person's present or past nationality or citizenship. [15.2.2. The Participant Description] + element nationality { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.naming.attributes, + empty + } +tei_occupation = + + ## contains an informal description of a person's trade, profession or occupation. [15.2.2. The Participant Description] + element occupation { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.naming.attributes, + + ## indicates the classification system or taxonomy in use, for example by supplying the identifier of a taxonomy element, or pointing to some other resource. + attribute scheme { xsd:anyURI }?, + + ## identifies an occupation code defined within the classification system or taxonomy defined by the scheme attribute. + attribute code { xsd:anyURI }?, + empty + } +tei_org = + + ## (organization) provides information about an identifiable organization such as a business, a tribe, or any other grouping of people. [13.2.2. Organizational Names] + element org { + (tei_model.headLike*, + (tei_model.pLike* + | (tei_model.labelLike + | tei_model.nameLike + | tei_model.placeLike + | tei_model.orgPart + | tei_model.milestoneLike)*), + (tei_model.noteLike + | tei_model.biblLike + | tei_linkGrp + | tei_link)*, + tei_model.personLike*), + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.editLike.attributes, + tei_att.sortable.attributes, + + ## specifies a primary role or classification for the organization. + attribute role { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + empty + } +tei_listRelation = + + ## provides information about relationships identified amongst people, places, and organizations, either informally as prose or as formally expressed relation links. [13.3.2.3. Personal Relationships] + element listRelation { + (tei_model.headLike*, + (tei_model.pLike | (tei_relation | tei_listRelation)+)), + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.sortable.attributes, + empty + } +tei_person = + + ## provides information about an identifiable individual, for example a participant in a language interaction, or a person referred to in a historical source. [13.3.2. The Person Element 15.2.2. The Participant Description] + element person { + (tei_model.pLike+ | (tei_model.personPart | tei_model.global)*), + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.sortable.attributes, + + ## specifies a primary role or classification for the person. + attribute role { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + + ## specifies the sex of the person. + attribute sex { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + + ## specifies an age group for the person. + attribute age { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + empty + } +tei_personGrp = + + ## (personal group) describes a group of individuals treated as a single person for analytic purposes. [15.2.2. The Participant Description] + element personGrp { + (tei_model.pLike+ | (tei_model.personPart | tei_model.global)*), + tei_att.global.attributes, + tei_att.sortable.attributes, + + ## specifies the role of this group of participants in the interaction. + attribute role { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## specifies the sex of the participant group. + attribute sex { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + + ## specifies the age group of the participants. + attribute age { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## describes informally the size or approximate size of the group for example by means of a number and an indication of accuracy e.g. approx 200. + attribute size { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + empty + } +tei_place = + + ## contains data about a geographic location [13.3.4. Places] + element place { + (tei_model.headLike*, + (tei_model.pLike* + | (tei_model.labelLike + | tei_model.placeStateLike + | tei_model.eventLike)*), + (tei_model.noteLike + | tei_model.biblLike + | tei_idno + | tei_linkGrp + | tei_link)*, + (tei_model.placeLike | tei_listPlace)*), + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.editLike.attributes, + tei_att.sortable.attributes, + empty + } +tei_population = + + ## contains information about the population of a place. [13.3.4.3. States, Traits, and Events] + element population { + (tei_model.headLike*, + ((tei_model.pLike+ | tei_model.labelLike+), + (tei_model.noteLike | tei_model.biblLike)*)?, + tei_population*), + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + empty + } +tei_relation = + + ## (relationship) describes any kind of relationship or linkage amongst a specified group of places, events, persons, objects or other items. [13.3.2.3. Personal Relationships] + element relation { + (tei_desc?) + >> sch:pattern [ + id = "app-relation-reforkeyorname-constraint-18" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:relation" + "\x{a}" ~ + " " + sch:assert [ + test = "@ref or @key or @name" + "One of the attributes 'name', 'ref' or 'key' must be supplied" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "app-relation-activemutual-constraint-20" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:relation" + "\x{a}" ~ + " " + sch:report [ + test = "@active and @mutual" + "Only one of the attributes\x{a}" ~ + "@active and @mutual may be supplied" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "app-relation-activepassive-constraint-21" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:relation" + "\x{a}" ~ + " " + sch:report [ + test = "@passive and not(@active)" + "the attribute 'passive'\x{a}" ~ + " may be supplied only if the attribute 'active' is\x{a}" ~ + " supplied" + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.canonical.attributes, + tei_att.sortable.attributes, + tei_att.typed.attributes, + + ## supplies a name for the kind of relationship of which this is an instance. + attribute name { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + ( + ## identifies the active participants in a non-mutual relationship, or all the participants in a mutual one. + attribute active { + list { xsd:anyURI+ } + }? + | + ## supplies a list of participants amongst all of whom the relationship holds equally. + attribute mutual { + list { xsd:anyURI+ } + }?), + + ## identifies the passive participants in a non-mutual relationship. + attribute passive { + list { xsd:anyURI+ } + }?, + empty + } +tei_residence = + + ## describes a person's present or past places of residence. [15.2.2. The Participant Description] + element residence { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.naming.attributes, + empty + } +tei_sex = + + ## specifies the sex of a person. [13.3.2.1. Personal Characteristics] + element sex { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.editLike.attributes, + tei_att.datable.attributes, + + ## supplies a coded value for sex + attribute value { + list { + xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" }+ + } + }?, + empty + } +tei_socecStatus = + + ## (socio-economic status) contains an informal description of a person's perceived social or economic status. [15.2.2. The Participant Description] + element socecStatus { + tei_macro.phraseSeq, + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.naming.attributes, + + ## identifies the classification system or taxonomy in use, for example by pointing to a locally-defined taxonomy element or by supplying a URI for an externally-defined system. + attribute scheme { xsd:anyURI }?, + + ## identifies a status code defined within the classification system or taxonomy defined by the scheme attribute. + attribute code { xsd:anyURI }?, + empty + } +tei_state = + + ## contains a description of some status or quality attributed to a person, place, or organization often at some specific time or for a specific date range. [13.3.1. Basic Principles 13.3.2.1. Personal Characteristics] + element state { + (tei_state+ + | (tei_model.headLike*, + tei_model.pLike+, + (tei_model.noteLike | tei_model.biblLike)*) + | (tei_model.labelLike + | tei_model.noteLike + | tei_model.biblLike)*), + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.typed.attributes, + tei_att.naming.attributes, + empty + } +tei_terrain = + + ## contains information about the physical terrain of a place. [13.3.4.3. States, Traits, and Events] + element terrain { + (tei_model.headLike*, + (tei_model.pLike+ | tei_model.labelLike+), + (tei_model.noteLike | tei_model.biblLike)*, + tei_terrain*), + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + empty + } +tei_trait = + + ## contains a description of some status or quality attributed to a person, place, or organization typically, but not necessarily, independent of the volition or action of the holder and usually not at some specific time or for a specific date range. [13.3.1. Basic Principles 13.3.2.1. Personal Characteristics] + element trait { + (tei_trait+ + | (tei_model.headLike*, + tei_model.pLike+, + (tei_model.noteLike | tei_model.biblLike)*) + | (tei_model.labelLike + | tei_model.noteLike + | tei_model.biblLike)*), + tei_att.global.attributes, + tei_att.datable.attributes, + tei_att.editLike.attributes, + tei_att.naming.attributes, + tei_att.typed.attributes, + empty + } +tei_nym = + + ## (canonical name) contains the definition for a canonical name or name component of any kind. [13.3.5. Names and Nyms] + element nym { + (tei_model.entryPart*, tei_model.pLike*, tei_nym*), + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.sortable.attributes, + + ## points to constituent nyms + attribute parts { + list { xsd:anyURI+ } + }?, + empty + } +tei_listNym = + + ## (list of canonical names) contains a list of nyms, that is, standardized names for any thing. [13.3.5. Names and Nyms] + element listNym { + (tei_model.headLike*, + (tei_nym | tei_listNym)+, + (tei_relation | tei_listRelation)*), + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.declarable.attributes, + tei_att.sortable.attributes, + empty + } +tei_att.global.linking.attributes = + tei_att.global.linking.attribute.corresp, + tei_att.global.linking.attribute.synch, + tei_att.global.linking.attribute.sameAs, + tei_att.global.linking.attribute.copyOf, + tei_att.global.linking.attribute.next, + tei_att.global.linking.attribute.prev, + tei_att.global.linking.attribute.exclude, + tei_att.global.linking.attribute.select +tei_att.global.linking.attribute.corresp = + + ## (corresponds) points to elements that correspond to the current element in some way. + attribute corresp { + list { xsd:anyURI+ } + }? +tei_att.global.linking.attribute.synch = + + ## (synchronous) points to elements that are synchronous with the current element. + attribute synch { + list { xsd:anyURI+ } + }? +tei_att.global.linking.attribute.sameAs = + + ## points to an element that is the same as the current element. + attribute sameAs { xsd:anyURI }? +tei_att.global.linking.attribute.copyOf = + + ## points to an element of which the current element is a copy. + attribute copyOf { xsd:anyURI }? +tei_att.global.linking.attribute.next = + + ## points to the next element of a virtual aggregate of which the current element is part. + attribute next { xsd:anyURI }? +tei_att.global.linking.attribute.prev = + + ## (previous) points to the previous element of a virtual aggregate of which the current element is part. + attribute prev { xsd:anyURI }? +tei_att.global.linking.attribute.exclude = + + ## points to elements that are in exclusive alternation with the current element. + attribute exclude { + list { xsd:anyURI+ } + }? +tei_att.global.linking.attribute.select = + + ## selects one or more alternants; if one alternant is selected, the ambiguity or uncertainty is marked as resolved. If more than one alternant is selected, the degree of ambiguity or uncertainty is marked as reduced by the number of alternants not selected. + attribute select { + list { xsd:anyURI+ } + }? +tei_link = + + ## defines an association or hypertextual link among elements or passages, of some type not more precisely specifiable by other elements. [16.1. Links] + element link { + empty + >> sch:pattern [ + id = "app-link-linkTargets3-constraint-19" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:link" + "\x{a}" ~ + " " + sch:assert [ + test = "contains(normalize-space(@target),' ')" + "You must supply at least two values for @target or on " + sch:name [ ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.pointing.attributes, + tei_att.typed.attributes, + empty + } +tei_linkGrp = + + ## (link group) defines a collection of associations or hypertextual links. [16.1. Links] + element linkGrp { + (tei_link | tei_ptr)+, + tei_att.global.attributes, + tei_att.pointing.group.attributes, + empty + } +tei_ab = + + ## (anonymous block) contains any arbitrary component-level unit of text, acting as an anonymous container for phrase or inter level elements analogous to, but without the semantic baggage of, a paragraph. [16.3. Blocks, Segments, and Anchors] + element ab { + tei_macro.paraContent + >> sch:pattern [ + id = "app-ab-abstractModel-structure-p-constraint-22" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:ab" + "\x{a}" ~ + " " + sch:report [ + test = + "(ancestor::tei:p or ancestor::tei:ab) and not(parent::tei:exemplum |parent::tei:item |parent::tei:note |parent::tei:q |parent::tei:quote |parent::tei:remarks |parent::tei:said |parent::tei:sp |parent::tei:stage |parent::tei:cell |parent::tei:figure)" + "\x{a}" ~ + " Abstract model violation: ab may not contain paragraphs or other ab elements.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + >> sch:pattern [ + id = "app-ab-abstractModel-structure-l-constraint-23" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:ab" + "\x{a}" ~ + " " + sch:report [ + test = "ancestor::tei:l or ancestor::tei:lg" + "\x{a}" ~ + " Abstract model violation: Lines may not contain higher-level divisions such as p or ab.\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.typed.attributes, + tei_att.declaring.attributes, + tei_att.fragmentable.attributes, + tei_att.written.attributes, + empty + } +tei_anchor = + + ## (anchor point) attaches an identifier to a point within a text, whether or not it corresponds with a textual element. [8.4.2. Synchronization and Overlap 16.4. Correspondence and Alignment] + element anchor { + empty, tei_att.global.attributes, tei_att.typed.attributes, empty + } +tei_seg = + + ## (arbitrary segment) represents any segmentation of text below the chunk level. [16.3. Blocks, Segments, and Anchors 6.2. Components of the Verse Line 7.2.5. Speech Contents] + element seg { + tei_macro.paraContent, + tei_att.global.attributes, + tei_att.segLike.attributes, + tei_att.typed.attributes, + tei_att.source.attributes, + tei_att.written.attributes, + empty + } +tei_when = + + ## indicates a point in time either relative to other elements in the same timeline tag, or absolutely. [16.5.2. Placing Synchronous Events in Time] + element when { + empty, + tei_att.global.attributes, + + ## supplies an absolute value for the time. + attribute absolute { + xsd:date + | xsd:gYear + | xsd:gMonth + | xsd:gDay + | xsd:gYearMonth + | xsd:gMonthDay + | xsd:time + | xsd:dateTime + }?, + + ## specifies the unit of time in which the interval value is expressed, if this is not inherited from the parent timeline. + ## Suggested values include: 1] d(days) ; 2] h(hours) ; 3] min(minutes) ; 4] s(seconds) ; 5] ms(milliseconds) + attribute unit { + + ## (days) + "d" + | + ## (hours) + "h" + | + ## (minutes) + "min" + | + ## (seconds) + "s" + | + ## (milliseconds) + "ms" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## specifies a time interval either as a number or as one of the keywords defined by the datatype data.interval + attribute interval { + xsd:float + | ( + ## + "regular" + | + ## + "irregular" + | + ## + "unknown") + }?, + + ## identifies the reference point for determining the time of the current when element, which is obtained by adding the interval to the time of the reference point. + attribute since { xsd:anyURI }?, + empty + } +tei_timeline = + + ## provides a set of ordered points in time which can be linked to elements of a spoken text to create a temporal alignment of that text. [16.5.2. Placing Synchronous Events in Time] + element timeline { + tei_when+, + tei_att.global.attributes, + + ## designates the origin of the timeline, i.e. the time at which it begins. + attribute origin { xsd:anyURI }?, + + ## specifies the unit of time corresponding to the interval value of the timeline or of its constituent points in time. + ## Suggested values include: 1] d(days) ; 2] h(hours) ; 3] min(minutes) ; 4] s(seconds) ; 5] ms(milliseconds) + attribute unit { + + ## (days) + "d" + | + ## (hours) + "h" + | + ## (minutes) + "min" + | + ## (seconds) + "s" + | + ## (milliseconds) + "ms" + | xsd:token { pattern = "(\p{L}|\p{N}|\p{P}|\p{S})+" } + }?, + + ## specifies a time interval either as a positive integral value or using one of a set of predefined codes. + attribute interval { + xsd:float + | ( + ## + "regular" + | + ## + "irregular" + | + ## + "unknown") + }?, + empty + } +tei_join = + + ## identifies a possibly fragmented segment of text, by pointing at the possibly discontiguous elements which compose it. [16.7. Aggregation] + element join { + ((tei_model.descLike | tei_model.certLike)*) + >> sch:pattern [ + id = "app-join-joinTargets3-constraint-20" + "\x{a}" ~ + " " + sch:rule [ + context = "tei:join" + "\x{a}" ~ + " " + sch:assert [ + test = "contains(@target,' ')" + "\x{a}" ~ + "You must supply at least two values for @target on " + sch:name [ ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ] + "\x{a}" ~ + " " + ], + tei_att.global.attributes, + tei_att.pointing.attributes, + tei_att.typed.attributes, + + ## specifies the name of an element which this aggregation may be understood to represent. + attribute result { xsd:Name }?, + + ## indicates whether the targets to be joined include the entire element indicated (the entire subtree including its root), or just the children of the target (the branches of the subtree). + [ a:defaultValue = "root" ] + attribute scope { + + ## the rooted subtrees indicated by the target attribute are joined, each subtree become a child of the virtual element created by the join + "root" + | + ## the children of the subtrees indicated by the target attribute become the children of the virtual element (i.e. the roots of the subtrees are discarded) + "branches" + }?, + empty + } +tei_joinGrp = + + ## (join group) groups a collection of join elements and possibly pointers. [16.7. Aggregation] + element joinGrp { + (tei_model.glossLike*, (tei_join | tei_ptr)+), + tei_att.global.attributes, + tei_att.pointing.group.attributes, + + ## supplies the default value for the result on each join included within the group. + attribute result { xsd:Name }?, + empty + } +tei_alt = + + ## (alternation) identifies an alternation or a set of choices among elements or passages. [16.8. Alternation] + element alt { + empty, + tei_att.global.attributes, + tei_att.pointing.attribute.targetLang, + tei_att.pointing.attribute.evaluate, + tei_att.typed.attributes, + + ## specifies the destination of the reference by supplying one or more URI References + attribute target { + list { xsd:anyURI, xsd:anyURI, xsd:anyURI* } + }?, + + ## states whether the alternations gathered in this collection are exclusive or inclusive. + attribute mode { + + ## (exclusive) indicates that the alternation is exclusive, i.e. that at most one of the alternatives occurs. + "excl" + | + ## (inclusive) indicates that the alternation is not exclusive, i.e. that one or more of the alternatives occur. + "incl" + }?, + + ## If mode is , each weight states the probability that the corresponding alternative occurs. If mode is incl each weight states the probability that the corresponding alternative occurs given that at least one of the other alternatives occurs. + attribute weights { + list { xsd:double, xsd:double, xsd:double* } + }?, + empty + } +tei_altGrp = + + ## (alternation group) groups a collection of alt elements and possibly pointers. [16.8. Alternation] + element altGrp { + (tei_alt | tei_ptr)*, + tei_att.global.attributes, + tei_att.pointing.group.attributes, + + ## states whether the alternations gathered in this collection are exclusive or inclusive. + [ a:defaultValue = "excl" ] + attribute mode { + + ## (exclusive) indicates that the alternation is exclusive, i.e. that at most one of the alternatives occurs. + "excl" + | + ## (inclusive) indicates that the alternation is not exclusive, i.e. that one or more of the alternatives occur. + "incl" + }?, + empty + } +start = tei_TEI | tei_teiCorpus diff --git a/6 - Transformaciones y visualizaciones. Del etiquetado XML a la web (Juan Jose Escribano)/Ejercicios_XSLT.pdf b/6 - Transformaciones y visualizaciones. Del etiquetado XML a la web (Juan Jose Escribano)/Ejercicios_XSLT.pdf new file mode 100644 index 0000000..e1f6464 Binary files /dev/null and b/6 - Transformaciones y visualizaciones. Del etiquetado XML a la web (Juan Jose Escribano)/Ejercicios_XSLT.pdf differ diff --git "a/6 - Transformaciones y visualizaciones. Del etiquetado XML a la web (Juan Jose Escribano)/Presentaci\303\263n_XSLT.pdf" "b/6 - Transformaciones y visualizaciones. Del etiquetado XML a la web (Juan Jose Escribano)/Presentaci\303\263n_XSLT.pdf" new file mode 100644 index 0000000..b4f01e7 Binary files /dev/null and "b/6 - Transformaciones y visualizaciones. Del etiquetado XML a la web (Juan Jose Escribano)/Presentaci\303\263n_XSLT.pdf" differ diff --git "a/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/2016.06.29.EjerciciosElenaVictor.pdf" "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/2016.06.29.EjerciciosElenaVictor.pdf" new file mode 100644 index 0000000..ebcccb8 Binary files /dev/null and "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/2016.06.29.EjerciciosElenaVictor.pdf" differ diff --git "a/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/2016.06.29.ElenaMontiel.pdf" "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/2016.06.29.ElenaMontiel.pdf" new file mode 100644 index 0000000..899b9b7 Binary files /dev/null and "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/2016.06.29.ElenaMontiel.pdf" differ diff --git "a/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/2016.06.29.Victor.pdf" "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/2016.06.29.Victor.pdf" new file mode 100644 index 0000000..967a890 Binary files /dev/null and "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/2016.06.29.Victor.pdf" differ diff --git "a/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/bne.nt" "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/bne.nt" new file mode 100644 index 0000000..077bf9f --- /dev/null +++ "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/bne.nt" @@ -0,0 +1,43 @@ + . + "Santillana, \u00CD\u00F1igo L\u00F3pez de Mendoza," . + . + . + . + . + "1398-1458" . + "port. (Marqu\u00E9s de Santillana)" . + "(L\u00F3pez de Mendoza, \u00CD\u00F1igo (Carri\u00F3n de los Condes, Palencia, 1398-Guadalajara, 1458); el Marqu\u00E9s de Santillana es una de las figuras de mayor relieve pol\u00EDtico y literario de la \u00E9poca de Juan II)" . + "port. (\u00CD\u00F1igo L\u00F3pez de Mendoza, Marqu\u00E9s de Santillana)" . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + . + "Santillana, \u00CD\u00F1igo L\u00F3pez de Mendoza," . + "XX1106548" . + "Serranillas, canciones y decires, 1994" . + "Dic. de literatura espa\u00F1ola e hispanaomericana, 1993" . + "Antolog\u00EDa de su obra en prosa y verso, 1985" . + "Marqu\u00E9s de" . + "L\u00F3pez de Mendoza, \u00CD\u00F1igo," . + "Santillana," . diff --git "a/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/bva.nt" "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/bva.nt" new file mode 100644 index 0000000..93dae7e --- /dev/null +++ "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/bva.nt" @@ -0,0 +1,27 @@ + . + . + "BIVIAN" . + . + . + . + "BIVIAN" . + . + . + "[Retrato de I\u00F1igo Lopez de Mendoza]" . + "Referencias: Iconograf\u00EDa Hispana, 5025-3" . + "Inscripci\u00F3n: \"El Marqu\u00E9s de Santillana\"" . + "Il. en: Lopez De Mendoza, I\u00F1igo. Marqu\u00E9s de Santillana. \u00AEObras de don I\u00F1igo L\u00F3pez de Mendoza\u00AE. Por don Jos\u00E9 Amador de los R\u00EDos, Madrid, 1852" . + "Ilustraci\u00F3n de Obras de don l\u00F1igo L\u00F3pez de Mendoza, por don Jos\u00E9 Amador de los R\u00EDos. Madrid, 1852" . + "Copia digital : realizada por la Biblioteca Nacional de Espa\u00F1a" . + "Craus, F. Lit\u00F3grafo y dibujante..Craus, F. Litograf\u00EDa de..R\u00EDos, Demetrio de los. Lit\u00F3grafo. Siglo XIX" . + "Ilustraciones y Fotos" . + "spa" . + "1852" . + . + . + . + . + "Cat\u00E1logos - Material gr\u00E1fico - Grabados y Dibujos" . + "Secciones - Biblioteca Gr\u00E1fica - Grabados y Dibujos" . + "http://creativecommons.org/publicdomain/mark/1.0/" . + "IMAGE" . diff --git "a/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/cv.nt" "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/cv.nt" new file mode 100644 index 0000000..5c8afd9 --- /dev/null +++ "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/cv.nt" @@ -0,0 +1,24 @@ + . + . + "Proemio y carta / \u00CD\u00F1igo L\u00F3pez de Mendoza"^^ . + "224172"^^ . + "http://www.europeana.eu/portal/record/90901/nd_ark__59851_bmc0z719.html"^^ . + "Edici\u00F3n digital a partir del manuscrito 2655 de la Biblioteca Universitaria de Salamanca."^^ . + . + . + "Desconocido"^^ . + . + . + "Alicante : Biblioteca Virtual Miguel de Cervantes, 2005"^^ . + "Proemio y carta / \u00CD\u00F1igo L\u00F3pez de Mendoza"^^ . + . + "http://www.cervantesvirtual.com/nd/ark:/59851/bmc0z719"^^ . + "es"^^ . + . + . + . + . + . + . + . + . diff --git "a/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/dbpedia.nt" "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/dbpedia.nt" new file mode 100644 index 0000000..42f204d --- /dev/null +++ "b/7 - Aprovechamiento de las tecnolog\303\255as sem\303\241nticas y los recursos enlazados en el an\303\241lisis de textos multiling\303\274es (Rodriguez Doncel, Montiel Ponsoda)/dbpedia.nt" @@ -0,0 +1,63 @@ + . + . + . + "El Marqu\u00E9s de Santillana, nombre por el que es conocido \u00CD\u00F1igo L\u00F3pez de Mendoza, I marqu\u00E9s de Santillana, I conde del Real de Manzanares y se\u00F1or de Hita y Buitrago (Carri\u00F3n de los Condes, Palencia, 19 de agosto de 1398 - Guadalajara, 25 de marzo de 1458), fue un militar y poeta del Prerrenacimiento."@es . + . + "Don I\u00F1igo L\u00F3pez de Mendoza y de la Vega, markies van Santillana (19 augustus 1398 - 25 maart 1458) was een Castiliaans dichter, die een belangrijke maatschappelijke en literaire positie bekleedde tijdens het bewind van Johan II van Castili\u00EB. Hij werd geboren in Carri\u00F3n de los Condes in Oud-Castili\u00EB als lid van een adellijke familie die veelvuldig werd afgebeeld in de kunst."@nl . + . + . + "Marqu\u00E9s de Santillana"@en . + . + "\u00CD\u00F1igo L\u00F3pez de Mendoza, Marquis de Santillana y Conde del Real de Manzanares (* 19. August 1398 in Carri\u00F3n de los Condes, Palencia; \u2020 25. M\u00E4rz 1458 in Guadalajara) war ein spanischer Staatsmann und Dichter."@de . + . + . + "\u00CD\u00F1igo L\u00F3pez de Mendoza y de la Vega, marquis de Santillane (1398\u20131458) est un po\u00E8te espagnol."@fr . + . + "El Marqu\u00E9s de Santillana, nombre por el que es conocido \u00CD\u00F1igo L\u00F3pez de Mendoza, I marqu\u00E9s de Santillana, I conde del Real de Manzanares y se\u00F1or de Hita y Buitrago (Carri\u00F3n de los Condes, Palencia, 19 de agosto de 1398 - Guadalajara, 25 de marzo de 1458), fue un militar y poeta del Prerrenacimiento."@es . + . + . + "\u00CD\u00F1igo L\u00F3pez de Mendoza y de la Vega, marquis de Santillane (1398\u20131458) est un po\u00E8te espagnol."@fr . + "Don I\u00F1igo L\u00F3pez de Mendoza y de la Vega, markies van Santillana (19 augustus 1398 - 25 maart 1458) was een Castiliaans dichter, die een belangrijke maatschappelijke en literaire positie bekleedde tijdens het bewind van Johan II van Castili\u00EB. Hij werd geboren in Carri\u00F3n de los Condes in Oud-Castili\u00EB als lid van een adellijke familie die veelvuldig werd afgebeeld in de kunst. Zijn grootvader, Pedro Gonz\u00E1lez de Mendoza, en zijn vader, Diego Hurtado de Mendoza, Admiraal van Castili\u00EB, waren beide dichters die nauwe banden onderhielden met de grote literaire figuren van die tijd: kanselier Lopez de Ayala, Fern\u00E1n Perez de Guzman en Gomez Manrique. Hij had verschillende kinderen, waaronder: Pedro Gonz\u00E1lez."@nl . + "\u00CD\u00F1igo L\u00F3pez de Mendoza"@fr . + "Don \u00CD\u00F1igo L\u00F3pez de Mendoza y de la Vega, 1\u00BA Marqu\u00EAs de Santillana (1398-1458) (* Carri\u00F3n de los Condes, Pal\u00EAncia, 19 de Agosto de 1398 - \u2020 Guadalajara, 25 de Mar\u00E7o de 1458), foi humanista, poeta, bibli\u00F3filo, militar e estadista espanhol. Ocupou papel proeminente na sociedade e na literatura espanhola durante o reinado de Jo\u00E3o II, rei de Castela e Le\u00E3o."@pt . + . + . + "\u00CD\u00F1igo L\u00F3pez de Mendoza"@nl . + "\u0625\u0646\u064A\u063A\u0648 \u0644\u0648\u0628\u064A\u062B \u062F\u064A \u0645\u064A\u0646\u062F\u0648\u062B\u0627 (\u0628\u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064A\u0629: \u00CD\u00F1igo L\u00F3pez de Mendoza) \u0647\u0648 \u0623\u062D\u062F \u0623\u0647\u0645 \u0631\u0645\u0648\u0632 \u0627\u0644\u0623\u062F\u0628 \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064A \u0627\u0644\u0645\u0645\u062B\u0644\u0629 \u0644\u0639\u0635\u0631 \u0645\u0627 \u0642\u0628\u0644 \u0627\u0644\u0646\u0647\u0636\u0629 \u0641\u064A \u0627\u0644\u0642\u0631\u0646 \u0627\u0644\u062E\u0627\u0645\u0633 \u0639\u0634\u0631\u060C \u0648\u0644\u062F \u0641\u064A 19 \u0623\u063A\u0633\u0637\u0633 1398 \u0641\u064A \u0643\u0627\u0631\u064A\u0648\u0646 \u062F\u064A \u0644\u0648\u0633 \u0643\u0648\u0646\u062F\u064A\u0633 \u0641\u064A \u0628\u0627\u0644\u0646\u062B\u064A\u0627 \u0628\u0625\u0633\u0628\u0627\u0646\u064A\u0627. \u0627\u0634\u062A\u0647\u0631 \u0645\u0646 \u0628\u064A\u0646 \u0634\u0639\u0631\u0627\u0621 \u0641\u062A\u0631\u0629 \u062D\u0643\u0645 \u062E\u0648\u0627\u0646 \u0627\u0644\u062B\u0627\u0646\u064A \u0628\u0633\u0628\u0628 \u062C\u0648\u062F\u0629 \u0634\u0639\u0631\u0647 \u0648\u062A\u0646\u0648\u0639 \u0645\u0648\u0636\u0648\u0639\u0627\u062A\u0647."@ar . + . + "675843734"^^ . + "\u00CD\u00F1igo L\u00F3pez de Mendoza"@it . + . + . + . + . + "10185"^^ . + "\u0625\u0646\u064A\u063A\u0648 \u0644\u0648\u0628\u064A\u062B \u062F\u064A \u0645\u064A\u0646\u062F\u0648\u062B\u0627"@ar . + "\u0625\u0646\u064A\u063A\u0648 \u0644\u0648\u0628\u064A\u062B \u062F\u064A \u0645\u064A\u0646\u062F\u0648\u062B\u0627 (\u0628\u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064A\u0629: \u00CD\u00F1igo L\u00F3pez de Mendoza) \u0647\u0648 \u0623\u062D\u062F \u0623\u0647\u0645 \u0631\u0645\u0648\u0632 \u0627\u0644\u0623\u062F\u0628 \u0627\u0644\u0625\u0633\u0628\u0627\u0646\u064A \u0627\u0644\u0645\u0645\u062B\u0644\u0629 \u0644\u0639\u0635\u0631 \u0645\u0627 \u0642\u0628\u0644 \u0627\u0644\u0646\u0647\u0636\u0629 \u0641\u064A \u0627\u0644\u0642\u0631\u0646 \u0627\u0644\u062E\u0627\u0645\u0633 \u0639\u0634\u0631\u060C \u0648\u0644\u062F \u0641\u064A 19 \u0623\u063A\u0633\u0637\u0633 1398 \u0641\u064A \u0643\u0627\u0631\u064A\u0648\u0646 \u062F\u064A \u0644\u0648\u0633 \u0643\u0648\u0646\u062F\u064A\u0633 \u0641\u064A \u0628\u0627\u0644\u0646\u062B\u064A\u0627 \u0628\u0625\u0633\u0628\u0627\u0646\u064A\u0627. \u0627\u0634\u062A\u0647\u0631 \u0645\u0646 \u0628\u064A\u0646 \u0634\u0639\u0631\u0627\u0621 \u0641\u062A\u0631\u0629 \u062D\u0643\u0645 \u062E\u0648\u0627\u0646 \u0627\u0644\u062B\u0627\u0646\u064A \u0628\u0633\u0628\u0628 \u062C\u0648\u062F\u0629 \u0634\u0639\u0631\u0647 \u0648\u062A\u0646\u0648\u0639 \u0645\u0648\u0636\u0648\u0639\u0627\u062A\u0647. \u0643\u0627\u0646 \u0645\u0624\u064A\u062F \u0644\u0644\u062D\u0631\u0643\u0629 \u0627\u0644\u0625\u0646\u0633\u0627\u0646\u064A\u0629 \u0648\u0627\u0644\u062A\u064A \u0628\u062F\u0623\u062A \u0641\u064A \u0625\u064A\u0637\u0627\u0644\u064A\u0627\u060C \u062A\u0631\u062C\u0645\u062A \u0628\u0641\u0636\u0644\u0647 \u0627\u0644\u0639\u062F\u064A\u062F \u0645\u0646 \u0643\u062A\u0628 \u0628\u0644\u0627\u062A\u0648\u0646 \u0648\u0641\u0631\u062C\u064A\u0644\u064A\u0648\u0633 \u0648\u0623\u0648\u0641\u064A\u062F\u064A\u0648\u0633 \u0641\u0628\u0627\u0644\u0631\u063A\u0645 \u0645\u0646 \u0639\u062F\u0645 \u0625\u0644\u0645\u0627\u0645\u0647 \u0628\u0627\u0644\u0644\u063A\u0629 \u0627\u0644\u0644\u0627\u062A\u064A\u0646\u064A\u0629 \u0625\u0644\u0627 \u0623\u0646\u0647 \u0643\u0627\u0646 \u064A\u062A\u0645\u062A\u0639 \u0628\u062B\u0642\u0627\u0641\u0629 \u0623\u062F\u0628\u064A\u0629 \u0648\u0627\u0633\u0639\u0629 \u0648\u0630\u0644\u0643 \u0628\u0633\u0628\u0628 \u0645\u0639\u0631\u0641\u062A\u0647 \u0628\u0627\u0644\u0644\u063A\u0629 \u0627\u0644\u0625\u064A\u0637\u0627\u0644\u064A\u0629\u060C \u0627\u0644\u0641\u0631\u0646\u0633\u064A\u0629\u060C \u0627\u0644\u062C\u0644\u064A\u0642\u064A\u0629 \u0648\u0627\u0644\u0643\u062A\u0644\u0627\u0646\u064A\u0629. \u0648\u062A\u0648\u0641\u064A \u0641\u064A 25 \u0645\u0627\u0631\u0633 1458 \u0641\u064A \u063A\u0648\u0627\u062F\u0627\u0644\u0627\u062E\u0627\u0631\u0627 \u0641\u064A \u0625\u0633\u0628\u0627\u0646\u064A\u0627."@ar . + "\u0418\u0301\u043D\u044C\u0438\u0433\u043E \u041B\u043E\u0301\u043F\u0435\u0441 \u0434\u0435 \u041C\u0435\u043D\u0434\u043E\u0301\u0441\u0430, \u043C\u0430\u0440\u043A\u0438\u0437 \u0421\u0430\u043D\u0442\u0438\u043B\u044C\u044F\u0301\u043D\u0430 (\u0438\u0441\u043F. \u00CD\u00F1igo L\u00F3pez de Mendoza y de la Vega, 19 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 1398(13980819) \u2014 25 \u043C\u0430\u0440\u0442\u0430 1458) \u2014 \u043A\u0430\u0441\u0442\u0438\u043B\u044C\u0441\u043A\u0438\u0439 \u043F\u043E\u044D\u0442 \u0438 \u0433\u043E\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043D\u043D\u044B\u0439 \u0434\u0435\u044F\u0442\u0435\u043B\u044C. \u041A\u043B\u044E\u0447\u0435\u0432\u0430\u044F \u0444\u0438\u0433\u0443\u0440\u0430 \u0438\u0441\u043F\u0430\u043D\u0441\u043A\u043E\u0439 \u043B\u0438\u0442\u0435\u0440\u0430\u0442\u0443\u0440\u044B \u0432 \u043F\u0435\u0440\u0438\u043E\u0434 \u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u0425\u0443\u0430\u043D\u0430 II \u041A\u0430\u0441\u0442\u0438\u043B\u044C\u0441\u043A\u043E\u0433\u043E."@ru . + . + "\u00CD\u00F1igo L\u00F3pez de Mendoza, 1st Marquis of Santillana"@en . + . + . + "\u041B\u043E\u043F\u0435\u0441 \u0434\u0435 \u041C\u0435\u043D\u0434\u043E\u0441\u0430, \u0418\u043D\u044C\u0438\u0433\u043E"@ru . + "I\u00F1igo L\u00F3pez de Mendoza"@de . + . + . + "Don \u00CD\u00F1igo L\u00F3pez de Mendoza y de la Vega, Marquis of Santillana (19 August 1398 \u2013 25 March 1458) was a Castilian politician and poet who held an important position in society and literature during the reign of John II of Castile."@en . + "Marqu\u00E9s de Santillana"@en . + . + . + "\u0418\u0301\u043D\u044C\u0438\u0433\u043E \u041B\u043E\u0301\u043F\u0435\u0441 \u0434\u0435 \u041C\u0435\u043D\u0434\u043E\u0301\u0441\u0430, \u043C\u0430\u0440\u043A\u0438\u0437 \u0421\u0430\u043D\u0442\u0438\u043B\u044C\u044F\u0301\u043D\u0430 (\u0438\u0441\u043F. \u00CD\u00F1igo L\u00F3pez de Mendoza y de la Vega, 19 \u0430\u0432\u0433\u0443\u0441\u0442\u0430 1398(13980819) \u2014 25 \u043C\u0430\u0440\u0442\u0430 1458) \u2014 \u043A\u0430\u0441\u0442\u0438\u043B\u044C\u0441\u043A\u0438\u0439 \u043F\u043E\u044D\u0442 \u0438 \u0433\u043E\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043D\u043D\u044B\u0439 \u0434\u0435\u044F\u0442\u0435\u043B\u044C. \u041A\u043B\u044E\u0447\u0435\u0432\u0430\u044F \u0444\u0438\u0433\u0443\u0440\u0430 \u0438\u0441\u043F\u0430\u043D\u0441\u043A\u043E\u0439 \u043B\u0438\u0442\u0435\u0440\u0430\u0442\u0443\u0440\u044B \u0432 \u043F\u0435\u0440\u0438\u043E\u0434 \u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u0425\u0443\u0430\u043D\u0430 II \u041A\u0430\u0441\u0442\u0438\u043B\u044C\u0441\u043A\u043E\u0433\u043E."@ru . + "\u00CD\u00F1igo L\u00F3pez de Mendoza, 1\u00BA Marqu\u00EAs de Santillana"@pt . + "Marqu\u00E9s de Santillana"@es . + . + . + "\u00CD\u00F1igo L\u00F3pez de Mendoza, Marquis de Santillana y Conde del Real de Manzanares (* 19. August 1398 in Carri\u00F3n de los Condes, Palencia; \u2020 25. M\u00E4rz 1458 in Guadalajara) war ein spanischer Staatsmann und Dichter."@de . + . + . + . + . + . + "Don \u00CD\u00F1igo L\u00F3pez de Mendoza y de la Vega, Marquis of Santillana (19 August 1398 \u2013 25 March 1458) was a Castilian politician and poet who held an important position in society and literature during the reign of John II of Castile."@en . + "318241"^^ . + "Don \u00CD\u00F1igo L\u00F3pez de Mendoza y de la Vega, 1\u00BA Marqu\u00EAs de Santillana (1398-1458) (* Carri\u00F3n de los Condes, Pal\u00EAncia, 19 de Agosto de 1398 - \u2020 Guadalajara, 25 de Mar\u00E7o de 1458), foi humanista, poeta, bibli\u00F3filo, militar e estadista espanhol. Ocupou papel proeminente na sociedade e na literatura espanhola durante o reinado de Jo\u00E3o II, rei de Castela e Le\u00E3o."@pt . diff --git "a/8 - Posibilidades de los Linked Data para el an\303\241lisis de textos y especialmente para la visualizaci\303\263n geogr\303\241fica_ el caso del proyecto Pelagios (Pau de Soto)/LINHD_De Soto.pdf" "b/8 - Posibilidades de los Linked Data para el an\303\241lisis de textos y especialmente para la visualizaci\303\263n geogr\303\241fica_ el caso del proyecto Pelagios (Pau de Soto)/LINHD_De Soto.pdf" new file mode 100644 index 0000000..01c3255 Binary files /dev/null and "b/8 - Posibilidades de los Linked Data para el an\303\241lisis de textos y especialmente para la visualizaci\303\263n geogr\303\241fica_ el caso del proyecto Pelagios (Pau de Soto)/LINHD_De Soto.pdf" differ diff --git "a/8 - Posibilidades de los Linked Data para el an\303\241lisis de textos y especialmente para la visualizaci\303\263n geogr\303\241fica_ el caso del proyecto Pelagios (Pau de Soto)/LINHD_practica-4718325.pdf" "b/8 - Posibilidades de los Linked Data para el an\303\241lisis de textos y especialmente para la visualizaci\303\263n geogr\303\241fica_ el caso del proyecto Pelagios (Pau de Soto)/LINHD_practica-4718325.pdf" new file mode 100644 index 0000000..aba3c57 Binary files /dev/null and "b/8 - Posibilidades de los Linked Data para el an\303\241lisis de textos y especialmente para la visualizaci\303\263n geogr\303\241fica_ el caso del proyecto Pelagios (Pau de Soto)/LINHD_practica-4718325.pdf" differ diff --git a/9 - Kickoff Meeting ? POSTDATA Project/20160622_POSTDATA KoM Official Agenda.pdf b/9 - Kickoff Meeting ? POSTDATA Project/20160622_POSTDATA KoM Official Agenda.pdf new file mode 100644 index 0000000..737b3e3 Binary files /dev/null and b/9 - Kickoff Meeting ? POSTDATA Project/20160622_POSTDATA KoM Official Agenda.pdf differ