Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
themeEclipse
            <mods:name type="personal">
                <mods:namePart type="given">Elizabeth</mods:namePart>
                <mods:namePart type="termsOfAddress">D'Angleterre, Princesse</mods:namePart>
                <mods:displayForm>Elizabeth, Princesse D'Angleterre</mods:displayForm>
                <mods:role>
                    <mods:roleTerm authority="marcrelator" type="code" valueURI="http://id.loc.gov/vocabulary/relators/rcp">rcp</mods:roleTerm>
                </mods:role>
            </mods:name>

Personenname mit weiteren Namenszusätzen

Der Name der Person enthält weitere Namenszusätze

Code Block
languagexml
themeEclipse
            <mods:name type="personal" valueURI="http://d-nb.info/gnd/118535994">
                <mods:namePart type="given">Friedrich Wilhelm</mods:namePart>
                <mods:namePart type="termsOfAddress">IV., Preußen, König</mods:namePart>
                <mods:displayForm>Friedrich Wilhelm IV., Preußen, König</mods:displayForm>
                <mods:role>
                    <mods:roleTerm authority="marcrelator" type="code" valueURI="http://id.loc.gov/vocabulary/relators/cre">cre</mods:roleTerm>
                </mods:role>
            </mods:name>

Lebensdaten

Neben dem Namen werden Lebensdaten angegeben

...

Code Block
languagexml
themeEclipse
            <mods:name type="personal">
                <mods:namePart type="family">Gülich</mods:namePart>
                <mods:namePart type="given">Johann Caspar</mods:namePart>
                <mods:displayForm>Gülich, Johann Caspar</mods:displayForm>
                <mods:role>
                    <mods:roleTerm authority="marcrelator" type="code" valueURI="http://id.loc.gov/vocabulary/relators/aut">aut</mods:roleTerm>
                </mods:role>
            </mods:name>
            <mods:name type="personal">
                <mods:namePart type="family">Gülich</mods:namePart>
                <mods:namePart type="given">Gerhard Fridrich</mods:namePart>
                <mods:displayForm>Gülich, Gerhard Fridrich</mods:displayForm>
                <mods:role>
                    <mods:roleTerm authority="marcrelator" type="code" valueURI="http://id.loc.gov/vocabulary/relators/ill">ill</mods:roleTerm>
                </mods:role>
            </mods:name>

Mehrere Rollen

Wenn eine Person oder Körperschaft mehr als eine Rolle bei der Entstehung, Veröffentlichung u.a. des Dokuments hatte, wird mods:role wiederholt.

Code Block
languagexml
themeEclipse
            <mods:name type="personal">
                <mods:namePart type="family">Gülich</mods:namePart>
                <mods:namePart type="given">Johann Caspar</mods:namePart>
                <mods:displayForm>Gülich, Johann Caspar</mods:displayForm>
                <mods:role>
                    <mods:roleTerm authority="marcrelator" type="code" valueURI="http://id.loc.gov/vocabulary/relators/aut">aut</mods:roleTerm>
                </mods:role>
                <mods:role>
                    <mods:roleTerm authority="marcrelator" type="code" valueURI="http://id.loc.gov/vocabulary/relators/ill">ill</mods:roleTerm>
                </mods:role>
            </mods:name>

...