diff --git a/convert-anystyle-data/llamore-utils.ipynb b/convert-anystyle-data/llamore-utils.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..24209cad241fd0259d635260fcec861888d62edd --- /dev/null +++ b/convert-anystyle-data/llamore-utils.ipynb @@ -0,0 +1,355 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "../data/gold\\10.1111_1467-6478.00057.xml\n", + "../data/gold\\10.1111_1467-6478.00080.xml\n", + "../data/gold\\10.1515_zfrs-1980-0103.xml\n", + "../data/gold\\10.1515_zfrs-1980-0104.xml\n" + ] + } + ], + "source": [ + "from lxml import etree\n", + "import os\n", + "import glob\n", + "\n", + "def insert_cited_range(file_path):\n", + " parser = etree.XMLParser(remove_blank_text=False, strip_cdata=False, resolve_entities=False)\n", + " tree = etree.parse(file_path, parser)\n", + " root = tree.getroot()\n", + "\n", + " ns = {\n", + " 'tei': 'http://www.tei-c.org/ns/1.0',\n", + " 'llamore': 'https://gitlab.mpcdf.mpg.de/dcfidalgo/llamore'\n", + " }\n", + "\n", + " instances = root.findall(\".//llamore:instance\", ns)\n", + "\n", + " for instance in instances:\n", + " bibls = instance.findall(\".//llamore:output[@type='bibl']//tei:bibl\", ns)\n", + " biblStructs = instance.findall(\".//llamore:output[@type='biblStruct']//tei:biblStruct\", ns)\n", + "\n", + " # Make sure bibl and biblStruct have the same length\n", + " if len(bibls) != len(biblStructs):\n", + " id = instance.attrib.get('{http://www.w3.org/XML/1998/namespace}id')\n", + " print(f'<bibl> and <biblStruct> have unequal length in {id}')\n", + " continue\n", + "\n", + " # Iterate over bibl and biblStruct, as they are paired by their indices\n", + " for bibl, biblStruct in zip(bibls, biblStructs):\n", + " bibl_citedRanges = bibl.findall(\".//tei:citedRange\", ns)\n", + " #biblStruct_monogr = biblStruct.find(\".//tei:monogr\", ns)\n", + " biblStruct_citedRange = biblStruct.find('.//tei:citedRange', ns)\n", + " if biblStruct_citedRange is None:\n", + " for bibl_citedRange in bibl_citedRanges: \n", + " # Copy the citedRange to biblStruct[last_element]\n", + " copied_bibl_citedRange = etree.Element(\"citedRange\")\n", + " copied_bibl_citedRange.text = bibl_citedRange.text\n", + " copied_bibl_citedRange.attrib.update(bibl_citedRange.attrib)\n", + " copied_bibl_citedRange.tail = biblStruct.tail\n", + " biblStruct.append(copied_bibl_citedRange)\n", + "\n", + " # Open the file in write mode and update its content\n", + " #file_path = file_path.replace(\".xml\", \".mod\")\n", + " with open(file_path, 'w') as file:\n", + " file.write(etree.tostring(root, pretty_print=False, encoding='utf-8').decode())\n", + "\n", + "# Get a list of all XML files in the directory\n", + "for filename in glob.glob(\"../data/gold/*.xml\"):\n", + " print(filename)\n", + " insert_cited_range(filename)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Regexes to rewrite xml structure:\n", + "\n", + "S: `( +)<input type=\"formatted\">(\\n +)(\\d+) ([\\s\\S]+?)(\\n +)</input>`\n", + "R: `$1<output type=\"footnote\">$2<note type=\"footnote\" n=\"$3\" xmlns=\"http://www.tei-c.org/ns/1.0\">$2 <label>$3</label>$2<seg>$4</seg>$5</note>\\n$1</output>`" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "../data/gold/10.1515_zfrs-1980-0103.xml\n", + "../data/gold/10.1515_zfrs-1980-0104.xml\n", + "../data/gold/10.1111_1467-6478.00080.xml\n", + "../data/gold/10.1111_1467-6478.00057.xml\n" + ] + } + ], + "source": [ + "# In <output type=bibl>, change <p> to <note> and add <label>\n", + "from lxml import etree\n", + "import os\n", + "import glob\n", + "from copy import deepcopy\n", + "\n", + "def insert_footnote_metadata(file_path):\n", + " parser = etree.XMLParser(remove_blank_text=False, strip_cdata=False, resolve_entities=False)\n", + " tree = etree.parse(file_path, parser)\n", + " root = tree.getroot()\n", + "\n", + " ns = {\n", + " 'tei': 'http://www.tei-c.org/ns/1.0',\n", + " 'llamore': 'https://gitlab.mpcdf.mpg.de/dcfidalgo/llamore'\n", + " }\n", + "\n", + " instances = root.findall(\".//llamore:instance\", ns)\n", + "\n", + " for instance in instances:\n", + " id = instance.attrib.get('{http://www.w3.org/XML/1998/namespace}id')\n", + " outp_footnote = instance.find(\".//llamore:output[@type='footnote']\", ns)\n", + " outp_bibl = instance.find(\".//llamore:output[@type='bibl']\", ns)\n", + " outp_bibstruct = instance.find(\".//llamore:output[@type='biblStruct']\", ns)\n", + " if outp_footnote is None:\n", + " print(f'No footnote output in {id}')\n", + " continue\n", + " note = outp_footnote.find(\"./tei:note\", ns)\n", + " if note is not None:\n", + " note.attrib['place'] = \"bottom\"\n", + " n= note.attrib.get('n', None)\n", + " if n is not None:\n", + " bibl_p = outp_bibl.find(\".//tei:p\", ns)\n", + " if bibl_p is None:\n", + " print(f\"no <p> in footnote {n}\")\n", + " else:\n", + " bibl_p.tag = \"note\"\n", + " bibl_p.attrib['n'] = n\n", + " bibl_p.attrib['type'] = \"footnote\"\n", + " bibl_p.attrib['place'] = \"bottom\"\n", + " label= outp_footnote.find(\"./tei:note/tei:label\", ns)\n", + " if label is not None:\n", + " bibl_p.insert(0, deepcopy(label))\n", + "\n", + " # Open the file in write mode and update its content\n", + " #file_path = file_path.replace(\".xml\", \"-mod.xml\")\n", + " with open(file_path, 'w') as file:\n", + " file.write(etree.tostring(root, pretty_print=False, encoding='utf-8').decode())\n", + "\n", + "# Get a list of all XML files in the directory\n", + "for filename in glob.glob(\"../data/gold/*.xml\"):\n", + " print(filename)\n", + " insert_footnote_metadata(filename)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "../data/gold/10.1515_zfrs-1980-0103.xml\n", + "../data/gold/10.1515_zfrs-1980-0104.xml\n", + "Text mismatch in instance-9:\n", + "9 Macaulay, Elegant Models, Empirical Pictures, and the Complexities of Contract, Law & Soc. Rev. 11 (1977) 507 ff.\n", + "9 Macaulay, Elegant Models, Empirical Pictures, and the Complexities of Contract, Law Soc. Rev. 11 (1977) 507 ff.\n", + "../data/gold/10.1111_1467-6478.00080.xml\n", + "../data/gold/10.1111_1467-6478.00057.xml\n" + ] + } + ], + "source": [ + "# In <output type=footnote>, insert segmentation without semantics\n", + "from lxml import etree\n", + "import os\n", + "import regex as re\n", + "import glob\n", + "from copy import deepcopy\n", + "import textwrap\n", + "\n", + "ns = {\n", + " 'tei': 'http://www.tei-c.org/ns/1.0',\n", + " 'llamore': 'https://gitlab.mpcdf.mpg.de/dcfidalgo/llamore'\n", + "}\n", + " \n", + "def add_tei_prefix(tag):\n", + " return f'{{{ns[\"tei\"]}}}{tag}'\n", + "\n", + "def get_element_text_content(elem):\n", + " return remove_whitespace(etree.tostring(elem, method=\"text\", encoding=\"unicode\"))\n", + "\n", + "def indentation_level(element):\n", + " level = 0\n", + " while element is not None:\n", + " element = element.getparent()\n", + " level += 1\n", + " return level - 1\n", + "\n", + "def prettify_content(elem: etree._Element, indentation=\" \", width=120):\n", + " text = re.sub(r'\\s+', ' ', elem.text, flags=re.MULTILINE)\n", + " lines = textwrap.wrap(text, width=width)\n", + " indent = indentation_level(elem) * indentation\n", + " lines = [ indent + indentation + line for line in lines ]\n", + " lines.insert(0, \"\")\n", + " lines.append(indent)\n", + " elem.text = '\\n'.join(lines)\n", + " \n", + "def fix_indentation(elem, level=0, indentation=\" \"):\n", + " indent = \"\\n\" + level*indentation\n", + " if len(elem):\n", + " if not elem.text or not elem.text.strip():\n", + " elem.text = indent + \" \"\n", + " if not elem.tail or not elem.tail.strip():\n", + " elem.tail = indent\n", + " for elem in elem:\n", + " fix_indentation(elem, level+1, indentation)\n", + " if not elem.tail or not elem.tail.strip():\n", + " elem.tail = indent\n", + " else:\n", + " if level and (not elem.tail or not elem.tail.strip()):\n", + " elem.tail = indent\n", + "\n", + "def remove_whitespace(text):\n", + " # we need to remove the whitespace that comes with the indentation of pretty-printed xml\n", + " text = re.sub(r'\\n\\s*', ' ', text)\n", + "\n", + " # reduce double spaces to one\n", + " while re.search(r'\\s\\s', text):\n", + " text = re.sub(r'\\s\\s', ' ', text)\n", + "\n", + " # escape character sequences which would be corrupted by whitespace removal rules\n", + " text = re.sub(r'\\. \\. \\.', '[!spaced_elipsis!]', text)\n", + "\n", + " # fix issues with whitespace before punctuation\n", + " text = re.sub(r' ([.;,!?%:])( |$)', r'\\1 ', text)\n", + " # opening and closing punctutation, such as brackets\n", + " text = re.sub(r'(\\p{Ps}) ', r'\\1', text)\n", + " text = re.sub(r' (\\p{Pe})', r'\\1', text)\n", + " # opening and closing quotes\n", + " text = re.sub(r'(\\p{Pi}) ', r'\\1', text)\n", + " text = re.sub(r' (\\p{Pf})', r'\\1', text)\n", + " # slash\n", + " text = re.sub(r' ?/ ?', r'/', text)\n", + " # hyphen\n", + " text = re.sub(r'([^ ])- ', r'\\1-', text)\n", + "\n", + " # restore sequences\n", + " text = text.replace('[!spaced_elipsis!]', r'. . .')\n", + " return text.strip()\n", + "\n", + "def create_children_from_text_content(element, tag, text_array):\n", + " normalized_content = get_element_text_content(element)\n", + " local_name = etree.QName(element).localname\n", + "\n", + " for string in text_array:\n", + " normalized_string = remove_whitespace(string)\n", + " if normalized_string in normalized_content:\n", + " tagged_string = f'<{tag}>{normalized_string}</{tag}>'\n", + " if tagged_string not in normalized_content and len(string) > 20:\n", + " normalized_content = normalized_content.replace(normalized_string, tagged_string)\n", + " else:\n", + " print(f'The string \"{normalized_string}\" was not found in \"{normalized_content}\"')\n", + " continue\n", + "\n", + " normalized_content = f'<{local_name} xmlns=\"{ns[\"tei\"]}\">{normalized_content}</{local_name}>'\n", + " parser = etree.XMLParser(ns_clean=True, recover=True, remove_blank_text=True, resolve_entities=False)\n", + " new_element = etree.fromstring(normalized_content, parser=parser)\n", + " \n", + " # put all content in child nodes\n", + " for child in new_element:\n", + " if etree.QName(child).localname != tag and child.tail is not None and child.tail.strip() != \"\":\n", + " new_child = etree.Element(\"seg\")\n", + " new_child.text = child.tail.strip()\n", + " new_element.insert(new_element.index(child)+1, new_child)\n", + " child.tail = ''\n", + " if new_element.text and new_element.text != \"\":\n", + " first_child = etree.Element(\"seg\")\n", + " first_child.text = new_element.text.strip()\n", + " new_element.insert(0, first_child)\n", + " new_element.text = ''\n", + " if new_element.tail and new_element.tail != \"\":\n", + " last_child = etree.Element(\"seg\")\n", + " last_child.text = new_element.tail.strip()\n", + " new_element.append(last_child)\n", + " new_element.tail = ''\n", + "\n", + " return new_element\n", + "\n", + "\n", + "def segment_footnote_string(file_path):\n", + " parser = etree.XMLParser(remove_blank_text=False, strip_cdata=False, resolve_entities=False)\n", + " tree = etree.parse(file_path, parser)\n", + " root = tree.getroot()\n", + "\n", + " instances = root.findall(\".//llamore:instance\", ns)\n", + "\n", + " for instance in instances:\n", + " id = instance.attrib.get('{http://www.w3.org/XML/1998/namespace}id')\n", + " outp_footnote = instance.find(\".//llamore:output[@type='footnote']\", ns)\n", + " outp_footnote.attrib['type'] = \"components\"\n", + " outp_fn_note = outp_footnote.find(\"./tei:note\", ns)\n", + " note_seg = outp_fn_note.find(\"./tei:seg\", ns)\n", + " # bibl\n", + " bibls = instance.findall(\".//llamore:output[@type='bibl']//tei:bibl\", ns)\n", + " bibl_text_contents = [get_element_text_content(bibl) for bibl in bibls]\n", + " new_seg = create_children_from_text_content(note_seg, 'bibl', bibl_text_contents)\n", + " for elem in new_seg:\n", + " outp_fn_note.append(elem)\n", + " outp_fn_note.remove(note_seg)\n", + " fix_indentation(outp_footnote, 4, \" \")\n", + " # check\n", + " raw_text = remove_whitespace(instance.find(\".//llamore:input[@type='raw']\", ns).text.strip())\n", + " components_text = get_element_text_content(outp_footnote)\n", + " if raw_text.strip() != components_text:\n", + " print(f'Text mismatch in {id}:\\n{raw_text}\\n{components_text}')\n", + "\n", + " # Open the file in write mode and update its content\n", + " #file_path = file_path.replace(\".xml\", \"-mod.xml\")\n", + " with open(file_path, 'w') as file:\n", + " file.write(etree.tostring(root, pretty_print=False, encoding='utf-8').decode())\n", + "\n", + "# Get a list of all XML files in the directory\n", + "for filename in glob.glob(\"../data/gold/*.xml\"):\n", + " if not filename.endswith(\"-mod.xml\"):\n", + " print(filename)\n", + " segment_footnote_string(filename)\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.10" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/convert-anystyle-data/llamore/data/gold/10.1111_1467-6478.00057.xml b/convert-anystyle-data/llamore/data/gold/10.1111_1467-6478.00057.xml new file mode 100644 index 0000000000000000000000000000000000000000..e3720be32aab95bcbe63b5cf7077507db5e8b585 --- /dev/null +++ b/convert-anystyle-data/llamore/data/gold/10.1111_1467-6478.00057.xml @@ -0,0 +1,4377 @@ +<dataset xmlns="https://gitlab.mpcdf.mpg.de/dcfidalgo/llamore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://gitlab.mpcdf.mpg.de/dcfidalgo/llamore ../../schema/xsd/dataset.xsd http://www.tei-c.org/ns/1.0 ../../schema/xsd/document.xsd"> + <instance xml:id="instance-1"> + <input type="raw"><![CDATA[1 A. Phillips, ‘Citizenship and Feminist Politics’ in Citizenship, ed. G. Andrews (1991) 77.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="1" place="bottom"> + <label>1</label> + <bibl>A. Phillips, ‘Citizenship and Feminist Politics’ in Citizenship, ed. G. Andrews (1991) 77.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="1" type="footnote" place="bottom"> + <label>1</label> + <bibl xml:id="bibl-1"> + <author> + <persName> + <forename>A.</forename> + <surname>Phillips</surname> + </persName> + </author>, + ‘<title level="a">Citizenship and Feminist Politics</title>’ in + <title level="m">Citizenship</title>, ed. + <editor> + <persName> + <forename>G.</forename> + <surname>Andrews</surname> + </persName> + </editor> + (<date when="1991">1991</date>) + <citedRange unit="page" from="77" to="77">77</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Citizenship and Feminist Politics</title> + <author> + <persName> + <forename>A.</forename> + <surname>Phillips</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="m">Citizenship</title> + <editor> + <persName> + <forename>G.</forename> + <surname>Andrews</surname> + </persName> + </editor> + <imprint> + <date when="1991">1991</date> + </imprint> + </monogr> + <citedRange unit="page" from="77" to="77">77</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-2"> + <input type="raw"><![CDATA[2 T. Brennan and C. Pateman, ‘“Mere Auxiliaries to the Commonwealthâ€: Women and the Origins of Liberalism’ (1979) 27 Political Studies 183.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="2" place="bottom"> + <label>2</label> + <bibl>T. Brennan and C. Pateman, ‘“Mere Auxiliaries to the Commonwealthâ€: Women and the Origins of Liberalism’ (1979) 27 Political Studies 183.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="2" type="footnote" place="bottom"> + <label>2</label> + <bibl xml:id="bibl-2"> + <author> + <persName> + <forename>T.</forename> + <surname>Brennan</surname> + </persName> + </author> + and + <author> + <persName> + <forename>C.</forename> + <surname>Pateman</surname> + </persName> + </author>, + ‘<title level="a">“Mere Auxiliaries to the Commonwealthâ€: Women and the Origins of Liberalism</title>’ + (<date when="1979">1979</date>) + <biblScope unit="volume" from="27" to="27">27</biblScope> + <title level="j">Political Studies</title> + <biblScope unit="page" from="183">183</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">“Mere Auxiliaries to the Commonwealthâ€: Women and the Origins of Liberalism</title> + <author> + <persName> + <forename>T.</forename> + <surname>Brennan</surname> + </persName> + </author> + <author> + <persName> + <forename>C.</forename> + <surname>Pateman</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Political Studies</title> + <imprint> + <date when="1979">1979</date> + </imprint> + <biblScope unit="volume" from="27" to="27">27</biblScope> + <biblScope unit="page" from="183">183</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-3"> + <input type="raw"><![CDATA[3 M. Sawer and M. Simms, A Woman’s Place: Women and Politics in Australia (2nd ed., 1993).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="3" place="bottom"> + <label>3</label> + <bibl>M. Sawer and M. Simms, A Woman’s Place: Women and Politics in Australia (2nd ed., 1993).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="3" type="footnote" place="bottom"> + <label>3</label> + <bibl xml:id="bibl-3"> + <author> + <persName> + <forename>M.</forename> + <surname>Sawer</surname> + </persName> + </author> + and + <author> + <persName> + <forename>M.</forename> + <surname>Simms</surname> + </persName> + </author>, + <title level="m">A Woman’s Place: Women and Politics in Australia</title> + (<edition>2nd ed.</edition>, + <date when="1993">1993</date>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">A Woman’s Place: Women and Politics in Australia</title> + <author> + <persName> + <forename>M.</forename> + <surname>Sawer</surname> + </persName> + </author> + <author> + <persName> + <forename>M.</forename> + <surname>Simms</surname> + </persName> + </author> + <imprint> + <date when="1993">1993</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-4"> + <input type="raw"><![CDATA[4 I have explored the gendered nature of citizenship at greater length in two complementary papers: ‘Embodying the Citizen’ in Public and Private: Feminist Legal Debates, ed. M. Thornton (1995) and ‘Historicising Citizenship: Remembering Broken Promises’ (1996) 20 Melbourne University Law Rev. 1072.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="4" place="bottom"> + <label>4</label> + <seg>I have explored the gendered nature of citizenship at greater length in two complementary papers:</seg> + <bibl>‘Embodying the Citizen’ in Public and Private: Feminist Legal Debates, ed. M. Thornton (1995)</bibl> and <bibl>‘Historicising Citizenship: Remembering Broken Promises’ (1996) 20 Melbourne University Law Rev. 1072.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="4" type="footnote" place="bottom"> + <label>4</label> + <note type="comment"> + I have explored the gendered nature of citizenship at greater length in two + complementary papers: + </note> + <bibl xml:id="bibl-4"> + ‘<title level="a">Embodying the Citizen</title>’ in + <title level="m">Public and Private: Feminist Legal Debates</title>, ed. + <editor> + <persName> + <forename>M.</forename> + <surname>Thornton</surname> + </persName> + </editor> + (<date when="1995">1995</date>) + </bibl> + <note type="signal">and</note> + <bibl xml:id="bibl-5"> + ‘<title level="a">Historicising Citizenship: Remembering Broken Promises</title>’ + (<date when="1996">1996</date>) + <biblScope unit="volume" from="20" to="20">20</biblScope> + <title level="j">Melbourne University Law Rev.</title> + <biblScope unit="page" from="1072">1072</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Embodying the Citizen</title> + </analytic> + <monogr> + <title level="m">Public and Private: Feminist Legal Debates</title> + <editor> + <persName> + <forename>M.</forename> + <surname>Thornton</surname> + </persName> + </editor> + <imprint> + <date when="1995">1995</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <analytic> + <title level="a">Historicising Citizenship: Remembering Broken Promises</title> + </analytic> + <monogr> + <title level="j">Melbourne University Law Rev.</title> + <imprint> + <date when="1996">1996</date> + </imprint> + <biblScope unit="volume" from="20" to="20">20</biblScope> + <biblScope unit="page" from="1072">1072</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-5"> + <input type="raw"><![CDATA[5 S. Walby, ‘Is Citizenship Gendered?’ (1994) 28 Sociology 379]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="5" place="bottom"> + <label>5</label> + <bibl>S. Walby, ‘Is Citizenship Gendered?’ (1994) 28 Sociology 379</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="5" type="footnote" place="bottom"> + <label>5</label> + <bibl xml:id="bibl-6"> + <author> + <persName> + <forename>S.</forename> + <surname>Walby</surname> + </persName> + </author>, + ‘<title level="a">Is Citizenship Gendered?</title>’ + (<date when="1994">1994</date>) + <biblScope unit="volume" from="28" to="28">28</biblScope> + <title level="j">Sociology</title> + <biblScope unit="page" from="379">379</biblScope> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Is Citizenship Gendered?</title> + <author> + <persName> + <forename>S.</forename> + <surname>Walby</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Sociology</title> + <imprint> + <date when="1994">1994</date> + </imprint> + <biblScope unit="volume" from="28" to="28">28</biblScope> + <biblScope unit="page" from="379">379</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-6"> + <input type="raw"><![CDATA[6 I. Kant, ‘Metaphysical First Principles of the Doctrine of Right [1785]’ in The Metaphysics of Morals (trans. M. Gregor, 1991) 125–6 s. 146.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="6" place="bottom"> + <label>6</label> + <bibl>I. Kant, ‘Metaphysical First Principles of the Doctrine of Right [1785]’ in The Metaphysics of Morals (trans. M. Gregor, 1991) 125–6 s. 146.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="6" type="footnote" place="bottom"> + <label>6</label> + <bibl xml:id="bibl-7"> + <author> + <persName> + <forename>I.</forename> + <surname>Kant</surname> + </persName> + </author>, + ‘<title level="a">Metaphysical First Principles of the Doctrine of Right [1785]</title>’ in + <title level="m">The Metaphysics of Morals</title> + (<respStmt> + <resp>trans.</resp> + <persName role="translator"> + M. Gregor + </persName> + </respStmt>, + <date when="1991">1991</date>) + <biblScope unit="page" from="125" to="126">125–6</biblScope> + <citedRange unit="page" from="146" to="146">s. 146</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Metaphysical First Principles of the Doctrine of Right [1785]</title> + <author> + <persName> + <forename>I.</forename> + <surname>Kant</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="m">The Metaphysics of Morals</title> + <imprint> + <date when="1991">1991</date> + </imprint> + <biblScope unit="page" from="125" to="126">125–6</biblScope> + </monogr> + <citedRange unit="page" from="146" to="146">s. 146</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-7"> + <input type="raw"><![CDATA[7 U. Vogel, ‘Marriage and the Boundaries of Citizenship’ in The Condition of Citizenship, ed. B. van Steenbergen (1994) 75.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="7" place="bottom"> + <label>7</label> + <bibl>U. Vogel, ‘Marriage and the Boundaries of Citizenship’ in The Condition of Citizenship, ed. B. van Steenbergen (1994) 75.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="7" type="footnote" place="bottom"> + <label>7</label> + <bibl xml:id="bibl-8"> + <author> + <persName> + <forename>U.</forename> + <surname>Vogel</surname> + </persName> + </author>, + ‘<title level="a">Marriage and the Boundaries of Citizenship</title>’ in + <title level="m">The Condition of Citizenship</title>, ed. + <editor> + <persName> + <forename>B.</forename> + <surname>van Steenbergen</surname> + </persName> + </editor> + (<date when="1994">1994</date>) + <biblScope unit="page" from="75">75</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Marriage and the Boundaries of Citizenship</title> + <author> + <persName> + <forename>U.</forename> + <surname>Vogel</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="m">The Condition of Citizenship</title> + <editor> + <persName> + <forename>B.</forename> + <surname>van Steenbergen</surname> + </persName> + </editor> + <imprint> + <date when="1994">1994</date> + </imprint> + <biblScope unit="page" from="75">75</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-8"> + <input type="raw"><![CDATA[8 N. Fraser and L. Gordon, ‘Civil Citizenship against Social Citizenship?’ in id., p. 97.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="8" place="bottom"> + <label>8</label> + <bibl>N. Fraser and L. Gordon, ‘Civil Citizenship against Social Citizenship?’ in id., p. 97.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="8" type="footnote" place="bottom"> + <label>8</label> + <bibl xml:id="bibl-9"> + <author> + <persName> + <forename>N.</forename> + <surname>Fraser</surname> + </persName> + </author> + and + <author> + <persName> + <forename>L.</forename> + <surname>Gordon</surname> + </persName> + </author>, + ‘<title level="a">Civil Citizenship against Social Citizenship?</title>’ + <ref type="previous-work">in id.</ref>, + <citedRange unit="page" from="97" to="97">p. 97</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Civil Citizenship against Social Citizenship?</title> + <author> + <persName> + <forename>N.</forename> + <surname>Fraser</surname> + </persName> + </author> + <author> + <persName> + <forename>L.</forename> + <surname>Gordon</surname> + </persName> + </author> + </analytic> + <monogr> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="97" to="97">p. 97</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-9"> + <input type="raw"><![CDATA[9 Vogel, id., p. 79. W. Blackstone, Commentaries (Facsimile of 1st. ed. of 1765–69, 1979) 442.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="9" place="bottom"> + <label>9</label> + <bibl>Vogel, id., p. 79.</bibl> + <bibl>W. Blackstone, Commentaries (Facsimile of 1st. ed. of 1765–69, 1979) 442.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="9" type="footnote" place="bottom"> + <label>9</label> + <bibl xml:id="bibl-10"> + <author> + <persName> + <surname>Vogel</surname> + </persName> + </author>, + <ref type="previous-work">id.</ref>, + <citedRange unit="page" from="79" to="79">p. 79</citedRange>. + </bibl> + <bibl xml:id="bibl-11"> + <author> + <persName> + <forename>W.</forename> + <surname>Blackstone</surname> + </persName> + </author>, + <title level="m">Commentaries</title> + (<note type="document-type">Facsimile of 1st. ed. of 1765–69</note>, + <date when="1979">1979</date>) + <citedRange unit="page" from="442" to="442">442</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Vogel</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="79" to="79">p. 79</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Commentaries</title> + <author> + <persName> + <forename>W.</forename> + <surname>Blackstone</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + </monogr> + <citedRange unit="page" from="442" to="442">442</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-10"> + <input type="raw"><![CDATA[11 Vogel, op. cit., n. 7, pp. 80–1.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="11" place="bottom"> + <label>11</label> + <bibl>Vogel, op. cit., n. 7, pp. 80–1.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="11" type="footnote" place="bottom"> + <label>11</label> + <bibl xml:id="bibl-12"> + <author> + <persName> + <surname>Vogel</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="8">n. 7</ref>, + <citedRange unit="page" from="80" to="1">pp. 80–1</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Vogel</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="80" to="1">pp. 80–1</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-11"> + <input type="raw"><![CDATA[12 F. Haug (ed.), Female Sexualization: A Collective Work of Memory (1987) 196.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="12" place="bottom"> + <label>12</label> + <bibl>F. Haug (ed.), Female Sexualization: A Collective Work of Memory (1987) 196.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="12" type="footnote" place="bottom"> + <label>12</label> + <bibl xml:id="bibl-13"> + <editor> + <persName> + <forename>F.</forename> + <surname>Haug</surname> + </persName> + </editor> + (ed.), + <title level="m">Female Sexualization: A Collective Work of Memory</title> + (<date when="1987">1987</date>) + <citedRange unit="page" from="196" to="196">196</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Female Sexualization: A Collective Work of Memory</title> + <editor> + <persName> + <forename>F.</forename> + <surname>Haug</surname> + </persName> + </editor> + <imprint> + <date when="1987">1987</date> + </imprint> + </monogr> + <citedRange unit="page" from="196" to="196">196</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-12"> + <input type="raw"><![CDATA[13 A. Bottomley, ‘Self and Subjectivities: Languages of Claim in Property Law’ (1993) 20 J. of Law and Society 56, 61.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="13" place="bottom"> + <label>13</label> + <bibl>A. Bottomley, ‘Self and Subjectivities: Languages of Claim in Property Law’ (1993) 20 J. of Law and Society 56, 61.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="13" type="footnote" place="bottom"> + <label>13</label> + <bibl xml:id="bibl-14"> + <author> + <persName> + <forename>A.</forename> + <surname>Bottomley</surname> + </persName> + </author>, + ‘<title level="a">Self and Subjectivities: Languages of Claim in Property Law</title>’ + (<date when="1993">1993</date>) + <biblScope unit="volume" from="20" to="20">20</biblScope> + <title level="j">J. of Law and Society</title> + <biblScope unit="page" from="56">56</biblScope>, + <citedRange unit="page" from="61" to="61">61</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Self and Subjectivities: Languages of Claim in Property Law</title> + <author> + <persName> + <forename>A.</forename> + <surname>Bottomley</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">J. of Law and Society</title> + <imprint> + <date when="1993">1993</date> + </imprint> + <biblScope unit="volume" from="20" to="20">20</biblScope> + <biblScope unit="page" from="56">56</biblScope> + </monogr> + <citedRange unit="page" from="61" to="61">61</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-13"> + <input type="raw"><![CDATA[14 D. West, ‘Power and Formation: New Foundations for a Radical Concept of Power’ (1987) 30 Inquiry 137, 145. Compare M. Foucault, Power/Knowledge: Selected Interviews and Other Writings 1972–1977, ed. C. Gordon (1980) 98.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="14" place="bottom"> + <label>14</label> + <bibl>D. West, ‘Power and Formation: New Foundations for a Radical Concept of Power’ (1987) 30 Inquiry 137, 145.</bibl> Compare <bibl>M. Foucault, Power/Knowledge: Selected Interviews and Other Writings 1972–1977, ed. C. Gordon (1980) 98.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="14" type="footnote" place="bottom"> + <label>14</label> + <bibl xml:id="bibl-15"> + <author> + <persName> + <forename>D.</forename> + <surname>West</surname> + </persName> + </author>, + ‘<title level="a">Power and Formation: New Foundations for a Radical Concept of Power</title>’ + (<date when="1987">1987</date>) + <biblScope unit="volume" from="30" to="30">30</biblScope> + <title level="j">Inquiry</title> + <biblScope unit="page">137</biblScope>, + <citedRange unit="page" from="145" to="145">145</citedRange>. + </bibl> + <note type="signal">Compare</note> + <bibl xml:id="bibl-16"> + <author> + <persName> + <forename>M.</forename> + <surname>Foucault</surname> + </persName> + </author>, + <title level="m">Power/Knowledge: Selected Interviews and Other Writings 1972–1977</title>, ed. + <editor> + <persName> + <forename>C.</forename> + <surname>Gordon</surname> + </persName> + </editor> + (<date when="1980">1980</date>) + <citedRange unit="page" from="98" to="98">98</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Power and Formation: New Foundations for a Radical Concept of Power</title> + <author> + <persName> + <forename>D.</forename> + <surname>West</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Inquiry</title> + <imprint> + <date when="1987">1987</date> + </imprint> + <biblScope unit="volume" from="30" to="30">30</biblScope> + <biblScope unit="page">137</biblScope> + </monogr> + <citedRange unit="page" from="145" to="145">145</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Power/Knowledge: Selected Interviews and Other Writings 1972–1977</title> + <author> + <persName> + <forename>M.</forename> + <surname>Foucault</surname> + </persName> + </author> + <editor> + <persName> + <forename>C.</forename> + <surname>Gordon</surname> + </persName> + </editor> + <imprint> + <date when="1980">1980</date> + </imprint> + </monogr> + <citedRange unit="page" from="98" to="98">98</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-14"> + <input type="raw"><![CDATA[15 For a detailed analysis of legal method and the political role it plays, see M.J. Mossman, ‘Feminism, and Legal Method: The Difference it Makes’ (1986) 3 Aust. J. of Law and Society 30.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="15" place="bottom"> + <label>15</label> + <seg>For a detailed analysis of legal method and the political role it plays, see</seg> + <bibl>M.J. Mossman, ‘Feminism, and Legal Method: The Difference it Makes’ (1986) 3 Aust. J. of Law and Society 30.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="15" type="footnote" place="bottom"> + <label>15</label> + <note type="signal">For a detailed analysis of legal method and the political role it plays, see + </note> + <bibl xml:id="bibl-17"> + <author> + <persName> + <forename>M.J.</forename> + <surname>Mossman</surname> + </persName> + </author>, + ‘<title level="a">Feminism, and Legal Method: The Difference it Makes</title>’ + (<date when="1986">1986</date>) + <biblScope unit="volume" from="3" to="3">3</biblScope> + <title level="j">Aust. J. of Law and Society</title> + <biblScope unit="page" from="30">30</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Feminism, and Legal Method: The Difference it Makes</title> + <author> + <persName> + <forename>M.J.</forename> + <surname>Mossman</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Aust. J. of Law and Society</title> + <imprint> + <date when="1986">1986</date> + </imprint> + <biblScope unit="volume" from="3" to="3">3</biblScope> + <biblScope unit="page" from="30">30</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-15"> + <input type="raw"><![CDATA[16 H.S. Maine, Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas (10th ed., 1912) 174.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="16" place="bottom"> + <label>16</label> + <bibl>H.S. Maine, Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas (10th ed., 1912) 174.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="16" type="footnote" place="bottom"> + <label>16</label> + <bibl xml:id="bibl-18"> + <author> + <persName> + <forename>H.S.</forename> + <surname>Maine</surname> + </persName> + </author>, + <title level="m">Ancient Law: Its Connection with the Early History of Society and its Relation to + Modern Ideas + </title> + (<edition>10th ed.</edition>, + <date when="1912">1912</date>) + <citedRange unit="page" from="174" to="174">174</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Ancient Law: Its Connection with the Early History of Society and its Relation to + Modern Ideas + </title> + <author> + <persName> + <forename>H.S.</forename> + <surname>Maine</surname> + </persName> + </author> + <imprint> + <date when="1912">1912</date> + </imprint> + </monogr> + <citedRange unit="page" from="174" to="174">174</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-16"> + <input type="raw"><![CDATA[17 This was particularly the case in the United States of America. See M.J. Horwitz, The Transformation of American Law, 1780–1860 (1977) 160.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="17" place="bottom"> + <label>17</label> + <seg>This was particularly the case in the United States of America. See</seg> + <bibl>M.J. Horwitz, The Transformation of American Law, 1780–1860 (1977) 160.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="17" type="footnote" place="bottom"> + <label>17</label> + <note type="comment">This was particularly the case in the United States of America.</note> + <note type="signal">See</note> + <bibl xml:id="bibl-20"> + <author> + <persName> + <forename>M.J.</forename> + <surname>Horwitz</surname> + </persName> + </author>, + <title level="m">The Transformation of American Law, 1780–1860</title> + (<date when="1977">1977</date>) + <citedRange unit="page" from="160" to="160">160</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The Transformation of American Law, 1780–1860</title> + <author> + <persName> + <forename>M.J.</forename> + <surname>Horwitz</surname> + </persName> + </author> + <imprint> + <date when="1977">1977</date> + </imprint> + </monogr> + <citedRange unit="page" from="160" to="160">160</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-17"> + <input type="raw"><![CDATA[18 M. Grossberg, Governing the Hearth: Law and the Family in Nineteenth-Century America (1985) ix.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="18" place="bottom"> + <label>18</label> + <bibl>M. Grossberg, Governing the Hearth: Law and the Family in Nineteenth-Century America (1985) ix.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="18" type="footnote" place="bottom"> + <label>18</label> + <bibl xml:id="bibl-21"> + <author> + <persName> + <forename>M.</forename> + <surname>Grossberg</surname> + </persName> + </author>, + <title level="m">Governing the Hearth: Law and the Family in Nineteenth-Century America</title> + (<date when="1985">1985</date>) + <citedRange unit="page" from="ix" to="ix">ix</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Governing the Hearth: Law and the Family in Nineteenth-Century America</title> + <author> + <persName> + <forename>M.</forename> + <surname>Grossberg</surname> + </persName> + </author> + <imprint> + <date when="1985">1985</date> + </imprint> + </monogr> + <citedRange unit="page" from="ix" to="ix">ix</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-18"> + <input type="raw"><![CDATA[19 Staves postulates that the position was somewhat more complicated in that marriage, as a status, crumbled in response to contract ideology in the seventeenth century but, by the end of the eighteenth century, deeper patriarchal structures were re-imposed. See S. Staves, Married Women’s Separate Property in England, 1660–1833 (1990) 4, 220.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="19" place="bottom"> + <label>19</label> + <seg>Staves postulates that the position was somewhat more complicated in that marriage, as a status, crumbled in response to contract ideology in the seventeenth century but, by the end of the eighteenth century, deeper patriarchal structures were re-imposed. See</seg> + <bibl>S. Staves, Married Women’s Separate Property in England, 1660–1833 (1990) 4, 220.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="19" type="footnote" place="bottom"> + <label>19</label> + <note type="comment"> + Staves postulates that the position was somewhat more complicated in that + marriage, as a status, crumbled in response to contract ideology in the seventeenth century but, + by the end of the eighteenth century, deeper patriarchal structures were re-imposed. + </note> + <note type="signal">See</note> + <bibl xml:id="bibl-23"> + <author> + <persName> + <forename>S.</forename> + <surname>Staves</surname> + </persName> + </author>, + <title level="m">Married Women’s Separate Property in England, 1660–1833</title> + (<date when="1990">1990</date>) + <citedRange unit="page" from="4" to="4">4</citedRange>, + <citedRange unit="page" from="220" to="220">220</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Married Women’s Separate Property in England, 1660–1833</title> + <author> + <persName> + <forename>S.</forename> + <surname>Staves</surname> + </persName> + </author> + <imprint> + <date when="1990">1990</date> + </imprint> + </monogr> + <citedRange unit="page" from="4" to="4">4</citedRange> + <citedRange unit="page" from="220" to="220">220</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-19"> + <input type="raw"><![CDATA[20 Siegel presents a valuable study of the changing norms of marriage in the context of wife beating. See R.B. Siegel, ‘"The Rule of Loveâ€: Wife Beating as Prerogative and Privacy’ (1996) 105 Yale Law J. 2117.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="20" place="bottom"> + <label>20</label> + <seg>Siegel presents a valuable study of the changing norms of marriage in the context of wife beating. See</seg> + <bibl>R.B. Siegel, ‘"The Rule of Loveâ€: Wife Beating as Prerogative and Privacy’ (1996) 105 Yale Law J. 2117.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="20" type="footnote" place="bottom"> + <label>20</label> + <note type="comment"> + Siegel presents a valuable study of the changing norms of marriage in the + context of wife beating. + </note> + <note type="signal">See</note> + <bibl xml:id="bibl-25"> + <author> + <persName> + <forename>R.B.</forename> + <surname>Siegel</surname> + </persName> + </author>, + ‘<title level="a">"The Rule of Loveâ€: Wife Beating as Prerogative and Privacy</title>’ + (<date when="1996">1996</date>) + <biblScope unit="volume" from="105" to="105">105</biblScope> + <title level="j">Yale Law J.</title> + <biblScope unit="page" from="2117">2117</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">"The Rule of Loveâ€: Wife Beating as Prerogative and Privacy</title> + <author> + <persName> + <forename>R.B.</forename> + <surname>Siegel</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Yale Law J.</title> + <imprint> + <date when="1996">1996</date> + </imprint> + <biblScope unit="volume" from="105" to="105">105</biblScope> + <biblScope unit="page" from="2117">2117</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-20"> + <input type="raw"><![CDATA[21 C. Pateman, The Sexual Contract (1988). For further analysis of the marriage contract, see K. O’Donovan, Family Matters (1993), especially 43–59.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="21" place="bottom"> + <label>21</label> + <bibl>C. Pateman, The Sexual Contract (1988).</bibl> For further analysis of the marriage contract, see <bibl>K. O’Donovan, Family Matters (1993), especially 43–59.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="21" type="footnote" place="bottom"> + <label>21</label> + <bibl xml:id="bibl-26"> + <author> + <persName> + <forename>C.</forename> + <surname>Pateman</surname> + </persName> + </author>, + <title level="m">The Sexual Contract</title> + (<date when="1988">1988</date>). + </bibl> + <note type="signal">For further analysis of the marriage contract, see</note> + <bibl xml:id="bibl-27"> + <author> + <persName> + <forename>K.</forename> + <surname>O’Donovan</surname> + </persName> + </author>, + <title level="m">Family Matters</title> + (<date when="1993">1993</date>), + <citedRange unit="page" from="43" to="59">especially 43–59</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The Sexual Contract</title> + <author> + <persName> + <forename>C.</forename> + <surname>Pateman</surname> + </persName> + </author> + <imprint> + <date when="1988">1988</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Family Matters</title> + <author> + <persName> + <forename>K.</forename> + <surname>O’Donovan</surname> + </persName> + </author> + <imprint> + <date when="1993">1993</date> + </imprint> + </monogr> + <citedRange unit="page" from="43" to="59">especially 43–59</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-21"> + <input type="raw"><![CDATA[23 Crimes (Sexual Assault) Amendment Act 1981 (N.S.W.); Criminal Law Consolidation Act Amendment Act 1976 (S.A.); Criminal Code (Sexual Offences) Act 1987 (Tas.); Crimes (Sexual Offences) 1991 (Vic.); Acts Amendment (Sexual Assault) Act 1985 (W.A.). The High Court upheld the validity of the South Australian law in 1991 (see R. v. L. (1991) 103 A.L.R. 577), the same year that the House of Lords abolished the immunity (see R. v. R. [1991] 2 All E.R. 257).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="23" place="bottom"> + <label>23</label> + <bibl>Crimes (Sexual Assault) Amendment Act 1981 (N.S.W.);</bibl> + <bibl>Criminal Law Consolidation Act Amendment Act 1976 (S.A.);</bibl> + <bibl>Criminal Code (Sexual Offences) Act 1987 (Tas.);</bibl> + <bibl>Crimes (Sexual Offences) 1991 (Vic.);</bibl> + <bibl>Acts Amendment (Sexual Assault) Act 1985 (W.A.).</bibl> The High Court upheld the validity of the South Australian law in 1991 (see <bibl>R. v. L. (1991) 103 A.L.R. 577),</bibl> the same year that the House of Lords abolished the immunity (see <bibl>R. v. R. [1991] 2 All E.R. 257).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="23" type="footnote" place="bottom"> + <label>23</label> + <bibl xml:id="bibl-28"> + <title level="m">Crimes (Sexual Assault) Amendment Act</title> + <date when="1981">1981</date> + (<pubPlace>N.S.W.</pubPlace>) + </bibl>; + <bibl xml:id="bibl-29"> + <title level="m">Criminal Law Consolidation Act Amendment Act</title> + <date when="1976">1976</date> + (<pubPlace>S.A.</pubPlace>) + </bibl>; + <bibl xml:id="bibl-30"> + <title level="m">Criminal Code (Sexual Offences) Act</title> + <date when="1987">1987</date> + (<pubPlace>Tas.</pubPlace>) + </bibl>; + <bibl xml:id="bibl-31"> + <title level="m">Crimes (Sexual Offences)</title> + <date when="1991">1991</date> + (<pubPlace>Vic.</pubPlace>) + </bibl>; + <bibl xml:id="bibl-32"> + <title level="m">Acts Amendment (Sexual Assault) Act</title> + <date when="1985">1985</date> + (<pubPlace>W.A.</pubPlace>) + </bibl>. + <note type="comment">The High Court upheld the validity of the South Australian law in 1991</note> + (<note type="signal">see</note> + <bibl xml:id="bibl-33"> + <title level="m">R. v. L.</title> + (<date when="1991">1991</date>) + <idno type="caseNumber">103 A.L.R. 577</idno> + </bibl>), + <note type="comment">the same year that the House of Lords abolished the immunity</note> + (<note type="signal">see</note> + <bibl xml:id="bibl-34"> + <title level="m">R. v. R.</title> + [<date when="1991">1991</date>] + <biblScope unit="volume" from="2" to="2">2</biblScope> + <title level="j">All E.R.</title> + <biblScope unit="page" from="257">257</biblScope>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Crimes (Sexual Assault) Amendment Act</title> + <imprint> + <date when="1981">1981</date> + <pubPlace>N.S.W.</pubPlace> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Criminal Law Consolidation Act Amendment Act</title> + <imprint> + <date when="1976">1976</date> + <pubPlace>S.A.</pubPlace> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Criminal Code (Sexual Offences) Act</title> + <imprint> + <date when="1987">1987</date> + <pubPlace>Tas.</pubPlace> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Crimes (Sexual Offences)</title> + <imprint> + <date when="1991">1991</date> + <pubPlace>Vic.</pubPlace> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Acts Amendment (Sexual Assault) Act</title> + <imprint> + <date when="1985">1985</date> + <pubPlace>W.A.</pubPlace> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">R. v. L.</title> + <idno type="caseNumber">103 A.L.R. 577</idno> + <imprint> + <date when="1991">1991</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">R. v. R.</title> + <title level="j">All E.R.</title> + <imprint> + <date when="1991">1991</date> + </imprint> + <biblScope unit="volume" from="2" to="2">2</biblScope> + <biblScope unit="page" from="257">257</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-22"> + <input type="raw"><![CDATA[24 M. Freeman, ‘Contracting in the Haven: Balfour v. Balfour Revisited’ in Exploring the Boundaries of Contract, ed. R. Halson (1996) 74 R. Collier, Masculinity, Law and the Family (1995) 127 and throughout. See Collier further for a comprehensive study of sexuality in marriage.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="24" place="bottom"> + <label>24</label> + <bibl>M. Freeman, ‘Contracting in the Haven: Balfour v. Balfour Revisited’ in Exploring the Boundaries of Contract, ed. R. Halson (1996) 74</bibl> + <bibl>R. Collier, Masculinity, Law and the Family (1995) 127 and throughout.</bibl> See Collier further for a comprehensive study of sexuality in marriage.</note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="24" type="footnote" place="bottom"> + <label>24</label> + <bibl xml:id="bibl-35"> + <author> + <persName> + <forename>M.</forename> + <surname>Freeman</surname> + </persName> + </author>, + ‘<title level="a">Contracting in the Haven: Balfour v. Balfour Revisited</title>’ in + <title level="m">Exploring the Boundaries of Contract</title>, ed. + <editor> + <persName> + <forename>R.</forename> + <surname>Halson</surname> + </persName> + </editor> + (<date when="1996">1996</date>) + <biblScope unit="page" from="74">74</biblScope> + </bibl> + <bibl xml:id="bibl-36"> + <author> + <persName> + <forename>R.</forename> + <surname>Collier</surname> + </persName> + </author>, + <title level="a">Masculinity, Law and the Family</title> + (<date when="1995">1995</date>) + <citedRange unit="page" from="127">127 and throughout</citedRange>. + </bibl> + <note type="signal">See</note> + <bibl xml:id="bibl-37"> + <author> + <persName> + <surname>Collier</surname> + </persName> + </author> + </bibl> + <note type="comment">further for a comprehensive study of sexuality in marriage.</note> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Contracting in the Haven: Balfour v. Balfour Revisited</title> + <author> + <persName> + <forename>M.</forename> + <surname>Freeman</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="m">Exploring the Boundaries of Contract</title> + <editor> + <persName> + <forename>R.</forename> + <surname>Halson</surname> + </persName> + </editor> + <imprint> + <date when="1996">1996</date> + </imprint> + <biblScope unit="page" from="74">74</biblScope> + </monogr> + </biblStruct> + <biblStruct> + <analytic> + <title level="a">Masculinity, Law and the Family</title> + <author> + <persName> + <forename>R.</forename> + <surname>Collier</surname> + </persName> + </author> + </analytic> + <monogr> + <imprint> + <date when="1995">1995</date> + </imprint> + </monogr> + <citedRange unit="page" from="127">127 and throughout</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Collier</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-23"> + <input type="raw"><![CDATA[25 P.S. Atiyah, An Introduction to the Law of Contract (5th ed., 1995) 3.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="25" place="bottom"> + <label>25</label> + <bibl>P.S. Atiyah, An Introduction to the Law of Contract (5th ed., 1995) 3.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="25" type="footnote" place="bottom"> + <label>25</label> + <bibl xml:id="bibl-38"> + <author> + <persName> + <forename>P.S.</forename> + <surname>Atiyah</surname> + </persName> + </author>, + <title level="m">An Introduction to the Law of Contract</title> + (<edition>5th ed.</edition>, + <date when="1995">1995</date>) + <citedRange unit="page" from="3" to="3">3</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">An Introduction to the Law of Contract</title> + <author> + <persName> + <forename>P.S.</forename> + <surname>Atiyah</surname> + </persName> + </author> + <imprint> + <date when="1995">1995</date> + </imprint> + </monogr> + <citedRange unit="page" from="3" to="3">3</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-24"> + <input type="raw"><![CDATA[26 The Australian Law Reform Commission has addressed the issue and recommended recognition of prenuptial agreements. See A.L.R.C., Matrimonial Property, report no. 37 (1987); A.L.R.C. ., Report of the Joint Select Committee on Certain Aspects of the Operation and Interpretation of the Family Law Act (1992). For critique, see M. Neave, ‘Private Ordering in Family Law – Will Women Benefit?’ in Thornton, op. cit., n. 4. For a feminist critique of contract in the American context, see C. Dalton, ‘An Essay in the Deconstruction of Contract Doctrine’ (1985) 94 Yale Law J. 997.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="26" place="bottom"> + <label>26</label> + <seg>The Australian Law Reform Commission has addressed the issue and recommended recognition of prenuptial agreements. See</seg> + <bibl>A.L.R.C., Matrimonial Property, report no. 37 (1987);</bibl> + <bibl>A.L.R.C. ., Report of the Joint Select Committee on Certain Aspects of the Operation and Interpretation of the Family Law Act (1992).</bibl> For critique, see <bibl>M. Neave, ‘Private Ordering in Family Law – Will Women Benefit?’ in Thornton, op. cit., n. 4.</bibl> For a feminist critique of contract in the American context, see <bibl>C. Dalton, ‘An Essay in the Deconstruction of Contract Doctrine’ (1985) 94 Yale Law J. 997.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="26" type="footnote" place="bottom"> + <label>26</label> + <note type="comment"> + The Australian Law Reform Commission has addressed the issue and recommended + recognition of prenuptial agreements. + </note> + <note type="signal">See</note> + <bibl xml:id="bibl-40"> + <author> + <orgName>A.L.R.C.</orgName> + </author>, + <title level="m">Matrimonial Property, report no. 37</title> + (<date when="1987">1987</date>) + </bibl>; + <bibl xml:id="bibl-41"> + <author> + <orgName>A.L.R.C.</orgName> + </author>., + <title level="m">Report of the Joint Select Committee on Certain Aspects of the Operation and + Interpretation of the Family Law Act + </title> + (<date when="1992">1992</date>). + </bibl> + <note type="signal">For critique, see</note> + <bibl xml:id="bibl-42"> + <author> + <persName> + <forename>M.</forename> + <surname>Neave</surname> + </persName> + </author>, + ‘<title level="a">Private Ordering in Family Law – Will Women Benefit?</title>’ in + <editor> + <persName> + <surname>Thornton</surname> + </persName> + </editor>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="4">n. 4</ref>. + </bibl> + <note type="signal">For a feminist critique of contract in the American context, see</note> + <bibl xml:id="bibl-43"> + <author> + <persName> + <forename>C.</forename> + <surname>Dalton</surname> + </persName> + </author>, + ‘<title level="a">An Essay in the Deconstruction of Contract Doctrine</title>’ + (<date when="1985">1985</date>) + <biblScope unit="volume" from="94" to="94">94</biblScope> + <title level="j">Yale Law J.</title> + <biblScope unit="page" from="997">997</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Matrimonial Property, report no. 37</title> + <author> + <orgName>A.L.R.C.</orgName> + </author> + <imprint> + <date when="1987">1987</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Report of the Joint Select Committee on Certain Aspects of the Operation and + Interpretation of the Family Law Act + </title> + <author> + <orgName>A.L.R.C.</orgName> + </author> + <imprint> + <date when="1992">1992</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <analytic> + <title level="a">Private Ordering in Family Law – Will Women Benefit?</title> + <author> + <persName> + <forename>M.</forename> + <surname>Neave</surname> + </persName> + </author> + </analytic> + <monogr> + <title/> + <editor> + <persName> + <surname>Thornton</surname> + </persName> + </editor> + <imprint><date/></imprint> + </monogr> + </biblStruct> + <biblStruct> + <analytic> + <title level="a">An Essay in the Deconstruction of Contract Doctrine</title> + <author> + <persName> + <forename>C.</forename> + <surname>Dalton</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Yale Law J.</title> + <imprint> + <date when="1985">1985</date> + </imprint> + <biblScope unit="volume" from="94" to="94">94</biblScope> + <biblScope unit="page" from="997">997</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-25"> + <input type="raw"><![CDATA[27 L. J. Weitzman, The Marriage Contract: Spouses, Lovers, and the Law (1981) 347 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="27" place="bottom"> + <label>27</label> + <bibl>L. J. Weitzman, The Marriage Contract: Spouses, Lovers, and the Law (1981) 347 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="27" type="footnote" place="bottom"> + <label>27</label> + <bibl xml:id="bibl-44"> + <author> + <persName> + <forename>L.</forename> + <forename>J.</forename> + <surname>Weitzman</surname> + </persName> + </author>, + <title level="m">The Marriage Contract: Spouses, Lovers, and the Law</title> + (<date when="1981">1981</date>) + <citedRange unit="page" from="347">347 ff.</citedRange> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The Marriage Contract: Spouses, Lovers, and the Law</title> + <author> + <persName> + <forename>L.</forename> + <forename>J.</forename> + <surname>Weitzman</surname> + </persName> + </author> + <imprint> + <date when="1981">1981</date> + </imprint> + </monogr> + <citedRange unit="page" from="347">347 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-26"> + <input type="raw"><![CDATA[28 Grossberg, op. cit., n. 18, p. 52.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="28" place="bottom"> + <label>28</label> + <bibl>Grossberg, op. cit., n. 18, p. 52.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="28" type="footnote" place="bottom"> + <label>28</label> + <bibl xml:id="bibl-45"> + <author> + <persName> + <surname>Grossberg</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="18">n. 18</ref>, + <citedRange unit="page" from="52" to="52">p. 52</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Grossberg</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="52" to="52">p. 52</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-27"> + <input type="raw"><![CDATA[29 V. Balfour [1919] 2 K.B. 571.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="29" place="bottom"> + <label>29</label> + <bibl>V. Balfour [1919] 2 K.B. 571.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="29" type="footnote" place="bottom"> + <label>29</label> + <bibl xml:id="bibl-46"> + <author> + <persName> + <forename>V.</forename> + <surname>Balfour</surname> + </persName> + </author> + [<date when="1919">1919</date>] + <biblScope unit="volume" from="2" to="2">2</biblScope> + <title level="j">K.B.</title> + <biblScope unit="page" from="571">571</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="j">K.B.</title> + <author> + <persName> + <forename>V.</forename> + <surname>Balfour</surname> + </persName> + </author> + <imprint> + <date when="1919">1919</date> + </imprint> + <biblScope unit="volume" from="2" to="2">2</biblScope> + <biblScope unit="page" from="571">571</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-28"> + <input type="raw"><![CDATA[30 Freeman, op. cit., n. 24. While acknowledging the trends towards contractualism and private ordering, Regan cautions against it, noting that greater freedom to contract invites greater scrutiny by the courts. More significantly, however, he would rather reclaim the idea of status by injecting it with new notions of responsibility andrelationality, as well as divesting it of its sexist assumptions. See M.C. Regan ., Family Law and the Pursuit of Intimacy (1993).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="30" place="bottom"> + <label>30</label> + <bibl>Freeman, op. cit., n. 24.</bibl> While acknowledging the trends towards contractualism and private ordering, Regan cautions against it, noting that greater freedom to contract invites greater scrutiny by the courts. More significantly, however, he would rather reclaim the idea of status by injecting it with new notions of responsibility andrelationality, as well as divesting it of its sexist assumptions. See <bibl>M.C. Regan ., Family Law and the Pursuit of Intimacy (1993).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="30" type="footnote" place="bottom"> + <label>30</label> + <bibl xml:id="bibl-47"> + <author> + <persName> + <surname>Freeman</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="24">n. 24</ref>. + </bibl> + <note type="comment"> + While acknowledging the trends towards contractualism and private ordering, + Regan cautions against it, noting that greater freedom to contract invites greater scrutiny by + the courts. More significantly, however, he would rather reclaim the idea of status by injecting + it with new notions of responsibility andrelationality, as well as divesting it of its sexist + assumptions. + </note> + <note type="signal">See</note> + <bibl xml:id="bibl-49"> + <author> + <persName> + <forename>M.C.</forename> + <surname>Regan</surname> + </persName> + </author>., + <title level="m">Family Law and the Pursuit of Intimacy</title> + (<date when="1993">1993</date>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Freeman</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Family Law and the Pursuit of Intimacy</title> + <author> + <persName> + <forename>M.C.</forename> + <surname>Regan</surname> + </persName> + </author> + <imprint> + <date when="1993">1993</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-29"> + <input type="raw"><![CDATA[31 For example, Law Reform (Miscellaneous Provisions) Act 1970 (U.K.); Domestic Relations Act 1975 (N.Z.); Marriage Act Amendment Act 1976 (Cwth.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="31" place="bottom"> + <label>31</label> + <seg>For example,</seg> + <bibl>Law Reform (Miscellaneous Provisions) Act 1970 (U.K.);</bibl> + <bibl>Domestic Relations Act 1975 (N.Z.);</bibl> + <bibl>Marriage Act Amendment Act 1976 (Cwth.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="31" type="footnote" place="bottom"> + <label>31</label> + <note type="signal">For example,</note> + <bibl xml:id="bibl-50"> + <title level="m">Law Reform (Miscellaneous Provisions) Act</title> + <date when="1970">1970</date> + (<pubPlace>U.K.</pubPlace>) + </bibl>; + <bibl xml:id="bibl-51"> + <title level="m">Domestic Relations Act</title> + <date when="1975">1975</date> + (<pubPlace>N.Z.</pubPlace>) + </bibl>; + <bibl xml:id="bibl-52"> + <title level="m">Marriage Act Amendment Act</title> + <date when="1976">1976</date> + (<pubPlace>Cwth.</pubPlace>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Law Reform (Miscellaneous Provisions) Act</title> + <imprint> + <date when="1970">1970</date> + <pubPlace>U.K.</pubPlace> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Domestic Relations Act</title> + <imprint> + <date when="1975">1975</date> + <pubPlace>N.Z.</pubPlace> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Marriage Act Amendment Act</title> + <imprint> + <date when="1976">1976</date> + <pubPlace>Cwth.</pubPlace> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-30"> + <input type="raw"><![CDATA[32 G.S. Frost, Promises Broken: Courtship, Class, and Gender in Victorian England (1995); Thornton, op. cit. (1996), n. 4.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="32" place="bottom"> + <label>32</label> + <bibl>G.S. Frost, Promises Broken: Courtship, Class, and Gender in Victorian England (1995);</bibl> + <bibl>Thornton, op. cit. (1996), n. 4.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="32" type="footnote" place="bottom"> + <label>32</label> + <bibl xml:id="bibl-53"> + <author> + <persName> + <forename>G.S.</forename> + <surname>Frost</surname> + </persName> + </author>, + <title level="m">Promises Broken: Courtship, Class, and Gender in Victorian England</title> + (<date when="1995">1995</date>) + </bibl>; + <bibl xml:id="bibl-54"> + <author> + <persName> + <surname>Thornton</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref> + (<date when="1996">1996</date>), + <ref type="footnote" n="4">n. 4</ref> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Promises Broken: Courtship, Class, and Gender in Victorian England</title> + <author> + <persName> + <forename>G.S.</forename> + <surname>Frost</surname> + </persName> + </author> + <imprint> + <date when="1995">1995</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Thornton</surname> + </persName> + </author> + <imprint> + <date when="1996">1996</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-31"> + <input type="raw"><![CDATA[33 Grossberg, op. cit., n. 18, p. 38.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="33" place="bottom"> + <label>33</label> + <bibl>Grossberg, op. cit., n. 18, p. 38.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="33" type="footnote" place="bottom"> + <label>33</label> + <bibl xml:id="bibl-55"> + <author> + <persName> + <surname>Grossberg</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="18">n. 18</ref>, + <citedRange unit="page" from="38" to="38">p. 38</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Grossberg</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="38" to="38">p. 38</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-32"> + <input type="raw"><![CDATA[34 Compare U. Vogel, ‘Is Citizenship Gender-Specific?’ in The Frontiers of Citizenship, eds. U. Vogel and M. Moran (1991) 59.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="34" place="bottom"> + <label>34</label> + <seg>Compare</seg> + <bibl>U. Vogel, ‘Is Citizenship Gender-Specific?’ in The Frontiers of Citizenship, eds. U. Vogel and M. Moran (1991) 59.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="34" type="footnote" place="bottom"> + <label>34</label> + <note type="signal">Compare</note> + <bibl xml:id="bibl-56"> + <author> + <persName> + <forename>U.</forename> + <surname>Vogel</surname> + </persName> + </author>, + ‘<title level="a">Is Citizenship Gender-Specific?</title>’ in + <title level="m">The Frontiers of Citizenship</title>, eds. + <editor> + <persName> + <forename>U.</forename> + <surname>Vogel</surname> + </persName> + </editor> + and + <editor> + <persName> + <forename>M.</forename> + <surname>Moran</surname> + </persName> + </editor> + (<date when="1991">1991</date>) + <biblScope unit="page" from="59">59</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Is Citizenship Gender-Specific?</title> + <author> + <persName> + <forename>U.</forename> + <surname>Vogel</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="m">The Frontiers of Citizenship</title> + <editor> + <persName> + <forename>U.</forename> + <surname>Vogel</surname> + </persName> + </editor> + <editor> + <persName> + <forename>M.</forename> + <surname>Moran</surname> + </persName> + </editor> + <imprint> + <date when="1991">1991</date> + </imprint> + <biblScope unit="page" from="59">59</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-33"> + <input type="raw"><![CDATA[35 See, for example, Bradwell v. Illinois 83 U.S. (16 Wall) 130 (1873).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="35" place="bottom"> + <label>35</label> + <seg>See, for example,</seg> + <bibl>Bradwell v. Illinois 83 U.S. (16 Wall) 130 (1873).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="35" type="footnote" place="bottom"> + <label>35</label> + <note type="signal">See, for example,</note> + <bibl xml:id="bibl-57"> + <title level="m">Bradwell v. Illinois 83 U.S. (16 Wall) 130</title> + (<date when="1873">1873</date>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Bradwell v. Illinois 83 U.S. (16 Wall) 130</title> + <imprint> + <date when="1873">1873</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-34"> + <input type="raw"><![CDATA[36 Compare J. Pahl, Money and Marriage (1989) 5.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="36" place="bottom"> + <label>36</label> + <seg>Compare</seg> + <bibl>J. Pahl, Money and Marriage (1989) 5.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="36" type="footnote" place="bottom"> + <label>36</label> + <note type="signal">Compare</note> + <bibl xml:id="bibl-58"> + <author> + <persName> + <forename>J.</forename> + <surname>Pahl</surname> + </persName> + </author>, + <title level="m">Money and Marriage</title> + (<date when="1989">1989</date>) + <citedRange unit="page" from="5" to="5">5</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Money and Marriage</title> + <author> + <persName> + <forename>J.</forename> + <surname>Pahl</surname> + </persName> + </author> + <imprint> + <date when="1989">1989</date> + </imprint> + </monogr> + <citedRange unit="page" from="5" to="5">5</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-35"> + <input type="raw"><![CDATA[37 Although Australia, like the United Kingdom, has a separate property regime, the courts are endowed with broad powers under the Family Law Act 1975 (Cwth.) to distribute property equitably. For detailed treatment, see P. Parkinson, S. Parker and J. Behrens, Australian Family Law in Context: Commentary and Materials (1994). Most civil law countries and most American states have developed community property regimes which recognize the joint ownership of property acquired during marriage, but the legal significance is similarly directed to the time of divorce. For discussion of the position during marriage, see J.T. Oldham, ‘Management of the Community Estate during an Intact Marriage’ (1993) 56 Law and Contemporary Problems 99. For a discussion of the genesis of the two systems, see C. Donahue, ‘What Causes Fundamental Legal Ideas? Marital Property in England and France in the Thirteenth Century’ (1979) 78 Michigan Law Rev. 59.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="37" place="bottom"> + <label>37</label> + <seg>Although Australia, like the United Kingdom, has a separate property regime, the courts are endowed with broad powers under the Family Law Act 1975 (Cwth.) to distribute property equitably. For detailed treatment, see</seg> + <bibl>P. Parkinson, S. Parker and J. Behrens, Australian Family Law in Context: Commentary and Materials (1994).</bibl> Most civil law countries and most American states have developed community property regimes which recognize the joint ownership of property acquired during marriage, but the legal significance is similarly directed to the time of divorce. For discussion of the position during marriage, see <bibl>J.T. Oldham, ‘Management of the Community Estate during an Intact Marriage’ (1993) 56 Law and Contemporary Problems 99.</bibl> For a discussion of the genesis of the two systems, see <bibl>C. Donahue, ‘What Causes Fundamental Legal Ideas? Marital Property in England and France in the Thirteenth Century’ (1979) 78 Michigan Law Rev. 59.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="37" type="footnote" place="bottom"> + <label>37</label> + <bibl xml:id="bibl-59"> + <author> + <persName> + <surname>Although</surname> + </persName> + </author> + </bibl> + <note type="comment"> + Australia, like the United Kingdom, has a separate property regime, the courts + are endowed with broad powers under the Family Law Act 1975 (Cwth.) to distribute property equitably. + </note> + <note type="signal">For detailed treatment, see</note> + <bibl xml:id="bibl-61"> + <author> + <persName> + <forename>P.</forename> + <forename>Parkinson</forename> + </persName> + </author>, + <author> + <persName> + <forename>S.</forename> + <surname>Parker</surname> + </persName> + </author> + and + <author> + <persName> + <forename>J.</forename> + <surname>Behrens</surname> + </persName> + </author>, + <title level="m">Australian Family Law in Context: Commentary and Materials</title> + (<date when="1994">1994</date>). + </bibl> + <note type="comment"> + Most civil law countries and most American states have developed community + property regimes which recognize the joint ownership of property acquired during marriage, + but the legal significance is similarly directed to the time of divorce. + </note> + <note type="signal">For discussion of the position during marriage, see</note> + <bibl xml:id="bibl-63"> + <author> + <persName> + <forename>J.T.</forename> + <surname>Oldham</surname> + </persName> + </author>, + ‘<title level="a">Management of the Community Estate during an Intact Marriage</title>’ + (<date when="1993">1993</date>) + <biblScope unit="volume" from="56" to="56">56</biblScope> + <title level="j">Law and Contemporary Problems</title> + <biblScope unit="page" from="99">99</biblScope>. + </bibl> + <note type="signal">For a discussion of the genesis of the two systems, see</note> + <bibl xml:id="bibl-64"> + <author> + <persName> + <forename>C.</forename> + <surname>Donahue</surname> + </persName> + </author>, + ‘<title level="a">What Causes Fundamental Legal Ideas? Marital Property in England and France in the + Thirteenth Century’ + </title> + (<date when="1979">1979</date>) + <biblScope unit="volume" from="78" to="78">78</biblScope> + <title level="j">Michigan Law Rev.</title> + <biblScope unit="page" from="59">59</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Although</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Australian Family Law in Context: Commentary and Materials</title> + <author> + <persName> + <forename>P.</forename> + <forename>Parkinson</forename> + </persName> + </author> + <author> + <persName> + <forename>S.</forename> + <surname>Parker</surname> + </persName> + </author> + <author> + <persName> + <forename>J.</forename> + <surname>Behrens</surname> + </persName> + </author> + <imprint> + <date when="1994">1994</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <analytic> + <title level="a">Management of the Community Estate during an Intact Marriage</title> + <author> + <persName> + <forename>J.T.</forename> + <surname>Oldham</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Law and Contemporary Problems</title> + <imprint> + <date when="1993">1993</date> + </imprint> + <biblScope unit="volume" from="56" to="56">56</biblScope> + <biblScope unit="page" from="99">99</biblScope> + </monogr> + </biblStruct> + <biblStruct> + <analytic> + <title level="a">What Causes Fundamental Legal Ideas? Marital Property in England and France in the + Thirteenth Century’ + </title> + <author> + <persName> + <forename>C.</forename> + <surname>Donahue</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Michigan Law Rev.</title> + <imprint> + <date when="1979">1979</date> + </imprint> + <biblScope unit="volume" from="78" to="78">78</biblScope> + <biblScope unit="page" from="59">59</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-36"> + <input type="raw"><![CDATA[38 The legal construction of masculinity and femininity in family law has been the subject of recent scholarly interest. Notable examples are O’Donovan, op. cit., n. 21 and Collier, op. cit., n. 24.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="38" place="bottom"> + <label>38</label> + <seg>The legal construction of masculinity and femininity in family law has been the subject of recent scholarly interest. Notable examples are</seg> + <bibl>O’Donovan, op. cit., n. 21</bibl> and <bibl>Collier, op. cit., n. 24.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="38" type="footnote" place="bottom"> + <label>38</label> + <note type="comment"> + The legal construction of masculinity and femininity in family law has been the subject of recent scholarly interest. + </note> + <note type="signal">Notable examples are</note> + <bibl xml:id="bibl-66"> + <author> + <persName> + <surname>O’Donovan</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="21">n. 21</ref> + </bibl> + <note type="signal">and</note> + <bibl xml:id="bibl-67"> + <author> + <persName> + <surname>Collier</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="24">n. 24</ref>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>O’Donovan</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Collier</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-37"> + <input type="raw"><![CDATA[39 For discussion of sex and legal subjecthood, see N. Naffine ‘Sexing the Subject (of Law)’ in Thornton, op. cit. (1995), n. 4.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="39" place="bottom"> + <label>39</label> + <seg>For discussion of sex and legal subjecthood, see</seg> + <bibl>N. Naffine ‘Sexing the Subject (of Law)’ in Thornton, op. cit. (1995), n. 4.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="39" type="footnote" place="bottom"> + <label>39</label> + <note type="signal">For discussion of sex and legal subjecthood, see</note> + <bibl xml:id="bibl-68"> + <author> + <persName> + <forename>N.</forename> + <surname>Naffine</surname> + </persName> + </author> + ‘<title level="a">Sexing the Subject (of Law)</title>’ in + <editor> + <persName> + <surname>Thornton</surname> + </persName> + </editor>, + <ref type="previous-work">op. cit.</ref> + (<date when="1995">1995</date>), + <ref type="footnote" n="4">n. 4</ref>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Sexing the Subject (of Law)</title> + <author> + <persName> + <forename>N.</forename> + <surname>Naffine</surname> + </persName> + </author> + </analytic> + <monogr> + <title/> + <editor> + <persName> + <surname>Thornton</surname> + </persName> + </editor> + <imprint> + <date when="1995">1995</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-38"> + <input type="raw"><![CDATA[40 Contracts Review Act 1980 (N.S.W.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="40" place="bottom"> + <label>40</label> + <bibl>Contracts Review Act 1980 (N.S.W.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="40" type="footnote" place="bottom"> + <label>40</label> + <bibl xml:id="bibl-69"> + <title level="m">Contracts Review Act</title> + <date when="1980">1980</date> + (<pubPlace>N.S.W.</pubPlace>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Contracts Review Act</title> + <imprint> + <date when="1980">1980</date> + <pubPlace>N.S.W.</pubPlace> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-39"> + <input type="raw"><![CDATA[41 J. Nedelsky, Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy (1990), especially 223 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="41" place="bottom"> + <label>41</label> + <bibl>J. Nedelsky, Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy (1990), especially 223 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="41" type="footnote" place="bottom"> + <label>41</label> + <bibl xml:id="bibl-70"> + <author> + <persName> + <forename>J.</forename> + <surname>Nedelsky</surname> + </persName> + </author>, + <title level="m">Private Property and the Limits of American Constitutionalism: The Madisonian + Framework and its Legacy + </title> + (<date when="1990">1990</date>), + <citedRange unit="page" from="223">especially 223 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Private Property and the Limits of American Constitutionalism: The Madisonian + Framework and its Legacy + </title> + <author> + <persName> + <forename>J.</forename> + <surname>Nedelsky</surname> + </persName> + </author> + <imprint> + <date when="1990">1990</date> + </imprint> + </monogr> + <citedRange unit="page" from="223">especially 223 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-40"> + <input type="raw"><![CDATA[42 C.B. Macpherson, Democratic Theory: Essays in Retrieval (1973) 120.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="42" place="bottom"> + <label>42</label> + <bibl>C.B. Macpherson, Democratic Theory: Essays in Retrieval (1973) 120.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="42" type="footnote" place="bottom"> + <label>42</label> + <bibl xml:id="bibl-71"> + <author> + <persName> + <forename>C.B.</forename> + <surname>Macpherson</surname> + </persName> + </author>, + <title level="m">Democratic Theory: Essays in Retrieval</title> + (<date when="1973">1973</date>) + <citedRange unit="page" from="120" to="120">120</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Democratic Theory: Essays in Retrieval</title> + <author> + <persName> + <forename>C.B.</forename> + <surname>Macpherson</surname> + </persName> + </author> + <imprint> + <date when="1973">1973</date> + </imprint> + </monogr> + <citedRange unit="page" from="120" to="120">120</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-41"> + <input type="raw"><![CDATA[43 For example, N. Howell, ‘“Sexually Transmitted Debtâ€: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers’ (1995) 4 Aust. Feminist Law J. 93.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="43" place="bottom"> + <label>43</label> + <seg>For example,</seg> + <bibl>N. Howell, ‘“Sexually Transmitted Debtâ€: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers’ (1995) 4 Aust. Feminist Law J. 93.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="43" type="footnote" place="bottom"> + <label>43</label> + <note type="signal">For example,</note> + <bibl xml:id="bibl-72"> + <author> + <persName> + <forename>N.</forename> + <surname>Howell</surname> + </persName> + </author>, + ‘<title level="a">“Sexually Transmitted Debtâ€: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers</title>’ + (<date when="1995">1995</date>) + <biblScope unit="volume" from="4" to="4">4</biblScope> + <title level="j">Aust. Feminist Law J.</title> + <biblScope unit="page" from="93">93</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">“Sexually Transmitted Debtâ€: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers</title> + <author> + <persName> + <forename>N.</forename> + <surname>Howell</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Aust. Feminist Law J.</title> + <imprint> + <date when="1995">1995</date> + </imprint> + <biblScope unit="volume" from="4" to="4">4</biblScope> + <biblScope unit="page" from="93">93</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-42"> + <input type="raw"><![CDATA[44 P. Baron, ‘The Free Exercise of Her Will: Women and Emotionally Transmitted Debt’ (1995) 13 Law in Context 23.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="44" place="bottom"> + <label>44</label> + <bibl>P. Baron, ‘The Free Exercise of Her Will: Women and Emotionally Transmitted Debt’ (1995) 13 Law in Context 23.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="44" type="footnote" place="bottom"> + <label>44</label> + <bibl xml:id="bibl-73"> + <author> + <persName> + <forename>P.</forename> + <surname>Baron</surname> + </persName> + </author>, + ‘<title level="a">The Free Exercise of Her Will: Women and Emotionally Transmitted Debt</title>’ + (<date when="1995">1995</date>) + <biblScope unit="volume" from="13" to="13">13</biblScope> + <title level="j">Law in Context</title> + <biblScope unit="page" from="23">23</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">The Free Exercise of Her Will: Women and Emotionally Transmitted Debt</title> + <author> + <persName> + <forename>P.</forename> + <surname>Baron</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Law in Context</title> + <imprint> + <date when="1995">1995</date> + </imprint> + <biblScope unit="volume" from="13" to="13">13</biblScope> + <biblScope unit="page" from="23">23</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-43"> + <input type="raw"><![CDATA[45 id., p. 24 B. Fehlberg, ‘The Husband, the Bank, the Wife and Her Signature’ (1994) 57 Modern Law Rev. 467, 468. See, also, Barclays Bank v. O’Brien [1994] 1 A.C. 180, at 185 per Brown-Wilkinson L.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="45" place="bottom"> + <label>45</label> + <seg>id., p. 24</seg> + <bibl>B. Fehlberg, ‘The Husband, the Bank, the Wife and Her Signature’ (1994) 57 Modern Law Rev. 467, 468.</bibl> See, also, <bibl>Barclays Bank v. O’Brien [1994] 1 A.C. 180, at 185</bibl> per Brown-Wilkinson L.</note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="45" type="footnote" place="bottom"> + <label>45</label> + <bibl xml:id="bibl-74"> + <ref type="previous-work">id.</ref>, + <citedRange unit="page" from="24" to="24">p. 24</citedRange> + </bibl> + <bibl xml:id="bibl-74b"> + <author> + <persName> + <forename>B.</forename> + <surname>Fehlberg</surname> + </persName> + </author>, + ‘<title level="a">The Husband, the Bank, the Wife and Her Signature</title>’ + (<date when="1994">1994</date>) + <biblScope unit="volume" from="57" to="57">57</biblScope> + <title level="j">Modern Law Rev.</title> + <biblScope unit="page" from="467">467</biblScope>, + <citedRange unit="page" from="468" to="468">468</citedRange>. + </bibl> + <note type="signal">See, also,</note> + <bibl xml:id="bibl-75"> + <title level="m">Barclays Bank v. O’Brien</title> + [<date when="1994">1994</date>] + <idno type="caseNumber">1 A.C. 180</idno>, + <citedRange unit="page" from="185" to="185">at 185</citedRange> + </bibl> + <note type="comment">per Brown-Wilkinson L.</note> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="24" to="24">p. 24</citedRange> + </biblStruct> + <biblStruct> + <analytic> + <title level="a">The Husband, the Bank, the Wife and Her Signature</title> + <author> + <persName> + <forename>B.</forename> + <surname>Fehlberg</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Modern Law Rev.</title> + <imprint> + <date when="1994">1994</date> + </imprint> + <biblScope unit="volume" from="57" to="57">57</biblScope> + <biblScope unit="page" from="467">467</biblScope> + </monogr> + <citedRange unit="page" from="468" to="468">468</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Barclays Bank v. O’Brien</title> + <idno type="caseNumber">1 A.C. 180</idno> + <imprint> + <date when="1994">1994</date> + </imprint> + </monogr> + <citedRange unit="page" from="185" to="185">at 185</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-44"> + <input type="raw"><![CDATA[46 Baron, op. cit., n. 44, p. 34. M. Richardson, ‘Protecting Women who provide Security for a Husband's, Partner's or Child's Debts. The Value and Limits of an Economic Perspective’ (1996) 16 Legal Studies 368.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="46" place="bottom"> + <label>46</label> + <bibl>Baron, op. cit., n. 44, p. 34.</bibl> + <bibl>M. Richardson, ‘Protecting Women who provide Security for a Husband's, Partner's or Child's Debts. The Value and Limits of an Economic Perspective’ (1996) 16 Legal Studies 368.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="46" type="footnote" place="bottom"> + <label>46</label> + <bibl xml:id="bibl-76"> + <author> + <persName> + <surname>Baron</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="44">n. 44</ref>, + <citedRange unit="page" from="34" to="34">p. 34</citedRange>. + </bibl> + <bibl xml:id="bibl-77"> + <author> + <persName> + <forename>M.</forename> + <surname>Richardson</surname> + </persName> + </author>, + ‘<title level="a"> + Protecting Women who provide Security for a Husband's, Partner's or Child's Debts. + The Value and Limits of an Economic Perspective</title>’ + (<date when="1996">1996</date>) + <biblScope unit="volume" from="16" to="16">16</biblScope> + <title level="j">Legal Studies</title> + <biblScope unit="page" from="368">368</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Baron</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="34" to="34">p. 34</citedRange> + </biblStruct> + <biblStruct> + <analytic> + <title level="a"> + Protecting Women who provide Security for a Husband's, Partner's or Child's Debts. + The Value and Limits of an Economic Perspective</title> + <author> + <persName> + <forename>M.</forename> + <surname>Richardson</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Legal Studies</title> + <imprint> + <date when="1996">1996</date> + </imprint> + <biblScope unit="volume" from="16" to="16">16</biblScope> + <biblScope unit="page" from="368">368</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-45"> + <input type="raw"><![CDATA[47 Examples are legion, and by no means confined to the more sensational criminal law cases picked up by the media, such as R. v. Johns, Supreme Court of South Australia, 26 August 1992 (unreported) in which Bollen J. stated that it was acceptable for a husband to resort to ‘rougher than usual handling’ to persuade his wife to have sex with him. For examples relating to STD, see Howell, op. cit., n. 43.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="47" place="bottom"> + <label>47</label> + <seg>Examples are legion, and by no means confined to the more sensational criminal law cases picked up by the media, such as</seg> + <bibl>R. v. Johns, Supreme Court of South Australia, 26 August 1992</bibl> (unreported) in which Bollen J. stated that it was acceptable for a husband to resort to ‘rougher than usual handling’ to persuade his wife to have sex with him. For examples relating to STD, see <bibl>Howell, op. cit., n. 43.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="47" type="footnote" place="bottom"> + <label>47</label> + <note type="comment"> + Examples are legion, and by no means confined to the more sensational criminal + law cases picked up by the media,</note> + <note type="signal">such as</note> + <bibl xml:id="bibl-78"> + <title level="m">R. v. Johns</title>, + <author> + <orgName>Supreme Court of South Australia</orgName> + </author>, + <date when="1992">26 August 1992</date> + </bibl> + <note type="comment"> + (unreported) in which Bollen J. stated that it was acceptable for a husband to + resort to ‘rougher than usual handling’ to persuade his wife to have sex with him. + </note> + <note type="signal">For examples relating to STD, see</note> + <bibl xml:id="bibl-79"> + <author> + <persName> + <surname>Howell</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="43">n. 43</ref>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">R. v. Johns</title> + <author> + <orgName>Supreme Court of South Australia</orgName> + </author> + <imprint> + <date when="1992">26 August 1992</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Howell</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-46"> + <input type="raw"><![CDATA[48 B. Fehlberg, ‘The Husband, the Bank, the Wife and Her Signature – the Sequel’ (1996) 59 Modern Law Rev. 675.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="48" place="bottom"> + <label>48</label> + <bibl>B. Fehlberg, ‘The Husband, the Bank, the Wife and Her Signature – the Sequel’ (1996) 59 Modern Law Rev. 675.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="48" type="footnote" place="bottom"> + <label>48</label> + <bibl xml:id="bibl-80"> + <author> + <persName> + <forename>B.</forename> + <surname>Fehlberg</surname> + </persName> + </author>, + ‘<title level="a">The Husband, the Bank, the Wife and Her Signature – the Sequel</title>’ + (<date when="1996">1996</date>) + <biblScope unit="volume" from="59" to="59">59</biblScope> + <title level="j">Modern Law Rev.</title> + <biblScope unit="page" from="675">675</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">The Husband, the Bank, the Wife and Her Signature – the Sequel</title> + <author> + <persName> + <forename>B.</forename> + <surname>Fehlberg</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Modern Law Rev.</title> + <imprint> + <date when="1996">1996</date> + </imprint> + <biblScope unit="volume" from="59" to="59">59</biblScope> + <biblScope unit="page" from="675">675</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-47"> + <input type="raw"><![CDATA[49 National Australia Bank Ltd v. Garcia (1996) 39 N.S.W.L.R. 577 (N.S.W.C.A.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="49" place="bottom"> + <label>49</label> + <bibl>National Australia Bank Ltd v. Garcia (1996) 39 N.S.W.L.R. 577 (N.S.W.C.A.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="49" type="footnote" place="bottom"> + <label>49</label> + <bibl xml:id="bibl-81"> + <title level="m">National Australia Bank Ltd v. Garcia</title> + (<date when="1996">1996</date>) + <biblScope unit="volume" from="39" to="39">39</biblScope> + <title level="j">N.S.W.L.R.</title> + <biblScope unit="page" from="577">577</biblScope> + (<pubPlace>N.S.W.C.A.</pubPlace>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">National Australia Bank Ltd v. Garcia</title> + <title level="j">N.S.W.L.R.</title> + <imprint> + <date when="1996">1996</date> + <pubPlace>N.S.W.C.A.</pubPlace> + </imprint> + <biblScope unit="volume" from="39" to="39">39</biblScope> + <biblScope unit="page" from="577">577</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-48"> + <input type="raw"><![CDATA[50 (1991) 25 N.S.W.L.R. 32 (C.A.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="50" place="bottom"> + <label>50</label> + <bibl>(1991) 25 N.S.W.L.R. 32 (C.A.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="50" type="footnote" place="bottom"> + <label>50</label> + <bibl xml:id="bibl-82"> + (<date when="1991">1991</date>) + <biblScope unit="volume" from="25" to="25">25</biblScope> + <title level="j">N.S.W.L.R.</title> + <biblScope unit="page" from="32">32</biblScope> + (<pubPlace>C.A.</pubPlace>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="j">N.S.W.L.R.</title> + <imprint> + <date when="1991">1991</date> + <pubPlace>C.A.</pubPlace> + </imprint> + <biblScope unit="volume" from="25" to="25">25</biblScope> + <biblScope unit="page" from="32">32</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-49"> + <input type="raw"><![CDATA[52 (1994) A.S.C. 56–268 (N.S.W.C.A.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="52" place="bottom"> + <label>52</label> + <bibl>(1994) A.S.C. 56–268 (N.S.W.C.A.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="52" type="footnote" place="bottom"> + <label>52</label> + <bibl xml:id="bibl-83"> + (<date when="1994">1994</date>) + <idno type="caseNumber">A.S.C. 56–268</idno> + (<pubPlace>N.S.W.C.A.</pubPlace>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <idno type="caseNumber">A.S.C. 56–268</idno> + <imprint> + <date when="1994">1994</date> + <pubPlace>N.S.W.C.A.</pubPlace> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-50"> + <input type="raw"><![CDATA[53 Based on the Trade Practices Act 1974 (Cwth.), s. 52 and the Contracts Review Act 1980 (N.S.W.). 54 (1994) A.S.C. 56–270 (N.S.W.C.A.)]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="53" place="bottom"> + <label>53</label> + <seg>Based on the</seg> + <bibl>Trade Practices Act 1974 (Cwth.), s. 52 and the</bibl> + <bibl>Contracts Review Act 1980 (N.S.W.). 54 (1994) A.S.C. 56–270 (N.S.W.C.A.)</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="53" type="footnote" place="bottom"> + Based on the + <label>53</label> + <bibl xml:id="bibl-84"> + <title level="m">Trade Practices Act 1974</title> + (<pubPlace>Cwth.</pubPlace>), + <citedRange unit="section" from="52" to="52">s. 52</citedRange> + </bibl> + and the + <bibl xml:id="bibl-85"> + <title level="m">Contracts Review Act</title> + <date when="1980">1980</date> + (<pubPlace>N.S.W.</pubPlace>). + <biblScope unit="volume" from="54" to="54">54</biblScope> + (<date when="1994">1994</date>) + <idno type="caseNumber">A.S.C. 56–270</idno> + (<pubPlace>N.S.W.C.A.</pubPlace>) + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Trade Practices Act 1974</title> + <imprint> + <pubPlace>Cwth.</pubPlace> + </imprint> + </monogr> + <citedRange unit="section" from="52" to="52">s. 52</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Contracts Review Act</title> + <idno type="caseNumber">A.S.C. 56–270</idno> + <imprint> + <date when="1980">1980</date> + <date when="1994">1994</date> + <pubPlace>N.S.W.</pubPlace> + <pubPlace>N.S.W.C.A.</pubPlace> + </imprint> + <biblScope unit="volume" from="54" to="54">54</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-51"> + <input type="raw"><![CDATA[55 A number of recent English cases have also turned on the question of whether the wife received independent legal advice. The House of Lords considered the issue in Barclays Bank v. O’Brien [1994] 1 A.C. 180. See, also, Banco Exterior Internacional v. Mann [1995] 1 All E.R. 936.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="55" place="bottom"> + <label>55</label> + <seg>A number of recent English cases have also turned on the question of whether the wife received independent legal advice. The House of Lords considered the issue in</seg> + <bibl>Barclays Bank v. O’Brien [1994] 1 A.C. 180.</bibl> See, also, <bibl>Banco Exterior Internacional v. Mann [1995] 1 All E.R. 936.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="55" type="footnote" place="bottom"> + <label>55</label> + <note type="comment"> + A number of recent English cases have also turned on the question of whether the + wife received independent legal advice. The House of Lords considered the issue in + </note> + <bibl xml:id="bibl-86"> + <title level="m">Barclays Bank v. O’Brien</title> + [<date when="1994">1994</date>] + <idno type="caseNumber">1 A.C. 180</idno>. + </bibl> + <note type="signal">See, also,</note> + <bibl xml:id="bibl-87"> + <title level="m">Banco Exterior Internacional v. Mann</title> + [<date when="1995">1995</date>] + <biblScope unit="volume" from="1" to="1">1</biblScope> + <title level="j">All E.R.</title> + <biblScope unit="page" from="936">936</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Barclays Bank v. O’Brien</title> + <idno type="caseNumber">1 A.C. 180</idno> + <imprint> + <date when="1994">1994</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Banco Exterior Internacional v. Mann</title> + <title level="j">All E.R.</title> + <imprint> + <date when="1995">1995</date> + </imprint> + <biblScope unit="volume" from="1" to="1">1</biblScope> + <biblScope unit="page" from="936">936</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-52"> + <input type="raw"><![CDATA[56 See I.J. Hardingham and M.A. Neave, Australian Family Property Law (1984) 94.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="56" place="bottom"> + <label>56</label> + <seg>See</seg> + <bibl>I.J. Hardingham and M.A. Neave, Australian Family Property Law (1984) 94.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="56" type="footnote" place="bottom"> + <label>56</label> + <note type="signal">See</note> + <bibl xml:id="bibl-88"> + <author> + <persName> + <forename>I.J.</forename> + <surname>Hardingham</surname> + </persName> + </author> + and + <author> + <persName> + <forename>M.A.</forename> + <surname>Neave</surname> + </persName> + </author>, + <title level="m">Australian Family Property Law</title> + (<date when="1984">1984</date>) + <citedRange unit="page" from="94" to="94">94</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Australian Family Property Law</title> + <author> + <persName> + <forename>I.J.</forename> + <surname>Hardingham</surname> + </persName> + </author> + <author> + <persName> + <forename>M.A.</forename> + <surname>Neave</surname> + </persName> + </author> + <imprint> + <date when="1984">1984</date> + </imprint> + </monogr> + <citedRange unit="page" from="94" to="94">94</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-53"> + <input type="raw"><![CDATA[57 Compare K. O’Donovan, Sexual Divisions in Law (1985), especially 112–18.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="57" place="bottom"> + <label>57</label> + <seg>Compare</seg> + <bibl>K. O’Donovan, Sexual Divisions in Law (1985), especially 112–18.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="57" type="footnote" place="bottom"> + <label>57</label> + <note type="signal">Compare</note> + <bibl xml:id="bibl-89"> + <author> + <persName> + <forename>K.</forename> + <surname>O’Donovan</surname> + </persName> + </author>, + <title level="m">Sexual Divisions in Law</title> + (<date when="1985">1985</date>), + <citedRange unit="page" from="112" to="118">especially 112–18</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Sexual Divisions in Law</title> + <author> + <persName> + <forename>K.</forename> + <surname>O’Donovan</surname> + </persName> + </author> + <imprint> + <date when="1985">1985</date> + </imprint> + </monogr> + <citedRange unit="page" from="112" to="118">especially 112–18</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-54"> + <input type="raw"><![CDATA[58 Although Reich’s work on the conceptualization of non-traditional sources of wealth, such as employment and professional qualifications, as forms of ‘new property’ has been influential, he did not broach the subject of caring work. See C.A. Reich, ‘The New Property’ (1964) 73 Yale Law J. 733. Despite a greater sensitivity to the interests of women, as well as writing almost two decades later, Glendon also fails to address the question of unpaid work as a form of property. See M.A. Glendon, The New Family and the New Property (1981).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="58" place="bottom"> + <label>58</label> + <seg>Although Reich’s work on the conceptualization of non-traditional sources of wealth, such as employment and professional qualifications, as forms of ‘new property’ has been influential, he did not broach the subject of caring work. See</seg> + <bibl>C.A. Reich, ‘The New Property’ (1964) 73 Yale Law J. 733.</bibl> Despite a greater sensitivity to the interests of women, as well as writing almost two decades later, Glendon also fails to address the question of unpaid work as a form of property. See <bibl>M.A. Glendon, The New Family and the New Property (1981).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="58" type="footnote" place="bottom"> + <label>58</label> + <note type="comment"> + Although Reich’s work on the conceptualization of non-traditional sources of + wealth, such as employment and professional qualifications, as forms of ‘new property’ has been + influential, he did not broach the subject of caring work. + </note> + <note type="signal">See</note> + <bibl xml:id="bibl-90"> + <author> + <persName> + <forename>C.A.</forename> + <surname>Reich</surname> + </persName> + </author>, + ‘<title level="a">The New Property</title>’ + (<date when="1964">1964</date>) + <biblScope unit="volume" from="73" to="73">73</biblScope> + <title level="j">Yale Law J.</title> + <biblScope unit="page" from="733">733</biblScope>. + </bibl> + <note type="comment"> + Despite a greater sensitivity to the interests of women, as well as writing + almost two decades later, Glendon also fails to address the question of unpaid work as a form of + property. + </note> + <note type="signal">See</note> + <bibl xml:id="bibl-92"> + <author> + <persName> + <forename>M.A.</forename> + <surname>Glendon</surname> + </persName> + </author>, + <title level="m">The New Family and the New Property</title> + (<date when="1981">1981</date>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">The New Property</title> + <author> + <persName> + <forename>C.A.</forename> + <surname>Reich</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Yale Law J.</title> + <imprint> + <date when="1964">1964</date> + </imprint> + <biblScope unit="volume" from="73" to="73">73</biblScope> + <biblScope unit="page" from="733">733</biblScope> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">The New Family and the New Property</title> + <author> + <persName> + <forename>M.A.</forename> + <surname>Glendon</surname> + </persName> + </author> + <imprint> + <date when="1981">1981</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-55"> + <input type="raw"><![CDATA[59 (1992) 29 N.S.W.L.R. 188 (C.A.)]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="59" place="bottom"> + <label>59</label> + <bibl>(1992) 29 N.S.W.L.R. 188 (C.A.)</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="59" type="footnote" place="bottom"> + <label>59</label> + <bibl xml:id="bibl-93"> + (<date when="1992">1992</date>) + <biblScope unit="volume" from="29">29</biblScope> + <title level="j">N.S.W.L.R.</title> + <biblScope unit="page" from="188">188</biblScope> + (<pubPlace>C.A.</pubPlace>) + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="j">N.S.W.L.R.</title> + <imprint> + <date when="1992">1992</date> + <pubPlace>C.A.</pubPlace> + </imprint> + <biblScope unit="volume" from="29">29</biblScope> + <biblScope unit="page" from="188">188</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-56"> + <input type="raw"><![CDATA[60 Trusts of this kind have been judicially created in order to obviate injustice. Ironically, such devices have been commonly utilized over the last twenty years or so in property disputes arising out of de facto relationships, where divisibility has permitted separate interests to crystallize in ways not recognized within marriage. For a discussion of recent trends in Australia, see P. Parkinson, ‘Property Rights and Third Party Creditors – the Scope and Limitations of Equitable Doctrines’ (1997) 11 Australian J. Family Law 100.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="60" place="bottom"> + <label>60</label> + <seg>Trusts of this kind have been judicially created in order to obviate injustice. Ironically, such devices have been commonly utilized over the last twenty years or so in property disputes arising out of de facto relationships, where divisibility has permitted separate interests to crystallize in ways not recognized within marriage. For a discussion of recent trends in Australia, see</seg> + <bibl>P. Parkinson, ‘Property Rights and Third Party Creditors – the Scope and Limitations of Equitable Doctrines’ (1997) 11 Australian J. Family Law 100.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="60" type="footnote" place="bottom"> + <label>60</label> + <note type="comment"> + Trusts of this kind have been judicially created in order to obviate injustice. + Ironically, such devices have been commonly utilized over the last twenty years or so in + property disputes arising out of de facto relationships, where divisibility has permitted + separate interests to crystallize in ways not recognized within marriage. + </note> + <note type="signal">For a discussion of recent trends in Australia, see</note> + <bibl xml:id="bibl-95"> + <author> + <persName> + <forename>P.</forename> + <surname>Parkinson</surname> + </persName> + </author>, + ‘<title level="a">Property Rights and Third Party Creditors – the Scope and Limitations of Equitable + Doctrines + </title>’ + (<date when="1997">1997</date>) + <biblScope unit="volume" from="11" to="11">11</biblScope> + <title level="j">Australian J. Family Law</title> + <biblScope unit="page" from="100">100</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Property Rights and Third Party Creditors – the Scope and Limitations of Equitable + Doctrines + </title> + <author> + <persName> + <forename>P.</forename> + <surname>Parkinson</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Australian J. Family Law</title> + <imprint> + <date when="1997">1997</date> + </imprint> + <biblScope unit="volume" from="11" to="11">11</biblScope> + <biblScope unit="page" from="100">100</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-57"> + <input type="raw"><![CDATA[61 For discussion, see J. Riley, ‘The Property Rights of Home-Makers under General Law: Bryson v. Bryant’ (1994) 16 Sydney Law Rev. 412.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="61" place="bottom"> + <label>61</label> + <seg>For discussion, see</seg> + <bibl>J. Riley, ‘The Property Rights of Home-Makers under General Law: Bryson v. Bryant’ (1994) 16 Sydney Law Rev. 412.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="61" type="footnote" place="bottom"> + <label>61</label> + <note type="signal">For discussion, see</note> + <bibl xml:id="bibl-96"> + <author> + <persName> + <forename>J.</forename> + <surname>Riley</surname> + </persName> + </author>, + ‘<title level="a">The Property Rights of Home-Makers under General Law: Bryson v. Bryant</title>’ + (<date when="1994">1994</date>) + <biblScope unit="volume" from="16" to="16">16</biblScope> + <title level="j">Sydney Law Rev.</title> + <biblScope unit="page" from="412">412</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">The Property Rights of Home-Makers under General Law: Bryson v. Bryant</title> + <author> + <persName> + <forename>J.</forename> + <surname>Riley</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Sydney Law Rev.</title> + <imprint> + <date when="1994">1994</date> + </imprint> + <biblScope unit="volume" from="16" to="16">16</biblScope> + <biblScope unit="page" from="412">412</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-58"> + <input type="raw"><![CDATA[62 The Hon. Justice T. E. Lindenmayer and P.A. Doolan, ‘When Bankruptcy and Family Law Collide’ (1994) 8 Aust. J. Family Law 111, 133.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="62" place="bottom"> + <label>62</label> + <bibl>The Hon. Justice T. E. Lindenmayer and P.A. Doolan, ‘When Bankruptcy and Family Law Collide’ (1994) 8 Aust. J. Family Law 111, 133.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="62" type="footnote" place="bottom"> + <label>62</label> + <bibl xml:id="bibl-97"> + <author> + <persName> + <roleName type="honorific">The Hon. Justice</roleName> + <forename>T. E.</forename> + <surname>Lindenmayer</surname> + </persName> + </author> + and + <author> + <persName> + <forename>P.A.</forename> + <surname>Doolan</surname> + </persName> + </author>, + ‘<title level="a">When Bankruptcy and Family Law Collide</title>’ + (<date when="1994">1994</date>) + <biblScope unit="volume" from="8" to="8">8</biblScope> + <title level="j">Aust. J. Family Law</title> + <biblScope unit="page" from="111">111</biblScope>, + <citedRange unit="page" from="133" to="133">133</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">When Bankruptcy and Family Law Collide</title> + <author> + <persName> + <roleName type="honorific">The Hon. Justice</roleName> + <forename>T. E.</forename> + <surname>Lindenmayer</surname> + </persName> + </author> + <author> + <persName> + <forename>P.A.</forename> + <surname>Doolan</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Aust. J. Family Law</title> + <imprint> + <date when="1994">1994</date> + </imprint> + <biblScope unit="volume" from="8" to="8">8</biblScope> + <biblScope unit="page" from="111">111</biblScope> + </monogr> + <citedRange unit="page" from="133" to="133">133</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-59"> + <input type="raw"><![CDATA[63 B. Bennett, ‘The Economics of Wifing Services: Law and Economics on the Family’ (1991) 18 J. of Law and Society 206.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="63" place="bottom"> + <label>63</label> + <bibl>B. Bennett, ‘The Economics of Wifing Services: Law and Economics on the Family’ (1991) 18 J. of Law and Society 206.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="63" type="footnote" place="bottom"> + <label>63</label> + <bibl xml:id="bibl-98"> + <author> + <persName> + <forename>B.</forename> + <surname>Bennett</surname> + </persName> + </author>, + ‘<title level="a">The Economics of Wifing Services: Law and Economics on the Family</title>’ + (<date when="1991">1991</date>) + <biblScope unit="volume" from="18" to="18">18</biblScope> + <title level="j">J. of Law and Society</title> + <biblScope unit="page" from="206">206</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">The Economics of Wifing Services: Law and Economics on the Family</title> + <author> + <persName> + <forename>B.</forename> + <surname>Bennett</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">J. of Law and Society</title> + <imprint> + <date when="1991">1991</date> + </imprint> + <biblScope unit="volume" from="18" to="18">18</biblScope> + <biblScope unit="page" from="206">206</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-60"> + <input type="raw"><![CDATA[64 O’Donovan, op. cit., n. 57; Thornton, op. cit. (1995), n. 4.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="64" place="bottom"> + <label>64</label> + <bibl>O’Donovan, op. cit., n. 57;</bibl> + <bibl>Thornton, op. cit. (1995), n. 4.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="64" type="footnote" place="bottom"> + <label>64</label> + <bibl xml:id="bibl-99"> + <author> + <persName> + <surname>O’Donovan</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="57">n. 57</ref>; + </bibl> + <bibl xml:id="bibl-100"> + <author> + <persName> + <surname>Thornton</surname> + </persName> + </author>, + <ref type="previous-work">op. cit. (1995)</ref>, + <ref type="footnote" n="4">n. 4.</ref> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>O’Donovan</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Thornton</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-61"> + <input type="raw"><![CDATA[65 N.S.W.C.A., unreported, 23 May 1994.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="65" place="bottom"> + <label>65</label> + <bibl>N.S.W.C.A., unreported, 23 May 1994.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="65" type="footnote" place="bottom"> + <label>65</label> + <bibl xml:id="bibl-101"> + <author> + <orgName>N.S.W.C.A.</orgName> + </author>, + <note type="document-type">unreported</note>, + <date when="1994-05-23">23 May 1994</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <orgName>N.S.W.C.A.</orgName> + </author> + <imprint> + <date when="1994-05-23">23 May 1994</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-62"> + <input type="raw"><![CDATA[66 For detailed discussion of the ramifications, see L.J. Weitzman, The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in America (1985).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="66" place="bottom"> + <label>66</label> + <seg>For detailed discussion of the ramifications, see</seg> + <bibl>L.J. Weitzman, The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in America (1985).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="66" type="footnote" place="bottom"> + <label>66</label> + <note type="signal">For detailed discussion of the ramifications, see</note> + <bibl xml:id="bibl-102"> + <author> + <persName> + <forename>L.J.</forename> + <surname>Weitzman</surname> + </persName> + </author>, + <title level="m">The Divorce Revolution: The Unexpected Social and Economic Consequences for Women + and Children in + America + </title> + (<date when="1985">1985</date>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The Divorce Revolution: The Unexpected Social and Economic Consequences for Women + and Children in + America + </title> + <author> + <persName> + <forename>L.J.</forename> + <surname>Weitzman</surname> + </persName> + </author> + <imprint> + <date when="1985">1985</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-63"> + <input type="raw"><![CDATA[67 M.L. Shanley, Feminism, Marriage, and the Law in Victorian England, 1850–1895 (1989) 46.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="67" place="bottom"> + <label>67</label> + <bibl>M.L. Shanley, Feminism, Marriage, and the Law in Victorian England, 1850–1895 (1989) 46.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="67" type="footnote" place="bottom"> + <label>67</label> + <bibl xml:id="bibl-103"> + <author> + <persName> + <forename>M.L.</forename> + <surname>Shanley</surname> + </persName> + </author>, + <title level="m">Feminism, Marriage, and the Law in Victorian England, 1850–1895</title> + (<date when="1989">1989</date>) + <citedRange unit="page" from="46" to="46">46</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Feminism, Marriage, and the Law in Victorian England, 1850–1895</title> + <author> + <persName> + <forename>M.L.</forename> + <surname>Shanley</surname> + </persName> + </author> + <imprint> + <date when="1989">1989</date> + </imprint> + </monogr> + <citedRange unit="page" from="46" to="46">46</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-64"> + <input type="raw"><![CDATA[68 The move to contract as the governing principle of family law has been noted by commentators. See, for example, Freeman, op. cit., n. 24; Neave, op. cit., n. 26; Regan, op. cit., n. 30.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="68" place="bottom"> + <label>68</label> + <seg>The move to contract as the governing principle of family law has been noted by commentators. See, for example,</seg> + <bibl>Freeman, op. cit., n. 24;</bibl> + <bibl>Neave, op. cit., n. 26;</bibl> + <bibl>Regan, op. cit., n. 30.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="68" type="footnote" place="bottom"> + <label>68</label> + <note type="comment"> + The move to contract as the governing principle of family law has been noted by + commentators. + </note> + <note type="signal">See, for example,</note> + <bibl xml:id="bibl-105"> + <author> + <persName> + <surname>Freeman</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="24">n. 24</ref>; + </bibl> + <bibl xml:id="bibl-106"> + <author> + <persName> + <surname>Neave</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="26">n. 26</ref>; + </bibl> + <bibl xml:id="bibl-107"> + <author> + <persName> + <surname>Regan</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="30">n. 30</ref>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Freeman</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Neave</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Regan</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-65"> + <input type="raw"><![CDATA[69 Bryson v. Bryant in respect of which, it might be noted, the High Court refused leave to appeal. Marcia Neave notes the ‘artificiality’ of the concept of intention in a discussion of the constructive trust in the context of de facto spouses. See M. Neave ‘Three Approaches to Family Law Disputes – Intention/Belief, Unjust Enrichment and Unconscionability’ in Equity, Fiduciaries and Trusts, ed. T.G. Youdan (1989) 262–4.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="69" place="bottom"> + <label>69</label> + <seg>Bryson v. Bryant in respect of which, it might be noted, the High Court refused leave to appeal. Marcia Neave notes the ‘artificiality’ of the concept of intention in a discussion of the constructive trust in the context of de facto spouses. See</seg> + <bibl>M. Neave ‘Three Approaches to Family Law Disputes – Intention/Belief, Unjust Enrichment and Unconscionability’ in Equity, Fiduciaries and Trusts, ed. T.G. Youdan (1989) 262–4.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="69" type="footnote" place="bottom"> + <label>69</label> + <bibl xml:id="bibl-108"> + <title level="m">Bryson v. Bryant</title> + </bibl> + <note type="comment"> + in respect of which, it might be noted, the High Court refused leave to appeal. + Marcia Neave notes the ‘artificiality’ of the concept of intention in a discussion of the + constructive trust in the context of de facto spouses. + </note> + <note type="signal">See</note> + <bibl xml:id="bibl-109"> + <author> + <persName> + <forename>M.</forename> + <surname>Neave</surname> + </persName> + </author> + ‘<title level="a">Three Approaches to Family Law Disputes – Intention/Belief, Unjust Enrichment and + Unconscionability’ + </title> + in + <title level="m">Equity, Fiduciaries and Trusts</title>, ed. + <editor> + <persName> + <forename>T.G.</forename> + <surname>Youdan</surname> + </persName> + </editor> + (<date when="1989">1989</date>) + <biblScope unit="page" from="262" to="264">262–4</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Bryson v. Bryant</title> + <imprint><date/></imprint> + </monogr> + </biblStruct> + <biblStruct> + <analytic> + <title level="a">Three Approaches to Family Law Disputes – Intention/Belief, Unjust Enrichment and + Unconscionability’ + </title> + <author> + <persName> + <forename>M.</forename> + <surname>Neave</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="m">Equity, Fiduciaries and Trusts</title> + <editor> + <persName> + <forename>T.G.</forename> + <surname>Youdan</surname> + </persName> + </editor> + <imprint> + <date when="1989">1989</date> + </imprint> + <biblScope unit="page" from="262" to="264">262–4</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-66"> + <input type="raw"><![CDATA[70 For an interesting case study of this phenomenon, see L. Sarmas, ‘Storytelling and the Law: A Case Study of Louth v. Diprose’ (1994) 19 Melbourne University Law Rev. 701.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="70" place="bottom"> + <label>70</label> + <seg>For an interesting case study of this phenomenon, see</seg> + <bibl>L. Sarmas, ‘Storytelling and the Law: A Case Study of Louth v. Diprose’ (1994) 19 Melbourne University Law Rev. 701.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="70" type="footnote" place="bottom"> + <label>70</label> + <note type="signal">For an interesting case study of this phenomenon, see</note> + <bibl xml:id="bibl-110"> + <author> + <persName> + <forename>L.</forename> + <surname>Sarmas</surname> + </persName> + </author>, + ‘<title level="a">Storytelling and the Law: A Case Study of Louth v. Diprose</title>’ + (<date when="1994">1994</date>) + <biblScope unit="volume" from="19" to="19">19</biblScope> + <title level="j">Melbourne University Law Rev</title>. + <biblScope unit="page" from="701">701</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Storytelling and the Law: A Case Study of Louth v. Diprose</title> + <author> + <persName> + <forename>L.</forename> + <surname>Sarmas</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Melbourne University Law Rev</title> + <imprint> + <date when="1994">1994</date> + </imprint> + <biblScope unit="volume" from="19" to="19">19</biblScope> + <biblScope unit="page" from="701">701</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-67"> + <input type="raw"><![CDATA[71 C. Colebrook, ‘Feminist Ethics and Historicism’ (1996) 11 Aust. Feminist Studies 295, 300.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="71" place="bottom"> + <label>71</label> + <bibl>C. Colebrook, ‘Feminist Ethics and Historicism’ (1996) 11 Aust. Feminist Studies 295, 300.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="71" type="footnote" place="bottom"> + <label>71</label> + <bibl xml:id="bibl-111"> + <author> + <persName> + <forename>C.</forename> + <surname>Colebrook</surname> + </persName> + </author>, + ‘<title level="a">Feminist Ethics and Historicism</title>’ + (<date when="1996">1996</date>) + <biblScope unit="volume" from="11" to="11">11</biblScope> + <title level="j">Aust. Feminist Studies</title> + <biblScope unit="page" from="295">295,</biblScope> + <citedRange unit="page" from="300" to="300">300</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Feminist Ethics and Historicism</title> + <author> + <persName> + <forename>C.</forename> + <surname>Colebrook</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Aust. Feminist Studies</title> + <imprint> + <date when="1996">1996</date> + </imprint> + <biblScope unit="volume" from="11" to="11">11</biblScope> + <biblScope unit="page" from="295">295,</biblScope> + </monogr> + <citedRange unit="page" from="300" to="300">300</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-68"> + <input type="raw"><![CDATA[72 M. Albertson Fineman, The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies (1995) 7.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="72" place="bottom"> + <label>72</label> + <bibl>M. Albertson Fineman, The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies (1995) 7.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="72" type="footnote" place="bottom"> + <label>72</label> + <bibl xml:id="bibl-112"> + <author> + <persName> + <forename>M.</forename> + <forename>Albertson</forename> + <surname>Fineman</surname> + </persName> + </author>, + <title level="m">The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies + </title> + (<date when="1995">1995</date>) + <citedRange unit="page" from="7" to="7">7</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies + </title> + <author> + <persName> + <forename>M.</forename> + <forename>Albertson</forename> + <surname>Fineman</surname> + </persName> + </author> + <imprint> + <date when="1995">1995</date> + </imprint> + </monogr> + <citedRange unit="page" from="7" to="7">7</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-69"> + <input type="raw"><![CDATA[73 Compare K. O’Donovan, ‘Should all Maintenance of Spouses be abolished?’ (1982) 45 Modern Law Rev. 424, 431–3.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="73" place="bottom"> + <label>73</label> + <seg>Compare</seg> + <bibl>K. O’Donovan, ‘Should all Maintenance of Spouses be abolished?’ (1982) 45 Modern Law Rev. 424, 431–3.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="73" type="footnote" place="bottom"> + <label>73</label> + <note type="signal">Compare</note> + <bibl xml:id="bibl-113"> + <author> + <persName> + <forename>K.</forename> + <surname>O’Donovan</surname> + </persName> + </author>, + ‘<title level="a">Should all Maintenance of Spouses be abolished?</title>’ + (<date when="1982">1982</date>) + <biblScope unit="volume" from="45" to="45">45</biblScope> + <title level="j">Modern Law Rev.</title> + <biblScope unit="page" from="424">424,</biblScope> + <citedRange unit="page" from="431" to="433">431–3</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Should all Maintenance of Spouses be abolished?</title> + <author> + <persName> + <forename>K.</forename> + <surname>O’Donovan</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Modern Law Rev.</title> + <imprint> + <date when="1982">1982</date> + </imprint> + <biblScope unit="volume" from="45" to="45">45</biblScope> + <biblScope unit="page" from="424">424,</biblScope> + </monogr> + <citedRange unit="page" from="431" to="433">431–3</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-70"> + <input type="raw"><![CDATA[74 For example, De Facto Relationships Act 1984 (N.S.W.). For detailed analysis of the policy considerations, see M.D.A. Freeman and C.M. Lyon, Cohabitation without Marriage: An Essay in Law and Social Policy (1983); New South Wales Law Reform Commission, De Facto Relationships: Issues Paper (1981).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="74" place="bottom"> + <label>74</label> + <seg>For example,</seg> + <bibl>De Facto Relationships Act 1984 (N.S.W.).</bibl> For detailed analysis of the policy considerations, see <bibl>M.D.A. Freeman and C.M. Lyon, Cohabitation without Marriage: An Essay in Law and Social Policy (1983);</bibl> + <bibl>New South Wales Law Reform Commission, De Facto Relationships: Issues Paper (1981).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="74" type="footnote" place="bottom"> + <label>74</label> + <note type="signal">For example,</note> + <bibl xml:id="bibl-114"> + <title level="m">De Facto Relationships Act</title> + <date when="1984">1984</date> + (<pubPlace>N.S.W</pubPlace>.). + </bibl> + <note type="signal">For detailed analysis of the policy considerations, see</note> + <bibl xml:id="bibl-115"> + <author> + <persName> + <forename>M.D.A.</forename> + <surname>Freeman</surname> + </persName> + </author> + and + <author> + <persName> + <forename>C.M.</forename> + <surname>Lyon</surname> + </persName> + </author>, + <title level="m">Cohabitation without Marriage: An Essay in Law and Social Policy</title> + (<date when="1983">1983</date>); + </bibl> + <bibl xml:id="bibl-116"> + <author> + <orgName>New South Wales Law Reform Commission</orgName> + </author>, + <title level="m">De Facto Relationships: Issues Paper</title> + (<date when="1981">1981</date>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">De Facto Relationships Act</title> + <imprint> + <date when="1984">1984</date> + <pubPlace>N.S.W</pubPlace> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Cohabitation without Marriage: An Essay in Law and Social Policy</title> + <author> + <persName> + <forename>M.D.A.</forename> + <surname>Freeman</surname> + </persName> + </author> + <author> + <persName> + <forename>C.M.</forename> + <surname>Lyon</surname> + </persName> + </author> + <imprint> + <date when="1983">1983</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">De Facto Relationships: Issues Paper</title> + <author> + <orgName>New South Wales Law Reform Commission</orgName> + </author> + <imprint> + <date when="1981">1981</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-71"> + <input type="raw"><![CDATA[75 Eds. of the Harvard Law Review, Sexual Orientation and the Law (1990); Dean v. District of Columbia 653 U.S. App. D.C. 307 (1995); C. Overington, ‘Why can’t They Marry?’ The Age, 26 April 1997.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="75" place="bottom"> + <label>75</label> + <bibl>Eds. of the Harvard Law Review, Sexual Orientation and the Law (1990);</bibl> + <bibl>Dean v. District of Columbia 653 U.S. App. D.C. 307 (1995);</bibl> + <bibl>C. Overington, ‘Why can’t They Marry?’ The Age, 26 April 1997.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="75" type="footnote" place="bottom"> + <label>75</label> + <bibl xml:id="bibl-117"> + <author>Eds. of the Harvard Law Review</author>, + <title level="m">Sexual Orientation and the Law</title> + (<date when="1990">1990</date>); + </bibl> + <bibl xml:id="bibl-118"> + <title level="m">Dean v. District of Columbia</title> + <biblScope unit="volume" from="653" to="653">653</biblScope> + <title level="j">U.S. App. D.C.</title> + <citedRange unit="page" from="307" to="307">307</citedRange> + (<date when="1995">1995</date>); + </bibl> + <bibl xml:id="bibl-119"> + <author> + <persName> + <forename>C.</forename> + <surname>Overington</surname> + </persName> + </author>, + ‘<title level="a">Why can’t They Marry?</title>’ + <title level="j">The Age</title>, + <biblScope unit="page" from="26">26</biblScope> + <date when="1997-04">April 1997</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Sexual Orientation and the Law</title> + <author>Eds. of the Harvard Law Review</author> + <imprint> + <date when="1990">1990</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Dean v. District of Columbia</title> + <title level="j">U.S. App. D.C.</title> + <imprint> + <date when="1995">1995</date> + </imprint> + <biblScope unit="volume" from="653" to="653">653</biblScope> + </monogr> + <citedRange unit="page" from="307" to="307">307</citedRange> + </biblStruct> + <biblStruct> + <analytic> + <title level="a">Why can’t They Marry?</title> + <author> + <persName> + <forename>C.</forename> + <surname>Overington</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">The Age</title> + <imprint> + <date when="1997-04">April 1997</date> + </imprint> + <biblScope unit="page" from="26">26</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-72"> + <input type="raw"><![CDATA[76 For example, Lesbian and Gay Rights Service The Bride Wore Pink; Legal Recognition of Our Relationships (1994).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="76" place="bottom"> + <label>76</label> + <seg>For example,</seg> + <bibl>Lesbian and Gay Rights Service The Bride Wore Pink; Legal Recognition of Our Relationships (1994).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="76" type="footnote" place="bottom"> + <label>76</label> + <note type="signal">For example,</note> + <bibl xml:id="bibl-120"> + <author> + <orgName>Lesbian and Gay Rights Service</orgName> + </author> + <title level="m">The Bride Wore Pink; Legal Recognition of Our Relationships</title> + (<date when="1994">1994</date>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The Bride Wore Pink; Legal Recognition of Our Relationships</title> + <author> + <orgName>Lesbian and Gay Rights Service</orgName> + </author> + <imprint> + <date when="1994">1994</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-73"> + <input type="raw"><![CDATA[77 id., p. 3.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="77" place="bottom"> + <label>77</label> + <seg>id., p. 3.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="77" type="footnote" place="bottom"> + <label>77</label> + <bibl xml:id="bibl-121"> + <ref type="previous-work">id.</ref>, + <citedRange unit="page" from="3" to="3">p. 3</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="3" to="3">p. 3</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-74"> + <input type="raw"><![CDATA[78 Above, n. 30.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="78" place="bottom"> + <label>78</label> + <seg>Above, n. 30.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="78" type="footnote" place="bottom"> + <label>78</label> + <bibl xml:id="bibl-122"> + <ref type="footnote" n="30">Above, n. 30</ref>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <imprint><date/></imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> +</dataset> \ No newline at end of file diff --git a/convert-anystyle-data/llamore/data/gold/10.1111_1467-6478.00080.xml b/convert-anystyle-data/llamore/data/gold/10.1111_1467-6478.00080.xml new file mode 100644 index 0000000000000000000000000000000000000000..007b5a243037d009ed1c1ed1a8324cc61ec4ac17 --- /dev/null +++ b/convert-anystyle-data/llamore/data/gold/10.1111_1467-6478.00080.xml @@ -0,0 +1,2665 @@ +<dataset xmlns="https://gitlab.mpcdf.mpg.de/dcfidalgo/llamore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://gitlab.mpcdf.mpg.de/dcfidalgo/llamore ../../schema/xsd/dataset.xsd http://www.tei-c.org/ns/1.0 ../../schema/xsd/document.xsd"> + <instance xml:id="instance-1"> + <input type="raw"><![CDATA[1 For a contrary view, see G. Jones, ‘“Traditional†Legal Scholarship: a Personal View’ in What Are Law Schools For?, ed. P. Birks (1996) 14.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="1" place="bottom"> + <label>1</label> + <seg>For a contrary view, see</seg> + <bibl>G. Jones, ‘“Traditional†Legal Scholarship: a Personal View’ in What Are Law Schools For?, ed. P. Birks (1996) 14.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="1" type="footnote" place="bottom"> + <label>1</label> + <note type="signal">For a contrary view, see</note> + <bibl xml:id="bibl-1"> + <author> + <persName> + <forename>G.</forename> + <surname>Jones</surname> + </persName> + </author>, + ‘<title level="a">“Traditional†Legal Scholarship: a Personal View</title>’ in + <title level="m">What Are Law Schools For?</title>, ed. + <editor> + <persName> + <forename>P.</forename> + <surname>Birks</surname> + </persName> + </editor> + (<date when="1996">1996</date>) + <biblScope unit="page" from="14">14</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">“Traditional†Legal Scholarship: a Personal View</title> + <author> + <persName> + <forename>G.</forename> + <surname>Jones</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="m">What Are Law Schools For?</title> + <editor> + <persName> + <forename>P.</forename> + <surname>Birks</surname> + </persName> + </editor> + <imprint> + <date when="1996">1996</date> + </imprint> + <biblScope unit="page" from="14">14</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-2"> + <input type="raw"><![CDATA[3 R. Goff, ‘The Search for Principle’ (1983) Proceeedings of the British Academy 169, at 171. This is an amplification of Dicey’s remark that ‘[b]y adequate study and careful thought whole departments of law can . . . be reduced to order and exhibited under the form of a few principles which sum up the effect of a hundred cases . . .’. A. Dicey, Can English Law be taught at the Universities? (1883) 20.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="3" place="bottom"> + <label>3</label> + <bibl>R. Goff, ‘The Search for Principle’ (1983) Proceeedings of the British Academy 169, at 171.</bibl> This is an amplification of Dicey’s remark that ‘[b]y adequate study and careful thought whole departments of law can . . . be reduced to order and exhibited under the form of a few principles which sum up the effect of a hundred cases . . .’. <bibl>A. Dicey, Can English Law be taught at the Universities? (1883) 20.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="3" type="footnote" place="bottom"> + <label>3</label> + <bibl xml:id="bibl-2"> + <author> + <persName> + <forename>R.</forename> + <surname>Goff</surname> + </persName> + </author>, + ‘<title level="a">The Search for Principle</title>’ + (<date when="1983">1983</date>) + <title level="j">Proceeedings of the British Academy</title> + <biblScope unit="volume" from="169" to="169">169</biblScope>, + <citedRange unit="page" from="171" to="171">at 171</citedRange>. + </bibl> + <note type="comment">This is an amplification of Dicey’s remark that ‘[b]y adequate study and careful + thought whole departments of law can . . . be reduced to order and exhibited under the form of a + few principles which sum up the effect of a hundred cases . . .’. + </note> + <bibl xml:id="bibl-3"> + <author> + <persName> + <forename>A.</forename> + <surname>Dicey</surname> + </persName> + </author>, + <title level="m">Can English Law be taught at the Universities?</title> + (<date when="1883">1883</date>) + <citedRange unit="page" from="20" to="20">20</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">The Search for Principle</title> + <author> + <persName> + <forename>R.</forename> + <surname>Goff</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Proceeedings of the British Academy</title> + <imprint> + <date when="1983">1983</date> + </imprint> + <biblScope unit="volume" from="169" to="169">169</biblScope> + </monogr> + <citedRange unit="page" from="171" to="171">at 171</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Can English Law be taught at the Universities?</title> + <author> + <persName> + <forename>A.</forename> + <surname>Dicey</surname> + </persName> + </author> + <imprint> + <date when="1883">1883</date> + </imprint> + </monogr> + <citedRange unit="page" from="20" to="20">20</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-3"> + <input type="raw"><![CDATA[4 J. Smith, The Law of Contract (1989)]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="4" place="bottom"> + <label>4</label> + <bibl>J. Smith, The Law of Contract (1989)</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="4" type="footnote" place="bottom"> + <label>4</label> + <bibl xml:id="bibl-4"> + <author> + <persName> + <forename>J.</forename> + <surname>Smith</surname> + </persName> + </author>, + <title level="m">The Law of Contract</title> + (<date when="1989">1989</date>) + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The Law of Contract</title> + <author> + <persName> + <forename>J.</forename> + <surname>Smith</surname> + </persName> + </author> + <imprint> + <date when="1989">1989</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-4"> + <input type="raw"><![CDATA[6 See, for example, D. Kennedy, ‘Form and substance in Private Law Ajudication’ (1976) 89 Harvard Law Rev. 1685.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="6" place="bottom"> + <label>6</label> + <seg>See, for example,</seg> + <bibl>D. Kennedy, ‘Form and substance in Private Law Ajudication’ (1976) 89 Harvard Law Rev. 1685.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="6" type="footnote" place="bottom"> + <label>6</label> + <note type="signal">See, for example,</note> + <bibl xml:id="bibl-5"> + <author> + <persName> + <forename>D.</forename> + <surname>Kennedy</surname> + </persName> + </author>, + ‘<title level="a">Form and substance in Private Law Ajudication</title>’ + (<date when="1976">1976</date>) + <biblScope unit="volume" from="89" to="89">89</biblScope> + <title level="j">Harvard Law Rev.</title> + <biblScope unit="page" from="1685">1685</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Form and substance in Private Law Ajudication</title> + <author> + <persName> + <forename>D.</forename> + <surname>Kennedy</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Harvard Law Rev.</title> + <imprint> + <date when="1976">1976</date> + </imprint> + <biblScope unit="volume" from="89" to="89">89</biblScope> + <biblScope unit="page" from="1685">1685</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-5"> + <input type="raw"><![CDATA[7 B. Hepple, ‘The Renewal of the Liberal Law Degree’ (1996) Cambridge Law J. 470 at 485 and 481.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="7" place="bottom"> + <label>7</label> + <bibl>B. Hepple, ‘The Renewal of the Liberal Law Degree’ (1996) Cambridge Law J. 470 at 485 and 481.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="7" type="footnote" place="bottom"> + <label>7</label> + <bibl xml:id="bibl-6"> + <author> + <persName> + <forename>B.</forename> + <surname>Hepple</surname> + </persName> + </author>, + ‘<title level="a">The Renewal of the Liberal Law Degree</title>’ + (<date when="1996">1996</date>) + <title level="j">Cambridge Law J</title>. + <biblScope unit="page" from="470">470</biblScope> + <citedRange unit="page" from="at">at 485 and 481</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">The Renewal of the Liberal Law Degree</title> + <author> + <persName> + <forename>B.</forename> + <surname>Hepple</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Cambridge Law J</title> + <imprint> + <date when="1996">1996</date> + </imprint> + <biblScope unit="page" from="470">470</biblScope> + </monogr> + <citedRange unit="page" from="at">at 485 and 481</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-6"> + <input type="raw"><![CDATA[8 P.A. Thomas, ‘Introduction’ in Socio-Legal Studies, ed. P.A. Thomas (1997) 19.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="8" place="bottom"> + <label>8</label> + <bibl>P.A. Thomas, ‘Introduction’ in Socio-Legal Studies, ed. P.A. Thomas (1997) 19.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="8" type="footnote" place="bottom"> + <label>8</label> + <bibl xml:id="bibl-7"> + <author> + <persName> + <forename>P.A.</forename> + <surname>Thomas</surname> + </persName> + </author>, + ‘<title level="a">Introduction</title>’ in + <title level="m">Socio-Legal Studies</title>, ed. + <editor> + <persName> + <forename>P.A.</forename> + <surname>Thomas</surname> + </persName> + </editor> + (<date when="1997">1997</date>) + <biblScope unit="page" from="19">19</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Introduction</title> + <author> + <persName> + <forename>P.A.</forename> + <surname>Thomas</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="m">Socio-Legal Studies</title> + <editor> + <persName> + <forename>P.A.</forename> + <surname>Thomas</surname> + </persName> + </editor> + <imprint> + <date when="1997">1997</date> + </imprint> + <biblScope unit="page" from="19">19</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-7"> + <input type="raw"><![CDATA[9 R. Cotterrell, Law’s Community (1995) 296.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="9" place="bottom"> + <label>9</label> + <bibl>R. Cotterrell, Law’s Community (1995) 296.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="9" type="footnote" place="bottom"> + <label>9</label> + <bibl xml:id="bibl-8"> + <author> + <persName> + <forename>R.</forename> + <surname>Cotterrell</surname> + </persName> + </author>, + <title level="m">Law’s Community</title> + (<date when="1995">1995</date>) + <biblScope unit="page" from="296">296</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Law’s Community</title> + <author> + <persName> + <forename>R.</forename> + <surname>Cotterrell</surname> + </persName> + </author> + <imprint> + <date when="1995">1995</date> + </imprint> + <biblScope unit="page" from="296">296</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-8"> + <input type="raw"><![CDATA[10 Socio-legal studies has been defined in many different ways. In this essay the term is taken to indicate the use of ideas ‘from other disciplines primarily but not exclusively from within the social science and humanities fields’. S. Wheeler, ‘Company Law’ in Thomas, op. cit., n. 8, at p. 285.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="10" place="bottom"> + <label>10</label> + <seg>Socio-legal studies has been defined in many different ways. In this essay the term is taken to indicate the use of ideas ‘from other disciplines primarily but not exclusively from within the social science and humanities fields’.</seg> + <bibl>S. Wheeler, ‘Company Law’ in Thomas, op. cit., n. 8, at p. 285.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="10" type="footnote" place="bottom"> + <label>10</label> + <note type="comment">Socio-legal studies has been defined in many different ways. In this essay the + term is taken to indicate the use of ideas ‘from other disciplines primarily but not exclusively + from within the social science and humanities fields’. + </note> + <bibl xml:id="bibl-9"> + <author> + <persName> + <forename>S.</forename> + <surname>Wheeler</surname> + </persName> + </author>, + ‘<title level="a">Company Law</title>’ in + <editor> + <persName> + <surname>Thomas</surname> + </persName> + </editor>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="8">n. 8</ref>, + <citedRange unit="page" from="285" to="285">at p. 285</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Company Law</title> + <author> + <persName> + <forename>S.</forename> + <surname>Wheeler</surname> + </persName> + </author> + </analytic> + <monogr> + <title/> + <editor> + <persName> + <surname>Thomas</surname> + </persName> + </editor> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="285" to="285">at p. 285</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-9"> + <input type="raw"><![CDATA[11 Some fail wholly. It is difficult to see any effect on academic legal education that resulted from Lady Marre’s report A Time for Change (1988). The Jarratt report on universities produced for the Committee of Vice-Chancellors and Principals (CVCP), Report of the Steering Committee for Efficiency studies in Universities (1988), produced much comment but little action. Even those that are thought of as being a success are not wholly implemented. Despite Ormrod’s recommendations no Institute of Profesional Legal Studies was set up and the universities and colleges of higher education did not take sole responsibility for vocational legal training (Report of the Committee on Legal Education (1971; Cmnd 4595) ch. 9 recs. 40 and 23). There were also other recommendations that were not implemented. The Robbins report on higher education, Higher Education (1963; Cmnd 2154) took it is axiomatic that ‘courses of higher education should be available for all those who are qualified by ability and attainment to pursue them and wish to do so. (para. 31). This has yet to happen.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="11" place="bottom"> + <label>11</label> + <seg>Some fail wholly. It is difficult to see any effect on academic legal education that resulted from</seg> + <bibl>Lady Marre’s report A Time for Change (1988).</bibl> The Jarratt report on universities produced for the Committee of Vice-Chancellors and Principals (CVCP), <bibl>Report of the Steering Committee for Efficiency studies in Universities (1988),</bibl> produced much comment but little action. Even those that are thought of as being a success are not wholly implemented. Despite Ormrod’s recommendations no Institute of Profesional Legal Studies was set up and the universities and colleges of higher education did not take sole responsibility for vocational legal training (<bibl>Report of the Committee on Legal Education (1971; Cmnd 4595) ch. 9 recs. 40 and 23).</bibl> There were also other recommendations that were not implemented. <bibl>The Robbins report on higher education, Higher Education (1963; Cmnd 2154) took it is axiomatic that ‘courses of higher education should be available for all those who are qualified by ability and attainment to pursue them and wish to do so. (para. 31).</bibl> This has yet to happen.</note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="11" type="footnote" place="bottom"> + <label>11</label> + <note type="comment"> + Some fail wholly. It is difficult to see any effect on academic legal education that resulted from + </note> + <bibl xml:id="bibl-10"> + <author> + <persName> + <roleName type="honorific">Lady</roleName> + <surname>Marre</surname>’s + </persName> + </author> + <note type="document-type">report</note> + <title level="m">A Time for Change</title> + (<date when="1988">1988</date>). + </bibl> + <note type="comment">The Jarratt report on universities produced for the Committee of + Vice-Chancellors and Principals (CVCP), + </note> + <bibl xml:id="bibl-11"> + <title level="m">Report of the Steering Committee for Efficiency studies in Universities</title> + (<date when="1988">1988</date>), + </bibl> + <note type="comment">produced much comment but little action. Even those that are thought of as being a + success are not wholly implemented. Despite Ormrod’s recommendations no Institute of Profesional + Legal Studies was set up and the universities and colleges of higher education did not take sole + responsibility for vocational legal training + </note> + (<bibl xml:id="bibl-12"> + <title level="m">Report of the Committee on Legal Education</title> + (<date when="1971">1971</date>; + <title level="s">Cmnd</title> + <biblScope unit="volume" from="4595" to="4595">4595</biblScope>) + <citedRange unit="chapter" from="9" to="9">ch. 9</citedRange> + <citedRange unit="entry" from="40" to="40">recs. 40</citedRange> + and + <citedRange unit="entry" from="23" to="23">23</citedRange> + </bibl>). + <note type="comment">There were also other recommendations that were not implemented.</note> + <bibl xml:id="bibl-13"> + <title level="m">The Robbins report on higher education, Higher Education</title> + (<date when="1963">1963</date>; + <title level="s">Cmnd</title> + <biblScope unit="volume" from="2154" to="2154">2154</biblScope>) + <note type="comment"> + took it is axiomatic that ‘courses of higher education should be available for + all those who are qualified by ability and attainment to pursue them and wish to do so. + </note> + (<citedRange unit="para" from="31">para. 31</citedRange>). + </bibl> + <note type="comment">This has yet to happen.</note> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">A Time for Change</title> + <author> + <persName> + <roleName type="honorific">Lady</roleName> + <surname>Marre</surname>’s + </persName> + </author> + <imprint> + <date when="1988">1988</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Report of the Steering Committee for Efficiency studies in Universities</title> + <imprint> + <date when="1988">1988</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Report of the Committee on Legal Education</title> + <title level="s">Cmnd</title> + <imprint> + <date when="1971">1971</date> + </imprint> + <biblScope unit="volume" from="4595" to="4595">4595</biblScope> + </monogr> + <citedRange unit="chapter" from="9" to="9">ch. 9</citedRange> + <citedRange unit="entry" from="40" to="40">recs. 40</citedRange> + <citedRange unit="entry" from="23" to="23">23</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">The Robbins report on higher education, Higher Education</title> + <title level="s">Cmnd</title> + <imprint> + <date when="1963">1963</date> + </imprint> + <biblScope unit="volume" from="2154" to="2154">2154</biblScope> + </monogr> + <citedRange unit="para" from="31">para. 31</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-10"> + <input type="raw"><![CDATA[12 Committee of Inquiry into Higher Education, Higher Education in the learning society (1997) (the Dearing report); ACLEC, First Report on Legal Education and Training (1996). The Government’s White Paper on further and higher education had not been published at the time of writing this essay.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="12" place="bottom"> + <label>12</label> + <bibl>Committee of Inquiry into Higher Education, Higher Education in the learning society (1997) (</bibl>the Dearing report); <bibl>ACLEC, First Report on Legal Education and Training (1996).</bibl> The Government’s White Paper on further and higher education had not been published at the time of writing this essay.</note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="12" type="footnote" place="bottom"> + <label>12</label> + <bibl xml:id="bibl-14"> + <author> + <orgName>Committee of Inquiry into Higher Education</orgName> + </author>, + <title level="m">Higher Education in the learning society</title> + (<date when="1997">1997</date>) + (</bibl> + <note type="comment">the Dearing report</note>); + <bibl xml:id="bibl-15"> + <author> + <orgName>ACLEC</orgName> + </author>, + <title level="m">First Report on Legal Education and Training</title> + (<date when="1996">1996</date>). + </bibl> + <note type="comment">The Government’s White Paper on further and higher education had not been + published at the time of writing this essay. + </note> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Higher Education in the learning society</title> + <author> + <orgName>Committee of Inquiry into Higher Education</orgName> + </author> + <imprint> + <date when="1997">1997</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">First Report on Legal Education and Training</title> + <author> + <orgName>ACLEC</orgName> + </author> + <imprint> + <date when="1996">1996</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-11"> + <input type="raw"><![CDATA[12 ACLEC, id., para 4.6.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="12" place="bottom"> + <label>12</label> + <bibl>ACLEC, id., para 4.6.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="12" type="footnote" place="bottom"> + <label>12</label> + <bibl xml:id="bibl-16"> + <author> + <orgName>ACLEC</orgName> + </author>, + <ref type="previous-work">id.</ref>, + <citedRange unit="para" from="4.6">para 4.6</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <orgName>ACLEC</orgName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="para" from="4.6">para 4.6</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-12"> + <input type="raw"><![CDATA[14 ACLEC’s proposal is part of an historical process which has gradually seen English university law schools distance themselves from the legal professions and the legal professions propose decreasing degrees of control over the content of law degrees. (See A. Bradney and F. Cownie, ‘Working on the Chain Gang?’ (1996) 2 Contemporary Issues in Law 15 at 24–6).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="14" place="bottom"> + <label>14</label> + <seg>ACLEC’s proposal is part of an historical process which has gradually seen English university law schools distance themselves from the legal professions and the legal professions propose decreasing degrees of control over the content of law degrees. (See</seg> + <bibl>A. Bradney and F. Cownie, ‘Working on the Chain Gang?’ (1996) 2 Contemporary Issues in Law 15 at 24–6).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="14" type="footnote" place="bottom"> + <label>14</label> + <note type="comment">ACLEC’s proposal is part of an historical process which has gradually seen + English university law schools distance themselves from the legal professions and the legal + professions propose decreasing degrees of control over the content of law degrees. + </note> + (<note type="signal">See</note> + <bibl xml:id="bibl-18"> + <author> + <persName> + <forename>A.</forename> + <surname>Bradney</surname> + </persName> + </author> + and + <author> + <persName> + <forename>F.</forename> + <surname>Cownie</surname> + </persName> + </author>, + ‘<title level="a">Working on the Chain Gang?</title>’ + (<date when="1996">1996</date>) + <biblScope unit="volume" from="2" to="2">2</biblScope> + <title level="j">Contemporary Issues in Law</title> + <biblScope unit="page" from="15">15</biblScope> + <citedRange unit="page" from="24" to="26">at 24–6</citedRange>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Working on the Chain Gang?</title> + <author> + <persName> + <forename>A.</forename> + <surname>Bradney</surname> + </persName> + </author> + <author> + <persName> + <forename>F.</forename> + <surname>Cownie</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Contemporary Issues in Law</title> + <imprint> + <date when="1996">1996</date> + </imprint> + <biblScope unit="volume" from="2" to="2">2</biblScope> + <biblScope unit="page" from="15">15</biblScope> + </monogr> + <citedRange unit="page" from="24" to="26">at 24–6</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-13"> + <input type="raw"><![CDATA[15 M. Jeeves, J. MacFarlane and A. Boon, ‘Education for Life or for Work?’ (1987) 137 New Law J. 835 at 836.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="15" place="bottom"> + <label>15</label> + <bibl>M. Jeeves, J. MacFarlane and A. Boon, ‘Education for Life or for Work?’ (1987) 137 New Law J. 835 at 836.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="15" type="footnote" place="bottom"> + <label>15</label> + <bibl xml:id="bibl-19"> + <author> + <persName> + <forename>M.</forename> + <forename>Jeeves</forename> + </persName> + </author>, + <author> + <persName> + <forename>J.</forename> + <surname>MacFarlane</surname> + </persName> + </author> + and + <author> + <persName> + <forename>A.</forename> + <surname>Boon</surname> + </persName> + </author>, + ‘<title level="a">Education for Life or for Work?</title>’ + (<date when="1987">1987</date>) + <biblScope unit="volume" from="137" to="137">137</biblScope> + <title level="j">New Law J.</title> + <biblScope unit="page" from="835">835</biblScope> + <citedRange unit="page" from="836" to="836">at 836</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Education for Life or for Work?</title> + <author> + <persName> + <forename>M.</forename> + <forename>Jeeves</forename> + </persName> + </author> + <author> + <persName> + <forename>J.</forename> + <surname>MacFarlane</surname> + </persName> + </author> + <author> + <persName> + <forename>A.</forename> + <surname>Boon</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">New Law J.</title> + <imprint> + <date when="1987">1987</date> + </imprint> + <biblScope unit="volume" from="137" to="137">137</biblScope> + <biblScope unit="page" from="835">835</biblScope> + </monogr> + <citedRange unit="page" from="836" to="836">at 836</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-14"> + <input type="raw"><![CDATA[16 T.H. Huxley, ‘Universities: Actual and Ideal’ in T.H. Huxley, Collected Essays: Volume III (1905) 215.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="16" place="bottom"> + <label>16</label> + <bibl>T.H. Huxley, ‘Universities: Actual and Ideal’ in T.H. Huxley, Collected Essays: Volume III (1905) 215.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="16" type="footnote" place="bottom"> + <label>16</label> + <bibl xml:id="bibl-20"> + <author> + <persName> + <forename>T.H.</forename> + <surname>Huxley</surname> + </persName> + </author>, + ‘<title level="a">Universities: Actual and Ideal</title>’ in + <title level="m">T.H. Huxley, Collected Essays</title>: + <biblScope unit="volume" from="III" to="III">Volume III</biblScope> + (<date when="1905">1905</date>) + <biblScope unit="page" from="215">215</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Universities: Actual and Ideal</title> + <author> + <persName> + <forename>T.H.</forename> + <surname>Huxley</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="m">T.H. Huxley, Collected Essays</title> + <imprint> + <date when="1905">1905</date> + </imprint> + <biblScope unit="volume" from="III" to="III">Volume III</biblScope> + <biblScope unit="page" from="215">215</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-15"> + <input type="raw"><![CDATA[17 J.S. Mill, ‘Inaugural address to the University of St Andrews’ in Collected Work of John Stuart Mill: Volume XXI, ed. J.M. Robson (1984) 218.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="17" place="bottom"> + <label>17</label> + <bibl>J.S. Mill, ‘Inaugural address to the University of St Andrews’ in Collected Work of John Stuart Mill: Volume XXI, ed. J.M. Robson (1984) 218.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="17" type="footnote" place="bottom"> + <label>17</label> + <bibl xml:id="bibl-21"> + <author> + <persName> + <forename>J.S.</forename> + <surname>Mill</surname> + </persName> + </author>, + ‘<title level="a">Inaugural address to the University of St Andrews</title>’ in + <title level="m">Collected Work of John Stuart Mill: Volume</title> + <biblScope unit="volume" from="XXI" to="XXI">XXI</biblScope>, ed. + <editor> + <persName> + <forename>J.M.</forename> + <surname>Robson</surname> + </persName> + </editor> + (<date when="1984">1984</date>) + <citedRange unit="page" from="218" to="218">218</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Inaugural address to the University of St Andrews</title> + <author> + <persName> + <forename>J.S.</forename> + <surname>Mill</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="m">Collected Work of John Stuart Mill: Volume</title> + <editor> + <persName> + <forename>J.M.</forename> + <surname>Robson</surname> + </persName> + </editor> + <imprint> + <date when="1984">1984</date> + </imprint> + <biblScope unit="volume" from="XXI" to="XXI">XXI</biblScope> + </monogr> + <citedRange unit="page" from="218" to="218">218</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-16"> + <input type="raw"><![CDATA[18 Dearing, op. cit., n. 12, para. 9.32.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="18" place="bottom"> + <label>18</label> + <bibl>Dearing, op. cit., n. 12, para. 9.32.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="18" type="footnote" place="bottom"> + <label>18</label> + <bibl xml:id="bibl-22"> + <author> + <persName> + <surname>Dearing</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="12">n. 12</ref>, + <citedRange unit="para" from="9.32" to="9.32">para. 9.32</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Dearing</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="para" from="9.32" to="9.32">para. 9.32</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-17"> + <input type="raw"><![CDATA[19 id., para. 5.11.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="19" place="bottom"> + <label>19</label> + <seg>id., para. 5.11.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="19" type="footnote" place="bottom"> + <label>19</label> + <bibl xml:id="bibl-23"> + <ref type="previous-work">id.</ref>, + <citedRange unit="para" from="5.11" to="5.11">para. 5.11</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <imprint><date/></imprint> + </monogr> + <citedRange unit="para" from="5.11" to="5.11">para. 5.11</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-18"> + <input type="raw"><![CDATA[20 F.R. Leavis, Education and the University (1948) 28. Leavis’s view was narrowly nationalistic. For ‘centre’ it would be better to substitute ‘centres’.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="20" place="bottom"> + <label>20</label> + <bibl>F.R. Leavis, Education and the University (1948) 28.</bibl> Leavis’s view was narrowly nationalistic. For ‘centre’ it would be better to substitute ‘centres’.</note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="20" type="footnote" place="bottom"> + <label>20</label> + <bibl xml:id="bibl-24"> + <author> + <persName> + <forename>F.R.</forename> + <surname>Leavis</surname> + </persName> + </author>, + <title level="m">Education and the University</title> + (<date when="1948">1948</date>) + <citedRange unit="page" from="28" to="28">28</citedRange>. + </bibl> + <note type="comment">Leavis’s view was narrowly nationalistic. For ‘centre’ it would be better to + substitute ‘centres’. + </note> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Education and the University</title> + <author> + <persName> + <forename>F.R.</forename> + <surname>Leavis</surname> + </persName> + </author> + <imprint> + <date when="1948">1948</date> + </imprint> + </monogr> + <citedRange unit="page" from="28" to="28">28</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-19"> + <input type="raw"><![CDATA[21 See, further, A. Bradney, ‘Liberalising Legal Education’ in The Law School: Global Issues, Local Questions, ed. F. Cownie (forthcoming).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="21" place="bottom"> + <label>21</label> + <seg>See, further,</seg> + <bibl>A. Bradney, ‘Liberalising Legal Education’ in The Law School: Global Issues, Local Questions, ed. F. Cownie (forthcoming).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="21" type="footnote" place="bottom"> + <label>21</label> + <note type="signal">See, further,</note> + <bibl xml:id="bibl-25"> + <author> + <persName> + <forename>A.</forename> + <surname>Bradney</surname> + </persName> + </author>, + ‘<title level="a">Liberalising Legal Education</title>’ in + <title level="m">The Law School: Global Issues, Local Questions</title>, ed. + <editor> + <forename type="first" full="init">F.</forename> + <surname>Cownie</surname> + </editor> + (<date>forthcoming</date>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Liberalising Legal Education</title> + <author> + <persName> + <forename>A.</forename> + <surname>Bradney</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="m">The Law School: Global Issues, Local Questions</title> + <editor> + <forename type="first" full="init">F.</forename> + <surname>Cownie</surname> + </editor> + <imprint> + <date>forthcoming</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-20"> + <input type="raw"><![CDATA[22 P. Goodrich ‘Of Blackstone’s Tower: Metephors of Distance and Histories of the English Law School’ in Birks op. cit., n. 1, p. 59.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="22" place="bottom"> + <label>22</label> + <bibl>P. Goodrich ‘Of Blackstone’s Tower: Metephors of Distance and Histories of the English Law School’ in Birks op. cit., n. 1, p. 59.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="22" type="footnote" place="bottom"> + <label>22</label> + <bibl xml:id="bibl-26"> + <author> + <persName> + <forename>P.</forename> + <surname>Goodrich</surname> + </persName> + </author> + ‘<title level="a">Of Blackstone’s Tower: Metephors of Distance and Histories of the English Law School + </title>’ in + <editor> + <persName> + <surname>Birks</surname> + </persName> + </editor> + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="1">n. 1</ref>, + <citedRange unit="page" from="59" to="59">p. 59</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Of Blackstone’s Tower: Metephors of Distance and Histories of the English Law School + </title> + <author> + <persName> + <forename>P.</forename> + <surname>Goodrich</surname> + </persName> + </author> + </analytic> + <monogr> + <title/> + <editor> + <persName> + <surname>Birks</surname> + </persName> + </editor> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="59" to="59">p. 59</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-21"> + <input type="raw"><![CDATA[23 S. Turow, One L (1977) 106.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="23" place="bottom"> + <label>23</label> + <bibl>S. Turow, One L (1977) 106.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="23" type="footnote" place="bottom"> + <label>23</label> + <bibl xml:id="bibl-27"> + <author> + <persName> + <forename>S.</forename> + <surname>Turow</surname> + </persName> + </author>, + <title level="m">One L</title> + (<date when="1977">1977</date>) + <biblScope unit="page" from="106">106</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">One L</title> + <author> + <persName> + <forename>S.</forename> + <surname>Turow</surname> + </persName> + </author> + <imprint> + <date when="1977">1977</date> + </imprint> + <biblScope unit="page" from="106">106</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-22"> + <input type="raw"><![CDATA[24 O. Kahn-Freund, ‘Reflections on Legal Education’ (1966) 29 Modern Law Rev. 121 at 129.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="24" place="bottom"> + <label>24</label> + <bibl>O. Kahn-Freund, ‘Reflections on Legal Education’ (1966) 29 Modern Law Rev. 121 at 129.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="24" type="footnote" place="bottom"> + <label>24</label> + <bibl xml:id="bibl-28"> + <author> + <persName> + <forename>O.</forename> + <surname>Kahn-Freund</surname> + </persName> + </author>, + ‘<title level="m">Reflections on Legal Education</title>’ + (<date when="1966">1966</date>) + <biblScope unit="volume" from="29" to="29">29</biblScope> + <title level="j">Modern Law Rev.</title> + <biblScope unit="page" from="121">121</biblScope> + <citedRange unit="page" from="129" to="129">at 129</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Reflections on Legal Education</title> + <title level="j">Modern Law Rev.</title> + <author> + <persName> + <forename>O.</forename> + <surname>Kahn-Freund</surname> + </persName> + </author> + <imprint> + <date when="1966">1966</date> + </imprint> + <biblScope unit="volume" from="29" to="29">29</biblScope> + <biblScope unit="page" from="121">121</biblScope> + </monogr> + <citedRange unit="page" from="129" to="129">at 129</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-23"> + <input type="raw"><![CDATA[25 Kahn-Freund believed that both doctrinal and non-doctrinal learning were possible together though he did concede that in the doctrinal method there was ‘the danger that the discussion gets stuck in the perhaps intellectually very fascinating game of legal argument . . .’ (Kahn-Freund, id.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="25" place="bottom"> + <label>25</label> + <seg>Kahn-Freund believed that both doctrinal and non-doctrinal learning were possible together though he did concede that in the doctrinal method there was ‘the danger that the discussion gets stuck in the perhaps intellectually very fascinating game of legal argument . . .’ (Kahn-Freund, id.).</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="25" type="footnote" place="bottom"> + <label>25</label> + <note type="comment">Kahn-Freund believed that both doctrinal and non-doctrinal learning were + possible together though he did concede that in the doctrinal method there was ‘the danger that + the discussion gets stuck in the perhaps intellectually very fascinating game of legal + argument . . .’ + </note> + (<bibl xml:id="bibl-29"> + <author> + <persName> + <surname>Kahn-Freund</surname> + </persName> + </author>, + <ref type="previous-work">id.</ref>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Kahn-Freund</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-24"> + <input type="raw"><![CDATA[26 Leavis, op. cit., n. 20, p. 120.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="26" place="bottom"> + <label>26</label> + <bibl>Leavis, op. cit., n. 20, p. 120.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="26" type="footnote" place="bottom"> + <label>26</label> + <bibl xml:id="bibl-30"> + <author> + <persName> + <surname>Leavis</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="20">n. 20</ref>, + <citedRange unit="page" from="120" to="120">p. 120</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Leavis</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="120" to="120">p. 120</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-25"> + <input type="raw"><![CDATA[29 Leavis has, of course, been widely criticized for the cultural and gender assumptions that lie behind his selection of material to be studied. (See, for example, M. King, The New English Literatures (1980) at 216–17.) Whatever the accuracy of these criticisms, they are criticisms of the application of the method rather than the method itself.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="29" place="bottom"> + <label>29</label> + <seg>Leavis has, of course, been widely criticized for the cultural and gender assumptions that lie behind his selection of material to be studied. (See, for example,</seg> + <bibl>M. King, The New English Literatures (1980) at 216–17.)</bibl> Whatever the accuracy of these criticisms, they are criticisms of the application of the method rather than the method itself.</note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="29" type="footnote" place="bottom"> + <label>29</label> + <note type="comment"> + Leavis has, of course, been widely criticized for the cultural and gender + assumptions that lie behind his selection of material to be studied. + </note> + <note type="signal">(See, for example,</note> + <bibl xml:id="bibl-32"> + <author> + <persName> + <forename>M.</forename> + <surname>King</surname> + </persName> + </author>, + <title level="m">The New English Literatures</title> + (<date when="1980">1980</date>) + <citedRange unit="page" from="216" to="217">at 216–17</citedRange>.) + </bibl> + <note type="comment"> + Whatever the accuracy of these criticisms, they are criticisms of the + application of the method rather than the method itself. + </note> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The New English Literatures</title> + <author> + <persName> + <forename>M.</forename> + <surname>King</surname> + </persName> + </author> + <imprint> + <date when="1980">1980</date> + </imprint> + </monogr> + <citedRange unit="page" from="216" to="217">at 216–17</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-26"> + <input type="raw"><![CDATA[30 Jurisprudence by Sir John Salmond, ed. G. Willliams (10th ed., 1947) at 256 and 257.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="30" place="bottom"> + <label>30</label> + <bibl>Jurisprudence by Sir John Salmond, ed. G. Willliams (10th ed., 1947) at 256 and 257.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="30" type="footnote" place="bottom"> + <label>30</label> + <bibl xml:id="bibl-33"> + <title level="m">Jurisprudence by Sir John Salmond</title>, ed. + <editor> + <persName> + <forename>G.</forename> + <surname>Willliams</surname> + </persName> + </editor> + (<edition>10th ed.</edition>, + <date when="1947">1947</date>) + <citedRange unit="page" from="256" to="257">at 256 and 257</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Jurisprudence by Sir John Salmond</title> + <editor> + <persName> + <forename>G.</forename> + <surname>Willliams</surname> + </persName> + </editor> + <imprint> + <date when="1947">1947</date> + </imprint> + </monogr> + <citedRange unit="page" from="256" to="257">at 256 and 257</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-27"> + <input type="raw"><![CDATA[31 So much so that when other disciplines engage with law they must develop their own concepts to analyse law rather than rely on the concepts already developed in law. See, for example, E. Durkheim The Division of Labour in Society (1933) 68.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="31" place="bottom"> + <label>31</label> + <seg>So much so that when other disciplines engage with law they must develop their own concepts to analyse law rather than rely on the concepts already developed in law. See, for example,</seg> + <bibl>E. Durkheim The Division of Labour in Society (1933) 68.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="31" type="footnote" place="bottom"> + <label>31</label> + <note type="comment"> + So much so that when other disciplines engage with law they must develop their + own concepts to analyse law rather than rely on the concepts already developed in law. + </note> + <note type="signal">See, for example,</note> + <bibl xml:id="bibl-35"> + <author> + <persName> + <forename>E.</forename> + <surname>Durkheim</surname> + </persName> + </author> + <title level="m">The Division of Labour in Society</title> + (<date when="1933">1933</date>) + <citedRange unit="page" from="68" to="68">68</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The Division of Labour in Society</title> + <author> + <persName> + <forename>E.</forename> + <surname>Durkheim</surname> + </persName> + </author> + <imprint> + <date when="1933">1933</date> + </imprint> + </monogr> + <citedRange unit="page" from="68" to="68">68</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-28"> + <input type="raw"><![CDATA[32 M. Le Brun and R. Johnstone, The Quiet Revolution: Improving Student Learning in Law (1994) 65. On the effect on women students, see ‘Define and Empower: Women Students Consider Feminist Learning’ (1990) I Law and Critique 47 at pp. 54–55. For a survey of CLS and feminist literature on this general point, see W. Conklin, ‘The Invisible Author of Legal Authority’ (1996) VII Law and Critique 173 at pp. 173–6.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="32" place="bottom"> + <label>32</label> + <bibl>M. Le Brun and R. Johnstone, The Quiet Revolution: Improving Student Learning in Law (1994) 65.</bibl> On the effect on women students, see <bibl>‘Define and Empower: Women Students Consider Feminist Learning’ (1990) I Law and Critique 47 at pp. 54–55.</bibl> For a survey of CLS and feminist literature on this general point, see <bibl>W. Conklin, ‘The Invisible Author of Legal Authority’ (1996) VII Law and Critique 173 at pp. 173–6.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="32" type="footnote" place="bottom"> + <label>32</label> + <bibl xml:id="bibl-36"> + <author> + <persName> + <forename>M.</forename> + <surname>Le Brun</surname> + </persName> + </author> + and + <author> + <persName> + <forename>R.</forename> + <surname>Johnstone</surname> + </persName> + </author>, + <title level="m">The Quiet Revolution: Improving Student Learning in Law</title> + (<date when="1994">1994</date>) + <citedRange unit="page" from="65" to="65">65</citedRange>. + </bibl> + <note type="signal">On the effect on women students, see</note> + <bibl xml:id="bibl-37"> + ‘<title level="a">Define and Empower: Women Students Consider Feminist Learning</title>’ + (<date when="1990">1990</date>) + <biblScope unit="volume" from="I" to="I">I</biblScope> + <title level="j">Law and Critique</title> + <biblScope unit="page" from="47">47</biblScope> + <citedRange unit="page" from="54" to="55">at pp. 54–55</citedRange>. + </bibl> + <note type="signal">For a survey of CLS and feminist literature on this general point, see</note> + <bibl xml:id="bibl-38"> + <author> + <persName> + <forename>W.</forename> + <surname>Conklin</surname> + </persName> + </author>, + ‘<title level="a">The Invisible Author of Legal Authority</title>’ + (<date when="1996">1996</date>) + <biblScope unit="volume" from="VII" to="VII">VII</biblScope> + <title level="j">Law and Critique</title> + <biblScope unit="page" from="173">173</biblScope> + <citedRange unit="page" from="173" to="176">at pp. 173–6</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The Quiet Revolution: Improving Student Learning in Law</title> + <author> + <persName> + <forename>M.</forename> + <surname>Le Brun</surname> + </persName> + </author> + <author> + <persName> + <forename>R.</forename> + <surname>Johnstone</surname> + </persName> + </author> + <imprint> + <date when="1994">1994</date> + </imprint> + </monogr> + <citedRange unit="page" from="65" to="65">65</citedRange> + </biblStruct> + <biblStruct> + <analytic> + <title level="a">Define and Empower: Women Students Consider Feminist Learning</title> + </analytic> + <monogr> + <title level="j">Law and Critique</title> + <imprint> + <date when="1990">1990</date> + </imprint> + <biblScope unit="volume" from="I" to="I">I</biblScope> + <biblScope unit="page" from="47">47</biblScope> + </monogr> + <citedRange unit="page" from="54" to="55">at pp. 54–55</citedRange> + </biblStruct> + <biblStruct> + <analytic> + <title level="a">The Invisible Author of Legal Authority</title> + <author> + <persName> + <forename>W.</forename> + <surname>Conklin</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Law and Critique</title> + <imprint> + <date when="1996">1996</date> + </imprint> + <biblScope unit="volume" from="VII" to="VII">VII</biblScope> + <biblScope unit="page" from="173">173</biblScope> + </monogr> + <citedRange unit="page" from="173" to="176">at pp. 173–6</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-29"> + <input type="raw"><![CDATA[33 R. Collier, ‘Masculinism, Law and Law Teaching’ (1991) 19 International J. of the Sociology of Law 427 at 429.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="33" place="bottom"> + <label>33</label> + <bibl>R. Collier, ‘Masculinism, Law and Law Teaching’ (1991) 19 International J. of the Sociology of Law 427 at 429.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="33" type="footnote" place="bottom"> + <label>33</label> + <bibl xml:id="bibl-39"> + <author> + <persName> + <forename>R.</forename> + <surname>Collier</surname> + </persName> + </author>, + ‘<title level="a">Masculinism, Law and Law Teaching</title>’ + (<date when="1991">1991</date>) + <biblScope unit="volume" from="19" to="19">19</biblScope> + <title level="j">International J. of the Sociology of Law</title> + <biblScope unit="page" from="427">427</biblScope> + <biblScope unit="page" from="429" to="429">at 429</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Masculinism, Law and Law Teaching</title> + <author> + <persName> + <forename>R.</forename> + <surname>Collier</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">International J. of the Sociology of Law</title> + <imprint> + <date when="1991">1991</date> + </imprint> + <biblScope unit="volume" from="19" to="19">19</biblScope> + <biblScope unit="page" from="427">427</biblScope> + <biblScope unit="page" from="429" to="429">at 429</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-30"> + <input type="raw"><![CDATA[34 P. McAuslan, ‘Administrative Law, Collective Consumption and Judicial Policy’ (1983) 46 Modern Law Rev. 1 at 8.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="34" place="bottom"> + <label>34</label> + <bibl>P. McAuslan, ‘Administrative Law, Collective Consumption and Judicial Policy’ (1983) 46 Modern Law Rev. 1 at 8.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="34" type="footnote" place="bottom"> + <label>34</label> + <bibl xml:id="bibl-40"> + <author> + <persName> + <forename>P.</forename> + <surname>McAuslan</surname> + </persName> + </author>, + ‘<title level="m">Administrative Law, Collective Consumption and Judicial Policy</title>’ + (<date when="1983">1983</date>) + <biblScope unit="volume" from="46" to="46">46</biblScope> + <title level="j">Modern Law Rev.</title> + <biblScope unit="page" from="1">1</biblScope> + <citedRange unit="page" from="8" to="8">at 8</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Administrative Law, Collective Consumption and Judicial Policy</title> + <title level="j">Modern Law Rev.</title> + <author> + <persName> + <forename>P.</forename> + <surname>McAuslan</surname> + </persName> + </author> + <imprint> + <date when="1983">1983</date> + </imprint> + <biblScope unit="volume" from="46" to="46">46</biblScope> + <biblScope unit="page" from="1">1</biblScope> + </monogr> + <citedRange unit="page" from="8" to="8">at 8</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-31"> + <input type="raw"><![CDATA[35 Le Brun and Johnstone, op. cit., n. 32, pp. 71–5.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="35" place="bottom"> + <label>35</label> + <bibl>Le Brun and Johnstone, op. cit., n. 32, pp. 71–5.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="35" type="footnote" place="bottom"> + <label>35</label> + <bibl xml:id="bibl-41"> + <author> + <persName> + <surname>Le Brun</surname> + </persName> + </author> + and + <author> + <persName> + <surname>Johnstone</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="32">n. 32</ref>, + <citedRange unit="page" from="71" to="75">pp. 71–5</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Le Brun</surname> + </persName> + </author> + <author> + <persName> + <surname>Johnstone</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="71" to="75">pp. 71–5</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-32"> + <input type="raw"><![CDATA[38 Goodrich, op. cit., n. 22.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="38" place="bottom"> + <label>38</label> + <bibl>Goodrich, op. cit., n. 22.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="38" type="footnote" place="bottom"> + <label>38</label> + <bibl xml:id="bibl-42"> + <author> + <persName> + <surname>Goodrich</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="22">n. 22</ref>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Goodrich</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-33"> + <input type="raw"><![CDATA[39 P. Samuelson, ‘The Convergence of the Law School and the University’ (1975) 44 The Am. Scholar 256 at 258.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="39" place="bottom"> + <label>39</label> + <bibl>P. Samuelson, ‘The Convergence of the Law School and the University’ (1975) 44 The Am. Scholar 256 at 258.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="39" type="footnote" place="bottom"> + <label>39</label> + <bibl xml:id="bibl-43"> + <author> + <persName> + <forename>P.</forename> + <surname>Samuelson</surname> + </persName> + </author>, + ‘<title level="m">The Convergence of the Law School and the University</title>’ + (<date when="1975">1975</date>) + <biblScope unit="volume" from="44" to="44">44</biblScope> + <title level="j">The Am. Scholar</title> + <biblScope unit="page" from="256">256</biblScope> + <citedRange unit="page" from="258" to="258">at 258</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The Convergence of the Law School and the University</title> + <title level="j">The Am. Scholar</title> + <author> + <persName> + <forename>P.</forename> + <surname>Samuelson</surname> + </persName> + </author> + <imprint> + <date when="1975">1975</date> + </imprint> + <biblScope unit="volume" from="44" to="44">44</biblScope> + <biblScope unit="page" from="256">256</biblScope> + </monogr> + <citedRange unit="page" from="258" to="258">at 258</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-34"> + <input type="raw"><![CDATA[40 P. Harris and M. Jones ‘A Survey of Law Schools in the United Kingdom, 1996’ (1997) 31 The Law Teacher 38 at 46.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="40" place="bottom"> + <label>40</label> + <bibl>P. Harris and M. Jones ‘A Survey of Law Schools in the United Kingdom, 1996’ (1997) 31 The Law Teacher 38 at 46.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="40" type="footnote" place="bottom"> + <label>40</label> + <bibl xml:id="bibl-44"> + <author> + <persName> + <forename>P.</forename> + <surname>Harris</surname> + </persName> + </author> + and + <author> + <persName> + <forename>M.</forename> + <surname>Jones</surname> + </persName> + </author> + ‘<title level="a">A Survey of Law Schools in the United Kingdom, 1996</title>’ + (<date when="1997">1997</date>) + <biblScope unit="volume" from="31" to="31">31</biblScope> + <title level="j">The Law Teacher</title> + <biblScope unit="page" from="38">38</biblScope> + <citedRange unit="page" from="46" to="46">at 46</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">A Survey of Law Schools in the United Kingdom, 1996</title> + <author> + <persName> + <forename>P.</forename> + <surname>Harris</surname> + </persName> + </author> + <author> + <persName> + <forename>M.</forename> + <surname>Jones</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">The Law Teacher</title> + <imprint> + <date when="1997">1997</date> + </imprint> + <biblScope unit="volume" from="31" to="31">31</biblScope> + <biblScope unit="page" from="38">38</biblScope> + </monogr> + <citedRange unit="page" from="46" to="46">at 46</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-35"> + <input type="raw"><![CDATA[41 J. Wilson, ‘A third survey of university legal education’ (1993) 13 Legal Studies 143 at 152.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="41" place="bottom"> + <label>41</label> + <bibl>J. Wilson, ‘A third survey of university legal education’ (1993) 13 Legal Studies 143 at 152.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="41" type="footnote" place="bottom"> + <label>41</label> + <bibl xml:id="bibl-45"> + <author> + <persName> + <forename>J.</forename> + <surname>Wilson</surname> + </persName> + </author>, + ‘<title level="a">A third survey of university legal education</title>’ + (<date when="1993">1993</date>) + <biblScope unit="volume" from="13" to="13">13</biblScope> + <title level="j">Legal Studies</title> + <biblScope unit="page" from="143">143</biblScope> + <citedRange unit="page" from="152" to="152">at 152</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">A third survey of university legal education</title> + <author> + <persName> + <forename>J.</forename> + <surname>Wilson</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">Legal Studies</title> + <imprint> + <date when="1993">1993</date> + </imprint> + <biblScope unit="volume" from="13" to="13">13</biblScope> + <biblScope unit="page" from="143">143</biblScope> + </monogr> + <citedRange unit="page" from="152" to="152">at 152</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-36"> + <input type="raw"><![CDATA[42 Thus, for example, Harris and Jones reported that 59.2 per cent of all particpating institutions offered foriegn language tuition as part of their standard LLB programme. (Harris and Jones, op. cit., n. 40, at p. 54).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="42" place="bottom"> + <label>42</label> + <seg>Thus, for example, Harris and Jones reported that 59.2 per cent of all particpating institutions offered foriegn language tuition as part of their standard LLB programme. (</seg> + <bibl>Harris and Jones, op. cit., n. 40, at p. 54).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="42" type="footnote" place="bottom"> + <label>42</label> + <note type="comment"> + Thus, for example, Harris and Jones reported that 59.2 per cent of all + particpating institutions offered foriegn language tuition as part of their standard LLB + programme. + </note> + (<bibl xml:id="bibl-47"> + <author> + <persName> + <surname>Harris</surname> + </persName> + </author> + and + <author> + <persName> + <surname>Jones</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="40">n. 40</ref>, + <citedRange unit="page" from="54" to="54">at p. 54</citedRange> + </bibl>). + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Harris</surname> + </persName> + </author> + <author> + <persName> + <surname>Jones</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="54" to="54">at p. 54</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-37"> + <input type="raw"><![CDATA[43 T. Mortimer, P. Leighton and N. Whatley, Law Teachers: Lawyers or Academics? (1995). This would include teaching both non-law degree students and sub-degree students.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="43" place="bottom"> + <label>43</label> + <bibl>T. Mortimer, P. Leighton and N. Whatley, Law Teachers: Lawyers or Academics? (1995).</bibl> This would include teaching both non-law degree students and sub-degree students.</note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="43" type="footnote" place="bottom"> + <label>43</label> + <bibl xml:id="bibl-48"> + <author> + <persName> + <forename>T.</forename> + <surname>Mortimer</surname> + </persName> + </author>, + <author> + <persName> + <forename>P.</forename> + <surname>Leighton</surname> + </persName> + </author> + and + <author> + <persName> + <forename>N.</forename> + <surname>Whatley</surname> + </persName> + </author>, + <title level="m">Law Teachers: Lawyers or Academics?</title> + (<date when="1995">1995</date>). + </bibl> + <note type="comment">This would include teaching both non-law degree students and sub-degree students.</note> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Law Teachers: Lawyers or Academics?</title> + <author> + <persName> + <forename>T.</forename> + <surname>Mortimer</surname> + </persName> + </author> + <author> + <persName> + <forename>P.</forename> + <surname>Leighton</surname> + </persName> + </author> + <author> + <persName> + <forename>N.</forename> + <surname>Whatley</surname> + </persName> + </author> + <imprint> + <date when="1995">1995</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-38"> + <input type="raw"><![CDATA[44 id., p 35]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="44" place="bottom"> + <label>44</label> + <seg>id., p 35</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="44" type="footnote" place="bottom"> + <label>44</label> + <bibl xml:id="bibl-49"> + <ref type="previous-work">id.</ref>, + <citedRange unit="page" from="35" to="35">p 35</citedRange> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="35" to="35">p 35</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-39"> + <input type="raw"><![CDATA[45 L. Skwarok, ‘Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and Assessment at Hong Kong Polytechnic University’ (1995) 29 The Law Teacher 189 at 189.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="45" place="bottom"> + <label>45</label> + <bibl>L. Skwarok, ‘Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and Assessment at Hong Kong Polytechnic University’ (1995) 29 The Law Teacher 189 at 189.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="45" type="footnote" place="bottom"> + <label>45</label> + <bibl xml:id="bibl-50"> + <author> + <persName> + <forename>L.</forename> + <surname>Skwarok</surname> + </persName> + </author>, + ‘<title level="a">Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and + Assessment at Hong Kong Polytechnic University</title>’ + (<date when="1995">1995</date>) + <biblScope unit="volume" from="29" to="29">29</biblScope> + <title level="j">The Law Teacher</title> + <biblScope unit="page" from="189">189</biblScope> + <citedRange unit="page" from="189" to="189">at 189</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and + Assessment at Hong Kong Polytechnic University</title> + <author> + <persName> + <forename>L.</forename> + <surname>Skwarok</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">The Law Teacher</title> + <imprint> + <date when="1995">1995</date> + </imprint> + <biblScope unit="volume" from="29" to="29">29</biblScope> + <biblScope unit="page" from="189">189</biblScope> + </monogr> + <citedRange unit="page" from="189" to="189">at 189</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-40"> + <input type="raw"><![CDATA[46 N. Bastin, ‘Law, Law Staff and CNAA Business Studies Degree Courses’ (1985) 19 The Law Teacher 12 at 13.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="46" place="bottom"> + <label>46</label> + <bibl>N. Bastin, ‘Law, Law Staff and CNAA Business Studies Degree Courses’ (1985) 19 The Law Teacher 12 at 13.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="46" type="footnote" place="bottom"> + <label>46</label> + <bibl xml:id="bibl-51"> + <author> + <persName> + <forename>N.</forename> + <surname>Bastin</surname> + </persName> + </author>, + ‘<title level="a">Law, Law Staff and CNAA Business Studies Degree Courses</title>’ + (<date when="1985">1985</date>) + <biblScope unit="volume" from="19" to="19">19</biblScope> + <title level="j">The Law Teacher</title> + <biblScope unit="page" from="12">12</biblScope> + <citedRange unit="page" from="13" to="13">at 13</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Law, Law Staff and CNAA Business Studies Degree Courses</title> + <author> + <persName> + <forename>N.</forename> + <surname>Bastin</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">The Law Teacher</title> + <imprint> + <date when="1985">1985</date> + </imprint> + <biblScope unit="volume" from="19" to="19">19</biblScope> + <biblScope unit="page" from="12">12</biblScope> + </monogr> + <citedRange unit="page" from="13" to="13">at 13</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-41"> + <input type="raw"><![CDATA[47 A. Ridley, ‘Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?’ (1994) 28 The Law Teacher 281 at 282.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="47" place="bottom"> + <label>47</label> + <bibl>A. Ridley, ‘Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?’ (1994) 28 The Law Teacher 281 at 282.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="47" type="footnote" place="bottom"> + <label>47</label> + <bibl xml:id="bibl-52"> + <author> + <persName> + <forename>A.</forename> + <surname>Ridley</surname> + </persName> + </author>, + ‘<title level="a">Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?</title>’ + (<date when="1994">1994</date>) + <biblScope unit="volume" from="28" to="28">28</biblScope> + <title level="j">The Law Teacher</title> + <biblScope unit="page" from="281">281</biblScope> + <citedRange unit="page" from="282" to="282">at 282</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?</title> + <author> + <persName> + <forename>A.</forename> + <surname>Ridley</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">The Law Teacher</title> + <imprint> + <date when="1994">1994</date> + </imprint> + <biblScope unit="volume" from="28" to="28">28</biblScope> + <biblScope unit="page" from="281">281</biblScope> + </monogr> + <citedRange unit="page" from="282" to="282">at 282</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-42"> + <input type="raw"><![CDATA[48 G. Cartan and T. Vilkinas, ‘Legal Literacy for Managers: The Role of the Educator’ (1990) 24 The Law Teacher 246 at 248.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="48" place="bottom"> + <label>48</label> + <bibl>G. Cartan and T. Vilkinas, ‘Legal Literacy for Managers: The Role of the Educator’ (1990) 24 The Law Teacher 246 at 248.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="48" type="footnote" place="bottom"> + <label>48</label> + <bibl xml:id="bibl-53"> + <author> + <persName> + <forename>G.</forename> + <surname>Cartan</surname> + </persName> + </author> + and + <author> + <persName> + <forename>T.</forename> + <surname>Vilkinas</surname> + </persName> + </author>, + ‘<title level="a">Legal Literacy for Managers: The Role of the Educator</title>’ + (<date when="1990">1990</date>) + <biblScope unit="volume" from="24" to="24">24</biblScope> + <title level="j">The Law Teacher</title> + <biblScope unit="page" from="246">246</biblScope> + <citedRange unit="page" from="248" to="248">at 248</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Legal Literacy for Managers: The Role of the Educator</title> + <author> + <persName> + <forename>G.</forename> + <surname>Cartan</surname> + </persName> + </author> + <author> + <persName> + <forename>T.</forename> + <surname>Vilkinas</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">The Law Teacher</title> + <imprint> + <date when="1990">1990</date> + </imprint> + <biblScope unit="volume" from="24" to="24">24</biblScope> + <biblScope unit="page" from="246">246</biblScope> + </monogr> + <citedRange unit="page" from="248" to="248">at 248</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-43"> + <input type="raw"><![CDATA[49 Ridley, op. cit., n. 47, at p. 284.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="49" place="bottom"> + <label>49</label> + <bibl>Ridley, op. cit., n. 47, at p. 284.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="49" type="footnote" place="bottom"> + <label>49</label> + <bibl xml:id="bibl-54"> + <author> + <persName> + <surname>Ridley</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="47">n. 47</ref>, + <citedRange unit="page" from="284" to="284">at p. 284</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Ridley</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="284" to="284">at p. 284</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-44"> + <input type="raw"><![CDATA[50 This, of course, is not always the case. For example, the BA Economics and Law degree at Leicester has a special course in each year given over to the consideration of the relationship between economics and law.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="50" place="bottom"> + <label>50</label> + <seg>This, of course, is not always the case. For example, the BA Economics and Law degree at Leicester has a special course in each year given over to the consideration of the relationship between economics and law.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="50" type="footnote" place="bottom"> + <label>50</label> + <note type="comment"> + This, of course, is not always the case. For example, the BA Economics and Law + degree at Leicester has a special course in each year given over to the consideration of the + relationship between economics and law. + </note> + </note> + </output> + <output type="biblStruct"/> + </instance> + <instance xml:id="instance-45"> + <input type="raw"><![CDATA[51 P. Birks, ‘Short Cuts’ in Pressing Problems in the Law, ed. P. Birks (1994) 10–24.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="51" place="bottom"> + <label>51</label> + <bibl>P. Birks, ‘Short Cuts’ in Pressing Problems in the Law, ed. P. Birks (1994) 10–24.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="51" type="footnote" place="bottom"> + <label>51</label> + <bibl xml:id="bibl-56"> + <author> + <persName> + <forename>P.</forename> + <surname>Birks</surname> + </persName> + </author>, + ‘<title level="a">Short Cuts</title>’ in + <title level="m">Pressing Problems in the Law</title>, ed. + <editor> + <persName> + <forename>P.</forename> + <surname>Birks</surname> + </persName> + </editor> + (<date when="1994">1994</date>) + <biblScope unit="page" from="10" to="24">10–24</biblScope>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Short Cuts</title> + <author> + <persName> + <forename>P.</forename> + <surname>Birks</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="m">Pressing Problems in the Law</title> + <editor> + <persName> + <forename>P.</forename> + <surname>Birks</surname> + </persName> + </editor> + <imprint> + <date when="1994">1994</date> + </imprint> + <biblScope unit="page" from="10" to="24">10–24</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-46"> + <input type="raw"><![CDATA[52 Ridley, op. cit., n. 47, p. 283.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="52" place="bottom"> + <label>52</label> + <bibl>Ridley, op. cit., n. 47, p. 283.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="52" type="footnote" place="bottom"> + <label>52</label> + <bibl xml:id="bibl-57"> + <author> + <persName> + <surname>Ridley</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="47">n. 47</ref>, + <citedRange unit="page" from="283" to="283">p. 283</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Ridley</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="283" to="283">p. 283</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-47"> + <input type="raw"><![CDATA[53 Cartan and Vilkinas, op. cit., n. 48, p. 248.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="53" place="bottom"> + <label>53</label> + <bibl>Cartan and Vilkinas, op. cit., n. 48, p. 248.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="53" type="footnote" place="bottom"> + <label>53</label> + <bibl xml:id="bibl-58"> + <author> + <persName> + <surname>Cartan</surname> + </persName> + </author> + and + <author> + <persName> + <surname>Vilkinas</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="48">n. 48</ref>, + <citedRange unit="page" from="248" to="248">p. 248</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Cartan</surname> + </persName> + </author> + <author> + <persName> + <surname>Vilkinas</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="248" to="248">p. 248</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-48"> + <input type="raw"><![CDATA[54 P. Harris, ‘Curriculum Development in Legal Studies’ (1986) 20 The Law Teacher 110 at 112.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="54" place="bottom"> + <label>54</label> + <bibl>P. Harris, ‘Curriculum Development in Legal Studies’ (1986) 20 The Law Teacher 110 at 112.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="54" type="footnote" place="bottom"> + <label>54</label> + <bibl xml:id="bibl-59"> + <author> + <persName> + <forename>P.</forename> + <surname>Harris</surname> + </persName> + </author>, + ‘<title level="a">Curriculum Development in Legal Studies</title>’ + (<date when="1986">1986</date>) + <biblScope unit="volume" from="20" to="20">20</biblScope> + <title level="j">The Law Teacher</title> + <biblScope unit="page" from="110">110</biblScope> + <citedRange unit="page" from="112" to="112">at 112</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Curriculum Development in Legal Studies</title> + <author> + <persName> + <forename>P.</forename> + <surname>Harris</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="j">The Law Teacher</title> + <imprint> + <date when="1986">1986</date> + </imprint> + <biblScope unit="volume" from="20" to="20">20</biblScope> + <biblScope unit="page" from="110">110</biblScope> + </monogr> + <citedRange unit="page" from="112" to="112">at 112</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-49"> + <input type="raw"><![CDATA[55 Dearing, op. cit., n. 12, para 9.3.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="55" place="bottom"> + <label>55</label> + <bibl>Dearing, op. cit., n. 12, para 9.3.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="55" type="footnote" place="bottom"> + <label>55</label> + <bibl xml:id="bibl-60"> + <author> + <persName> + <surname>Dearing</surname> + </persName> + </author>, + <ref type="previous-work">op. cit.</ref>, + <ref type="footnote" n="12">n. 12</ref>, + <citedRange unit="para" from="9.3" to="9.3">para 9.3</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Dearing</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="para" from="9.3" to="9.3">para 9.3</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-50"> + <input type="raw"><![CDATA[57 G. Steiner, Errata: An Examined Life (1997) 20.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="57" place="bottom"> + <label>57</label> + <bibl>G. Steiner, Errata: An Examined Life (1997) 20.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="57" type="footnote" place="bottom"> + <label>57</label> + <bibl xml:id="bibl-61"> + <author> + <persName> + <forename>G.</forename> + <surname>Steiner</surname> + </persName> + </author>, + <title level="m">Errata: An Examined Life</title> + (<date when="1997">1997</date>) + <citedRange unit="page" from="20" to="20">20</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Errata: An Examined Life</title> + <author> + <persName> + <forename>G.</forename> + <surname>Steiner</surname> + </persName> + </author> + <imprint> + <date when="1997">1997</date> + </imprint> + </monogr> + <citedRange unit="page" from="20" to="20">20</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> +</dataset> \ No newline at end of file diff --git a/convert-anystyle-data/llamore/data/gold/10.1515_zfrs-1980-0103.xml b/convert-anystyle-data/llamore/data/gold/10.1515_zfrs-1980-0103.xml new file mode 100644 index 0000000000000000000000000000000000000000..c9da15ff3d867c605a05d0ac5b34c073861e8b85 --- /dev/null +++ b/convert-anystyle-data/llamore/data/gold/10.1515_zfrs-1980-0103.xml @@ -0,0 +1,2522 @@ +<dataset xmlns="https://gitlab.mpcdf.mpg.de/dcfidalgo/llamore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://gitlab.mpcdf.mpg.de/dcfidalgo/llamore ../../schema/xsd/dataset.xsd http://www.tei-c.org/ns/1.0 ../../schema/xsd/document.xsd"> + <instance xml:id="instance-1"> + <input type="raw"><![CDATA[1 Geiger 1964, insbesondere S. 65—83.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="1" place="bottom"> + <label>1</label> + <bibl>Geiger 1964, insbesondere S. 65—83.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="1" type="footnote" place="bottom"> + <label>1</label> + <bibl xml:id="bibl-1"> + <author> + <persName> + <surname>Geiger</surname> + </persName> + </author> + <date when="1964">1964</date>, + <citedRange unit="page" from="65" to="83">insbesondere S. 65—83</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Geiger</surname> + </persName> + </author> + <imprint> + <date when="1964">1964</date> + </imprint> + </monogr> + <citedRange unit="page" from="65" to="83">insbesondere S. 65—83</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-2"> + <input type="raw"><![CDATA[2 Vgl. Feest/Blankenburg, 1972. Die Konsequenz einer größeren Dunkelziffer bei den von der Polizei selbst entdeckten Straftaten entwickle ich ausführlicher in meinem Beitrag über ‘Nichtkriminalisierung als Struktur und Routine’, 1976.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="2" place="bottom"> + <label>2</label> + <seg>Vgl.</seg> + <bibl>Feest/Blankenburg, 1972.</bibl> Die Konsequenz einer größeren Dunkelziffer bei den von der Polizei selbst entdeckten Straftaten entwickle ich ausführlicher in meinem Beitrag über <bibl>‘Nichtkriminalisierung als Struktur und Routine’, 1976.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="2" type="footnote" place="bottom"> + <label>2</label> + <note type="signal">Vgl.</note> + <bibl xml:id="bibl-2"> + <author> + <persName> + <surname>Feest</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>, + <date when="1972">1972</date>. + </bibl> + <note type="signal"> + Die Konsequenz einer größeren Dunkelziffer bei den von der Polizei selbst + entdeckten Straftaten entwickle ich ausführlicher in meinem Beitrag über + </note> + <bibl xml:id="bibl-3"> + ‘<title level="m">Nichtkriminalisierung als Struktur und Routine</title>’, + <date when="1976">1976</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Feest</surname> + </persName> + </author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <imprint> + <date when="1972">1972</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Nichtkriminalisierung als Struktur und Routine</title> + <imprint> + <date when="1976">1976</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-3"> + <input type="raw"><![CDATA[3 Angaben aus einer Befragung von Peter MacNaughton-Smith und Richard Rosellen zur ‘Bereitschaft zur Anzeigeerstattung’ Max-Planck-Institut für Strafrecht, Freiburg 1978. Manuskript Der ausführliche Forschungsbericht von Richard Rosellen erscheint in Kürze unter dem Titel ‘Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung’, Berlin, voraussichtlich 1980.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="3" place="bottom"> + <label>3</label> + <seg>Angaben aus einer Befragung von</seg> + <bibl>Peter MacNaughton-Smith und Richard Rosellen zur ‘Bereitschaft zur Anzeigeerstattung’ Max-Planck-Institut für Strafrecht, Freiburg 1978.</bibl> Manuskript Der ausführliche Forschungsbericht von <bibl>Richard Rosellen erscheint in Kürze unter dem Titel ‘Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung’, Berlin, voraussichtlich 1980.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="3" type="footnote" place="bottom"> + <label>3</label> + <note type="signal">Angaben aus einer Befragung von</note> + <bibl xml:id="bibl-4"> + <author> + <persName> + <forename>Peter</forename> + <surname>MacNaughton-Smith</surname> + </persName> + </author>und + <author> + <persName> + <forename>Richard</forename> + <surname>Rosellen</surname> + </persName> + </author>zur + ‘<title level="m">Bereitschaft zur Anzeigeerstattung</title>’ + <publisher>Max-Planck-Institut für Strafrecht</publisher>, + <pubPlace>Freiburg</pubPlace> + <date when="1978">1978</date>. + </bibl> + <note type="document-type">Manuskript</note> + <note type="signal">Der ausführliche Forschungsbericht von</note> + <bibl xml:id="bibl-5"> + <author> + <persName> + <forename>Richard</forename> + <surname>Rosellen</surname> + </persName> + </author> + <note type="comment">erscheint in Kürze unter dem Titel</note> + ‘<title level="m">Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung</title>’, + <pubPlace>Berlin</pubPlace>, + <date when="1980">voraussichtlich 1980</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Bereitschaft zur Anzeigeerstattung</title> + <author> + <persName> + <forename>Peter</forename> + <surname>MacNaughton-Smith</surname> + </persName> + </author> + <author> + <persName> + <forename>Richard</forename> + <surname>Rosellen</surname> + </persName> + </author> + <imprint> + <date when="1978">1978</date> + <pubPlace>Freiburg</pubPlace> + <publisher>Max-Planck-Institut für Strafrecht</publisher> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung</title> + <author> + <persName> + <forename>Richard</forename> + <surname>Rosellen</surname> + </persName> + </author> + <imprint> + <date when="1980">voraussichtlich 1980</date> + <pubPlace>Berlin</pubPlace> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-4"> + <input type="raw"><![CDATA[4 Vgl. Blankenburg/Sessar/Steffen, 1978, S. 66-85.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="4" place="bottom"> + <label>4</label> + <seg>Vgl.</seg> + <bibl>Blankenburg/Sessar/Steffen, 1978, S. 66-85.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="4" type="footnote" place="bottom"> + <label>4</label> + <note type="signal">Vgl.</note> + <bibl xml:id="bibl-6"> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Sessar</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Steffen</surname> + </persName> + </author>, + <date when="1978">1978</date>, + <citedRange unit="page" from="66" to="85">S. 66-85</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Sessar</surname> + </persName> + </author> + <author> + <persName> + <surname>Steffen</surname> + </persName> + </author> + <imprint> + <date when="1978">1978</date> + </imprint> + </monogr> + <citedRange unit="page" from="66" to="85">S. 66-85</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-5"> + <input type="raw"><![CDATA[5 Black, 1973 S. 125 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="5" place="bottom"> + <label>5</label> + <bibl>Black, 1973 S. 125 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="5" type="footnote" place="bottom"> + <label>5</label> + <bibl xml:id="bibl-7"> + <author> + <persName> + <surname>Black</surname> + </persName>, + </author> + <date when="1973">1973</date> + <citedRange unit="page" from="125">S. 125 ff</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Black</surname> + </persName>, + </author> + <imprint> + <date when="1973">1973</date> + </imprint> + </monogr> + <citedRange unit="page" from="125">S. 125 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-6"> + <input type="raw"><![CDATA[6 Zur höheren Wahrscheinlichkeit der Normierung von Verhalten in weniger komplexen Beziehungen vgl. die Konflikttheorie von Gessner 1976, insbesondere S. 170—183.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="6" place="bottom"> + <label>6</label> + <seg>Zur höheren Wahrscheinlichkeit der Normierung von Verhalten in weniger komplexen Beziehungen vgl. die Konflikttheorie von</seg> + <bibl>Gessner 1976, insbesondere S. 170—183.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="6" type="footnote" place="bottom"> + <label>6</label> + <note type="signal"> + Zur höheren Wahrscheinlichkeit der Normierung von Verhalten in weniger komplexen + Beziehungen vgl. die Konflikttheorie von + </note> + <bibl xml:id="bibl-8"> + <author> + <persName> + <surname>Gessner</surname> + </persName> + </author> + <date when="1976">1976</date>, + <citedRange unit="page" from="170" to="183">insbesondere S. 170—183</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Gessner</surname> + </persName> + </author> + <imprint> + <date when="1976">1976</date> + </imprint> + </monogr> + <citedRange unit="page" from="170" to="183">insbesondere S. 170—183</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-7"> + <input type="raw"><![CDATA[7 Zum Konzept der 'Thematisierung von Recht' vgl. Luhmann 1980, S. 99—112.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="7" place="bottom"> + <label>7</label> + <seg>Zum Konzept der 'Thematisierung von Recht' vgl.</seg> + <bibl>Luhmann 1980, S. 99—112.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="7" type="footnote" place="bottom"> + <label>7</label> + <note type="signal">Zum Konzept der 'Thematisierung von Recht' vgl.</note> + <bibl xml:id="bibl-9"> + <author> + <persName> + <surname>Luhmann</surname> + </persName> + </author> + <date when="1980">1980</date>, + <citedRange unit="page" from="99" to="112">S. 99—112</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Luhmann</surname> + </persName> + </author> + <imprint> + <date when="1980">1980</date> + </imprint> + </monogr> + <citedRange unit="page" from="99" to="112">S. 99—112</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-8"> + <input type="raw"><![CDATA[8 Ausführlicher bei Gessner 1976]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="8" place="bottom"> + <label>8</label> + <seg>Ausführlicher bei Gessner 1976</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="8" type="footnote" place="bottom"> + <label>8</label> + <note type="signal">Ausführlicher bei</note> + <bibl xml:id="bibl-10"> + <author> + <persName> + <surname>Gessner</surname> + </persName> + </author> + <date when="1976">1976</date> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Gessner</surname> + </persName> + </author> + <imprint> + <date when="1976">1976</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-9"> + <input type="raw"><![CDATA[9 Vgl. Schönholz 1980.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="9" place="bottom"> + <label>9</label> + <seg>Vgl. Schönholz 1980.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="9" type="footnote" place="bottom"> + <label>9</label> + <note type="signal">Vgl.</note> + <bibl xml:id="bibl-11"> + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author> + <date when="1980">1980</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author> + <imprint> + <date when="1980">1980</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-10"> + <input type="raw"><![CDATA[10 Blankenburg/Schönholz/Rogowski 1979, S. 64 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="10" place="bottom"> + <label>10</label> + <bibl>Blankenburg/Schönholz/Rogowski 1979, S. 64 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="10" type="footnote" place="bottom"> + <label>10</label> + <bibl xml:id="bibl-12"> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Rogowski</surname> + </persName> + </author> + <date when="1979">1979</date>, + <citedRange unit="page" from="64">S. 64 ff</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author> + <author> + <persName> + <surname>Rogowski</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + </monogr> + <citedRange unit="page" from="64">S. 64 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-11"> + <input type="raw"><![CDATA[11 Hilden 1976, S. 64 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="11" place="bottom"> + <label>11</label> + <bibl>Hilden 1976, S. 64 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="11" type="footnote" place="bottom"> + <label>11</label> + <bibl xml:id="bibl-13"> + <author> + <persName> + <surname>Hilden</surname> + </persName> + </author> + <date when="1976">1976</date>, + <citedRange unit="page" from="64">S. 64 ff</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Hilden</surname> + </persName> + </author> + <imprint> + <date when="1976">1976</date> + </imprint> + </monogr> + <citedRange unit="page" from="64">S. 64 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-12"> + <input type="raw"><![CDATA[12 Koch 1975, S. 75 der allerdings nur streitige Urteile und Vergleiche untersucht hat.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="12" place="bottom"> + <label>12</label> + <seg>Koch 1975, S. 75 der allerdings nur streitige Urteile und Vergleiche untersucht hat.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="12" type="footnote" place="bottom"> + <label>12</label> + <bibl xml:id="bibl-14"> + <author> + <persName> + <surname>Koch</surname> + </persName> + </author> + <date when="1975">1975</date>, + <citedRange unit="page" from="75" to="75">S. 75</citedRange> + </bibl> + <note type="comment">der allerdings nur streitige Urteile und Vergleiche untersucht hat.</note> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Koch</surname> + </persName> + </author> + <imprint> + <date when="1975">1975</date> + </imprint> + </monogr> + <citedRange unit="page" from="75" to="75">S. 75</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-13"> + <input type="raw"><![CDATA[13 Für Angaben der Zählkartenstatistik für die Familiengerichte siehe: Statistisches Bundesamt Wiesbaden, Fachserie 10 (Rechtspflege) Reihe 2.1, Tabelle 10, Wiesbaden 1978.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="13" place="bottom"> + <label>13</label> + <seg>Für Angaben der Zählkartenstatistik für die Familiengerichte siehe:</seg> + <bibl>Statistisches Bundesamt Wiesbaden, Fachserie 10 (Rechtspflege) Reihe 2.1, Tabelle 10, Wiesbaden 1978.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="13" type="footnote" place="bottom"> + <label>13</label> + <note type="signal">Für Angaben der Zählkartenstatistik für die Familiengerichte siehe:</note> + <bibl xml:id="bibl-15"> + <author> + <orgName>Statistisches Bundesamt Wiesbaden</orgName> + </author>, + <title level="m">Fachserie 10 (Rechtspflege) Reihe 2.1</title>, + <citedRange unit="part">Tabelle 10</citedRange>, + <pubPlace>Wiesbaden</pubPlace> + <date when="1978">1978</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Fachserie 10 (Rechtspflege) Reihe 2.1</title> + <author> + <orgName>Statistisches Bundesamt Wiesbaden</orgName> + </author> + <imprint> + <date when="1978">1978</date> + <pubPlace>Wiesbaden</pubPlace> + </imprint> + </monogr> + <citedRange unit="part">Tabelle 10</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-14"> + <input type="raw"><![CDATA[14 Blankenburg/Schönholz/Rogowski 1979, S. 78 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="14" place="bottom"> + <label>14</label> + <bibl>Blankenburg/Schönholz/Rogowski 1979, S. 78 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="14" type="footnote" place="bottom"> + <label>14</label> + <bibl xml:id="bibl-16"> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Rogowski</surname> + </persName> + </author> + <date when="1979">1979</date>, + <citedRange unit="page" from="78">S. 78 ff</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author> + <author> + <persName> + <surname>Rogowski</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + </monogr> + <citedRange unit="page" from="78">S. 78 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-15"> + <input type="raw"><![CDATA[15 Steinbach 1979 hat in einer Erhebung von 1144 Amtsgerichtsprozessen in der Bundesrepublik ohne Berlin in den Jahren 1974—1976 ein Verhältnis von 1 Räumungsklage je 1,2 Forderungsklagen, in Berlin allerdings von 1 Räumungsklage je 0,12 Forderungsklagen ermittelt. Im folgenden auch als GMD-Erhebung zitiert.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="15" place="bottom"> + <label>15</label> + <seg>Steinbach 1979 hat in einer Erhebung von 1144 Amtsgerichtsprozessen in der Bundesrepublik ohne Berlin in den Jahren 1974—1976 ein Verhältnis von 1 Räumungsklage je 1,2 Forderungsklagen, in Berlin allerdings von 1 Räumungsklage je 0,12 Forderungsklagen ermittelt. Im folgenden auch als GMD-Erhebung zitiert.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="15" type="footnote" place="bottom"> + <label>15</label> + <bibl xml:id="bibl-16a"> + <author> + <persName> + <surname>Steinbach</surname> + </persName> + </author> + <date when="1979">1979</date> + </bibl> + <note type="comment"> + hat in einer Erhebung von 1144 Amtsgerichtsprozessen in der Bundesrepublik ohne Berlin in den + Jahren 1974—1976 ein Verhältnis von 1 Räumungsklage je 1,2 Forderungsklagen, in Berlin allerdings + von 1 Räumungsklage je 0,12 Forderungsklagen ermittelt. Im folgenden auch als GMD-Erhebung zitiert. + </note> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Steinbach</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-16"> + <input type="raw"><![CDATA[16 Johnson 1979 S. 90 ff. berichtet von dem erfolgreichen Versuch einer Unfall-Schadensregulierung ohne Berücksichtigung einer Schuldzuschreibung in Neuseeland (no fault accident compensation),]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="16" place="bottom"> + <label>16</label> + <bibl>Johnson 1979 S. 90 ff.</bibl> berichtet von dem erfolgreichen Versuch einer Unfall-Schadensregulierung ohne Berücksichtigung einer Schuldzuschreibung in Neuseeland (no fault accident compensation),</note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="16" type="footnote" place="bottom"> + <label>16</label> + <bibl xml:id="bibl-18"> + <author> + <persName> + <surname>Johnson</surname> + </persName> + </author> + <date when="1979">1979</date> + <citedRange unit="page" from="90">S. 90 ff.</citedRange> + </bibl> + <note type="comment"> + berichtet von dem erfolgreichen Versuch einer Unfall-Schadensregulierung ohne + Berücksichtigung einer Schuldzuschreibung in Neuseeland (no fault accident compensation) + </note>, + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Johnson</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + </monogr> + <citedRange unit="page" from="90">S. 90 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-17"> + <input type="raw"><![CDATA[17 Steinbach 1979, S. 66 ff. Blankenburg/Blankenburg/Morasch 1972, S.82 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="17" place="bottom"> + <label>17</label> + <bibl>Steinbach 1979, S. 66 ff.</bibl> + <bibl>Blankenburg/Blankenburg/Morasch 1972, S.82 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="17" type="footnote" place="bottom"> + <label>17</label> + <bibl xml:id="bibl-19"> + <author> + <persName> + <surname>Steinbach</surname> + </persName> + </author> + <date when="1979">1979</date>, + <citedRange unit="page" from="66">S. 66 ff</citedRange>. + </bibl> + <bibl xml:id="bibl-20"> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Morasch</surname> + </persName> + </author> + <date when="1972">1972</date>, + <citedRange unit="page" from="82">S.82 ff</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Steinbach</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + </monogr> + <citedRange unit="page" from="66">S. 66 ff</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Morasch</surname> + </persName> + </author> + <imprint> + <date when="1972">1972</date> + </imprint> + </monogr> + <citedRange unit="page" from="82">S.82 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-18"> + <input type="raw"><![CDATA[18 Projektbericht ‚Rechtshilfebedürfnisse sozial Schwacher‘, (Blankenburg/Gorges/Reifner Tiemann). Befragt wurden im Januar bis März 1979 je eine Person in 835 Haushalten Westberlins. Veröffentlichung ist vorgesehen für Ende 1980.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="18" place="bottom"> + <label>18</label> + <bibl>Projektbericht ‚Rechtshilfebedürfnisse sozial Schwacher‘, (Blankenburg/Gorges/Reifner Tiemann). Befragt wurden im Januar bis März 1979 je eine Person in 835 Haushalten Westberlins. Veröffentlichung ist vorgesehen für Ende 1980.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="18" type="footnote" place="bottom"> + <label>18</label> + <bibl xml:id="bibl-21"> + <title level="a">Projektbericht ‚Rechtshilfebedürfnisse sozial Schwacher‘</title>, + (<author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Gorges</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Reifner</surname> + </persName> + </author> + <author> + <persName> + <surname>Tiemann</surname> + </persName> + </author>). + <note type="comment">Befragt wurden im Januar bis März 1979 je eine Person in 835 Haushalten + Westberlins. Veröffentlichung ist vorgesehen für + </note> + <date when="1980">Ende 1980</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Projektbericht ‚Rechtshilfebedürfnisse sozial Schwacher‘</title> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Gorges</surname> + </persName> + </author> + <author> + <persName> + <surname>Reifner</surname> + </persName> + </author> + <author> + <persName> + <surname>Tiemann</surname> + </persName> + </author> + </analytic> + <monogr> + <imprint> + <date when="1980">Ende 1980</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-19"> + <input type="raw"><![CDATA[19 Explizit bei Baumgärtel 1976, S. 113-128.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="19" place="bottom"> + <label>19</label> + <seg>Explizit bei</seg> + <bibl>Baumgärtel 1976, S. 113-128.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="19" type="footnote" place="bottom"> + <label>19</label> + <note type="signal">Explizit bei</note> + <bibl xml:id="bibl-22"> + <author> + <persName> + <surname>Baumgärtel</surname> + </persName> + </author> + <date when="1976">1976</date>, + <citedRange unit="page" from="113" to="128">S. 113-128</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Baumgärtel</surname> + </persName> + </author> + <imprint> + <date when="1976">1976</date> + </imprint> + </monogr> + <citedRange unit="page" from="113" to="128">S. 113-128</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-20"> + <input type="raw"><![CDATA[20 Laut einer GMD-Erhebung aus der Zählkartenstatistik wurde in Baden-Württemberg 1978 in 25,6% aller Scheidungssachen vor dem Familiengericht Armenrecht beantragt, 35,6% bei Unterhaltsklagen. 1976 (nach alten Familien recht) sind die Anteile 14,2% bei den Scheidungsprozessen und 42,79% bei den Unterhaltsklagen. Zum Vergleich: Bei Mietsachen wird in etwa 2% das Armenrecht beantragt (GMD-Erhebung), bei Zivilprozessen vor dem Amtsgericht insgesamt (laut Zählkartenstatistik) 0,4% (mündliche Mitteilung von Jörg Dotterweich).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="20" place="bottom"> + <label>20</label> + <seg>Laut einer GMD-Erhebung aus der Zählkartenstatistik wurde in Baden-Württemberg 1978 in 25,6% aller Scheidungssachen vor dem Familiengericht Armenrecht beantragt, 35,6% bei Unterhaltsklagen. 1976 (nach alten Familien recht) sind die Anteile 14,2% bei den Scheidungsprozessen und 42,79% bei den Unterhaltsklagen. Zum Vergleich: Bei Mietsachen wird in etwa 2% das Armenrecht beantragt (GMD-Erhebung), bei Zivilprozessen vor dem Amtsgericht insgesamt (laut Zählkartenstatistik) 0,4% (mündliche Mitteilung von Jörg Dotterweich).</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="20" type="footnote" place="bottom"> + <label>20</label> + <note type="comment">Laut einer GMD-Erhebung aus der Zählkartenstatistik wurde in Baden-Württemberg 1978 + in 25,6 % aller Scheidungssachen vor dem Familiengericht Armenrecht beantragt, 35,6 % bei + Unterhaltsklagen. 1976 (nach alten Familien recht) sind die Anteile 14,2 % bei den + Scheidungsprozessen und 42,79 % bei den Unterhaltsklagen. Zum Vergleich: Bei Mietsachen wird in etwa + 2 % das Armenrecht beantragt (GMD-Erhebung), bei Zivilprozessen vor dem Amtsgericht insgesamt (laut + Zählkartenstatistik) 0,4 % (mündliche Mitteilung von Jörg Dotterweich). + </note> + </note> + </output> + <output type="biblStruct"/> + </instance> + <instance xml:id="instance-21"> + <input type="raw"><![CDATA[21 Projektbericht ‚Rechtsschutzversicherung‘. (Blankenburg/Fiedler), Veröffentlichung voraussichtlich Mitte 1980.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="21" place="bottom"> + <label>21</label> + <bibl>Projektbericht ‚Rechtsschutzversicherung‘. (Blankenburg/Fiedler), Veröffentlichung voraussichtlich Mitte 1980.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="21" type="footnote" place="bottom"> + <label>21</label> + <bibl xml:id="bibl-23"> + <title level="a">Projektbericht ‚Rechtsschutzversicherung‘.</title> + (<author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Fiedler</surname> + </persName> + </author>), + <note type="comment">Veröffentlichung voraussichtlich Mitte</note> + <date when="1980">1980</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Projektbericht ‚Rechtsschutzversicherung‘.</title> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Fiedler</surname> + </persName> + </author> + </analytic> + <monogr> + <imprint> + <date when="1980">1980</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-22"> + <input type="raw"><![CDATA[22 Vgl. auch Reifner/Gorges 1980.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="22" place="bottom"> + <label>22</label> + <seg>Vgl. auch Reifner/Gorges 1980.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="22" type="footnote" place="bottom"> + <label>22</label> + <note type="signal">Vgl. auch</note> + <bibl xml:id="bibl-24"> + <author> + <persName> + <surname>Reifner</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Gorges</surname> + </persName> + </author> + <date when="1980">1980</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Reifner</surname> + </persName> + </author> + <author> + <persName> + <surname>Gorges</surname> + </persName> + </author> + <imprint> + <date when="1980">1980</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-23"> + <input type="raw"><![CDATA[23 Reifner 1979.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="23" place="bottom"> + <label>23</label> + <seg>Reifner 1979.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="23" type="footnote" place="bottom"> + <label>23</label> + <bibl xml:id="bibl-25"> + <author> + <persName> + <surname>Reifner</surname> + </persName> + </author> + <date when="1979">1979</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Reifner</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-24"> + <input type="raw"><![CDATA[24 Klassisch bei Carlin/Howard/Messinger 1967.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="24" place="bottom"> + <label>24</label> + <seg>Klassisch bei</seg> + <bibl>Carlin/Howard/Messinger 1967.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="24" type="footnote" place="bottom"> + <label>24</label> + <note type="signal">Klassisch bei</note> + <bibl xml:id="bibl-26"> + <author> + <persName> + <surname>Carlin</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Howard</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Messinger</surname> + </persName> + </author> + <date when="1967">1967</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Carlin</surname> + </persName> + </author> + <author> + <persName> + <surname>Howard</surname> + </persName> + </author> + <author> + <persName> + <surname>Messinger</surname> + </persName> + </author> + <imprint> + <date when="1967">1967</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-25"> + <input type="raw"><![CDATA[25 Grundsätzlich vgl. hierzu den klassischen Beitrag von Galanter 1974, S. 95—160. Die grösseren Chancen von Firmen, insbesondere bei der großen Zahl von vorstreitigen Erledigungen zeigt Sarat 1976, S. 339-375.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="25" place="bottom"> + <label>25</label> + <seg>Grundsätzlich vgl. hierzu den klassischen Beitrag von</seg> + <bibl>Galanter 1974, S. 95—160.</bibl> Die grösseren Chancen von Firmen, insbesondere bei der großen Zahl von vorstreitigen Erledigungen zeigt <bibl>Sarat 1976, S. 339-375.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="25" type="footnote" place="bottom"> + <label>25</label> + <note type="signal">Grundsätzlich vgl. hierzu den klassischen Beitrag von</note> + <bibl xml:id="bibl-27"> + <author> + <persName> + <surname>Galanter</surname> + </persName> + </author> + <date when="1974">1974</date>, + <citedRange unit="page" from="95" to="160">S. 95—160</citedRange>. + </bibl> + <note type="comment"> + Die grösseren Chancen von Firmen, insbesondere bei der großen Zahl von + vorstreitigen Erledigungen zeigt + </note> + <bibl xml:id="bibl-28"> + <author> + <persName> + <surname>Sarat</surname> + </persName> + </author> + <date when="1976">1976</date>, + <citedRange unit="page" from="339" to="375">S. 339-375</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Galanter</surname> + </persName> + </author> + <imprint> + <date when="1974">1974</date> + </imprint> + </monogr> + <citedRange unit="page" from="95" to="160">S. 95—160</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Sarat</surname> + </persName> + </author> + <imprint> + <date when="1976">1976</date> + </imprint> + </monogr> + <citedRange unit="page" from="339" to="375">S. 339-375</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-26"> + <input type="raw"><![CDATA[26 Bender/Schumacher 1980, S. 138.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="26" place="bottom"> + <label>26</label> + <bibl>Bender/Schumacher 1980, S. 138.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="26" type="footnote" place="bottom"> + <label>26</label> + <bibl xml:id="bibl-29"> + <author> + <persName> + <surname>Bender</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Schumacher</surname> + </persName> + </author> + <date when="1980">1980</date>, + <citedRange unit="page" from="138" to="138">S. 138</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Bender</surname> + </persName> + </author> + <author> + <persName> + <surname>Schumacher</surname> + </persName> + </author> + <imprint> + <date when="1980">1980</date> + </imprint> + </monogr> + <citedRange unit="page" from="138" to="138">S. 138</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-27"> + <input type="raw"><![CDATA[27 Steinbach 1979, S. 96 ff, vgl. auch Blankenburg/Blankenburg/Morasch 1972, S. 89 Fn. 17]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="27" place="bottom"> + <label>27</label> + <bibl>Steinbach 1979, S. 96 ff,</bibl> vgl. auch <bibl>Blankenburg/Blankenburg/Morasch 1972, S. 89 Fn. 17</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="27" type="footnote" place="bottom"> + <label>27</label> + <bibl xml:id="bibl-30"> + <author> + <persName> + <surname>Steinbach</surname> + </persName> + </author> + <date when="1979">1979</date>, + <citedRange unit="page" from="96">S. 96 ff</citedRange>, + </bibl> + <note type="signal">vgl. auch</note> + <bibl xml:id="bibl-31"> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Morasch</surname> + </persName> + </author> + <date when="1972">1972</date>, + <citedRange unit="page" from="89" to="89">S. 89</citedRange> + <citedRange unit="footnote" from="17">Fn. 17</citedRange> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Steinbach</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + </monogr> + <citedRange unit="page" from="96">S. 96 ff</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Morasch</surname> + </persName> + </author> + <imprint> + <date when="1972">1972</date> + </imprint> + </monogr> + <citedRange unit="page" from="89" to="89">S. 89</citedRange> + <citedRange unit="footnote" from="17">Fn. 17</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-28"> + <input type="raw"><![CDATA[28 Reifner 1978.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="28" place="bottom"> + <label>28</label> + <seg>Reifner 1978.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="28" type="footnote" place="bottom"> + <label>28</label> + <bibl xml:id="bibl-32"> + <author> + <persName> + <surname>Reifner</surname> + </persName> + </author> + <date when="1978">1978</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Reifner</surname> + </persName> + </author> + <imprint> + <date when="1978">1978</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-29"> + <input type="raw"><![CDATA[29 Blankenburg/Schönholz/Rogowski 1979, S. 102 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="29" place="bottom"> + <label>29</label> + <bibl>Blankenburg/Schönholz/Rogowski 1979, S. 102 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="29" type="footnote" place="bottom"> + <label>29</label> + <bibl xml:id="bibl-33"> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Rogowski</surname> + </persName> + </author> + <date when="1979">1979</date>, + <citedRange unit="page" from="102">S. 102 ff</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author> + <author> + <persName> + <surname>Rogowski</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + </monogr> + <citedRange unit="page" from="102">S. 102 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-30"> + <input type="raw"><![CDATA[30 Vgl. zum Verrechtlichungsbegriff meinen Beitrag über: Recht als gradualisiertes Konzept 1980, S. 83—98.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="30" place="bottom"> + <label>30</label> + <seg>Vgl. zum Verrechtlichungsbegriff meinen Beitrag über:</seg> + <bibl>Recht als gradualisiertes Konzept 1980, S. 83—98.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="30" type="footnote" place="bottom"> + <label>30</label> + <note type="signal">Vgl. zum Verrechtlichungsbegriff meinen Beitrag über:</note> + <bibl xml:id="bibl-34"> + <title level="a">Recht als gradualisiertes Konzept</title> + <date when="1980">1980</date>, + <citedRange unit="page" from="83" to="98">S. 83—98</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Recht als gradualisiertes Konzept</title> + </analytic> + <monogr> + <imprint> + <date when="1980">1980</date> + </imprint> + </monogr> + <citedRange unit="page" from="83" to="98">S. 83—98</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-31"> + <input type="raw"><![CDATA[31 Steinbach 1979, S. 35 Bender Schumacher 1980, S. 24 und S. 49.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="31" place="bottom"> + <label>31</label> + <bibl>Steinbach 1979, S. 35</bibl> + <bibl>Bender Schumacher 1980, S. 24 und S. 49.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="31" type="footnote" place="bottom"> + <label>31</label> + <bibl xml:id="bibl-35"> + <author> + <persName> + <surname>Steinbach</surname> + </persName> + </author> + <date when="1979">1979</date>, + <citedRange unit="page" from="35" to="35">S. 35</citedRange> + </bibl> + <bibl xml:id="bibl-36"> + <author> + <persName> + <surname>Bender</surname> + </persName> + </author> + <author> + <persName> + <surname>Schumacher</surname> + </persName> + </author> + <date when="1980">1980</date>, + <citedRange unit="page" from="24" to="24">S. 24</citedRange> + und + <citedRange unit="page" from="49" to="49">S. 49</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Steinbach</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + </monogr> + <citedRange unit="page" from="35" to="35">S. 35</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Bender</surname> + </persName> + </author> + <author> + <persName> + <surname>Schumacher</surname> + </persName> + </author> + <imprint> + <date when="1980">1980</date> + </imprint> + </monogr> + <citedRange unit="page" from="24" to="24">S. 24</citedRange> + <citedRange unit="page" from="49" to="49">S. 49</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-32"> + <input type="raw"><![CDATA[32 Wanner 1975, S. 293—306 hebt dies deutlich hervor, ebenso Bender/Schumacher 1980, S. 72 ff. sowie Galanter 1974; Sarat 1976.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="32" place="bottom"> + <label>32</label> + <bibl>Wanner 1975, S. 293—306</bibl> hebt dies deutlich hervor, ebenso <bibl>Bender/Schumacher 1980, S. 72 ff.</bibl> sowie Galanter 1974; Sarat 1976.</note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="32" type="footnote" place="bottom"> + <label>32</label> + <bibl xml:id="bibl-37"> + <author> + <persName> + <surname>Wanner</surname> + </persName> + </author> + <date when="1975">1975</date>, + <citedRange unit="page" from="293" to="306">S. 293—306</citedRange> + </bibl> + <note type="comment">hebt dies deutlich hervor</note>, + <note type="signal">ebenso</note> + <bibl xml:id="bibl-38"> + <author> + <persName> + <surname>Bender</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Schumacher</surname> + </persName> + </author> + <date when="1980">1980</date>, + <citedRange unit="page" from="72">S. 72 ff</citedRange>. + </bibl> + <note type="signal">sowie</note> + <bibl xml:id="bibl-39"> + <author> + <persName> + <surname>Galanter</surname> + </persName> + </author> + <date when="1974">1974</date>; + </bibl> + <bibl xml:id="bibl-40"> + <author> + <persName> + <surname>Sarat</surname> + </persName> + </author> + <date when="1976">1976</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Wanner</surname> + </persName> + </author> + <imprint> + <date when="1975">1975</date> + </imprint> + </monogr> + <citedRange unit="page" from="293" to="306">S. 293—306</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Bender</surname> + </persName> + </author> + <author> + <persName> + <surname>Schumacher</surname> + </persName> + </author> + <imprint> + <date when="1980">1980</date> + </imprint> + </monogr> + <citedRange unit="page" from="72">S. 72 ff</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Galanter</surname> + </persName> + </author> + <imprint> + <date when="1974">1974</date> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Sarat</surname> + </persName> + </author> + <imprint> + <date when="1976">1976</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-33"> + <input type="raw"><![CDATA[33 Blankenburg/Schönholz/Rogowski 1979, S. 78 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="33" place="bottom"> + <label>33</label> + <bibl>Blankenburg/Schönholz/Rogowski 1979, S. 78 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="33" type="footnote" place="bottom"> + <label>33</label> + <bibl xml:id="bibl-41"> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Rogowski</surname> + </persName> + </author> + <date when="1979">1979</date>, + <citedRange unit="page" from="78">S. 78 ff</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author> + <author> + <persName> + <surname>Rogowski</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + </monogr> + <citedRange unit="page" from="78">S. 78 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-34"> + <input type="raw"><![CDATA[34 Ebenda, S. 138-186.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="34" place="bottom"> + <label>34</label> + <seg>Ebenda, S. 138-186.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="34" type="footnote" place="bottom"> + <label>34</label> + <bibl xml:id="bibl-42"> + <ref type="previous-work">Ebenda</ref>, + <citedRange unit="page" from="138" to="186">S. 138-186</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="138" to="186">S. 138-186</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-35"> + <input type="raw"><![CDATA[35 Luhmann 1969.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="35" place="bottom"> + <label>35</label><seg>Luhmann 1969.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="35" type="footnote" place="bottom"> + <label>35</label> + <bibl xml:id="bibl-43"> + <author> + <persName> + <surname>Luhmann</surname> + </persName> + </author> + <date when="1969">1969</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Luhmann</surname> + </persName> + </author> + <imprint> + <date when="1969">1969</date> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-36"> + <input type="raw"><![CDATA[36 Für eine überaus positive Bewertung des ‚Vermeidens‘vgl. Felstiner und Danzig/Lowy in Law and Society Review, vol. 9, 1974/75.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="36" place="bottom"> + <label>36</label> + <seg>Für eine überaus positive Bewertung des ‚Vermeidens‘vgl.</seg> + <bibl>Felstiner und Danzig/Lowy in Law and Society Review, vol. 9, 1974/75.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="36" type="footnote" place="bottom"> + <label>36</label> + <note type="signal">Für eine überaus positive Bewertung des ‚Vermeidens‘ vgl.</note> + <bibl xml:id="bibl-44"> + <author> + <persName> + <surname>Felstiner</surname> + </persName> + </author> + und + <author> + <persName> + <surname>Danzig</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Lowy</surname> + </persName> + </author> + in + <title level="j">Law and Society Review</title>, + <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>, + <date when="1974">1974/75</date>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a"/> + <title level="j">Law and Society Review</title> + <author> + <persName> + <surname>Felstiner</surname> + </persName> + </author> + <author> + <persName> + <surname>Danzig</surname> + </persName> + </author> + <author> + <persName> + <surname>Lowy</surname> + </persName> + </author> + <imprint> + <date when="1974">1974/75</date> + </imprint> + <biblScope unit="volume" from="9" to="9">vol. 9</biblScope> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-37"> + <input type="raw"><![CDATA[Baumgärtei, Gottfried, 1976: Gleicher Zugang zum Recht für alle. Köln. +Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. Tübingen. +Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2. +Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. Tübingen. +Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: Göppinger, Hans und Günter Kaiser: Kriminologie und Strafverfahren. Stuttgart. +Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle. Berlin. +Blankenburg, Erhard; Schönholz, Siegfried, unter Mitarbeit von Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt. +Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch für Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. +Carlin, Jerome, Jan Howard und Sheldon Messinger, 1967: Civil Justice and the Poor. New York. +Danzig, Richard /Lowy, Michael, 1974/75; Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675—694. +Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. Düsseldorf. +Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in: Law and Society Review, vol. 9, pp. 63—94. +Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp. 695-706. +Galanter, Marc, 1974: Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change, in: Law and Society Review, vol. 9, pp. 95—160. +Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. Tübingen. +Hilden, Hartmut, 1976: Rechtstatsachen im Räumungsstreit. Frankfurt/Main. +Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/ Rijn. +Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen. Diss. Hamburg. +Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. +Luhmann, Niklas, 1980: Kommunikation über Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch für Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. +Reifner, Udo, 1978: Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78—70. +Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945. Wissenschaftszentrum Berlin IIM-dp/79—104. +Reifner, Udo und Irmela Gorges, 1980: Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch für Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. +Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339—375. +Schönholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich in: Vereinigung für Rechtssoziologie (Hrsg.): Arbeitslosigkeit und Recht. Baden-Baden. +Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft für Mathematik und Datenverarbeitung. Birlinghoven bei Bonn. +Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.]]> + </input> + <output type="block"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <bibl>Baumgärtel, Gottfried, 1976: Gleicher Zugang zum Recht für alle. Köln.</bibl> + <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. Tübingen. Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl> + <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl> + <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. Tübingen.</bibl> + <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: Göppinger, Hans und Günter Kaiser: Kriminologie und Strafverfahren. Stuttgart.</bibl> + <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle. Berlin.</bibl> + <bibl>Blankenburg, Erhard; Schönholz, Siegfried, unter Mitarbeit von Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl> + <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch für Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.</bibl> + <bibl>Carlin, Jerome, Jan Howard und Sheldon Messinger, 1967: Civil Justice and the Poor. New York. </bibl> + <bibl>Danzig, Richard /Lowy, Michael, 1974/75; Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675—694.</bibl> + <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. Düsseldorf.</bibl> + <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in: Law and Society Review, vol. 9, pp. 63—94.</bibl> + <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp. 695-706.</bibl> + <bibl>Galanter, Marc, 1974: Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change, in: Law and Society Review, vol. 9, pp. 95—160.</bibl> + <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. Tübingen.</bibl> + <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im Räumungsstreit. Frankfurt/Main.</bibl> + <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/ Rijn.</bibl> + <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen. Diss. Hamburg.</bibl> + <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl> + <bibl>Luhmann, Niklas, 1980: Kommunikation über Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch für Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.</bibl> + <bibl>Reifner, Udo, 1978: Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78—70.</bibl> + <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945. Wissenschaftszentrum Berlin IIM-dp/79—104.</bibl> + <bibl>Reifner, Udo und Irmela Gorges, 1980: Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch für Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.</bibl> + <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339—375.</bibl> + <bibl>Schönholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich in: Vereinigung für Rechtssoziologie (Hrsg.): Arbeitslosigkeit und Recht. Baden-Baden.</bibl> + <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft für Mathematik und Datenverarbeitung. Birlinghoven bei Bonn.</bibl> + <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.</bibl> + </listBibl> + </output> + <output type="bibl"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <bibl xml:id="bibl-45"> + <author> + <persName> + <surname>Baumgärtel</surname>, + <forename type="first">Gottfried</forename> + </persName> + </author>, + <date>1976</date>: + <title level="m">Gleicher Zugang zum Recht für alle</title>. + <pubPlace>Köln</pubPlace>. + </bibl> + <bibl xml:id="bibl-46"> + <author> + <persName> + <surname>Bender</surname>, + <forename type="first">Rolf</forename> + </persName> + </author> und + <author> + <persName> + <forename type="first">Rolf</forename> + <surname>Schumacher</surname> + </persName> + </author>, + <date>1980</date>: + <title level="m">Erfolgsbarrieren vor Gericht</title>. + <pubPlace>Tübingen</pubPlace>. + </bibl> + <bibl xml:id="bibl-47"> + <author> + <persName> + <surname>Black</surname>, + <forename type="first">Donald</forename> + </persName> + </author>, + <date>1973</date>: + <title level="a">The Mobilization of Law</title>, in: + <title level="j">Journal of Legal Studies</title> + <biblScope unit="volume" from="2" to="2">2</biblScope>. + </bibl> + <bibl xml:id="bibl-48"> + <author> + <persName> + <surname>Blankenburg</surname>, + <forename type="first">Erhard</forename> + </persName> + </author>/ + <author> + <persName> + <surname>Blankenburg</surname>, + <forename type="first">Viola</forename> + </persName> + </author>/ + <author> + <persName> + <surname>Morasch</surname>, + <forename type="first">Helmut</forename> + </persName> + </author>, + <date>1972</date>: + <title level="m">Der lange Weg in die Berufung</title>, in: + <editor> + <persName> + <surname>Bender</surname>, + <forename type="first">Rolf</forename> + </persName> + </editor>(Hrsg.): + <title level="m">Tatsachenforschung in der Justiz</title>. + <pubPlace>Tübingen</pubPlace>. + </bibl> + <bibl xml:id="bibl-49"> + <author> + <persName> + <surname>Blankenburg</surname>, + <forename type="first">Erhard</forename> + </persName> + </author>, + <date>1976</date>: + <title level="m">Nichtkriminalisierung als Struktur und Routine</title>, in: + <editor> + <persName> + <surname>Göppinger</surname>, + <forename type="first">Hans</forename> + </persName> + </editor>und + <editor> + <persName> + <forename type="first">Günter</forename> + <surname>Kaiser</surname> + </persName> + </editor>: + <title level="m">Kriminologie und Strafverfahren</title>. + <pubPlace>Stuttgart</pubPlace>. + </bibl> + <bibl xml:id="bibl-50"> + <author> + <persName> + <surname>Blankenburg</surname>, + <forename type="first">Erhard</forename> + </persName> + </author>/ + <author> + <persName> + <surname>Sessar</surname>, + <forename type="first">Klaus</forename> + </persName> + </author>/ + <author> + <persName> + <surname>Steffen</surname>, + <forename type="first">Wiebke</forename> + </persName> + </author>, + <date>1978</date>: + <title level="m">Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle</title>. + <pubPlace>Berlin</pubPlace>. + </bibl> + <bibl xml:id="bibl-51"> + <author> + <persName> + <surname>Blankenburg</surname>, + <forename type="first">Erhard</forename> + </persName> + </author>; + <author> + <persName> + <surname>Schönholz</surname>, + <forename type="first">Siegfried</forename> + </persName> + </author>, + <date>1979</date>: + <title level="m">Zur Soziologie des Arbeitsgerichtsverfahrens</title>. + <pubPlace>Neuwied und Darmstadt</pubPlace>. + </bibl> + <bibl xml:id="bibl-52"> + <author> + <persName> + <surname>Blankenburg</surname>, + <forename type="first">Erhard</forename> + </persName> + </author>, + <date>1980</date>: + <title level="m">Recht als gradualisiertes Konzept</title>, in: + <editor> + <persName> + <surname>Blankenburg</surname>, + <forename type="first">Erhard</forename> + </persName> + </editor>; + <editor> + <persName> + <surname>Klausa</surname>, + <forename type="first">Ekkehard</forename> + </persName> + </editor>und + <editor> + <persName> + <forename type="first">Hubert</forename> + <surname>Rottleuthner</surname> + </persName> + </editor>(Hrsg.): + <title level="a">Alternative Rechtsformen und Alternativen zum Recht</title>, + <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> + <biblScope unit="volume" from="6" to="6">Bd. 6</biblScope>. + <pubPlace>Opladen</pubPlace>. + </bibl> + <bibl xml:id="bibl-53"> + <author> + <persName> + <surname>Carlin</surname>, + <forename type="first">Jerome</forename> + </persName> + </author>und + <author> + <persName> + <forename type="first">Sheldon</forename> + <surname>Messinger</surname> + </persName> + </author>, + <date>1967</date>: + <title level="m">Civil Justice and the Poor</title>. + <pubPlace>New York</pubPlace>. + </bibl> + <bibl xml:id="bibl-54"> + <author> + <persName> + <surname>Danzig</surname>, + <forename type="first">Richard</forename> + </persName> + </author>/ + <author> + <persName> + <surname>Lowy</surname>, + <forename type="first">Michael</forename> + </persName> + </author>, + <date when="1975">1974/75</date>; + <title level="a">Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner</title>, + <title level="j">Law and Society Review</title>, + <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>, + <biblScope unit="page" from="675" to="694">pp. 675—694</biblScope>. + </bibl> + <bibl xml:id="bibl-55"> + <author> + <persName> + <surname>Feest</surname>, + <forename type="first">Johannes</forename> + </persName> + </author>/ + <author> + <persName> + <surname>Blankenburg</surname>, + <forename type="first">Erhard</forename> + </persName> + </author>, + <date>1972</date>: + <title level="m">Die Definitionsmacht der Polizei</title>. + <pubPlace>Düsseldorf</pubPlace>. + </bibl> + <bibl xml:id="bibl-56"> + <author> + <persName> + <surname>Felstiner</surname>, + <forename type="first">William</forename> + <forename type="middle">L. F.</forename> + </persName> + </author>, + <date when="1975">1974/75</date>: + <title level="a">Influences of Social Organization on Dispute processing</title>, in: + <title level="j">Law and Society Review</title>, + <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>, + <biblScope unit="page" from="63" to="94">pp. 63—94</biblScope>. + </bibl> + <bibl xml:id="bibl-57"> + <author> + <persName> + <surname>Felstiner</surname>, + <forename type="first">William</forename> + <forename type="middle">L. F.</forename> + </persName> + </author>, + <date when="1975">1974/75</date>: + <title level="a">Avoidance as Dispute Processing: An Elaboration</title>, in: + <title level="j">Law and Society Review</title>, + <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>, + <biblScope unit="page" from="695" to="706">pp. 695-706</biblScope>. + </bibl> + <bibl xml:id="bibl-58"> + <author> + <persName> + <surname>Galanter</surname>, + <forename type="first">Marc</forename> + </persName> + </author>, + <date>1974</date>: + <title level="a">Why the ‚Haves‘ Come out Ahead: Speculations on the Limits of Legal Change</title>, in: + <title level="j">Law and Society Review</title>, + <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>, + <biblScope unit="page" from="95" to="160">pp. 95—160</biblScope>. + </bibl> + <bibl xml:id="bibl-59"> + <author> + <persName> + <surname>Geiger</surname>, + <forename type="first">Theodor</forename> + </persName> + </author>, + <date>1964</date>: + <title level="m">Vorstudien zu einer Soziologie des Rechts</title>. + <pubPlace>Neuwied</pubPlace>. + </bibl> + <bibl xml:id="bibl-60"> + <author> + <persName> + <surname>Gessner</surname>, + <forename type="first">Volkmar</forename> + </persName> + </author>, + <date>1976</date>: + <title level="m">Recht und Konflikt</title>. + <pubPlace>Tübingen</pubPlace>. + </bibl> + <bibl xml:id="bibl-61"> + <author> + <persName> + <surname>Hilden</surname>, + <forename type="first">Hartmut</forename> + </persName> + </author>, + <date>1976</date>: + <title level="m">Rechtstatsachen im Räumungsstreit</title>. + <pubPlace>Frankfurt/Main</pubPlace>. + </bibl> + <bibl xml:id="bibl-62"> + <author> + <persName> + <surname>Johnson</surname>, + <forename type="first">Earl</forename> + </persName> + </author>, + <date>1979</date>; + <title level="m">Thinking about Access: A Preliminary Typology of Possible Strategies</title>. In: + <editor> + <persName> + <surname>Cappelletti</surname>, + <forename type="first">Mauro</forename> + </persName> + </editor>und + <editor> + <persName> + <forename type="first">Bryant</forename> + <surname>Garth</surname> + </persName> + </editor>(Hrsg.): + <title level="m">Access to Justice</title>, + <biblScope unit="volume" from="III" to="III">Bd. III</biblScope>. + <pubPlace>Milan und Alphen/ Rijn</pubPlace>. + </bibl> + <bibl xml:id="bibl-63"> + <author> + <persName> + <surname>Koch</surname>, + <forename type="first">Hartmut</forename> + </persName> + </author>, + <date>1975</date>: + <title level="m">Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen</title>. + <note type="document-type">Diss</note>. + <pubPlace>Hamburg</pubPlace>. + </bibl> + <bibl xml:id="bibl-64"> + <author> + <persName> + <surname>Luhmann</surname>, + <forename type="first">Niklas</forename> + </persName> + </author>, + <date>1969</date>: + <title level="m">Legitimation durch Verfahren</title>. + <pubPlace>Neuwied und Darmstadt</pubPlace>. + </bibl> + <bibl xml:id="bibl-65"> + <author> + <persName> + <surname>Luhmann</surname>, + <forename type="first">Niklas</forename> + </persName> + </author>, + <date>1980</date>: + <title level="a">Kommunikation über Recht in Interaktionssystemen</title>, in: + <editor> + <persName> + <surname>Blankenburg</surname>, + <forename type="first">Erhard</forename> + </persName> + </editor>; + <editor> + <persName> + <surname>Klausa</surname>, + <forename type="first">Ekkehard</forename> + </persName> + </editor>und + <editor> + <persName> + <forename type="first">Hubert</forename> + <surname>Rottleuthner</surname> + </persName> + </editor>(Hrsg.): + <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title>, + <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> + <biblScope unit="volume" from="6" to="6">Bd. 6</biblScope>. + <pubPlace>Opladen</pubPlace>. + </bibl> + <bibl xml:id="bibl-66"> + <author> + <persName> + <surname>Reifner</surname>, + <forename type="first">Udo</forename> + </persName> + </author>, + <date>1978</date>: + <title level="m">Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative</title>, + <publisher>Wissenschaftszentrum Berlin</publisher>, + <idno>IIM-dp/78—70</idno>. + </bibl> + <bibl xml:id="bibl-67"> + <author> + <persName> + <surname>Reifner</surname>, + <forename type="first">Udo</forename> + </persName> + </author>, + <date>1979</date>: + <title level="a">Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945</title>. + <publisher>Wissenschaftszentrum Berlin</publisher> + <idno>IIM-dp/79—104</idno>. + </bibl> + <bibl xml:id="bibl-68"> + <author> + <persName> + <surname>Reifner</surname>, + <forename type="first">Udo</forename> + </persName> + </author>und + <author> + <persName> + <forename type="first">Irmela</forename> + <surname>Gorges</surname> + </persName> + </author>, + <date>1980</date>: + <title level="a">Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe</title>, in: + <editor> + <persName> + <surname>Blankenburg</surname>, + <forename type="first">Erhard</forename> + </persName> + </editor>; + <author> + <persName> + <surname>Klausa</surname>, + <forename type="first">Ekkehard</forename> + </persName> + </author> + und + <author> + <persName> + <forename type="first">Hubert</forename> + <surname>Rottleuthner</surname> + </persName> + </author>(Hrsg.): + <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title>, + <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> + <biblScope unit="volume" from="6" to="6">Bd. 6</biblScope>. + <pubPlace>Opladen</pubPlace>. + </bibl> + <bibl xml:id="bibl-69"> + <author> + <persName> + <surname>Sarat</surname>, + <forename type="first">Austin</forename> + </persName> + </author>, + <date>1976</date>: + <title level="a">Alternatives in Dispute Processing in a Small Claim Court</title>, in: + <title level="j">Law and Society Review</title>, + <biblScope unit="volume" from="10" to="10">vol. 10</biblScope>, + <biblScope unit="page" from="339" to="375">pp. 339—375.</biblScope>. + </bibl> + <bibl xml:id="bibl-70"> + <editor> + <persName> + <surname>Schönholz</surname>, + <forename type="first">Siegfried</forename> + </persName> + </editor>, + <date>1980</date>: + <title level="m">Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich</title>in: + <editor> + <orgName>Vereinigung für Rechtssoziologie</orgName> + </editor>(Hrsg.): + <title level="m">Arbeitslosigkeit und Recht</title>. + <pubPlace>Baden-Baden</pubPlace>. + </bibl> + <bibl xml:id="bibl-71"> + <author> + <persName> + <surname>Steinbach</surname>, + <forename type="first">E.</forename> + </persName> + </author>, + <date>1979</date>: + <title level="m">GMD-Bericht, Manuskript. Gesellschaft für Mathematik und Datenverarbeitung</title>. + <pubPlace>Birlinghoven bei Bonn</pubPlace>. + </bibl> + <bibl xml:id="bibl-72"> + <author> + <persName> + <surname>Wanner</surname>, + <forename type="first">Craig</forename> + </persName> + </author>, + <date>1975</date>: + <title level="a">The Public Ordering of Private Cases; Winning Civil Court Cases</title>, in: + <title level="j">Law and Society Review</title>, + <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>, + <biblScope unit="page" from="293" to="306">pp. 293-306.</biblScope>. + </bibl> + </listBibl> + </output> + </instance> +</dataset> \ No newline at end of file diff --git a/convert-anystyle-data/llamore/data/gold/10.1515_zfrs-1980-0104.xml b/convert-anystyle-data/llamore/data/gold/10.1515_zfrs-1980-0104.xml new file mode 100644 index 0000000000000000000000000000000000000000..061a39648dc663490ba4b76bb7e997fea10a725d --- /dev/null +++ b/convert-anystyle-data/llamore/data/gold/10.1515_zfrs-1980-0104.xml @@ -0,0 +1,5237 @@ +<dataset xmlns="https://gitlab.mpcdf.mpg.de/dcfidalgo/llamore" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://gitlab.mpcdf.mpg.de/dcfidalgo/llamore ../../schema/xsd/dataset.xsd http://www.tei-c.org/ns/1.0 ../../schema/xsd/document.xsd"> + <instance xml:id="instance-1"> + <input type="raw"><![CDATA[1 Siehe näher Zweigert/Kötz I 12 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="1" place="bottom"> + <label>1</label> + <seg>Siehe näher</seg> + <bibl>Zweigert/Kötz I 12 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="1" type="footnote" place="bottom"> + <label>1</label> + <note type="signal">Siehe näher</note> + <bibl xml:id="bibl-9"> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> + <biblScope unit="volume" from="I" to="I">I</biblScope> + <citedRange unit="page" from="12">12 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> + <imprint><date/></imprint> + <biblScope unit="volume" from="I" to="I">I</biblScope> + </monogr> + <citedRange unit="page" from="12">12 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-2"> + <input type="raw"><![CDATA[2 Rabel, Aufgabe und Notwendigkeit der Rechtsvergleichung (1925) abgedruckt in: Rabel, Gesammelte Aufsätze III (Hrsg. Leser, 1967) 1 (3).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="2" place="bottom"> + <label>2</label> + <bibl>Rabel, Aufgabe und Notwendigkeit der Rechtsvergleichung (1925) abgedruckt in: Rabel, Gesammelte Aufsätze III (Hrsg. Leser, 1967) 1 (3).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="2" type="footnote" place="bottom"> + <label>2</label> + <bibl xml:id="bibl-10"> + <author> + <persName> + <surname>Rabel</surname> + </persName> + </author>, + <title level="a">Aufgabe und Notwendigkeit der Rechtsvergleichung (1925)</title> + abgedruckt in: + <title level="m">Rabel, Gesammelte Aufsätze</title> + <biblScope unit="volume" from="III" to="III">III</biblScope> + (Hrsg. + <editor> + <persName> + <surname>Leser</surname> + </persName> + </editor>, + <date when="1967">1967</date>) + <biblScope unit="page" from="1">1</biblScope> + (<citedRange unit="page" from="3" to="3">3</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <analytic> + <title level="a">Aufgabe und Notwendigkeit der Rechtsvergleichung (1925)</title> + <author> + <persName> + <surname>Rabel</surname> + </persName> + </author> + </analytic> + <monogr> + <title level="m">Rabel, Gesammelte Aufsätze</title> + <editor> + <persName> + <surname>Leser</surname> + </persName> + </editor> + <imprint> + <date when="1967">1967</date> + </imprint> + <biblScope unit="volume" from="III" to="III">III</biblScope> + <biblScope unit="page" from="1">1</biblScope> + </monogr> + <citedRange unit="page" from="3" to="3">3</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-3"> + <input type="raw"><![CDATA[3 Siehe insbes. die Beiträge in Drobnig/Rehbinder.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="3" place="bottom"> + <label>3</label> + <seg>Siehe insbes. die Beiträge in Drobnig/Rehbinder.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="3" type="footnote" place="bottom"> + <label>3</label> + <note type="signal">Siehe insbes. die Beiträge in</note> + <bibl xml:id="bibl-12"> + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> + <imprint><date/></imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-4"> + <input type="raw"><![CDATA[4 Dazu R. Abel, Law Books and Books About Law, Stanford Law Rev. 26 (1973) 174 ff.; Benda-Beckmann, Einige Anmerkungen über die Beziehung zwischen Rechtssoziologie und Rechtsvergleichung, ZvglRW 78 (1979) 51 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="4" place="bottom"> + <label>4</label> + <seg>Dazu</seg> + <bibl>R. Abel, Law Books and Books About Law, Stanford Law Rev. 26 (1973) 174 ff.;</bibl> + <bibl>Benda-Beckmann, Einige Anmerkungen über die Beziehung zwischen Rechtssoziologie und Rechtsvergleichung, ZvglRW 78 (1979) 51 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="4" type="footnote" place="bottom"> + <label>4</label> + <note type="signal">Dazu</note> + <bibl xml:id="bibl-13"> + <author> + <persName> + <forename type="first">R.</forename> + <surname>Abel</surname> + </persName> + </author>, + <title level="a">Law Books and Books About Law</title>, + <title level="j">Stanford Law Rev</title>. + <biblScope unit="volume" from="26" to="26">26</biblScope> + (<date when="1973">1973</date>) + <citedRange unit="page" from="174">174 ff.</citedRange> + </bibl>; + <bibl xml:id="bibl-14"> + <author> + <persName> + <surname>Benda-Beckmann</surname> + </persName> + </author>, + <title level="a">Einige Anmerkungen über die Beziehung zwischen Rechtssoziologie und + Rechtsvergleichung + </title>, + <title level="j">ZvglRW</title> + <biblScope unit="volume" from="78" to="78">78</biblScope> + (<date when="1979">1979</date>) + <citedRange unit="page" from="51">51 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Law Books and Books About Law</title> + <title level="j">Stanford Law Rev</title> + <author> + <persName> + <forename type="first">R.</forename> + <surname>Abel</surname> + </persName> + </author> + <imprint> + <date when="1973">1973</date> + </imprint> + <biblScope unit="volume" from="26" to="26">26</biblScope> + </monogr> + <citedRange unit="page" from="174">174 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Einige Anmerkungen über die Beziehung zwischen Rechtssoziologie und + Rechtsvergleichung</title> + <title level="j">ZvglRW</title> + <author> + <persName> + <surname>Benda-Beckmann</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + <biblScope unit="volume" from="78" to="78">78</biblScope> + </monogr> + <citedRange unit="page" from="51">51 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-5"> + <input type="raw"><![CDATA[5 Carbonnier, L’apport du droit compare ä la sociologie juridique, in: Livre du centenaire de la Societe de legislation comparee (Paris 1969) 75 (83).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="5" place="bottom"> + <label>5</label> + <bibl>Carbonnier, L’apport du droit compare ä la sociologie juridique, in: Livre du centenaire de la Societe de legislation comparee (Paris 1969) 75 (83).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="5" type="footnote" place="bottom"> + <label>5</label> + <bibl xml:id="bibl-15"> + <author> + <persName> + <surname>Carbonnier</surname> + </persName> + </author>, + <title level="a">L’apport du droit compare ä la sociologie juridique</title>, in: + <title level="m">Livre du centenaire de la Societe de legislation comparee</title> + (<pubPlace>Paris</pubPlace> + <date when="1969">1969</date>) + <biblScope unit="page" from="75">75</biblScope> + (<citedRange unit="page" from="83" to="83">83</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">L’apport du droit compare ä la sociologie juridique</title> + <title level="m">Livre du centenaire de la Societe de legislation comparee</title> + <author> + <persName> + <surname>Carbonnier</surname> + </persName> + </author> + <imprint> + <date when="1969">1969</date> + <pubPlace>Paris</pubPlace> + </imprint> + <biblScope unit="page" from="75">75</biblScope> + </monogr> + <citedRange unit="page" from="83" to="83">83</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-6"> + <input type="raw"><![CDATA[6 Carbonnier (vorige N.) a.a.O..]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="6" place="bottom"> + <label>6</label> + <bibl>Carbonnier (vorige N.) a.a.O..</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="6" type="footnote" place="bottom"> + <label>6</label> + <bibl xml:id="bibl-16"> + <author> + <persName> + <surname>Carbonnier</surname> + </persName> + </author> + <ref type="footnote" n="-1">(vorige N.)</ref> + <ref type="previous-work">a.a.O.</ref> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Carbonnier</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-7"> + <input type="raw"><![CDATA[7 Nowak, The Strategy of Cross-National Survey Research for the Development of Social Theory, in: Szalai/Petrella 3 (9 ff.); Rose, Interkulturelle Forschung in der Rechtssoziologie, in: Drobnig/Rehbinder 171 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="7" place="bottom"> + <label>7</label> + <bibl>Nowak, The Strategy of Cross-National Survey Research for the Development of Social Theory, in: Szalai/Petrella 3 (9 ff.);</bibl> + <bibl>Rose, Interkulturelle Forschung in der Rechtssoziologie, in: Drobnig/Rehbinder 171 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="7" type="footnote" place="bottom"> + <label>7</label> + <bibl xml:id="bibl-17"> + <author> + <persName> + <surname>Nowak</surname> + </persName> + </author>, + <title level="a">The Strategy of Cross-National Survey Research for the Development of Social + Theory + </title>, in: + <editor> + <persName> + <surname>Szalai</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Petrella</surname> + </persName> + </editor> + <biblScope unit="page" from="3">3</biblScope> + (<citedRange unit="page" from="9">9 ff.</citedRange>) + </bibl>; + <bibl xml:id="bibl-18"> + <author> + <persName> + <surname>Rose</surname> + </persName> + </author>, + <title level="a">Interkulturelle Forschung in der Rechtssoziologie</title>, in: + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> + <citedRange unit="page" from="171">171 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The Strategy of Cross-National Survey Research for the Development of Social + Theory + </title> + <author> + <persName> + <surname>Nowak</surname> + </persName> + </author> + <editor> + <persName> + <surname>Szalai</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Petrella</surname> + </persName> + </editor> + <imprint><date/></imprint> + <biblScope unit="page" from="3">3</biblScope> + </monogr> + <citedRange unit="page" from="9">9 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Interkulturelle Forschung in der Rechtssoziologie</title> + <author> + <persName> + <surname>Rose</surname> + </persName> + </author> + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="171">171 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-8"> + <input type="raw"><![CDATA[8 Dazu näher Wirsing, Probleme des interkulturellen Vergleichs in der Ethnologie, Sociologus 25 (1975) 97 ff. - Vgl. auch Poirier, Situation actuelle et Programme de travail de Techno logie juridique, Rev. int. Sc. Soc. 22 (1970) 509 (526).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="8" place="bottom"> + <label>8</label> + <seg>Dazu näher</seg> + <bibl>Wirsing, Probleme des interkulturellen Vergleichs in der Ethnologie, Sociologus 25 (1975) 97 ff. -</bibl> Vgl. auch <bibl>Poirier, Situation actuelle et Programme de travail de Techno logie juridique, Rev. int. Sc. Soc. 22 (1970) 509 (526).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="8" type="footnote" place="bottom"> + <label>8</label> + <note type="signal">Dazu näher</note> + <bibl xml:id="bibl-19"> + <author> + <persName> + <surname>Wirsing</surname> + </persName> + </author>, + <title level="a">Probleme des interkulturellen Vergleichs in der Ethnologie</title>, + <title level="j">Sociologus</title> + <biblScope unit="volume" from="25" to="25">25</biblScope> + (<date when="1975">1975</date>) + <citedRange unit="page" from="97">97 ff.</citedRange> + </bibl>- + <note type="signal">Vgl. auch</note> + <bibl xml:id="bibl-20"> + <author> + <persName> + <surname>Poirier</surname> + </persName> + </author>, + <title level="a">Situation actuelle et Programme de travail de Techno logie juridique</title>, + <title level="j">Rev. int. Sc. Soc</title>. + <biblScope unit="volume" from="22" to="22">22</biblScope> + (<date when="1970">1970</date>) + <biblScope unit="page" from="509">509</biblScope> + (<citedRange unit="page" from="526" to="526">526</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Probleme des interkulturellen Vergleichs in der Ethnologie</title> + <title level="j">Sociologus</title> + <author> + <persName> + <surname>Wirsing</surname> + </persName> + </author> + <imprint> + <date when="1975">1975</date> + </imprint> + <biblScope unit="volume" from="25" to="25">25</biblScope> + </monogr> + <citedRange unit="page" from="97">97 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Situation actuelle et Programme de travail de Techno logie juridique</title> + <title level="j">Rev. int. Sc. Soc</title> + <author> + <persName> + <surname>Poirier</surname> + </persName> + </author> + <imprint> + <date when="1970">1970</date> + </imprint> + <biblScope unit="volume" from="22" to="22">22</biblScope> + <biblScope unit="page" from="509">509</biblScope> + </monogr> + <citedRange unit="page" from="526" to="526">526</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-9"> + <input type="raw"><![CDATA[9 Macaulay, Elegant Models, Empirical Pictures, and the Complexities of Contract, Law & Soc. Rev. 11 (1977) 507 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="9" place="bottom"> + <label>9</label> + <bibl>Macaulay, Elegant Models, Empirical Pictures, and the Complexities of Contract, Law & Soc. Rev. 11 (1977) 507 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="9" type="footnote" place="bottom"> + <label>9</label> + <bibl xml:id="bibl-21"> + <author> + <persName> + <surname>Macaulay</surname> + </persName> + </author>, + <title level="a">Elegant Models, Empirical Pictures, and the Complexities of Contract</title>, + <title level="j">Law & Soc. Rev</title>. + <biblScope unit="volume" from="11" to="11">11</biblScope> + (<date when="1977">1977</date>) + <citedRange unit="page" from="507">507 ff.</citedRange> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Elegant Models, Empirical Pictures, and the Complexities of Contract</title> + <title level="j">Law & Soc. Rev</title> + <author> + <persName> + <surname>Macaulay</surname> + </persName> + </author> + <imprint> + <date when="1977">1977</date> + </imprint> + <biblScope unit="volume" from="11" to="11">11</biblScope> + </monogr> + <citedRange unit="page" from="507">507 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-10"> + <input type="raw"><![CDATA[10 Rose (oben N. 7) 175.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="10" place="bottom"> + <label>10</label> + <bibl>Rose (oben N. 7) 175.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="10" type="footnote" place="bottom"> + <label>10</label> + <bibl xml:id="bibl-22"> + <author> + <persName> + <surname>Rose</surname> + </persName> + </author> + (<ref type="footnote" n="7">oben N. 7</ref>) + <citedRange unit="page" from="175" to="175">175</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Rose</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="175" to="175">175</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-11"> + <input type="raw"><![CDATA[11 Dazu Grimshau, Comparative Sociology - In What Ways Different From Other Sociologies?, in: Armer/Grimshaw 3 (18). Auch der Oberbegriff „cross System comparison" wird vorgeschlagen. Tomasson, Introduction; Comparative Sociology — The State of the Art, in: Tomasson (Hrsg.), Comparative Studies in Sociology Vol. 1 (Greenwich, Conn. 1978) 1 — Über die Methoden interkultureller und internationaler Vergleiche ist inzwischen so viel geschrieben worden, daß nicht nur die Fülle des Materials schon wieder abschreckend wirkt, sondern daß es auch genügt, im Rahmen dieses Aufsatzes nur einige wichtige Aspekte anzusprechen. Bibliographien finden sich etwa bei Rokkan/Verba/Viet/Almasy 117 ff.; Vallier 423 ff.; Almasy/Balandier/Delatte, Comparative Survey Analysis — An Annotated Bibliography 1967 — 1973 (Beverly Hills, London 1976) sowie bei Marsh, Comparative Sociology (New York, Chicago, San Francisco, Atlanta 1967) 375 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="11" place="bottom"> + <label>11</label> + <seg>Dazu</seg> + <bibl>Grimshau, Comparative Sociology - In What Ways Different From Other Sociologies?, in: Armer/Grimshaw 3 (18).</bibl> Auch der Oberbegriff „cross System comparison" wird vorgeschlagen. <bibl>Tomasson, Introduction; Comparative Sociology — The State of the Art, in: Tomasson (Hrsg.), Comparative Studies in Sociology Vol. 1 (Greenwich, Conn. 1978) 1 —</bibl> Über die Methoden interkultureller und internationaler Vergleiche ist inzwischen so viel geschrieben worden, daß nicht nur die Fülle des Materials schon wieder abschreckend wirkt, sondern daß es auch genügt, im Rahmen dieses Aufsatzes nur einige wichtige Aspekte anzusprechen. Bibliographien finden sich etwa bei <bibl>Rokkan/Verba/Viet/Almasy 117 ff.;</bibl> Vallier 423 ff.; <bibl>Almasy/Balandier/Delatte, Comparative Survey Analysis — An Annotated Bibliography 1967 — 1973 (Beverly Hills, London 1976)</bibl> sowie bei <bibl>Marsh, Comparative Sociology (New York, Chicago, San Francisco, Atlanta 1967) 375 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="11" type="footnote" place="bottom"> + <label>11</label> + <note type="signal">Dazu</note> + <bibl xml:id="bibl-23"> + <author> + <persName> + <surname>Grimshau</surname> + </persName> + </author>, + <title level="a">Comparative Sociology - In What Ways Different From Other Sociologies?</title>, in: + <editor> + <persName> + <surname>Armer</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Grimshaw</surname> + </persName> + </editor> + <biblScope unit="page" from="3">3</biblScope> + (<citedRange unit="page" from="18" to="18">18</citedRange>) + </bibl>. + <note type="comment">Auch der Oberbegriff „cross System comparison" wird vorgeschlagen.</note> + <bibl xml:id="bibl-24"> + <author> + <persName> + <surname>Tomasson</surname> + </persName> + </author>, + <title level="a">Introduction; Comparative Sociology — The State of the Art</title>, in: + <editor> + <persName> + <surname>Tomasson</surname> + </persName> + </editor> + (Hrsg.), + <title level="m">Comparative Studies in Sociology</title> + <biblScope unit="volume" from="1" to="1">Vol. 1</biblScope> + (<pubPlace>Greenwich, Conn.</pubPlace> + <date when="1978">1978</date>) + <citedRange unit="page" from="1" to="1">1</citedRange> + </bibl>— + <note type="comment"> + Über die Methoden interkultureller und internationaler Vergleiche ist inzwischen + so viel geschrieben worden, daß nicht nur die Fülle des Materials schon wieder abschreckend + wirkt, sondern daß es auch genügt, im Rahmen dieses Aufsatzes nur einige wichtige Aspekte + anzusprechen. + </note> + <note type="signal">Bibliographien finden sich etwa bei</note> + <bibl xml:id="bibl-25"> + <author> + <persName> + <surname>Rokkan</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Verba</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Viet</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Almasy</surname> + </persName> + </author> + <citedRange unit="page" from="117">117 ff.</citedRange>; + </bibl> + <bibl xml:id="bibl-26"> + <author> + <persName> + <surname>Vallier</surname> + </persName> + </author> + <citedRange unit="page" from="423">423 ff.</citedRange>; + </bibl> + <bibl xml:id="bibl-27"> + <author> + <persName> + <surname>Almasy</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Balandier</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Delatte</surname> + </persName> + </author>, + <title level="m">Comparative Survey Analysis — An Annotated Bibliography 1967 — 1973</title> + (<pubPlace>Beverly Hills, London</pubPlace> + <date when="1976">1976</date>) + </bibl> + <note type="signal">sowie bei</note> + <bibl xml:id="bibl-28"> + <author> + <persName> + <surname>Marsh</surname> + </persName> + </author>, + <title level="m">Comparative Sociology</title> + (<pubPlace>New York, Chicago, San Francisco, Atlanta</pubPlace> + <date when="1967">1967</date>) + <citedRange unit="page" from="375">375 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Comparative Sociology - In What Ways Different From Other Sociologies?</title> + <author> + <persName> + <surname>Grimshau</surname> + </persName> + </author> + <editor> + <persName> + <surname>Armer</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Grimshaw</surname> + </persName> + </editor> + <imprint><date/></imprint> + <biblScope unit="page" from="3">3</biblScope> + </monogr> + <citedRange unit="page" from="18" to="18">18</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Introduction; Comparative Sociology — The State of the Art</title> + <title level="m">Comparative Studies in Sociology</title> + <author> + <persName> + <surname>Tomasson</surname> + </persName> + </author> + <editor> + <persName> + <surname>Tomasson</surname> + </persName> + </editor> + <imprint> + <date when="1978">1978</date> + <pubPlace>Greenwich, Conn.</pubPlace> + </imprint> + <biblScope unit="volume" from="1" to="1">Vol. 1</biblScope> + </monogr> + <citedRange unit="page" from="1" to="1">1</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Rokkan</surname> + </persName> + </author> + <author> + <persName> + <surname>Verba</surname> + </persName> + </author> + <author> + <persName> + <surname>Viet</surname> + </persName> + </author> + <author> + <persName> + <surname>Almasy</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="117">117 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Vallier</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="423">423 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Comparative Survey Analysis — An Annotated Bibliography 1967 — 1973</title> + <author> + <persName> + <surname>Almasy</surname> + </persName> + </author> + <author> + <persName> + <surname>Balandier</surname> + </persName> + </author> + <author> + <persName> + <surname>Delatte</surname> + </persName> + </author> + <imprint> + <date when="1976">1976</date> + <pubPlace>Beverly Hills, London</pubPlace> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Comparative Sociology</title> + <author> + <persName> + <surname>Marsh</surname> + </persName> + </author> + <imprint> + <date when="1967">1967</date> + <pubPlace>New York, Chicago, San Francisco, Atlanta</pubPlace> + </imprint> + </monogr> + <citedRange unit="page" from="375">375 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-12"> + <input type="raw"><![CDATA[12 Durkheim, Les règles de la methode sociologique (PUF, Paris 1977) 137.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="12" place="bottom"> + <label>12</label> + <bibl>Durkheim, Les règles de la methode sociologique (PUF, Paris 1977) 137.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="12" type="footnote" place="bottom"> + <label>12</label> + <bibl xml:id="bibl-29"> + <author> + <persName> + <surname>Durkheim</surname> + </persName> + </author>, + <title level="m">Les règles de la methode sociologique</title> + <publisher>(PUF,</publisher> + <pubPlace>Paris</pubPlace> + <date when="1977">1977</date>) + <citedRange unit="page" from="137" to="137">137</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Les règles de la methode sociologique</title> + <author> + <persName> + <surname>Durkheim</surname> + </persName> + </author> + <imprint> + <date when="1977">1977</date> + <pubPlace>Paris</pubPlace> + <publisher>(PUF,</publisher> + </imprint> + </monogr> + <citedRange unit="page" from="137" to="137">137</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-13"> + <input type="raw"><![CDATA[13 Smelser 2 f.; Payne, Comparative Sociology — Some Problems of Theory and Method, Brit. J. Soc. 24 (1973) 13 (15 ff.). Ähnlich auch Eisenstadt, Social Institutions - Comparative Method, in: International Encyclopedia of the Social Sciences Bd. 14 (London 1968) 421 (423).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="13" place="bottom"> + <label>13</label> + <seg>Smelser 2 f.;</seg> + <bibl>Payne, Comparative Sociology — Some Problems of Theory and Method, Brit. J. Soc. 24 (1973) 13 (15 ff.).</bibl> Ähnlich auch <bibl>Eisenstadt, Social Institutions - Comparative Method, in: International Encyclopedia of the Social Sciences Bd. 14 (London 1968) 421 (423).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="13" type="footnote" place="bottom"> + <label>13</label> + <bibl xml:id="bibl-30"> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> + <citedRange unit="page" from="2">2 f.</citedRange> + </bibl>; + <bibl xml:id="bibl-31"> + <author> + <persName> + <surname>Payne</surname> + </persName> + </author>, + <title level="a">Comparative Sociology — Some Problems of Theory and Method</title>, + <title level="j">Brit. J. Soc</title>. + <biblScope unit="volume" from="24" to="24">24</biblScope> + (<date when="1973">1973</date>) + <biblScope unit="page" from="13">13</biblScope> + (<citedRange unit="page" from="15">15 ff.</citedRange>) + </bibl>. + <note type="signal">Ähnlich auch</note> + <bibl xml:id="bibl-32"> + <author> + <persName> + <surname>Eisenstadt</surname> + </persName> + </author>, + <title level="a">Social Institutions - Comparative Method</title>, in: + <title level="j">International Encyclopedia of the Social Sciences</title> + <biblScope unit="volume" from="14" to="14">Bd. 14</biblScope> + (<pubPlace>London</pubPlace> + <date when="1968">1968</date>) + <biblScope unit="page" from="421">421</biblScope> + (<citedRange unit="page" from="423" to="423">423</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="2">2 f.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Comparative Sociology — Some Problems of Theory and Method</title> + <title level="j">Brit. J. Soc</title> + <author> + <persName> + <surname>Payne</surname> + </persName> + </author> + <imprint> + <date when="1973">1973</date> + </imprint> + <biblScope unit="volume" from="24" to="24">24</biblScope> + <biblScope unit="page" from="13">13</biblScope> + </monogr> + <citedRange unit="page" from="15">15 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Social Institutions - Comparative Method</title> + <title level="j">International Encyclopedia of the Social Sciences</title> + <author> + <persName> + <surname>Eisenstadt</surname> + </persName> + </author> + <imprint> + <date when="1968">1968</date> + <pubPlace>London</pubPlace> + </imprint> + <biblScope unit="volume" from="14" to="14">Bd. 14</biblScope> + <biblScope unit="page" from="421">421</biblScope> + </monogr> + <citedRange unit="page" from="423" to="423">423</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-14"> + <input type="raw"><![CDATA[14 Boesch/Eckensberger, Methodische Probleme des interkulturellen Vergleichs, in: Graumann (Hrsg.), Handbuch der Psychologie, Bd. VII 1 (2. Aufl., 1969) 514 (520 ff.) — Zur „cultunit“, die vor allem durch die gemeinsame Sprache und die Zugehörigkeit zu einem Staat bzw. einer interpersonellen Kontaktgruppe gekennzeichnet ist, s. Naroll/Cohen (Hrsg.), A Handbook of Method in Cultural Anthropology (New York, London 1973) sowie Smelser 168 f.; Wirsing (oben N. 8) 115.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="14" place="bottom"> + <label>14</label> + <bibl>Boesch/Eckensberger, Methodische Probleme des interkulturellen Vergleichs, in: Graumann (Hrsg.), Handbuch der Psychologie, Bd. VII 1 (2. Aufl., 1969) 514 (520 ff.) —</bibl> Zur „cultunit“, die vor allem durch die gemeinsame Sprache und die Zugehörigkeit zu einem Staat bzw. einer interpersonellen Kontaktgruppe gekennzeichnet ist, s. <bibl>Naroll/Cohen (Hrsg.), A Handbook of Method in Cultural Anthropology (New York, London 1973)</bibl> sowie Smelser 168 f.; <bibl>Wirsing (oben N. 8) 115.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="14" type="footnote" place="bottom"> + <label>14</label> + <bibl xml:id="bibl-33"> + <author> + <persName> + <surname>Boesch</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Eckensberger</surname> + </persName> + </author>, + <title level="a">Methodische Probleme des interkulturellen Vergleichs</title>, in: + <editor> + <persName> + <surname>Graumann</surname> + </persName> + </editor> + (Hrsg.), + <title level="m">Handbuch der Psychologie</title>, + <biblScope unit="volume" from="VII" to="VII">Bd. VII</biblScope> + <biblScope unit="issue" from="1" to="1">1</biblScope> + (<edition>2. Aufl.</edition>, + <date when="1969">1969</date>) + <biblScope unit="page" from="514">514</biblScope> + (<citedRange unit="page" from="520">520 ff.</citedRange>) + </bibl> — + <note type="signal"> + Zur „cultunit“, die vor allem durch die gemeinsame Sprache und die Zugehörigkeit + zu einem Staat bzw. einer interpersonellen Kontaktgruppe gekennzeichnet ist, s.</note> + <bibl xml:id="bibl-34"> + <editor> + <persName> + <surname>Naroll</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Cohen</surname> + </persName> + </editor> + (Hrsg.), + <title level="m">A Handbook of Method in Cultural Anthropology</title> + (<pubPlace>New York, London</pubPlace> + <date when="1973">1973</date>) + </bibl> + <note type="signal">sowie</note> + <bibl xml:id="bibl-35"> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> + <citedRange unit="page" from="168">168 f.</citedRange> + </bibl>; + <bibl xml:id="bibl-36"> + <author> + <persName> + <surname>Wirsing</surname> + </persName> + </author> + (<ref type="footnote" n="8">oben N. 8</ref>) + <citedRange unit="page" from="115" to="115">115</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Methodische Probleme des interkulturellen Vergleichs</title> + <title level="m">Handbuch der Psychologie</title> + <author> + <persName> + <surname>Boesch</surname> + </persName> + </author> + <author> + <persName> + <surname>Eckensberger</surname> + </persName> + </author> + <editor> + <persName> + <surname>Graumann</surname> + </persName> + </editor> + <imprint> + <date when="1969">1969</date> + </imprint> + <biblScope unit="volume" from="VII" to="VII">Bd. VII</biblScope> + <biblScope unit="issue" from="1" to="1">1</biblScope> + <biblScope unit="page" from="514">514</biblScope> + </monogr> + <citedRange unit="page" from="520">520 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">A Handbook of Method in Cultural Anthropology</title> + <editor> + <persName> + <surname>Naroll</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Cohen</surname> + </persName> + </editor> + <imprint> + <date when="1973">1973</date> + <pubPlace>New York, London</pubPlace> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="168">168 f.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Wirsing</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="115" to="115">115</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-15"> + <input type="raw"><![CDATA[15 Näher dazu Zelditch, Intelligible Comparisons, in: Vallier 267 (270 ff.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="15" place="bottom"> + <label>15</label> + <seg>Näher dazu</seg> + <bibl>Zelditch, Intelligible Comparisons, in: Vallier 267 (270 ff.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="15" type="footnote" place="bottom"> + <label>15</label> + <note type="signal">Näher dazu</note> + <bibl xml:id="bibl-37"> + <author> + <persName> + <surname>Zelditch</surname> + </persName> + </author>, + <title level="a">Intelligible Comparisons</title>, in: + <editor> + <persName> + <surname>Vallier</surname> + </persName> + </editor> + <biblScope unit="page" from="267">267</biblScope> + (<citedRange unit="page" from="270">270 ff.</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Intelligible Comparisons</title> + <author> + <persName> + <surname>Zelditch</surname> + </persName> + </author> + <editor> + <persName> + <surname>Vallier</surname> + </persName> + </editor> + <imprint><date/></imprint> + <biblScope unit="page" from="267">267</biblScope> + </monogr> + <citedRange unit="page" from="270">270 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-16"> + <input type="raw"><![CDATA[16 Carbonnier (oben N. 5) 80.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="16" place="bottom"> + <label>16</label> + <bibl>Carbonnier (oben N. 5) 80.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="16" type="footnote" place="bottom"> + <label>16</label> + <bibl xml:id="bibl-38"> + <author> + <persName> + <surname>Carbonnier</surname> + </persName> + </author> + (<ref type="footnote" n="5">oben N. 5</ref>) + <citedRange unit="page" from="80" to="80">80</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Carbonnier</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <ref type="footnote" n="5">oben N. 5</ref> + <citedRange unit="page" from="80" to="80">80</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-17"> + <input type="raw"><![CDATA[17 Siehe Zweigert, Die soziologische Dimension der Rechtsvergleichung, in: Drobnig/Rebbinder 151 (159).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="17" place="bottom"> + <label>17</label> + <seg>Siehe</seg> + <bibl>Zweigert, Die soziologische Dimension der Rechtsvergleichung, in: Drobnig/Rebbinder 151 (159).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="17" type="footnote" place="bottom"> + <label>17</label> + <note type="signal">Siehe</note> + <bibl xml:id="bibl-39"> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author>, + <title level="a">Die soziologische Dimension der Rechtsvergleichung</title>, in: + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Rebbinder</surname> + </persName> + </editor> + <biblScope unit="page" from="151">151</biblScope> + (<citedRange unit="page" from="159" to="159">159</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Die soziologische Dimension der Rechtsvergleichung</title> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Rebbinder</surname> + </persName> + </editor> + <imprint><date/></imprint> + <biblScope unit="page" from="151">151</biblScope> + </monogr> + <citedRange unit="page" from="159" to="159">159</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-18"> + <input type="raw"><![CDATA[18 Zu entsprechenden Versuchen etwa Merryman, Comparative Law and Scientific Explanation, in: Law in the United States of America in Social and Technological Revolution (Brüssel 1974) 81 (89 ff.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="18" place="bottom"> + <label>18</label> + <seg>Zu entsprechenden Versuchen etwa</seg> + <bibl>Merryman, Comparative Law and Scientific Explanation, in: Law in the United States of America in Social and Technological Revolution (Brüssel 1974) 81 (89 ff.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="18" type="footnote" place="bottom"> + <label>18</label> + <note type="signal">Zu entsprechenden Versuchen etwa</note> + <bibl xml:id="bibl-40"> + <author> + <persName> + <surname>Merryman</surname> + </persName> + </author>, + <title level="a">Comparative Law and Scientific Explanation</title>, in: + <title level="m">Law in the United States of America in Social and Technological Revolution</title> + (<pubPlace>Brüssel</pubPlace> + <date when="1974">1974</date>) + <biblScope unit="page" from="81">81</biblScope> + (<citedRange unit="page" from="89">89 ff.</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Comparative Law and Scientific Explanation</title> + <title level="m">Law in the United States of America in Social and Technological Revolution</title> + <author> + <persName> + <surname>Merryman</surname> + </persName> + </author> + <imprint> + <date when="1974">1974</date> + <pubPlace>Brüssel</pubPlace> + </imprint> + <biblScope unit="page" from="81">81</biblScope> + </monogr> + <citedRange unit="page" from="89">89 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-19"> + <input type="raw"><![CDATA[19 Beispiel von Carbonnier, Sociologie juridique (Paris 1972) 188 N. 1.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="19" place="bottom"> + <label>19</label> + <seg>Beispiel von</seg> + <bibl>Carbonnier, Sociologie juridique (Paris 1972) 188 N. 1.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="19" type="footnote" place="bottom"> + <label>19</label> + <note type="signal">Beispiel von</note> + <bibl xml:id="bibl-41"> + <author> + <persName> + <surname>Carbonnier</surname> + </persName> + </author>, + <title level="m">Sociologie juridique</title> + (<pubPlace>Paris</pubPlace> + <date when="1972">1972</date>) + <biblScope unit="page" from="188">188</biblScope> + <citedRange unit="footnote" from="1">N. 1</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Sociologie juridique</title> + <author> + <persName> + <surname>Carbonnier</surname> + </persName> + </author> + <imprint> + <date when="1972">1972</date> + <pubPlace>Paris</pubPlace> + </imprint> + <biblScope unit="page" from="188">188</biblScope> + </monogr> + <citedRange unit="footnote" from="1">N. 1</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-20"> + <input type="raw"><![CDATA[20 Dazu Heidrich, Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels, Jahrbuch für Rechtssoziologie und Rechtstheorie 3 (1972) 305 (330 ff.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="20" place="bottom"> + <label>20</label> + <seg>Dazu</seg> + <bibl>Heidrich, Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels, Jahrbuch für Rechtssoziologie und Rechtstheorie 3 (1972) 305 (330 ff.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="20" type="footnote" place="bottom"> + <label>20</label> + <note type="signal">Dazu</note> + <bibl xml:id="bibl-42"> + <author> + <persName> + <surname>Heidrich</surname> + </persName> + </author>, + <title level="a">Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels</title>, + <title level="j">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> + <biblScope unit="volume" from="3" to="3">3</biblScope> + (<date when="1972">1972</date>) + <biblScope unit="page" from="305">305</biblScope> + (<citedRange unit="page" from="330">330 ff.</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels</title> + <title level="j">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> + <author> + <persName> + <surname>Heidrich</surname> + </persName> + </author> + <imprint> + <date when="1972">1972</date> + </imprint> + <biblScope unit="volume" from="3" to="3">3</biblScope> + <biblScope unit="page" from="305">305</biblScope> + </monogr> + <citedRange unit="page" from="330">330 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-21"> + <input type="raw"><![CDATA[21 Insbesondere Zweigert (oben N. 17) 157 ff..]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="21" place="bottom"> + <label>21</label> + <seg>Insbesondere</seg> + <bibl>Zweigert (oben N. 17) 157 ff..</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="21" type="footnote" place="bottom"> + <label>21</label> + <note type="signal">Insbesondere</note> + <bibl xml:id="bibl-43"> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + (<ref type="footnote" n="17">oben N. 17</ref>) + <citedRange unit="page" from="157">157 ff.</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="157">157 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-22"> + <input type="raw"><![CDATA[22 Kaiser, Strafrecht und vergleichende Kriminologie, in: Kaiser/Vogler (Hrsg.), Strafrecht, Strafrechtsvergleichung (1975) 79 ff. — Siehe auch Villmow/Albrecht, Die Vergleichung als Methode der Strafrechtswissenschaft und der Kriminologie, MschrKrim. 62 (1979) 163 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="22" place="bottom"> + <label>22</label> + <bibl>Kaiser, Strafrecht und vergleichende Kriminologie, in: Kaiser/Vogler (Hrsg.), Strafrecht, Strafrechtsvergleichung (1975) 79 ff. —</bibl> Siehe auch <bibl>Villmow/Albrecht, Die Vergleichung als Methode der Strafrechtswissenschaft und der Kriminologie, MschrKrim. 62 (1979) 163 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="22" type="footnote" place="bottom"> + <label>22</label> + <bibl xml:id="bibl-44"> + <author> + <persName> + <surname>Kaiser</surname> + </persName> + </author>, + <title level="a">Strafrecht und vergleichende Kriminologie</title>, in: + <editor> + <persName> + <surname>Kaiser</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Vogler</surname> + </persName> + </editor> + (Hrsg.), + <title level="m">Strafrecht, Strafrechtsvergleichung</title> + (<date when="1975">1975</date>) + <citedRange unit="page" from="79">79 ff.</citedRange> + </bibl> — + <note type="signal">Siehe auch</note> + <bibl xml:id="bibl-45"> + <author> + <persName> + <surname>Villmow</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Albrecht</surname> + </persName> + </author>, + <title level="a">Die Vergleichung als Methode der Strafrechtswissenschaft und der Kriminologie + </title>, + <title level="j">MschrKrim</title>. + <biblScope unit="volume" from="62" to="62">62</biblScope> + (<date when="1979">1979</date>) + <citedRange unit="page" from="163">163 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Strafrecht und vergleichende Kriminologie</title> + <title level="m">Strafrecht, Strafrechtsvergleichung</title> + <author> + <persName> + <surname>Kaiser</surname> + </persName> + </author> + <editor> + <persName> + <surname>Kaiser</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Vogler</surname> + </persName> + </editor> + <imprint> + <date when="1975">1975</date> + </imprint> + </monogr> + <citedRange unit="page" from="79">79 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Die Vergleichung als Methode der Strafrechtswissenschaft und der Kriminologie + </title> + <title level="j">MschrKrim</title> + <author> + <persName> + <surname>Villmow</surname> + </persName> + </author> + <author> + <persName> + <surname>Albrecht</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + <biblScope unit="volume" from="62" to="62">62</biblScope> + </monogr> + <citedRange unit="page" from="163">163 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-23"> + <input type="raw"><![CDATA[23 So etwa K. H. Neumayer, Ziele und Methoden der Rechtsvergleichung, in: Recueil des travaux suisses présentés au IXe Congrès international de droit compare (1976) 45 (48).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="23" place="bottom"> + <label>23</label> + <seg>So etwa</seg> + <bibl>K. H. Neumayer, Ziele und Methoden der Rechtsvergleichung, in: Recueil des travaux suisses présentés au IXe Congrès international de droit compare (1976) 45 (48).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="23" type="footnote" place="bottom"> + <label>23</label> + <note type="signal">So etwa</note> + <bibl xml:id="bibl-46"> + <author> + <persName> + <forename type="first">K.</forename> + <forename type="middle">H.</forename> + <surname>Neumayer</surname> + </persName> + </author>, + <title level="a">Ziele und Methoden der Rechtsvergleichung</title>, in: + <title level="m">Recueil des travaux suisses présentés au IXe Congrès international de droit + compare + </title> + (<date when="1976">1976</date>) + <biblScope unit="page" from="45">45</biblScope> + (<citedRange unit="page" from="48" to="48">48</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Ziele und Methoden der Rechtsvergleichung</title> + <title level="m">Recueil des travaux suisses présentés au IXe Congrès international de droit + compare + </title> + <author> + <persName> + <forename type="first">K.</forename> + <forename type="middle">H.</forename> + <surname>Neumayer</surname> + </persName> + </author> + <imprint> + <date when="1976">1976</date> + </imprint> + <biblScope unit="page" from="45">45</biblScope> + </monogr> + <citedRange unit="page" from="48" to="48">48</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-24"> + <input type="raw"><![CDATA[24 Zur Abgrenzung näher Rehbinder, Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und Rechtsvergleichung, in: Drobnig/Rehbinder 56 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="24" place="bottom"> + <label>24</label> + <seg>Zur Abgrenzung näher</seg> + <bibl>Rehbinder, Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und Rechtsvergleichung, in: Drobnig/Rehbinder 56 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="24" type="footnote" place="bottom"> + <label>24</label> + <note type="signal">Zur Abgrenzung näher</note> + <bibl xml:id="bibl-47"> + <author> + <persName> + <surname>Rehbinder</surname> + </persName> + </author>, + <title level="a">Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und + Rechtsvergleichung + </title>, in: + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> + <citedRange unit="page" from="56">56 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und + Rechtsvergleichung + </title> + <author> + <persName> + <surname>Rehbinder</surname> + </persName> + </author> + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="56">56 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-25"> + <input type="raw"><![CDATA[25 Näher dazu Merryman (oben N. 18) 101 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="25" place="bottom"> + <label>25</label> + <seg>Näher dazu</seg> + <bibl>Merryman (oben N. 18) 101 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="25" type="footnote" place="bottom"> + <label>25</label> + <note type="signal">Näher dazu</note> + <bibl xml:id="bibl-48"> + <author> + <persName> + <surname>Merryman</surname> + </persName> + </author> + (<ref type="footnote" n="18">oben N. 18</ref>) + <citedRange unit="page" from="101">101 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Merryman</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="101">101 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-26"> + <input type="raw"><![CDATA[26 Heidrich, Sozialwissenschaftliche Aspekte der Rechtsvergleichung, in: Drobnig/Rehbinder 178 (186 ff.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="26" place="bottom"> + <label>26</label> + <bibl>Heidrich, Sozialwissenschaftliche Aspekte der Rechtsvergleichung, in: Drobnig/Rehbinder 178 (186 ff.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="26" type="footnote" place="bottom"> + <label>26</label> + <bibl xml:id="bibl-49"> + <author> + <persName> + <surname>Heidrich</surname> + </persName> + </author>, + <title level="m">Sozialwissenschaftliche Aspekte der Rechtsvergleichung</title>, in: + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> + <biblScope unit="page" from="178">178</biblScope> + (<citedRange unit="page" from="186">186 ff.</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Sozialwissenschaftliche Aspekte der Rechtsvergleichung</title> + <author> + <persName> + <surname>Heidrich</surname> + </persName> + </author> + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> + <imprint><date/></imprint> + <biblScope unit="page" from="178">178</biblScope> + </monogr> + <citedRange unit="page" from="186">186 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-27"> + <input type="raw"><![CDATA[27 Siehe etwa die Erklärung, warum das „Access to justice movement" in der Bundesrepublik vergleichsweise wenig Widerhall gefunden hat von Blankenburg, Patterns of Legal Culture as a Variable for the Chances of Legal Innovation, in: Blankenburg (Hrsg.), Innovations in the Legal Services (Cambridge, Mass.; Meisenheim 1980).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="27" place="bottom"> + <label>27</label> + <seg>Siehe etwa die Erklärung, warum das „Access to justice movement" in der Bundesrepublik vergleichsweise wenig Widerhall gefunden hat von</seg> + <bibl>Blankenburg, Patterns of Legal Culture as a Variable for the Chances of Legal Innovation, in: Blankenburg (Hrsg.), Innovations in the Legal Services (Cambridge, Mass.; Meisenheim 1980).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="27" type="footnote" place="bottom"> + <label>27</label> + <note type="signal"> + Siehe etwa die Erklärung, warum das „Access to justice movement" in der + Bundesrepublik vergleichsweise wenig Widerhall gefunden hat von + </note> + <bibl xml:id="bibl-50"> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>, + <title level="a">Patterns of Legal Culture as a Variable for the Chances of Legal Innovation</title>, in: + <editor> + <persName> + <surname>Blankenburg</surname> + </persName> + </editor> + (Hrsg.), + <title level="m">Innovations in the Legal Services</title> + (<pubPlace>Cambridge, Mass.; Meisenheim</pubPlace> + <date when="1980">1980</date>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Patterns of Legal Culture as a Variable for the Chances of Legal Innovation</title> + <title level="m">Innovations in the Legal Services</title> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <editor> + <persName> + <surname>Blankenburg</surname> + </persName> + </editor> + <imprint> + <date when="1980">1980</date> + <pubPlace>Cambridge, Mass.; Meisenheim</pubPlace> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-28"> + <input type="raw"><![CDATA[28 So Rehbinder (oben N. 24) 60.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="28" place="bottom"> + <label>28</label> + <seg>So</seg> + <bibl>Rehbinder (oben N. 24) 60.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="28" type="footnote" place="bottom"> + <label>28</label> + <note type="signal">So</note> + <bibl xml:id="bibl-51"> + <author> + <persName> + <surname>Rehbinder</surname> + </persName> + </author> + (<ref type="footnote" n="24">oben N. 24</ref>) + <citedRange unit="page" from="60" to="60">60</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Rehbinder</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="60" to="60">60</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-29"> + <input type="raw"><![CDATA[29 Dazu R. Abel, Comparative Law and Social Theory, Am. J. Comp. L. 26 (1978) 219 (224 ff.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="29" place="bottom"> + <label>29</label> + <seg>Dazu</seg> + <bibl>R. Abel, Comparative Law and Social Theory, Am. J. Comp. L. 26 (1978) 219 (224 ff.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="29" type="footnote" place="bottom"> + <label>29</label> + <note type="signal">Dazu</note> + <bibl xml:id="bibl-52"> + <author> + <persName> + <forename type="first">R.</forename> + <surname>Abel</surname> + </persName> + </author>, + <title level="a">Comparative Law and Social Theory</title>, + <title level="j">Am. J. Comp. L</title>. + <biblScope unit="volume" from="26" to="26">26</biblScope> + (<date when="1978">1978</date>) + <biblScope unit="page" from="219">219</biblScope> + (<citedRange unit="page" from="224">224 ff.</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Comparative Law and Social Theory</title> + <title level="j">Am. J. Comp. L</title> + <author> + <persName> + <forename type="first">R.</forename> + <surname>Abel</surname> + </persName> + </author> + <imprint> + <date when="1978">1978</date> + </imprint> + <biblScope unit="volume" from="26" to="26">26</biblScope> + <biblScope unit="page" from="219">219</biblScope> + </monogr> + <citedRange unit="page" from="224">224 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-30"> + <input type="raw"><![CDATA[30 Dazu etwa Smelser 175 f. — Für die Kriminologie siehe Kaiser (oben N. 22) 89 sowie Blazicek/Janeksela, Some Comments on Comparative Methodologies in Criminal Justice, Int. J. Crim. Pen 6 (1978) 233 (240). Als besonders gefährlich hat sich die unkritische Übertragung solcher Konzepte auf Länder der Dritten Welt erwiesen. So kam man etwa zu dem Ergebnis: „The U. S. law and development movement was largely a parochial expression of the American legal style“, Merryman, Comparative Law and Social Change - On the Origins, Style, Decline and Revival of the Law and Development Movement, Am. J. Comp. L. 25 (1977) 457 (479).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="30" place="bottom"> + <label>30</label> + <seg>Dazu etwa Smelser 175 f. — Für die Kriminologie siehe</seg> + <bibl>Kaiser (oben N. 22) 89</bibl> sowie <bibl>Blazicek/Janeksela, Some Comments on Comparative Methodologies in Criminal Justice, Int. J. Crim. Pen 6 (1978) 233 (240).</bibl> Als besonders gefährlich hat sich die unkritische Übertragung solcher Konzepte auf Länder der Dritten Welt erwiesen. So kam man etwa zu dem Ergebnis: „The U. S. law and development movement was largely a parochial expression of the American legal style“, <bibl>Merryman, Comparative Law and Social Change - On the Origins, Style, Decline and Revival of the Law and Development Movement, Am. J. Comp. L. 25 (1977) 457 (479).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="30" type="footnote" place="bottom"> + <label>30</label> + <note type="signal">Dazu etwa</note> + <bibl xml:id="bibl-53"> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> + <citedRange unit="page" from="175">175 f.</citedRange> + </bibl>— + <note type="signal">Für die Kriminologie siehe</note> + <bibl xml:id="bibl-54"> + <author> + <persName> + <surname>Kaiser</surname> + </persName> + </author> + (<ref type="footnote" n="22">oben N. 22</ref>) + <citedRange unit="page" from="89" to="89">89</citedRange> + </bibl> + <note type="signal">sowie</note> + <bibl xml:id="bibl-55"> + <author> + <persName> + <surname>Blazicek</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Janeksela</surname> + </persName> + </author>, + <title level="a">Some Comments on Comparative Methodologies in Criminal Justice</title>, + <title level="j">Int. J. Crim. Pen</title> + <biblScope unit="volume" from="6" to="6">6</biblScope> + (<date when="1978">1978</date>) + <biblScope unit="page" from="233">233</biblScope> + (<citedRange unit="page" from="240" to="240">240</citedRange>) + </bibl>. + <note type="comment"> + Als besonders gefährlich hat sich die unkritische Übertragung solcher Konzepte + auf Länder der Dritten Welt erwiesen. So kam man etwa zu dem Ergebnis: „The U. S. law and + development movement was largely a parochial expression of the American legal style“ + </note>, + <bibl xml:id="bibl-56"> + <author> + <persName> + <surname>Merryman</surname> + </persName> + </author>, + <title level="a">Comparative Law and Social Change - On the Origins, Style, Decline and Revival of + the Law and Development Movement + </title>, + <title level="j">Am. J. Comp. L</title>. + <biblScope unit="volume" from="25" to="25">25</biblScope> + (<date when="1977">1977</date>) + <biblScope unit="page" from="457">457</biblScope> + (<citedRange unit="page" from="479" to="479">479</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="175">175 f.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Kaiser</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="89" to="89">89</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Some Comments on Comparative Methodologies in Criminal Justice</title> + <title level="j">Int. J. Crim. Pen</title> + <author> + <persName> + <surname>Blazicek</surname> + </persName> + </author> + <author> + <persName> + <surname>Janeksela</surname> + </persName> + </author> + <imprint> + <date when="1978">1978</date> + </imprint> + <biblScope unit="volume" from="6" to="6">6</biblScope> + <biblScope unit="page" from="233">233</biblScope> + </monogr> + <citedRange unit="page" from="240" to="240">240</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Comparative Law and Social Change - On the Origins, Style, Decline and Revival of + the Law and Development Movement + </title> + <title level="j">Am. J. Comp. L</title> + <author> + <persName> + <surname>Merryman</surname> + </persName> + </author> + <imprint> + <date when="1977">1977</date> + </imprint> + <biblScope unit="volume" from="25" to="25">25</biblScope> + <biblScope unit="page" from="457">457</biblScope> + </monogr> + <citedRange unit="page" from="479" to="479">479</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-31"> + <input type="raw"><![CDATA[31 Payne (oben N. 13) 15, 25 f..]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="31" place="bottom"> + <label>31</label> + <bibl>Payne (oben N. 13) 15, 25 f..</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="31" type="footnote" place="bottom"> + <label>31</label> + <bibl xml:id="bibl-57"> + <author> + <persName> + <surname>Payne</surname> + </persName> + </author> + (<ref type="footnote" n="13">oben N. 13</ref>) + <citedRange unit="page" from="15">15,</citedRange> + <citedRange unit="page" from="25">25 f.</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Payne</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="15">15,</citedRange> + <citedRange unit="page" from="25">25 f.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-32"> + <input type="raw"><![CDATA[32 Däubler, Systemvergleich im Arbeitsrecht? Vorüberlegungen zu einigen Methodenfragen, Demokratie und Recht 1979/1 S. 23 (31 ff.). Zum Vergleich mit den sozialistischen Ländern siehe auch Zweigert/Puttfarken, Zur Vergleichbarkeit analoger Rechtsinstitute in verschiede nen Gesellschaftsordnungen, in: Zweigert/Puttfarken (Hrsg.), Rechtsvergleichung (1978) 395 (402 ff.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="32" place="bottom"> + <label>32</label> + <bibl>Däubler, Systemvergleich im Arbeitsrecht? Vorüberlegungen zu einigen Methodenfragen, Demokratie und Recht 1979/1 S. 23 (31 ff.).</bibl> Zum Vergleich mit den sozialistischen Ländern siehe auch <bibl>Zweigert/Puttfarken, Zur Vergleichbarkeit analoger Rechtsinstitute in verschiede nen Gesellschaftsordnungen, in: Zweigert/Puttfarken (Hrsg.), Rechtsvergleichung (1978) 395 (402 ff.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="32" type="footnote" place="bottom"> + <label>32</label> + <bibl xml:id="bibl-58"> + <author> + <persName> + <surname>Däubler</surname> + </persName> + </author>, + <title level="a">Systemvergleich im Arbeitsrecht? Vorüberlegungen zu einigen Methodenfragen</title>, + <title level="j">Demokratie und Recht</title> + <date when="1979">1979</date>/ + <biblScope unit="volume" from="/1" to="/1">1</biblScope> + <biblScope unit="page" from="23">S. 23</biblScope> + (<citedRange unit="page" from="31">31 ff.</citedRange>) + </bibl>. + <note type="signal">Zum Vergleich mit den sozialistischen Ländern siehe auch</note> + <bibl xml:id="bibl-59"> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Puttfarken</surname> + </persName> + </author>, + <title level="a">Zur Vergleichbarkeit analoger Rechtsinstitute in verschiede nen + Gesellschaftsordnungen + </title>, in: + <editor> + <persName> + <surname>Zweigert</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Puttfarken</surname> + </persName> + </editor> + (Hrsg.), + <title level="m">Rechtsvergleichung</title> + (<date when="1978">1978</date>) + <biblScope unit="page" from="395">395</biblScope> + (<citedRange unit="page" from="402">402 ff.</citedRange>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Systemvergleich im Arbeitsrecht? Vorüberlegungen zu einigen Methodenfragen</title> + <title level="j">Demokratie und Recht</title> + <author> + <persName> + <surname>Däubler</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + <biblScope unit="volume" from="/1" to="/1">1</biblScope> + <biblScope unit="page" from="23">S. 23</biblScope> + </monogr> + <citedRange unit="page" from="31">31 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Zur Vergleichbarkeit analoger Rechtsinstitute in verschiedenen + Gesellschaftsordnungen + </title> + <title level="m">Rechtsvergleichung</title> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <author> + <persName> + <surname>Puttfarken</surname> + </persName> + </author> + <editor> + <persName> + <surname>Zweigert</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Puttfarken</surname> + </persName> + </editor> + <imprint> + <date when="1978">1978</date> + </imprint> + <biblScope unit="page" from="395">395</biblScope> + </monogr> + <citedRange unit="page" from="402">402 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-33"> + <input type="raw"><![CDATA[33 Blankenburg, Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration (HM discussion papers 1978 — 23) 5 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="33" place="bottom"> + <label>33</label> + <bibl>Blankenburg, Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration (HM discussion papers 1978 — 23) 5 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="33" type="footnote" place="bottom"> + <label>33</label> + <bibl xml:id="bibl-60"> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author>, + <title level="a">Task Contingencies and National Administrative Culture as Determinants for Labour + Market Administration + </title> + (<title level="j">HM discussion papers</title> + <date when="1978">1978</date> + — + <idno type="document">23</idno>) + <citedRange unit="page" from="5">5 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Task Contingencies and National Administrative Culture as Determinants for Labour + Market Administration + </title> + <title level="j">HM discussion papers</title> + <idno type="document">23</idno> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <imprint> + <date when="1978">1978</date> + </imprint> + </monogr> + <citedRange unit="page" from="5">5 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-34"> + <input type="raw"><![CDATA[34 Zweigert/Kötz I 30 f.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="34" place="bottom"> + <label>34</label> + <bibl>Zweigert/Kötz I 30 f.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="34" type="footnote" place="bottom"> + <label>34</label> + <bibl xml:id="bibl-61"> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> + <biblScope unit="volume" from="I" to="I">I</biblScope> + <citedRange unit="page" from="30">30 f.</citedRange> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> + <imprint><date/></imprint> + <biblScope unit="volume" from="I" to="I">I</biblScope> + </monogr> + <citedRange unit="page" from="30">30 f.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-35"> + <input type="raw"><![CDATA[35 Dazu etwa Armer, Methodology Problems and Possibilities in Comparative Research, in: Armer/Grimsbaw 49 (50 ff.); Smelser 182 f.; Trommsdorf, Möglichkeiten und Probleme des Kulturvergleichs am Beispiel einer Agressionsstudie, KZfSS 30 (1978) 361 (364 ff.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="35" place="bottom"> + <label>35</label> + <seg>Dazu etwa</seg> + <bibl>Armer, Methodology Problems and Possibilities in Comparative Research, in: Armer/Grimsbaw 49 (50 ff.);</bibl> Smelser 182 f.; <bibl>Trommsdorf, Möglichkeiten und Probleme des Kulturvergleichs am Beispiel einer Agressionsstudie, KZfSS 30 (1978) 361 (364 ff.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="35" type="footnote" place="bottom"> + <label>35</label> + <note type="signal">Dazu etwa</note> + <bibl xml:id="bibl-62"> + <author> + <persName> + <surname>Armer</surname> + </persName> + </author>, + <title level="a">Methodology Problems and Possibilities in Comparative Research</title>, in: + <editor> + <persName> + <surname>Armer</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Grimsbaw</surname> + </persName> + </editor> + <biblScope unit="page" from="49">49</biblScope> + (<citedRange unit="page" from="50">50 ff.</citedRange>); + </bibl> + <bibl xml:id="bibl-63"> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> + <citedRange unit="page" from="182">182 f.</citedRange>; + </bibl> + <bibl xml:id="bibl-64"> + <author> + <persName> + <surname>Trommsdorf</surname> + </persName> + </author>, + <title level="a">Möglichkeiten und Probleme des Kulturvergleichs am Beispiel einer + Agressionsstudie + </title>, + <title level="j">KZfSS</title> + <biblScope unit="volume" from="30" to="30">30</biblScope> + (<date when="1978">1978</date>) + <biblScope unit="page" from="361">361</biblScope> + (<citedRange unit="page" from="364">364 ff.</citedRange>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Methodology Problems and Possibilities in Comparative Research</title> + <author> + <persName> + <surname>Armer</surname> + </persName> + </author> + <editor> + <persName> + <surname>Armer</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Grimsbaw</surname> + </persName> + </editor> + <imprint><date/></imprint> + <biblScope unit="page" from="49">49</biblScope> + </monogr> + <citedRange unit="page" from="50">50 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="182">182 f.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Möglichkeiten und Probleme des Kulturvergleichs am Beispiel einer + Agressionsstudie + </title> + <title level="j">KZfSS</title> + <author> + <persName> + <surname>Trommsdorf</surname> + </persName> + </author> + <imprint> + <date when="1978">1978</date> + </imprint> + <biblScope unit="volume" from="30" to="30">30</biblScope> + <biblScope unit="page" from="361">361</biblScope> + </monogr> + <citedRange unit="page" from="364">364 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-36"> + <input type="raw"><![CDATA[36 Wenn die Strenge elterlicher Strafen gemessen werden soll, kann man etwa darauf ausweichen, welche Strafe die Kinder am meisten fürchten, siehe Malewswka/Peyre, Juvenile Deliquency and Development, in: Szalai/Petrella 131 (157 f.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="36" place="bottom"> + <label>36</label> + <seg>Wenn die Strenge elterlicher Strafen gemessen werden soll, kann man etwa darauf ausweichen, welche Strafe die Kinder am meisten fürchten, siehe</seg> + <bibl>Malewswka/Peyre, Juvenile Deliquency and Development, in: Szalai/Petrella 131 (157 f.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="36" type="footnote" place="bottom"> + <label>36</label> + <note type="comment"> + Wenn die Strenge elterlicher Strafen gemessen werden soll, kann man etwa darauf + ausweichen, welche Strafe die Kinder am meisten fürchten + </note>, + <note type="signal">siehe</note> + <bibl xml:id="bibl-66"> + <author> + <persName> + <surname>Malewswka</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Peyre</surname> + </persName> + </author>, + <title level="a">Juvenile Deliquency and Development</title>, in: + <editor> + <persName> + <surname>Szalai</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Petrella</surname> + </persName> + </editor> + <biblScope unit="page" from="131">131</biblScope> + (<citedRange unit="page" from="157">157 f.</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Juvenile Deliquency and Development</title> + <author> + <persName> + <surname>Malewswka</surname> + </persName> + </author> + <author> + <persName> + <surname>Peyre</surname> + </persName> + </author> + <editor> + <persName> + <surname>Szalai</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Petrella</surname> + </persName> + </editor> + <imprint><date/></imprint> + <biblScope unit="page" from="131">131</biblScope> + </monogr> + <citedRange unit="page" from="157">157 f.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-37"> + <input type="raw"><![CDATA[37 Näher Scheuch, The Cross-Cultural Use of Sample Surveys — Problems of Comparability, in: Rokkan 176 (185) Biervert, Der internationale Vergleich, in: van Koolwiyk/Wieken-Mayser (Hrsg.), Techniken empirischer Sozialforschung, Bd. 2 (1975) 113 (124 ff.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="37" place="bottom"> + <label>37</label> + <seg>Näher</seg> + <bibl>Scheuch, The Cross-Cultural Use of Sample Surveys — Problems of Comparability, in: Rokkan 176 (185)</bibl> + <bibl>Biervert, Der internationale Vergleich, in: van Koolwiyk/Wieken-Mayser (Hrsg.), Techniken empirischer Sozialforschung, Bd. 2 (1975) 113 (124 ff.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="37" type="footnote" place="bottom"> + <label>37</label> + <note type="signal">Näher</note> + <bibl xml:id="bibl-67"> + <author> + <persName> + <surname>Scheuch</surname> + </persName> + </author>, + <title level="a">The Cross-Cultural Use of Sample Surveys — Problems of Comparability</title>, in: + <editor> + <persName> + <surname>Rokkan</surname> + </persName> + </editor> + <biblScope unit="page" from="176">176</biblScope> + (<citedRange unit="page" from="185" to="185">185</citedRange>) + </bibl> + <bibl xml:id="bibl-68"> + <author> + <persName> + <surname>Biervert</surname> + </persName> + </author>, + <title level="a">Der internationale Vergleich</title>, in: + <editor> + <persName> + <forename type="first">van</forename> + <surname>Koolwiyk</surname> + </persName> + </editor>/ + <surname> + <persName> + <surname>Wieken-Mayser</surname> + </persName> + </surname> + (Hrsg.), + <title level="m">Techniken empirischer Sozialforschung</title>, + <biblScope unit="volume" from="2" to="2">Bd. 2</biblScope> + (<date when="1975">1975</date>) + <biblScope unit="page" from="113">113</biblScope> + (<citedRange unit="page" from="124">124 ff.</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">The Cross-Cultural Use of Sample Surveys — Problems of Comparability</title> + <author> + <persName> + <surname>Scheuch</surname> + </persName> + </author> + <editor> + <persName> + <surname>Rokkan</surname> + </persName> + </editor> + <imprint><date/></imprint> + <biblScope unit="page" from="176">176</biblScope> + </monogr> + <citedRange unit="page" from="185" to="185">185</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Der internationale Vergleich</title> + <title level="m">Techniken empirischer Sozialforschung</title> + <author> + <persName> + <surname>Biervert</surname> + </persName> + </author> + <editor> + <persName> + <forename type="first">van</forename> + <surname>Koolwiyk</surname> + </persName> + </editor> + <imprint> + <date when="1975">1975</date> + </imprint> + <biblScope unit="volume" from="2" to="2">Bd. 2</biblScope> + <biblScope unit="page" from="113">113</biblScope> + </monogr> + <citedRange unit="page" from="124">124 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-38"> + <input type="raw"><![CDATA[38 Verba, The Uses of Survey Research in the Study of Comparative Politics — Issues and Strategies, in: Rokkan/Verba/Viet/Almasy 56 (80).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="38" place="bottom"> + <label>38</label> + <bibl>Verba, The Uses of Survey Research in the Study of Comparative Politics — Issues and Strategies, in: Rokkan/Verba/Viet/Almasy 56 (80).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="38" type="footnote" place="bottom"> + <label>38</label> + <bibl xml:id="bibl-69"> + <author> + <persName> + <surname>Verba</surname> + </persName> + </author>, + <title level="a">The Uses of Survey Research in the Study of Comparative Politics — Issues and + Strategies + </title>, in: + <editor> + <persName> + <surname>Rokkan</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Verba</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Viet</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Almasy</surname> + </persName> + </editor> + <biblScope unit="page" from="56">56</biblScope> + (<citedRange unit="page" from="80" to="80">80</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">The Uses of Survey Research in the Study of Comparative Politics — Issues and + Strategies + </title> + <author> + <persName> + <surname>Verba</surname> + </persName> + </author> + <editor> + <persName> + <surname>Rokkan</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Verba</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Viet</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Almasy</surname> + </persName> + </editor> + <imprint><date/></imprint> + <biblScope unit="page" from="56">56</biblScope> + </monogr> + <citedRange unit="page" from="80" to="80">80</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-39"> + <input type="raw"><![CDATA[39 Gessner, Soziologische Überlegungen zu einer Theorie der angewandten Rechtsvergleichung, in: Drobnig/Rehbinder 123 (134 ff.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="39" place="bottom"> + <label>39</label> + <bibl>Gessner, Soziologische Überlegungen zu einer Theorie der angewandten Rechtsvergleichung, in: Drobnig/Rehbinder 123 (134 ff.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="39" type="footnote" place="bottom"> + <label>39</label> + <bibl xml:id="bibl-70"> + <author> + <persName> + <surname>Gessner</surname> + </persName> + </author>, + <title level="a">Soziologische Überlegungen zu einer Theorie der angewandten Rechtsvergleichung + </title>, in: + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> + <biblScope unit="page" from="123">123</biblScope> + (<citedRange unit="page" from="134">134 ff.</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Soziologische Überlegungen zu einer Theorie der angewandten Rechtsvergleichung + </title> + <author> + <persName> + <surname>Gessner</surname> + </persName> + </author> + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> + <imprint><date/></imprint> + <biblScope unit="page" from="123">123</biblScope> + </monogr> + <citedRange unit="page" from="134">134 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-40"> + <input type="raw"><![CDATA[40 Nowak (oben N. 7) 42..]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="40" place="bottom"> + <label>40</label> + <bibl>Nowak (oben N. 7) 42..</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="40" type="footnote" place="bottom"> + <label>40</label> + <bibl xml:id="bibl-71"> + <author> + <persName> + <surname>Nowak</surname> + </persName> + </author> + (<ref type="footnote" n="7">oben N. 7</ref>) + <citedRange unit="page" from="42">42.</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Nowak</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="42">42.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-41"> + <input type="raw"><![CDATA[41 Für die Bedeutung der funktionalen Äquivalenz beruft man sich häufig auf Merton, der sie am Beispiel der Religion näher erläutert hat (Social Theory and Social Structure, New York, London, erweiterte Aufl. 1968, S. 82 ff.): Eine gemeinsame Religion erfüllt im allgemeinen bestimmte Funktionen, nämlich die der sozialen Kontrolle und der Integration auf der Ebene der Gefühle und des Glaubens. Deshalb hat man sie als notwendige Vorbedingung gesellschaftlichen Lebens angesehen. Tatsächlich scheint sie aber dafür nicht notwendig zu sein, da Äquivalente wie Nationalismus, politische Ideale und ethische Normen diese Funktionen ebenfalls erfüllen können. Für den intergesellschaftlichen Vergleich kann man daraus zweierlei entnehmen: Die religiöse Bindung muß nicht stets für die soziale Integration stehen. Ist das aber in einer Gesellschaft der Fall, so kann man doch in einer anderen davon abweichende Merkmale wie beispielsweise die nationale Einstellung verwenden.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="41" place="bottom"> + <label>41</label> + <seg>Für die Bedeutung der funktionalen Äquivalenz beruft man sich häufig auf</seg> + <bibl>Merton, der sie am Beispiel der Religion näher erläutert hat (Social Theory and Social Structure, New York, London, erweiterte Aufl. 1968, S. 82 ff.):</bibl> Eine gemeinsame Religion erfüllt im allgemeinen bestimmte Funktionen, nämlich die der sozialen Kontrolle und der Integration auf der Ebene der Gefühle und des Glaubens. Deshalb hat man sie als notwendige Vorbedingung gesellschaftlichen Lebens angesehen. Tatsächlich scheint sie aber dafür nicht notwendig zu sein, da Äquivalente wie Nationalismus, politische Ideale und ethische Normen diese Funktionen ebenfalls erfüllen können. Für den intergesellschaftlichen Vergleich kann man daraus zweierlei entnehmen: Die religiöse Bindung muß nicht stets für die soziale Integration stehen. Ist das aber in einer Gesellschaft der Fall, so kann man doch in einer anderen davon abweichende Merkmale wie beispielsweise die nationale Einstellung verwenden.</note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="41" type="footnote" place="bottom"> + <label>41</label> + <note type="comment">Für die Bedeutung der funktionalen Äquivalenz beruft man sich häufig auf</note> + <bibl xml:id="bibl-72"> + <author> + <persName> + <surname>Merton</surname> + </persName> + </author>, + <note type="comment">der sie am Beispiel der Religion näher erläutert hat</note> + (<title level="m">Social Theory and Social Structure</title>, + <pubPlace>New York, London</pubPlace>, + <edition>erweiterte Aufl.</edition> + <date when="1968">1968</date>, + <citedRange unit="page" from="82">S. 82 ff.</citedRange>): + </bibl> + <note type="comment"> + Eine gemeinsame Religion erfüllt im allgemeinen + bestimmte Funktionen, nämlich die der sozialen Kontrolle und der Integration auf der Ebene + der Gefühle und des Glaubens. Deshalb hat man sie als notwendige Vorbedingung gesellschaftlichen + Lebens angesehen. Tatsächlich scheint sie aber dafür nicht notwendig zu sein, + da Äquivalente wie Nationalismus, politische Ideale und ethische Normen diese Funktionen + ebenfalls erfüllen können. Für den intergesellschaftlichen Vergleich kann man daraus zweierlei + entnehmen: Die religiöse Bindung muß nicht stets für die soziale Integration stehen. Ist + das aber in einer Gesellschaft der Fall, so kann man doch in einer anderen davon abweichende + Merkmale wie beispielsweise die nationale Einstellung verwenden. + </note> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Social Theory and Social Structure</title> + <author> + <persName> + <surname>Merton</surname> + </persName> + </author> + <imprint> + <date when="1968">1968</date> + <pubPlace>New York, London</pubPlace> + </imprint> + </monogr> + <citedRange unit="page" from="82">S. 82 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-42"> + <input type="raw"><![CDATA[42 Gegenwärtig finden Bemühungen im Rahmen der OECD statt, soziale Indikatoren für das Gebiet „Persönliche Sicherheit und Rechtswesen" zu entwickeln. Allgemein wurde festgestellt: „While strict international comparability of social indicators may be impossible to achieve. indicators permitting broad and reasonable comparisons are feasible. The prerequisites for achieving general international comparability are: common conceptual framework; Standard and formulae; equivalent Statistical methods and comparable coverage of the primary data". OECD, The OECD Social Indicator Development Programme - 1976 Progress Report on Phase II (Paris 1977) 40.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="41" place="bottom"> + <label>42</label> + <seg>Gegenwärtig finden Bemühungen im Rahmen der OECD statt, soziale Indikatoren für das Gebiet „Persönliche Sicherheit und Rechtswesen" zu entwickeln. Allgemein wurde festgestellt: „While strict international comparability of social indicators may be impossible to achieve. indicators permitting broad and reasonable comparisons are feasible. The prerequisites for achieving general international comparability are: common conceptual framework; Standard and formulae; equivalent Statistical methods and comparable coverage of the primary data".</seg> + <bibl>OECD, The OECD Social Indicator Development Programme - 1976 Progress Report on Phase II (Paris 1977) 40.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="41" type="footnote" place="bottom"> + <label>42</label> + <note type="comment"> + Gegenwärtig finden Bemühungen im Rahmen der OECD statt, soziale Indikatoren für das + Gebiet „Persönliche Sicherheit und Rechtswesen" zu entwickeln. Allgemein wurde festgestellt: + „While strict international comparability of social indicators may be impossible to + achieve. indicators permitting broad and reasonable comparisons are feasible. The prerequisites + for achieving general international comparability are: common conceptual framework; + Standard and formulae; equivalent Statistical methods and comparable coverage of the primary + data". + </note> + <bibl xml:id="bibl-73"> + <publisher> + <persName> + <surname>OECD</surname> + </persName> + </publisher>, + <title level="m">The OECD Social Indicator Development Programme - 1976 Progress Report on Phase + II + </title> + (<pubPlace>Paris</pubPlace> + <date when="1977">1977</date>) + <citedRange unit="page" from="40" to="40">40</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The OECD Social Indicator Development Programme - 1976 Progress Report on Phase + II + </title> + <imprint> + <date when="1977">1977</date> + <pubPlace>Paris</pubPlace> + <publisher> + <persName> + <surname>OECD</surname> + </persName> + </publisher> + </imprint> + </monogr> + <citedRange unit="page" from="40" to="40">40</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-43"> + <input type="raw"><![CDATA[43 Rheinstein, Marriage Stability, Divorce, and the Law (Chicago 1972).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="43" place="bottom"> + <label>43</label> + <bibl>Rheinstein, Marriage Stability, Divorce, and the Law (Chicago 1972).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="43" type="footnote" place="bottom"> + <label>43</label> + <bibl xml:id="bibl-74"> + <author> + <persName> + <surname>Rheinstein</surname> + </persName> + </author>, + <title level="m">Marriage Stability, Divorce, and the Law</title> + (<pubPlace>Chicago</pubPlace> + <date when="1972">1972</date>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Marriage Stability, Divorce, and the Law</title> + <author> + <persName> + <surname>Rheinstein</surname> + </persName> + </author> + <imprint> + <date when="1972">1972</date> + <pubPlace>Chicago</pubPlace> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-44"> + <input type="raw"><![CDATA[44 Abel (oben N. 4) 194 ff., 221 f. - Siehe auch Wilpert, Die Messung von Mitbestimmungsnormen — Darstellung eines international vergleichenden Forschungsansatzes HM-Paper (1979—13) 1979 2 ff. - Zur Behandlung der „Kultur" in vergleichenden Untersuchungen näher Scheuch (oben N. 37) 197 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="44" place="bottom"> + <label>44</label> + <bibl>Abel (oben N. 4) 194 ff., 221 f. -</bibl> Siehe auch <bibl>Wilpert, Die Messung von Mitbestimmungsnormen — Darstellung eines international vergleichenden Forschungsansatzes HM-Paper (1979—13) 1979 2 ff.</bibl> - Zur Behandlung der „Kultur" in vergleichenden Untersuchungen näher <bibl>Scheuch (oben N. 37) 197 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="44" type="footnote" place="bottom"> + <label>44</label> + <bibl xml:id="bibl-75"> + <author> + <persName> + <surname>Abel</surname> + </persName> + </author> + (<ref type="footnote" n="4">oben N. 4</ref>) + <citedRange unit="page" from="194">194 ff.</citedRange>, + <citedRange unit="page" from="221">221 f.</citedRange> + </bibl>- + <note type="signal">Siehe auch</note> + <bibl xml:id="bibl-76"> + <author> + <persName> + <surname>Wilpert</surname> + </persName> + </author>, + <title level="a">Die Messung von Mitbestimmungsnormen — Darstellung eines international + vergleichenden Forschungsansatzes + </title> + <title level="s">HM-Paper </title> + (<idno>1979—13</idno>) + <date when="1979">1979</date> + <citedRange unit="page" from="13">2 ff</citedRange> + </bibl>. + <note type="signal">- Zur Behandlung der „Kultur" in vergleichenden Untersuchungen näher</note> + <bibl xml:id="bibl-77"> + <author> + <persName> + <surname>Scheuch</surname> + </persName> + </author> + (<ref type="footnote" n="37">oben N. 37</ref>) + <citedRange unit="page" from="197">197 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Abel</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="194">194 ff.</citedRange> + <citedRange unit="page" from="221">221 f.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Die Messung von Mitbestimmungsnormen — Darstellung eines international + vergleichenden Forschungsansatzes + </title> + <title level="s">HM-Paper </title> + <idno>1979—13</idno> + <author> + <persName> + <surname>Wilpert</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + </monogr> + <citedRange unit="page" from="13">2 ff</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Scheuch</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="197">197 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-45"> + <input type="raw"><![CDATA[45 Abel (oben N. 4) 207 ff. — Siehe auch Constantinesco, Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise, Zeitschrift für Rechtsvergleichung 19 (1978) 161 ff..]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="45" place="bottom"> + <label>45</label> + <bibl>Abel (oben N. 4) 207 ff.</bibl> — Siehe auch <bibl>Constantinesco, Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise, Zeitschrift für Rechtsvergleichung 19 (1978) 161 ff..</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="45" type="footnote" place="bottom"> + <label>45</label> + <bibl xml:id="bibl-78"> + <author> + <persName> + <surname>Abel</surname> + </persName> + </author> + (<ref type="footnote" n="4">oben N. 4</ref>) + <citedRange unit="page" from="207">207 ff</citedRange> + </bibl>. + <note type="signal">— Siehe auch</note> + <bibl xml:id="bibl-79"> + <author> + <persName> + <surname>Constantinesco</surname> + </persName> + </author>, + <title level="a">Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise</title>, + <title level="j">Zeitschrift für Rechtsvergleichung</title> + <biblScope unit="volume" from="19" to="19">19</biblScope> + (<date when="1978">1978</date>) + <citedRange unit="page" from="161">161 ff.</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Abel</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="207">207 ff</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise</title> + <title level="j">Zeitschrift für Rechtsvergleichung</title> + <author> + <persName> + <surname>Constantinesco</surname> + </persName> + </author> + <imprint> + <date when="1978">1978</date> + </imprint> + <biblScope unit="volume" from="19" to="19">19</biblScope> + </monogr> + <citedRange unit="page" from="161">161 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-46"> + <input type="raw"><![CDATA[46 Siehe Blankenburg (oben N. 33) 3 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="46" place="bottom"> + <label>46</label> + <seg>Siehe</seg> + <bibl>Blankenburg (oben N. 33) 3 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="46" type="footnote" place="bottom"> + <label>46</label> + <note type="signal">Siehe</note> + <bibl xml:id="bibl-80"> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + (<ref type="footnote" n="33">oben N. 33</ref>) + <citedRange unit="page" from="3">3 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="3">3 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-47"> + <input type="raw"><![CDATA[47 Rose (oben N. 7) 176.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="47" place="bottom"> + <label>47</label> + <bibl>Rose (oben N. 7) 176.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="47" type="footnote" place="bottom"> + <label>47</label> + <bibl xml:id="bibl-81"> + <author> + <persName> + <surname>Rose</surname> + </persName> + </author> + (<ref type="footnote" n="7">oben N. 7</ref>) + <citedRange unit="page" from="176" to="176">176</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Rose</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="176" to="176">176</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-48"> + <input type="raw"><![CDATA[48 Dazu etwa Benda-Beckmann (oben N. 4) 55 ff.; Constantinesco, Über den Stil der „Stiltheorie" in der Rechtsvergleichung, ZvglRW 78 (1979) 154 ff. mwNachw. — Eine vergleichbare Debatte über „ähnliche“und „unähnliche Gesellschaften“wird seit Dürkheim auch in der Soziologie geführt. Siehe Payne (oben N. 13) 16 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="48" place="bottom"> + <label>48</label> + <seg>Dazu etwa</seg> + <bibl>Benda-Beckmann (oben N. 4) 55 ff.;</bibl> + <bibl>Constantinesco, Über den Stil der „Stiltheorie" in der Rechtsvergleichung, ZvglRW 78 (1979) 154 ff.</bibl> mwNachw. — Eine vergleichbare Debatte über „ähnliche“und „unähnliche Gesellschaften“wird seit Dürkheim auch in der Soziologie geführt. Siehe <bibl>Payne (oben N. 13) 16 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="48" type="footnote" place="bottom"> + <label>48</label> + <note type="signal">Dazu etwa</note> + <bibl xml:id="bibl-82"> + <author> + <persName> + <surname>Benda-Beckmann</surname> + </persName> + </author> + (<ref type="footnote" n="4">oben N. 4</ref>) + <citedRange unit="page" from="55">55 ff.</citedRange> + </bibl>; + <bibl xml:id="bibl-83"> + <author> + <persName> + <surname>Constantinesco</surname> + </persName> + </author>, + <title level="a">Über den Stil der „Stiltheorie" in der Rechtsvergleichung</title>, + <title level="j">ZvglRW</title> + <biblScope unit="volume" from="78" to="78">78</biblScope> + (<date when="1979">1979</date>) + <citedRange unit="page" from="154">154 ff.</citedRange> + </bibl> + <note type="comment"> + mwNachw. — Eine vergleichbare Debatte über „ähnliche“ und „unähnliche + Gesellschaften“ wird seit Dürkheim auch in der Soziologie geführt. + </note> + <note type="signal">Siehe</note> + <bibl xml:id="bibl-84"> + <author> + <persName> + <surname>Payne</surname> + </persName> + </author> + (<ref type="footnote" n="13">oben N. 13</ref>) + <citedRange unit="page" from="16">16 ff.</citedRange> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Benda-Beckmann</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="55">55 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Über den Stil der „Stilthe orie" in der Rechtsvergleichung</title> + <title level="j">ZvglRW</title> + <author> + <persName> + <surname>Constantinesco</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + <biblScope unit="volume" from="78" to="78">78</biblScope> + </monogr> + <citedRange unit="page" from="154">154 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Payne</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="16">16 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-49"> + <input type="raw"><![CDATA[49 Siehe Zweigert/Kötz I 70.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="49" place="bottom"> + <label>49</label> + <seg>Siehe Zweigert/Kötz I 70.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="49" type="footnote" place="bottom"> + <label>49</label> + <note type="signal">Siehe</note> + <bibl xml:id="bibl-85"> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> + <biblScope unit="volume" from="I" to="I">I</biblScope> + <citedRange unit="page" from="70" to="70">70</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> + <imprint><date/></imprint> + <biblScope unit="volume" from="I" to="I">I</biblScope> + </monogr> + <citedRange unit="page" from="70" to="70">70</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-50"> + <input type="raw"><![CDATA[50 Hofstede, Cultural Determinants of the Exercise of Power in a Hierarchy (European Institute for Advanced Studies in Management Working Paper 1977-8). Mimeographed, Ebenso für das Arbeitsrecht Däubler (oben N. 32) 33, der auch die skandinavischen Länder in diese Gruppe aufnimmt.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="50" place="bottom"> + <label>50</label> + <bibl>Hofstede, Cultural Determinants of the Exercise of Power in a Hierarchy (European Institute for Advanced Studies in Management Working Paper 1977-8).</bibl> Mimeographed, Ebenso für das Arbeitsrecht <bibl>Däubler (oben N. 32) 33,</bibl> der auch die skandinavischen Länder in diese Gruppe aufnimmt.</note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="50" type="footnote" place="bottom"> + <label>50</label> + <bibl xml:id="bibl-86"> + <author> + <persName> + <surname>Hofstede</surname> + </persName> + </author>, + <title level="a">Cultural Determinants of the Exercise of Power in a Hierarchy</title> + (<title level="j">European Institute for Advanced Studies in Management Working Paper</title> + <idno type="document">1977-8</idno>). + </bibl> + <note type="document-type">Mimeographed</note>, + <note type="signal">Ebenso für das Arbeitsrecht</note> + <bibl xml:id="bibl-87"> + <author> + <persName> + <surname>Däubler</surname> + </persName> + </author> + (<ref type="footnote" n="32">oben N. 32</ref>) + <citedRange unit="page" from="33" to="33">33</citedRange>, + </bibl> + <note type="comment">der auch die skandinavischen Länder in diese Gruppe aufnimmt.</note> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Cultural Determinants of the Exercise of Power in a Hierarchy</title> + <title level="j">European Institute for Advanced Studies in Management Working Paper</title> + <idno type="document">1977-8</idno> + <author> + <persName> + <surname>Hofstede</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Däubler</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="33" to="33">33</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-51"> + <input type="raw"><![CDATA[51 Dazu Zweigert/Kötz 1 110 f. — Kritisch Benda-Beckmann (oben N. 4) 58 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="51" place="bottom"> + <label>51</label> + <seg>Dazu</seg> + <bibl>Zweigert/Kötz 1 110 f. —</bibl> Kritisch <bibl>Benda-Beckmann (oben N. 4) 58 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="51" type="footnote" place="bottom"> + <label>51</label> + <note type="signal">Dazu</note> + <bibl xml:id="bibl-88"> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> + <biblScope unit="volume" from="1" to="1">1</biblScope> + <citedRange unit="page" from="110">110 f.</citedRange> + </bibl>— + <note type="signal">Kritisch</note> + <bibl xml:id="bibl-89"> + <author> + <persName> + <surname>Benda-Beckmann</surname> + </persName> + </author> + (<ref type="footnote" n="4">oben N. 4</ref>) + <citedRange unit="page" from="58">58 ff.</citedRange> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> + <imprint><date/></imprint> + <biblScope unit="volume" from="1" to="1">1</biblScope> + </monogr> + <citedRange unit="page" from="110">110 f.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Benda-Beckmann</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="58">58 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-52"> + <input type="raw"><![CDATA[52 IDE-International Research Group, Industrial Democracy in Europe (erscheint bei Oxford University Press, London 1980) Chapter VIII.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="52" place="bottom"> + <label>52</label> + <bibl>IDE-International Research Group, Industrial Democracy in Europe (erscheint bei Oxford University Press, London 1980) Chapter VIII.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="52" type="footnote" place="bottom"> + <label>52</label> + <bibl xml:id="bibl-90"> + <author> + <persName> + <forename type="first">IDE-International</forename> + <forename type="middle">Research</forename> + <surname>Group</surname> + </persName> + </author>, + <title level="m">Industrial Democracy in Europe</title> + (erscheint bei + <publisher>Oxford University Press,</publisher> + <pubPlace>London</pubPlace> + <date when="1980">1980</date>) + <citedRange unit="chapter" from="VIII">Chapter VIII</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Industrial Democracy in Europe</title> + <author> + <persName> + <forename type="first">IDE-International</forename> + <forename type="middle">Research</forename> + <surname>Group</surname> + </persName> + </author> + <imprint> + <date when="1980">1980</date> + <pubPlace>London</pubPlace> + <publisher>Oxford University Press,</publisher> + </imprint> + </monogr> + <citedRange unit="chapter" from="VIII">Chapter VIII</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-53"> + <input type="raw"><![CDATA[53 Zweigert/Kötz I 78.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="53" place="bottom"> + <label>53</label> + <seg>Zweigert/Kötz I 78.</seg> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="53" type="footnote" place="bottom"> + <label>53</label> + <bibl xml:id="bibl-91"> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> + <biblScope unit="volume" from="I" to="I">I</biblScope> + <citedRange unit="page" from="78" to="78">78</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> + <imprint><date/></imprint> + <biblScope unit="volume" from="I" to="I">I</biblScope> + </monogr> + <citedRange unit="page" from="78" to="78">78</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-54"> + <input type="raw"><![CDATA[54 IDE-International Research Group (oben N. 52) Chapter VIII.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="54" place="bottom"> + <label>54</label> + <bibl>IDE-International Research Group (oben N. 52) Chapter VIII.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="54" type="footnote" place="bottom"> + <label>54</label> + <bibl xml:id="bibl-92"> + <publisher> + <persName> + <forename type="first">IDE-International</forename> + <forename type="middle">Research</forename> + <surname>Group</surname> + </persName> + </publisher> + (<ref type="footnote" n="52">oben N. 52</ref>) + <citedRange unit="chapter" from="VIII">Chapter VIII</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <imprint> + <publisher> + <persName> + <forename type="first">IDE-International</forename> + <forename type="middle">Research</forename> + <surname>Group</surname> + </persName> + </publisher> + </imprint> + </monogr> + <citedRange unit="chapter" from="VIII">Chapter VIII</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-55"> + <input type="raw"><![CDATA[55 Dafür Däubler (oben N. 32) 33.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="55" place="bottom"> + <label>55</label> + <seg>Dafür</seg> + <bibl>Däubler (oben N. 32) 33.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="55" type="footnote" place="bottom"> + <label>55</label> + <note type="signal">Dafür</note> + <bibl xml:id="bibl-93"> + <author> + <persName> + <surname>Däubler</surname> + </persName> + </author> + (<ref type="footnote" n="32">oben N. 32</ref>) + <citedRange unit="page" from="33" to="33">33</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Däubler</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="33" to="33">33</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-56"> + <input type="raw"><![CDATA[56 Siehe dazu Rheinstein, Die Rechtshonoratioren und ihr Einfluß auf Charakter und Funk tion der Rechtsordnungen, RabelsZ 34 (1970) 1 ff.; Bernstein, Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der Rechtsvergleichung, RabelsZ 34 (1970) 443 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="56" place="bottom"> + <label>56</label> + <seg>Siehe dazu</seg> + <bibl>Rheinstein, Die Rechtshonoratioren und ihr Einfluß auf Charakter und Funk tion der Rechtsordnungen, RabelsZ 34 (1970) 1 ff.;</bibl> + <bibl>Bernstein, Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der Rechtsvergleichung, RabelsZ 34 (1970) 443 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="56" type="footnote" place="bottom"> + <label>56</label> + <note type="signal">Siehe dazu</note> + <bibl xml:id="bibl-94"> + <author> + <persName> + <surname>Rheinstein</surname> + </persName> + </author>, + <title level="a">Die Rechtshonoratioren und ihr Einfluß auf Charakter und Funk tion der + Rechtsordnungen + </title>, + <title level="j">RabelsZ</title> + <biblScope unit="volume" from="34" to="34">34</biblScope> + (<date when="1970">1970</date>) + <citedRange unit="page" from="1">1 ff.</citedRange>; + </bibl> + <bibl xml:id="bibl-95"> + <author> + <persName> + <surname>Bernstein</surname> + </persName> + </author>, + <title level="a">Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der + Rechtsvergleichung + </title>, + <title level="j">RabelsZ</title> + <biblScope unit="volume" from="34" to="34">34</biblScope> + (<date when="1970">1970</date>) + <citedRange unit="page" from="443">443 ff.</citedRange> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Die Rechtshonoratioren und ihr Einfluß auf Charakter und Funk tion der + Rechtsordnungen + </title> + <title level="j">RabelsZ</title> + <author> + <persName> + <surname>Rheinstein</surname> + </persName> + </author> + <imprint> + <date when="1970">1970</date> + </imprint> + <biblScope unit="volume" from="34" to="34">34</biblScope> + </monogr> + <citedRange unit="page" from="1">1 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der + Rechtsvergleichung + </title> + <title level="j">RabelsZ</title> + <author> + <persName> + <surname>Bernstein</surname> + </persName> + </author> + <imprint> + <date when="1970">1970</date> + </imprint> + <biblScope unit="volume" from="34" to="34">34</biblScope> + </monogr> + <citedRange unit="page" from="443">443 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-57"> + <input type="raw"><![CDATA[57 Dazu etwa Rueschemeyer, Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in Germany and the United States (Cambridge, Mass. 1973); ders., The Legal Profession in Comparative Perspective, in: H. M. Johnson, Social System and Legal Process (San Francisco, Washington, London 1978) 97 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="57" place="bottom"> + <label>57</label> + <seg>Dazu etwa</seg> + <bibl>Rueschemeyer, Lawyers and their Societies --A Comparative Analysis of the Legal Profession in Germany and the United States (Cambridge, Mass. 1973);</bibl> + <bibl>ders., The Legal Profession in Comparative Perspective, in: H. M. Johnson, Social System and Legal Process (San Francisco, Washington, London 1978) 97 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="57" type="footnote" place="bottom"> + <label>57</label> + <note type="signal">Dazu etwa</note> + <bibl xml:id="bibl-96"> + <author> + <persName> + <surname>Rueschemeyer</surname> + </persName> + </author>, + <title level="m">Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in + Germany and the United States + </title> + (<pubPlace>Cambridge, Mass</pubPlace>. + <date when="1973">1973</date>); + </bibl> + <bibl xml:id="bibl-97"> + <author/> + <ref type="previous-author">ders.</ref>, + <title level="a">The Legal Profession in Comparative Perspective</title>, in: + <editor> + <persName> + <forename type="first">H.</forename> + <forename type="middle">M.</forename> + <surname>Johnson</surname> + </persName> + </editor>, + <title level="m">Social System and Legal Process</title> + (<pubPlace>San Francisco, Washington, London</pubPlace> + <date when="1978">1978</date>) + <citedRange unit="page" from="97">97 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in + Germany and the United States + </title> + <author> + <persName> + <surname>Rueschemeyer</surname> + </persName> + </author> + <imprint> + <date when="1973">1973</date> + <pubPlace>Cambridge, Mass</pubPlace> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">The Legal Profession in Comparative Perspective</title> + <title level="m">Social System and Legal Process</title> + <author> + <persName> + <surname>ders</surname> + </persName> + </author> + <editor> + <persName> + <forename type="first">H.</forename> + <forename type="middle">M.</forename> + <surname>Johnson</surname> + </persName> + </editor> + <imprint> + <date when="1978">1978</date> + <pubPlace>San Francisco, Washington, London</pubPlace> + </imprint> + </monogr> + <citedRange unit="page" from="97">97 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-58"> + <input type="raw"><![CDATA[58 Klausa, Politische Inhaltsanalyse von Rechtslehrertexten, ZfS 8 (1979) 362 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="58" place="bottom"> + <label>58</label> + <bibl>Klausa, Politische Inhaltsanalyse von Rechtslehrertexten, ZfS 8 (1979) 362 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="58" type="footnote" place="bottom"> + <label>58</label> + <bibl xml:id="bibl-98"> + <author> + <persName> + <surname>Klausa</surname> + </persName> + </author>, + <title level="a">Politische Inhaltsanalyse von Rechtslehrertexten</title>, + <title level="j">ZfS</title> + <biblScope unit="volume" from="8" to="8">8</biblScope> + (<date when="1979">1979</date>) + <citedRange unit="page" from="362">362 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Politische Inhaltsanalyse von Rechtslehrertexten</title> + <title level="j">ZfS</title> + <author> + <persName> + <surname>Klausa</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + <biblScope unit="volume" from="8" to="8">8</biblScope> + </monogr> + <citedRange unit="page" from="362">362 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-59"> + <input type="raw"><![CDATA[59 Siehe Nowak (oben N. 7) 23 ff.; Smelser 167 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="59" place="bottom"> + <label>59</label> + <seg>Siehe</seg> + <bibl>Nowak (oben N. 7) 23 ff.;</bibl> Smelser 167 ff.</note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="59" type="footnote" place="bottom"> + <label>59</label> + <note type="signal">Siehe</note> + <bibl xml:id="bibl-99"> + <author> + <persName> + <surname>Nowak</surname> + </persName> + </author> + (<ref type="footnote" n="7">oben N. 7</ref>) + <citedRange unit="page" from="23">23 ff.</citedRange> + </bibl>; + <bibl xml:id="bibl-100"> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> + <citedRange unit="page" from="167">167 ff.</citedRange> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Nowak</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="23">23 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="167">167 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-60"> + <input type="raw"><![CDATA[60 Dazu näher Teune, Analysis and Interpretation in Cross-National Survey Research, in: Szalai/Petrella 95 (101).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="60" place="bottom"> + <label>60</label> + <seg>Dazu näher</seg> + <bibl>Teune, Analysis and Interpretation in Cross-National Survey Research, in: Szalai/Petrella 95 (101).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="60" type="footnote" place="bottom"> + <label>60</label> + <note type="signal">Dazu näher</note> + <bibl xml:id="bibl-101"> + <author> + <persName> + <surname>Teune</surname> + </persName> + </author>, + <title level="a">Analysis and Interpretation in Cross-National Survey Research</title>, in: + <editor> + <persName> + <surname>Szalai</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Petrella</surname> + </persName> + </editor> + <biblScope unit="page" from="95">95</biblScope> + (<citedRange unit="page" from="101" to="101">101</citedRange>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Analysis and Interpretation in Cross-National Survey Research</title> + <author> + <persName> + <surname>Teune</surname> + </persName> + </author> + <editor> + <persName> + <surname>Szalai</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Petrella</surname> + </persName> + </editor> + <imprint><date/></imprint> + <biblScope unit="page" from="95">95</biblScope> + </monogr> + <citedRange unit="page" from="101" to="101">101</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-61"> + <input type="raw"><![CDATA[61 Siehe dazu Nader/Todd, The Disputing Process — Law in Ten Societies (New York 1978).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="61" place="bottom"> + <label>61</label> + <seg>Siehe dazu</seg> + <bibl>Nader/Todd, The Disputing Process — Law in Ten Societies (New York 1978).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="61" type="footnote" place="bottom"> + <label>61</label> + <note type="signal">Siehe dazu</note> + <bibl xml:id="bibl-102"> + <author> + <persName> + <surname>Nader</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Todd</surname> + </persName> + </author>, + <title level="m">The Disputing Process — Law in Ten Societies</title> + (<pubPlace>New York</pubPlace> + <date when="1978">1978</date>). + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">The Disputing Process — Law in Ten Societies</title> + <author> + <persName> + <surname>Nader</surname> + </persName> + </author> + <author> + <persName> + <surname>Todd</surname> + </persName> + </author> + <imprint> + <date when="1978">1978</date> + <pubPlace>New York</pubPlace> + </imprint> + </monogr> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-62"> + <input type="raw"><![CDATA[62 Siehe zum entsprechenden Problem in der Kriminologie Kaiser (oben N. 22) 88 mwNachw.; Blazicek/Janeksela (oben N. 30) 235 f., 242.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="62" place="bottom"> + <label>62</label> + <seg>Siehe zum entsprechenden Problem in der Kriminologie</seg> + <bibl>Kaiser (oben N. 22) 88 mwNachw.;</bibl> + <bibl>Blazicek/Janeksela (oben N. 30) 235 f., 242.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="62" type="footnote" place="bottom"> + <label>62</label> + <note type="signal">Siehe zum entsprechenden Problem in der Kriminologie</note> + <bibl xml:id="bibl-103"> + <author> + <persName> + <surname>Kaiser</surname> + </persName> + </author> + (<ref type="footnote" n="22">oben N. 22</ref>) + <citedRange unit="page" from="88" to="88">88</citedRange> + <note type="comment">mwNachw.</note> + </bibl>; + <bibl xml:id="bibl-104"> + <author> + <persName> + <surname>Blazicek</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Janeksela</surname> + </persName> + </author> + (<ref type="footnote" n="30">oben N. 30</ref>) + <citedRange unit="page" from="235">235 f.</citedRange>, + <citedRange unit="page" from="242" to="242">242</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Kaiser</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="88" to="88">88</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Blazicek</surname> + </persName> + </author> + <author> + <persName> + <surname>Janeksela</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="235">235 f.</citedRange> + <citedRange unit="page" from="242" to="242">242</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-63"> + <input type="raw"><![CDATA[63 Clinard, Comparative Crime Victimization Surveys — Some Problems and Results, Int. J. Crim, and Pen. 6 (1978) 221 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="63" place="bottom"> + <label>63</label> + <bibl>Clinard, Comparative Crime Victimization Surveys — Some Problems and Results, Int. J. Crim, and Pen. 6 (1978) 221 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="63" type="footnote" place="bottom"> + <label>63</label> + <bibl xml:id="bibl-105"> + <author> + <persName> + <surname>Clinard</surname> + </persName> + </author>, + <title level="a">Comparative Crime Victimization Surveys — Some Problems and Results</title>, + <title level="j">Int. J. Crim, and Pen</title>. + <biblScope unit="volume" from="6" to="6">6</biblScope> + (<date when="1978">1978</date>) + <citedRange unit="page" from="221">221 ff.</citedRange> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Comparative Crime Victimization Surveys — Some Problems and Results</title> + <title level="j">Int. J. Crim, and Pen</title> + <author> + <persName> + <surname>Clinard</surname> + </persName> + </author> + <imprint> + <date when="1978">1978</date> + </imprint> + <biblScope unit="volume" from="6" to="6">6</biblScope> + </monogr> + <citedRange unit="page" from="221">221 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-64"> + <input type="raw"><![CDATA[64 Siehe Abel-Smith/Zander/Brooke, Legal Problems and the Citizen (London 1973); Rokumoto, Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in International Comparison, ZfS 7 (1978) 228 ff.; Schuyt/Groenendijk/Sloot, Rechtsprobleme oder private Schwierigkeiten — Die Inanspruchnahme von Rechtshilfe in den Niederlanden, in: Jahrbuch für Rechtssoziologie und Rechtstheorie 5 (1978) 109 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="64" place="bottom"> + <label>64</label> + <seg>Siehe</seg> + <bibl>Abel-Smith/Zander/Brooke, Legal Problems and the Citizen (London 1973);</bibl> + <bibl>Rokumoto, Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in International Comparison, ZfS 7 (1978) 228 ff.;</bibl> + <bibl>Schuyt/Groenendijk/Sloot, Rechtsprobleme oder private Schwierigkeiten — Die Inanspruchnahme von Rechtshilfe in den Niederlanden, in: Jahrbuch für Rechtssoziologie und Rechtstheorie 5 (1978) 109 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="64" type="footnote" place="bottom"> + <label>64</label> + <note type="signal">Siehe</note> + <bibl xml:id="bibl-106"> + <author> + <persName> + <surname>Abel-Smith</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Zander</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Brooke</surname> + </persName> + </author>, + <title level="m">Legal Problems and the Citizen</title> + (<pubPlace>London</pubPlace> + <date when="1973">1973</date>); + </bibl> + <bibl xml:id="bibl-107"> + <author> + <persName> + <surname>Rokumoto</surname> + </persName> + </author>, + <title level="a">Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in + International Comparison + </title>, + <title level="j">ZfS</title> + <biblScope unit="volume" from="7" to="7">7</biblScope> + (<date when="1978">1978</date>) + <citedRange unit="page" from="228">228 ff.</citedRange>; + </bibl> + <bibl xml:id="bibl-108"> + <author> + <persName> + <surname>Schuyt</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Groenendijk</surname> + </persName> + </author>/ + <author> + <persName> + <surname>Sloot</surname> + </persName> + </author>, + <title level="a">Rechtsprobleme oder private Schwierigkeiten — Die Inanspruchnahme von Rechtshilfe + in den Niederlanden + </title>, in: + <title level="j">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> + <biblScope unit="volume" from="5" to="5">5</biblScope> + (<date when="1978">1978</date>) + <citedRange unit="page" from="109">109 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Legal Problems and the Citizen</title> + <author> + <persName> + <surname>Abel-Smith</surname> + </persName> + </author> + <author> + <persName> + <surname>Zander</surname> + </persName> + </author> + <author> + <persName> + <surname>Brooke</surname> + </persName> + </author> + <imprint> + <date when="1973">1973</date> + <pubPlace>London</pubPlace> + </imprint> + </monogr> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in + International Comparison + </title> + <title level="j">ZfS</title> + <author> + <persName> + <surname>Rokumoto</surname> + </persName> + </author> + <imprint> + <date when="1978">1978</date> + </imprint> + <biblScope unit="volume" from="7" to="7">7</biblScope> + </monogr> + <citedRange unit="page" from="228">228 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="a">Rechtsprobleme oder private Schwierigkeiten — Die Inanspruchnahme von Rechtshilfe + in den Niederlanden + </title> + <title level="j">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> + <author> + <persName> + <surname>Schuyt</surname> + </persName> + </author> + <author> + <persName> + <surname>Groenendijk</surname> + </persName> + </author> + <author> + <persName> + <surname>Sloot</surname> + </persName> + </author> + <imprint> + <date when="1978">1978</date> + </imprint> + <biblScope unit="volume" from="5" to="5">5</biblScope> + </monogr> + <citedRange unit="page" from="109">109 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-65"> + <input type="raw"><![CDATA[65 Dazu Podgdrecki, Comparative Studies on the Attitudes Towards Various Legal Systems, Polish Sociological Bulletin 21 No. 1 (1970) 83 (88 ff.) — Siehe auch Ziegert Zur Effektivität der Rechtssoziologie: die Rekonstruktion der Gesellschaft durch Recht (1975) 196 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="65" place="bottom"> + <label>65</label> + <seg>Dazu</seg> + <bibl>Podgdrecki, Comparative Studies on the Attitudes Towards Various Legal Systems, Polish Sociological Bulletin 21 No. 1 (1970) 83 (88 ff.) —</bibl> Siehe auch <bibl>Ziegert Zur Effektivität der Rechtssoziologie: die Rekonstruktion der Gesellschaft durch Recht (1975) 196 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="65" type="footnote" place="bottom"> + <label>65</label> + <note type="signal">Dazu</note> + <bibl xml:id="bibl-109"> + <author> + <persName> + <surname>Podgdrecki</surname> + </persName> + </author>, + <title level="a">Comparative Studies on the Attitudes Towards Various Legal Systems</title>, + <title level="j">Polish Sociological Bulletin</title> + <biblScope unit="volume" from="21" to="21">21</biblScope> + <biblScope unit="issue" from="1" to="1">No. 1</biblScope> + (<date when="1970">1970</date>) + <biblScope unit="page" from="83">83</biblScope> + (<citedRange unit="page" from="88">88 ff.</citedRange>) + </bibl>— + <note type="signal">Siehe auch</note> + <bibl xml:id="bibl-110"> + <author> + <persName> + <surname>Ziegert</surname> + </persName> + </author> + <title level="m">Zur Effektivität der Rechtssoziologie: die Rekonstruktion der Gesellschaft durch Recht</title> + (<date when="1975">1975</date>) + <citedRange unit="page" from="196">196 ff.</citedRange> + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Comparative Studies on the Attitudes Towards Various Legal Systems</title> + <title level="j">Polish Sociological Bulletin</title> + <author> + <persName> + <surname>Podgdrecki</surname> + </persName> + </author> + <imprint> + <date when="1970">1970</date> + </imprint> + <biblScope unit="volume" from="21" to="21">21</biblScope> + <biblScope unit="issue" from="1" to="1">No. 1</biblScope> + <biblScope unit="page" from="83">83</biblScope> + </monogr> + <citedRange unit="page" from="88">88 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">Zur Effektivität der Rechtssoziologie: die Rekonstruktion der Gesellschaft durch Recht</title> + <author> + <persName> + <surname>Ziegert</surname> + </persName> + </author> + <imprint> + <date when="1975">1975</date> + </imprint> + </monogr> + <citedRange unit="page" from="196">196 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-66"> + <input type="raw"><![CDATA[66 Siehe Podgdrecki, Legal Consciousness as a Research Problem, European Yearbook in Law and Sociology 1977 (Den Haag 1977) 85 (88 ff.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="66" place="bottom"> + <label>66</label> + <seg>Siehe</seg> + <bibl>Podgdrecki, Legal Consciousness as a Research Problem, European Yearbook in Law and Sociology 1977 (Den Haag 1977) 85 (88 ff.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="66" type="footnote" place="bottom"> + <label>66</label> + <note type="signal">Siehe</note> + <bibl xml:id="bibl-111"> + <author> + <persName> + <surname>Podgdrecki</surname> + </persName> + </author>, + <title level="a">Legal Consciousness as a Research Problem</title>, + <title level="j">European Yearbook in Law and Sociology 1977</title> + (<pubPlace>Den Haag</pubPlace> + <date when="1977">1977</date>) + <biblScope unit="page" from="85">85</biblScope> + (<citedRange unit="page" from="88">88 ff.</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Legal Consciousness as a Research Problem</title> + <title level="j">European Yearbook in Law and Sociology 1977</title> + <author> + <persName> + <surname>Podgdrecki</surname> + </persName> + </author> + <imprint> + <date when="1977">1977</date> + <pubPlace>Den Haag</pubPlace> + </imprint> + <biblScope unit="page" from="85">85</biblScope> + </monogr> + <citedRange unit="page" from="88">88 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-67"> + <input type="raw"><![CDATA[67 Kutchinsky, „The Legal Consciousness“: A Survey of Research on Knowledge and Opinion about Law, in: Podgdrecki/Kaupen/van Houtte/Vinke/Kutchinsky, Knowledge and Opinion about Law (Bristol 1973) 101 (126).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="67" place="bottom"> + <label>67</label> + <bibl>Kutchinsky, „The Legal Consciousness“: A Survey of Research on Knowledge and Opinion about Law, in: Podgdrecki/Kaupen/van Houtte/Vinke/Kutchinsky, Knowledge and Opinion about Law (Bristol 1973) 101 (126).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="67" type="footnote" place="bottom"> + <label>67</label> + <bibl xml:id="bibl-112"> + <author> + <persName> + <surname>Kutchinsky</surname> + </persName> + </author>, + „<title level="a">The Legal Consciousness“: A Survey of Research on Knowledge and Opinion about Law + </title>, in: + <editor> + <persName> + <surname>Podgdrecki</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Kaupen</surname> + </persName> + </editor>/ + <editor> + <persName> + <forename type="first">van</forename> + <surname>Houtte</surname> + </persName> + </editor>/ + <surname> + <persName> + <surname>Vinke</surname> + </persName> + </surname>/ + <surname> + <persName> + <surname>Kutchinsky</surname> + </persName> + </surname>, + <title level="m">Knowledge and Opinion about Law</title> + (<pubPlace>Bristol</pubPlace> + <date when="1973">1973</date>) + <biblScope unit="page" from="101">101</biblScope> + (<citedRange unit="page" from="126" to="126">126</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">The Legal Consciousness“: A Survey of Research on Knowledge and Opinion about Law + </title> + <title level="m">Knowledge and Opinion about Law</title> + <author> + <persName> + <surname>Kutchinsky</surname> + </persName> + </author> + <editor> + <persName> + <surname>Podgdrecki</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Kaupen</surname> + </persName> + </editor> + <editor> + <persName> + <forename type="first">van</forename> + <surname>Houtte</surname> + </persName> + </editor> + <imprint> + <date when="1973">1973</date> + <pubPlace>Bristol</pubPlace> + </imprint> + <biblScope unit="page" from="101">101</biblScope> + </monogr> + <citedRange unit="page" from="126" to="126">126</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-68"> + <input type="raw"><![CDATA[68 Podgdrecki, Public Opinion on Law, in: Knowledge and Opinion about Law (vorige N.) 65 (84 ff.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="68" place="bottom"> + <label>68</label> + <bibl>Podgdrecki, Public Opinion on Law, in: Knowledge and Opinion about Law (vorige N.) 65 (84 ff.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="68" type="footnote" place="bottom"> + <label>68</label> + <bibl xml:id="bibl-113"> + <author> + <persName> + <surname>Podgdrecki</surname> + </persName> + </author>, + <title level="a">Public Opinion on Law</title>, in: + <title level="m">Knowledge and Opinion about Law</title> + (<ref type="footnote" n="-1">vorige N.</ref>) + <citedRange unit="page" from="65">65 (84 ff.)</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Public Opinion on Law</title> + <title level="m">Knowledge and Opinion about Law</title> + <author> + <persName> + <surname>Podgdrecki</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="65">65 (84 ff.)</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-69"> + <input type="raw"><![CDATA[69 Heintz, Interkultureller Vergleich, in: König (Hrsg.), Handbuch der empirischen Sozialforschung, Bd. 4 (3. Aufl. 1974) 405 (414 f.).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="69" place="bottom"> + <label>69</label> + <bibl>Heintz, Interkultureller Vergleich, in: König (Hrsg.), Handbuch der empirischen Sozialforschung, Bd. 4 (3. Aufl. 1974) 405 (414 f.).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="69" type="footnote" place="bottom"> + <label>69</label> + <bibl xml:id="bibl-114"> + <author> + <persName> + <surname>Heintz</surname> + </persName> + </author>, + <title level="a">Interkultureller Vergleich</title>, in: + <editor> + <persName> + <surname>König</surname> + </persName> + </editor> + (Hrsg.), + <title level="m">Handbuch der empirischen Sozialforschung</title>, + <biblScope unit="volume" from="4" to="4">Bd. 4</biblScope> + (<edition>3. Aufl.</edition> + <date when="1974">1974</date>) + <biblScope unit="page" from="405">405</biblScope> + (<citedRange unit="page" from="414">414 f.</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Interkultureller Vergleich</title> + <title level="m">Handbuch der empirischen Sozialforschung</title> + <author> + <persName> + <surname>Heintz</surname> + </persName> + </author> + <editor> + <persName> + <surname>König</surname> + </persName> + </editor> + <imprint> + <date when="1974">1974</date> + </imprint> + <biblScope unit="volume" from="4" to="4">Bd. 4</biblScope> + <biblScope unit="page" from="405">405</biblScope> + </monogr> + <citedRange unit="page" from="414">414 f.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-70"> + <input type="raw"><![CDATA[70 Siehe Hegenbarth, Über methodische und organisatorische Grenzen der empirischen Rechtsforschung in Entwicklungsländern, Informationsbrief für Rechtssoziologie April 1979, Sonderheft 2, S. 5 ff. mwNachw.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="70" place="bottom"> + <label>70</label> + <seg>Siehe</seg> + <bibl>Hegenbarth, Über methodische und organisatorische Grenzen der empirischen Rechtsforschung in Entwicklungsländern, Informationsbrief für Rechtssoziologie April 1979, Sonderheft 2, S. 5 ff. mwNachw.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="70" type="footnote" place="bottom"> + <label>70</label> + <note type="signal">Siehe</note> + <bibl xml:id="bibl-115"> + <author> + <persName> + <surname>Hegenbarth</surname> + </persName> + </author>, + <title level="a">Über methodische und organisatorische Grenzen der empirischen Rechtsforschung in + Entwicklungsländern + </title>, + <title level="j">Informationsbrief für Rechtssoziologie</title> + April + <date when="1979">1979</date>, + <biblScope unit="issue" from="2" to="2">Sonderheft 2</biblScope>, + <citedRange unit="page" from="5">S. 5 ff.</citedRange> + <note type="comment">mwNachw</note> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Über methodische und organisatorische Grenzen der empirischen Rechtsforschung in + Entwicklungsländern + </title> + <title level="j">Informationsbrief für Rechtssoziologie</title> + <author> + <persName> + <surname>Hegenbarth</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + <biblScope unit="issue" from="2" to="2">Sonderheft 2</biblScope> + </monogr> + <citedRange unit="page" from="5">S. 5 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-71"> + <input type="raw"><![CDATA[71 Siehe etwa Gessner, Recht und Konflikt — Eine soziologische Untersuchung privatrechtlicher Konflikte in Mexiko (1976) 37 ff..]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="71" place="bottom"> + <label>71</label> + <seg>Siehe etwa</seg> + <bibl>Gessner, Recht und Konflikt — Eine soziologische Untersuchung privatrechtlicher Konflikte in Mexiko (1976) 37 ff..</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="71" type="footnote" place="bottom"> + <label>71</label> + <note type="signal">Siehe etwa</note> + <bibl xml:id="bibl-116"> + <author> + <persName> + <surname>Gessner</surname> + </persName> + </author>, + <title level="m">Recht und Konflikt — Eine soziologische Untersuchung privatrechtlicher Konflikte in + Mexiko + </title> + (<date when="1976">1976</date>) + <citedRange unit="page" from="37">37 ff.</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Recht und Konflikt — Eine soziologische Untersuchung privatrechtlicher Konflikte in + Mexiko + </title> + <author> + <persName> + <surname>Gessner</surname> + </persName> + </author> + <imprint> + <date when="1976">1976</date> + </imprint> + </monogr> + <citedRange unit="page" from="37">37 ff.</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-72"> + <input type="raw"><![CDATA[72 Vgl. Heintz (oben N. 69) 407.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="72" place="bottom"> + <label>72</label> + <seg>Vgl.</seg> + <bibl>Heintz (oben N. 69) 407.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="72" type="footnote" place="bottom"> + <label>72</label> + <note type="signal">Vgl.</note> + <bibl xml:id="bibl-117"> + <author> + <persName> + <surname>Heintz</surname> + </persName> + </author> + (<ref type="footnote" n="69">oben N. 69</ref>) + <citedRange unit="page" from="407" to="407">407</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title/> + <author> + <persName> + <surname>Heintz</surname> + </persName> + </author> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="407" to="407">407</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-73"> + <input type="raw"><![CDATA[73 Da die theoretischen und technischen Erfordernisse solcher Vergleiche in der Tat komplex sind, bestand in der Kriminologie noch Mitte der sechziger Jahre internationale Übereinstimmung, daß vergleichenden Studien kein Vorrang zu geben sei. Dazu Friday, Problems in Comparative Criminology, Int. J. Crim. 1 (1973) 151 (152).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="73" place="bottom"> + <label>73</label> + <seg>Da die theoretischen und technischen Erfordernisse solcher Vergleiche in der Tat komplex sind, bestand in der Kriminologie noch Mitte der sechziger Jahre internationale Übereinstimmung, daß vergleichenden Studien kein Vorrang zu geben sei. Dazu</seg> + <bibl>Friday, Problems in Comparative Criminology, Int. J. Crim. 1 (1973) 151 (152).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="73" type="footnote" place="bottom"> + <label>73</label> + <note type="comment"> + Da die theoretischen und technischen Erfordernisse solcher Vergleiche in der Tat + komplex sind, bestand in der Kriminologie noch Mitte der sechziger Jahre internationale + Übereinstimmung, daß vergleichenden Studien kein Vorrang zu geben sei. + </note> + <note type="signal">Dazu</note> + <bibl xml:id="bibl-118"> + <author> + <persName> + <surname>Friday</surname> + </persName> + </author>, + <title level="a">Problems in Comparative Criminology</title>, + <title level="j">Int. J. Crim</title>. + <biblScope unit="volume" from="1" to="1">1</biblScope> + (<date when="1973">1973</date>) + <biblScope unit="page" from="151">151</biblScope> + (<citedRange unit="page" from="152" to="152">152</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Problems in Comparative Criminology</title> + <title level="j">Int. J. Crim</title> + <author> + <persName> + <surname>Friday</surname> + </persName> + </author> + <imprint> + <date when="1973">1973</date> + </imprint> + <biblScope unit="volume" from="1" to="1">1</biblScope> + <biblScope unit="page" from="151">151</biblScope> + </monogr> + <citedRange unit="page" from="152" to="152">152</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-74"> + <input type="raw"><![CDATA[74 Zur Anlage vergleichender Studien näher Rokkan, Vergleichende Sozialwissenschaft (1972) 9 ff.; Szalai, The Organization and Execution of Cross-National Survey Research Projects, in: Szalai/Petrella 49 ff. sowie IDE-International Research Group (oben N. 52) Chapter I.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="74" place="bottom"> + <label>74</label> + <seg>Zur Anlage vergleichender Studien näher</seg> + <bibl>Rokkan, Vergleichende Sozialwissenschaft (1972) 9 ff.;</bibl> + <bibl>Szalai, The Organization and Execution of Cross-National Survey Research Projects, in: Szalai/Petrella 49 ff.</bibl> sowie <bibl>IDE-International Research Group (oben N. 52) Chapter I.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="74" type="footnote" place="bottom"> + <label>74</label> + <note type="signal">Zur Anlage vergleichender Studien näher</note> + <bibl xml:id="bibl-119"> + <author> + <persName> + <surname>Rokkan</surname> + </persName> + </author>, + <title level="m">Vergleichende Sozialwissenschaft</title> + (<date when="1972">1972</date>) + <citedRange unit="page" from="9">9 ff.</citedRange>; + </bibl> + <bibl xml:id="bibl-120"> + <author> + <persName> + <surname>Szalai</surname> + </persName> + </author>, + <title level="m">The Organization and Execution of Cross-National Survey Research Projects</title>, in: + <editor> + <persName> + <surname>Szalai</surname> + </persName> + </editor>/ + <editor> + <persName> + <surname>Petrella</surname> + </persName> + </editor> + <citedRange unit="page" from="49">49 ff.</citedRange> + </bibl> + <note type="signal">sowie</note> + <bibl xml:id="bibl-121"> + <publisher> + <persName> + <forename type="first">IDE-International</forename> + <forename type="middle">Research</forename> + <surname>Group</surname> + </persName> + </publisher> + (<ref type="footnote" n="52">oben N. 52</ref>) + <citedRange unit="chapter" from="I" to="I">Chapter I</citedRange>. + </bibl> + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="m">Vergleichende Sozialwissenschaft</title> + <author> + <persName> + <surname>Rokkan</surname> + </persName> + </author> + <imprint> + <date when="1972">1972</date> + </imprint> + </monogr> + <citedRange unit="page" from="9">9 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <title level="m">The Organization and Execution of Cross-National Survey Research Projects</title> + <author> + <persName> + <surname>Szalai</surname> + </persName> + </author> + <editor> + <persName> + <surname>Szalai</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Petrella</surname> + </persName> + </editor> + <imprint><date/></imprint> + </monogr> + <citedRange unit="page" from="49">49 ff.</citedRange> + </biblStruct> + <biblStruct> + <monogr> + <imprint> + <publisher> + <persName> + <forename type="first">IDE-International</forename> + <forename type="middle">Research</forename> + <surname>Group</surname> + </persName> + </publisher> + </imprint> + </monogr> + <citedRange unit="chapter" from="I" to="I">Chapter I</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-75"> + <input type="raw"><![CDATA[75 Siehe Blegvad, Methodological Aspects of the Project „Local Legal Systems“, in: Kulcsár (Hrsg.), Sociology of Law and Legal Sciences (Budapest 1977) 97 (99 ff).]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="75" place="bottom"> + <label>75</label> + <seg>Siehe</seg> + <bibl>Blegvad, Methodological Aspects of the Project „Local Legal Systems“, in: Kulcsár (Hrsg.), Sociology of Law and Legal Sciences (Budapest 1977) 97 (99 ff).</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="75" type="footnote" place="bottom"> + <label>75</label> + <note type="signal">Siehe</note> + <bibl xml:id="bibl-122"> + <author> + <persName> + <surname>Blegvad</surname> + </persName> + </author>, + <title level="a">Methodological Aspects of the Project „Local Legal Systems“</title>, in: + <editor> + <persName> + <surname>Kulcsár</surname> + </persName> + </editor> + (Hrsg.), + <title level="m">Sociology of Law and Legal Sciences</title> + (<pubPlace>Budapest</pubPlace> + <date when="1977">1977</date>) + <biblScope unit="page" from="97">97</biblScope> + (<citedRange unit="page" from="99">99 ff</citedRange>) + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Methodological Aspects of the Project „Local Legal Systems“</title> + <title level="m">Sociology of Law and Legal Sciences</title> + <author> + <persName> + <surname>Blegvad</surname> + </persName> + </author> + <editor> + <persName> + <surname>Kulcsár</surname> + </persName> + </editor> + <imprint> + <date when="1977">1977</date> + <pubPlace>Budapest</pubPlace> + </imprint> + <biblScope unit="page" from="97">97</biblScope> + </monogr> + <citedRange unit="page" from="99">99 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-76"> + <input type="raw"><![CDATA[76 Dazu näher Zweigert, Die kritische Wertung in der Rechtsvergleichung, Festschrift für Schmitthoff (1973) 403 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="76" place="bottom"> + <label>76</label> + <seg>Dazu näher</seg> + <bibl>Zweigert, Die kritische Wertung in der Rechtsvergleichung, Festschrift für Schmitthoff (1973) 403 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="76" type="footnote" place="bottom"> + <label>76</label> + <note type="signal">Dazu näher</note> + <bibl xml:id="bibl-123"> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author>, + <title level="a">Die kritische Wertung in der Rechtsvergleichung</title>, + <title level="m">Festschrift für Schmitthoff</title> + (<date when="1973">1973</date>) + <citedRange unit="page" from="403">403 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Die kritische Wertung in der Rechtsvergleichung</title> + <title level="m">Festschrift für Schmitthoff</title> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <imprint> + <date when="1973">1973</date> + </imprint> + </monogr> + <citedRange unit="page" from="403">403 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-77"> + <input type="raw"><![CDATA[77 Siehe etwa zu vorliegenden französischen Untersuchungen Dörner, Rechtstatsachenforschung und Gesetzgebung — Hinweise zur Entwicklung einer Gesetzgebungssoziologie in Frankreich, Interview und Analyse 1979, 377 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="77" place="bottom"> + <label>77</label> + <seg>Siehe etwa zu vorliegenden französischen Untersuchungen</seg> + <bibl>Dörner, Rechtstatsachenforschung und Gesetzgebung — Hinweise zur Entwicklung einer Gesetzgebungssoziologie in Frankreich, Interview und Analyse 1979, 377 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="77" type="footnote" place="bottom"> + <label>77</label> + <note type="signal">Siehe etwa zu vorliegenden französischen Untersuchungen</note> + <bibl xml:id="bibl-124"> + <author> + <persName> + <surname>Dörner</surname> + </persName> + </author>, + <title level="a">Rechtstatsachenforschung und Gesetzgebung — Hinweise zur Entwicklung einer + Gesetzgebungssoziologie in Frankreich + </title>, + <title level="j">Interview und Analyse</title> + <date when="1979">1979</date>, + <citedRange unit="page" from="377">377 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Rechtstatsachenforschung und Gesetzgebung — Hinweise zur Entwicklung einer + Gesetzgebungssoziologie in Frankreich + </title> + <title level="j">Interview und Analyse</title> + <author> + <persName> + <surname>Dörner</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + </monogr> + <citedRange unit="page" from="377">377 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> + <instance xml:id="instance-78"> + <input type="raw"><![CDATA[78 Siehe Bryde, Recht und Konflikt — Mexiko und Afrika, Verfassung und Recht in Übersee 12 (1979), 159 ff.]]></input> + <output type="block"> + <note xmlns="http://www.tei-c.org/ns/1.0" type="footnote" n="78" place="bottom"> + <label>78</label> + <seg>Siehe</seg> + <bibl>Bryde, Recht und Konflikt — Mexiko und Afrika, Verfassung und Recht in Übersee 12 (1979), 159 ff.</bibl> + </note> + </output> + <output type="bibl"> + <note xmlns="http://www.tei-c.org/ns/1.0" n="78" type="footnote" place="bottom"> + <label>78</label> + <note type="signal">Siehe</note> + <bibl xml:id="bibl-125"> + <author> + <persName> + <surname>Bryde</surname> + </persName> + </author>, + <title level="a">Recht und Konflikt — Mexiko und Afrika</title>, + <title level="j">Verfassung und Recht in Übersee</title> + <biblScope unit="volume" from="12" to="12">12</biblScope> + (<date when="1979">1979</date>), + <citedRange unit="page" from="159">159 ff</citedRange> + </bibl>. + </note> + </output> + <output type="biblStruct"> + <listBibl xmlns="http://www.tei-c.org/ns/1.0"> + <biblStruct> + <monogr> + <title level="a">Recht und Konflikt — Mexiko und Afrika</title> + <title level="j">Verfassung und Recht in Übersee</title> + <author> + <persName> + <surname>Bryde</surname> + </persName> + </author> + <imprint> + <date when="1979">1979</date> + </imprint> + <biblScope unit="volume" from="12" to="12">12</biblScope> + </monogr> + <citedRange unit="page" from="159">159 ff</citedRange> + </biblStruct> + </listBibl> + </output> + </instance> +</dataset> \ No newline at end of file diff --git a/convert-anystyle-data/llamore/schema/xsd/dataset.xsd b/convert-anystyle-data/llamore/schema/xsd/dataset.xsd new file mode 100644 index 0000000000000000000000000000000000000000..66a97ade7e1d03ba9abd8627ca040e2028fa4272 --- /dev/null +++ b/convert-anystyle-data/llamore/schema/xsd/dataset.xsd @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsd:schema version="1.0" + xmlns:xsd="http://www.w3.org/2001/XMLSchema" + xmlns:tei="http://www.tei-c.org/ns/1.0" + xmlns:llamore="https://gitlab.mpcdf.mpg.de/dcfidalgo/llamore" + targetNamespace="https://gitlab.mpcdf.mpg.de/dcfidalgo/llamore" + elementFormDefault="qualified"> + + <xsd:import namespace="http://www.tei-c.org/ns/1.0" schemaLocation="document.xsd"/> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="http://www.w3.org/2001/xml.xsd"/> + + <xsd:element name="dataset"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="instance" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="input" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:simpleContent> + <xsd:extension base="xsd:string"> + <xsd:attribute name="type" type="xsd:string"/> + </xsd:extension> + </xsd:simpleContent> + </xsd:complexType> + </xsd:element> + <xsd:element name="output" maxOccurs="unbounded"> + <xsd:complexType> + <xsd:sequence minOccurs="0"> + <xsd:element ref="tei:p" minOccurs="0"/> + <xsd:element ref="tei:listBibl" minOccurs="0"/> + <xsd:element ref="tei:note" minOccurs="0"/> + </xsd:sequence> + <xsd:attribute name="type" type="xsd:string"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + <xsd:attribute ref="xml:id"/> + </xsd:complexType> + </xsd:element> + </xsd:sequence> + </xsd:complexType> + </xsd:element> +</xsd:schema> diff --git a/convert-anystyle-data/llamore/schema/xsd/document.xsd b/convert-anystyle-data/llamore/schema/xsd/document.xsd new file mode 100644 index 0000000000000000000000000000000000000000..377206d50611833ac540ede48b7209e14e8ec1cd --- /dev/null +++ b/convert-anystyle-data/llamore/schema/xsd/document.xsd @@ -0,0 +1,4412 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://www.tei-c.org/ns/1.0" xmlns:tei="http://www.tei-c.org/ns/1.0"> + <xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/> + <!-- + Schema generated from ODD source 2024-11-14T17:51:01Z. . + TEI Edition: P5 Version 4.8.1. Last updated on 1st November 2024, revision 0a2bff95a + TEI Edition Location: https://www.tei-c.org/Vault/P5/4.8.1/ + + --> + <!-- TEI material can be licensed differently depending on the use you intend to make of it. Hence it is made available under both the CC+BY and BSD-2 licences. The CC+BY licence is generally appropriate for usages which treat TEI content as data or documentation. The BSD-2 licence is generally appropriate for usage of TEI content in a software environment. For further information or clarification, please contact the TEI Consortium (info@tei-c.org). --> + <xs:complexType name="tbibmacro.abContent" mixed="true"> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:group ref="tei:tbibmodel.paraPart"/> + <xs:element ref="tei:ab"/> + </xs:choice> + </xs:complexType> + <xs:complexType name="tbibmacro.paraContent" mixed="true"> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.paraPart"/> + </xs:complexType> + <xs:complexType name="tbibmacro.phraseSeq" mixed="true"> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:group ref="tei:tbibmodel.attributable"/> + <xs:group ref="tei:tbibmodel.phrase"/> + <xs:group ref="tei:tbibmodel.global"/> + </xs:choice> + </xs:complexType> + <xs:complexType name="tbibmacro.phraseSeq.limited" mixed="true"> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:group ref="tei:tbibmodel.limitedPhrase"/> + <xs:group ref="tei:tbibmodel.global"/> + </xs:choice> + </xs:complexType> + <xs:complexType name="tbibmacro.specialPara" mixed="true"> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:group ref="tei:tbibmodel.phrase"/> + <xs:group ref="tei:tbibmodel.inter"/> + <xs:group ref="tei:tbibmodel.divPart"/> + <xs:group ref="tei:tbibmodel.global"/> + </xs:choice> + </xs:complexType> + <xs:attributeGroup name="tbibatt.anchoring.attributes"> + <xs:attributeGroup ref="tei:tbibatt.anchoring.attribute.anchored"/> + <xs:attributeGroup ref="tei:tbibatt.anchoring.attribute.targetEnd"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.anchoring.attribute.anchored"> + <xs:attribute name="anchored" default="true" type="xs:boolean"> + <xs:annotation> + <xs:documentation>(anchored) indicates whether the copy text shows the exact place of reference for the note.</xs:documentation> + </xs:annotation> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.anchoring.attribute.targetEnd"> + <xs:attribute name="targetEnd"> + <xs:annotation> + <xs:documentation>(target end) 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.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.ascribed.attributes"> + <xs:attributeGroup ref="tei:tbibatt.ascribed.attribute.who"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.ascribed.attribute.who"> + <xs:attribute name="who"> + <xs:annotation> + <xs:documentation>indicates the person, or group of people, to whom the element content is ascribed.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.ascribed.directed.attributes"> + <xs:attributeGroup ref="tei:tbibatt.ascribed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.ascribed.directed.attribute.toWhom"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.ascribed.directed.attribute.toWhom"> + <xs:attribute name="toWhom"> + <xs:annotation> + <xs:documentation>indicates the person, or group of people, to whom a speech act or action is directed.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.canonical.attributes"> + <xs:attributeGroup ref="tei:tbibatt.canonical.attribute.key"/> + <xs:attributeGroup ref="tei:tbibatt.canonical.attribute.ref"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.canonical.attribute.key"> + <xs:attribute name="key" type="xs:string"> + <xs:annotation> + <xs:documentation>provides an externally-defined means of identifying the entity (or entities) being named, using a coded value of some kind.</xs:documentation> + </xs:annotation> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.canonical.attribute.ref"> + <xs:attribute name="ref"> + <xs:annotation> + <xs:documentation>(reference) provides an explicit means of locating a full definition or identity for the entity being named by means of one or more URIs.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.ranging.attributes"> + <xs:attributeGroup ref="tei:tbibatt.ranging.attribute.atLeast"/> + <xs:attributeGroup ref="tei:tbibatt.ranging.attribute.atMost"/> + <xs:attributeGroup ref="tei:tbibatt.ranging.attribute.min"/> + <xs:attributeGroup ref="tei:tbibatt.ranging.attribute.max"/> + <xs:attributeGroup ref="tei:tbibatt.ranging.attribute.confidence"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.ranging.attribute.atLeast"> + <xs:attribute name="atLeast"> + <xs:annotation> + <xs:documentation>gives a minimum estimated value for the approximate measurement.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:double xs:decimal"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="(\-?[\d]+/\-?[\d]+)"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.ranging.attribute.atMost"> + <xs:attribute name="atMost"> + <xs:annotation> + <xs:documentation>gives a maximum estimated value for the approximate measurement.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:double xs:decimal"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="(\-?[\d]+/\-?[\d]+)"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.ranging.attribute.min"> + <xs:attribute name="min"> + <xs:annotation> + <xs:documentation>where the measurement summarizes more than one observation or a range, supplies the minimum value observed.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:double xs:decimal"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="(\-?[\d]+/\-?[\d]+)"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.ranging.attribute.max"> + <xs:attribute name="max"> + <xs:annotation> + <xs:documentation>where the measurement summarizes more than one observation or a range, supplies the maximum value observed.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:double xs:decimal"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="(\-?[\d]+/\-?[\d]+)"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.ranging.attribute.confidence"> + <xs:attribute name="confidence"> + <xs:simpleType> + <xs:restriction base="xs:double"> + <xs:minInclusive value="0"/> + <xs:maxInclusive value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.dimensions.attributes"> + <xs:attributeGroup ref="tei:tbibatt.ranging.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.dimensions.attribute.unit"/> + <xs:attributeGroup ref="tei:tbibatt.dimensions.attribute.quantity"/> + <xs:attributeGroup ref="tei:tbibatt.dimensions.attribute.extent"/> + <xs:attributeGroup ref="tei:tbibatt.dimensions.attribute.precision"/> + <xs:attributeGroup ref="tei:tbibatt.dimensions.attribute.scope"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.dimensions.attribute.unit"> + <xs:attribute name="unit"> + <xs:annotation> + <xs:documentation>names the unit used for the measurement +Empfohlene Werte sind: 1] cm (centimetres); 2] mm (millimetres); 3] in (inches); 4] line; 5] char (characters)</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="cm"> + <xs:annotation> + <xs:documentation>(centimetres) </xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="mm"> + <xs:annotation> + <xs:documentation>(millimetres) </xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="in"> + <xs:annotation> + <xs:documentation>(inches) </xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="line"> + <xs:annotation> + <xs:documentation>lines of text</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="char"> + <xs:annotation> + <xs:documentation>(characters) characters of text</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.dimensions.attribute.quantity"> + <xs:attribute name="quantity"> + <xs:annotation> + <xs:documentation>specifies the length in the units specified</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:double xs:decimal"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="(\-?[\d]+/\-?[\d]+)"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.dimensions.attribute.extent"> + <xs:attribute name="extent" type="xs:string"> + <xs:annotation> + <xs:documentation>indicates the size of the object concerned using a project-specific vocabulary combining quantity and units in a single string of words.</xs:documentation> + </xs:annotation> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.dimensions.attribute.precision"> + <xs:attribute name="precision"> + <xs:annotation> + <xs:documentation>characterizes the precision of the values specified by the other attributes.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="high"> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="medium"> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="low"> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="unknown"> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.dimensions.attribute.scope"> + <xs:attribute name="scope"> + <xs:annotation> + <xs:documentation>where the measurement summarizes more than one observation, specifies the applicability of this measurement. +Beispielwerte sind etwa: 1] all; 2] most; 3] range</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.written.attributes"> + <xs:attributeGroup ref="tei:tbibatt.written.attribute.hand"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.written.attribute.hand"> + <xs:attribute name="hand"> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.breaking.attributes"> + <xs:attributeGroup ref="tei:tbibatt.breaking.attribute.break"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.breaking.attribute.break"> + <xs:attribute name="break"> + <xs:annotation> + <xs:documentation>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.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.cmc.attributes"> + <xs:attributeGroup ref="tei:tbibatt.cmc.attribute.generatedBy"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.cmc.attribute.generatedBy"> + <xs:attribute name="generatedBy"> + <xs:annotation> + <xs:documentation>(generated by) categorizes how the content of an element was generated in a CMC environment. +Empfohlene Werte sind: 1] human; 2] template; 3] system; 4] bot; 5] unspecified</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="human"> + <xs:annotation> + <xs:documentation>the content was naturally typed or spoken by a human user</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="template"> + <xs:annotation> + <xs:documentation>the content was generated after a human user activated a template for its insertion</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="system"> + <xs:annotation> + <xs:documentation>the content was generated by the system, i.e. the CMC environment</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="bot"> + <xs:annotation> + <xs:documentation>the content was generated by a bot, i.e. a non-human agent, typically one that is not part of the CMC environment itself</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="unspecified"> + <xs:annotation> + <xs:documentation>the content was generated by an unknown or unspecified process</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.cReferencing.attributes"> + <xs:attributeGroup ref="tei:tbibatt.cReferencing.attribute.cRef"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.cReferencing.attribute.cRef"> + <xs:attribute name="cRef" type="xs:string"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.w3c.attributes"> + <xs:attributeGroup ref="tei:tbibatt.datable.w3c.attribute.when"/> + <xs:attributeGroup ref="tei:tbibatt.datable.w3c.attribute.notBefore"/> + <xs:attributeGroup ref="tei:tbibatt.datable.w3c.attribute.notAfter"/> + <xs:attributeGroup ref="tei:tbibatt.datable.w3c.attribute.from"/> + <xs:attributeGroup ref="tei:tbibatt.datable.w3c.attribute.to"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.w3c.attribute.when"> + <xs:attribute name="when"> + <xs:annotation> + <xs:documentation>supplies the value of the date or time in a standard form, e.g. yyyy-mm-dd.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:date xs:gYear xs:gMonth xs:gDay xs:gYearMonth xs:gMonthDay xs:time xs:dateTime"/> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.w3c.attribute.notBefore"> + <xs:attribute name="notBefore"> + <xs:annotation> + <xs:documentation>specifies the earliest possible date for the event in standard form, e.g. yyyy-mm-dd.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:date xs:gYear xs:gMonth xs:gDay xs:gYearMonth xs:gMonthDay xs:time xs:dateTime"/> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.w3c.attribute.notAfter"> + <xs:attribute name="notAfter"> + <xs:annotation> + <xs:documentation>specifies the latest possible date for the event in standard form, e.g. yyyy-mm-dd.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:date xs:gYear xs:gMonth xs:gDay xs:gYearMonth xs:gMonthDay xs:time xs:dateTime"/> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.w3c.attribute.from"> + <xs:attribute name="from"> + <xs:annotation> + <xs:documentation>indicates the starting point of the period in standard form, e.g. yyyy-mm-dd.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:date xs:gYear xs:gMonth xs:gDay xs:gYearMonth xs:gMonthDay xs:time xs:dateTime"/> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.w3c.attribute.to"> + <xs:attribute name="to"> + <xs:annotation> + <xs:documentation>indicates the ending point of the period in standard form, e.g. yyyy-mm-dd.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:date xs:gYear xs:gMonth xs:gDay xs:gYearMonth xs:gMonthDay xs:time xs:dateTime"/> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.attributes"> + <xs:attributeGroup ref="tei:tbibatt.datable.w3c.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.datable.iso.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.datable.custom.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.datable.attribute.period"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.attribute.period"> + <xs:attribute name="period"> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datcat.attributes"> + <xs:attributeGroup ref="tei:tbibatt.datcat.attribute.datcat"/> + <xs:attributeGroup ref="tei:tbibatt.datcat.attribute.valueDatcat"/> + <xs:attributeGroup ref="tei:tbibatt.datcat.attribute.targetDatcat"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datcat.attribute.datcat"> + <xs:attribute name="datcat"> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datcat.attribute.valueDatcat"> + <xs:attribute name="valueDatcat"> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datcat.attribute.targetDatcat"> + <xs:attribute name="targetDatcat"> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.declarable.attributes"> + <xs:attributeGroup ref="tei:tbibatt.declarable.attribute.default"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.declarable.attribute.default"> + <xs:attribute name="default" default="false"> + <xs:annotation> + <xs:documentation>indicates whether or not this element is selected by default when its parent is selected.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="true"> + <xs:annotation> + <xs:documentation>This element is selected if its parent is selected</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="false"> + <xs:annotation> + <xs:documentation>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.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.declaring.attributes"> + <xs:attributeGroup ref="tei:tbibatt.declaring.attribute.decls"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.declaring.attribute.decls"> + <xs:attribute name="decls"> + <xs:annotation> + <xs:documentation>(declarations) identifies one or more declarable elements within the header, which are understood to apply to the element bearing this attribute and its content.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.fragmentable.attributes"> + <xs:attributeGroup ref="tei:tbibatt.fragmentable.attribute.part"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.fragmentable.attribute.part"> + <xs:attribute name="part" default="N"> + <xs:annotation> + <xs:documentation>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.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="Y"> + <xs:annotation> + <xs:documentation>(yes) the element is fragmented in some (unspecified) respect</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="N"> + <xs:annotation> + <xs:documentation>(no) the element is not fragmented, or no claim is made as to its completeness</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="I"> + <xs:annotation> + <xs:documentation>(initial) this is the initial part of a fragmented element</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="M"> + <xs:annotation> + <xs:documentation>(medial) this is a medial part of a fragmented element</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="F"> + <xs:annotation> + <xs:documentation>(final) this is the final part of a fragmented element</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.docStatus.attributes"> + <xs:attributeGroup ref="tei:tbibatt.docStatus.attribute.status"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.docStatus.attribute.status"> + <xs:attribute name="status" default="draft"> + <xs:annotation> + <xs:documentation>describes the status of a document either currently or, when associated with a dated element, at the time indicated. +Beispielwerte sind etwa: 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</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.responsibility.attributes"> + <xs:attributeGroup ref="tei:tbibatt.global.responsibility.attribute.cert"/> + <xs:attributeGroup ref="tei:tbibatt.global.responsibility.attribute.resp"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.responsibility.attribute.cert"> + <xs:attribute name="cert"> + <xs:annotation> + <xs:documentation>(certainty) signifies the degree of certainty associated with the intervention or interpretation.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union> + <xs:simpleType> + <xs:restriction base="xs:double"> + <xs:minInclusive value="0"/> + <xs:maxInclusive value="1"/> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="high"> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="medium"> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="low"> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="unknown"> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.responsibility.attribute.resp"> + <xs:attribute name="resp"> + <xs:annotation> + <xs:documentation>(responsible party) indicates the agency responsible for the intervention or interpretation, for example an editor or transcriber.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.editLike.attributes"> + <xs:attributeGroup ref="tei:tbibatt.editLike.attribute.evidence"/> + <xs:attributeGroup ref="tei:tbibatt.editLike.attribute.instant"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.editLike.attribute.evidence"> + <xs:attribute name="evidence"> + <xs:annotation> + <xs:documentation>indicates the nature of the evidence supporting the reliability or accuracy of the intervention or interpretation. +Empfohlene Werte sind: 1] internal; 2] external; 3] conjecture</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:union> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="internal"> + <xs:annotation> + <xs:documentation>there is internal evidence to support the intervention.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="external"> + <xs:annotation> + <xs:documentation>there is external evidence to support the intervention.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="conjecture"> + <xs:annotation> + <xs:documentation>the intervention or interpretation has been made by the editor, cataloguer, or scholar on the basis of their expertise.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.editLike.attribute.instant"> + <xs:attribute name="instant" default="false"> + <xs:annotation> + <xs:documentation>indicates whether this is an instant revision or not.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:boolean"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="unknown"> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="inapplicable"> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.rendition.attributes"> + <xs:attributeGroup ref="tei:tbibatt.global.rendition.attribute.rend"/> + <xs:attributeGroup ref="tei:tbibatt.global.rendition.attribute.style"/> + <xs:attributeGroup ref="tei:tbibatt.global.rendition.attribute.rendition"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.rendition.attribute.rend"> + <xs:attribute name="rend"> + <xs:annotation> + <xs:documentation>(rendition) indicates how the element in question was rendered or presented in the source text.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.rendition.attribute.style"> + <xs:attribute name="style" type="xs:string"> + <xs:annotation> + <xs:documentation>contains an expression in some formal style definition language which defines the rendering or presentation used for this element in the source text</xs:documentation> + </xs:annotation> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.rendition.attribute.rendition"> + <xs:attribute name="rendition"> + <xs:annotation> + <xs:documentation>points to a description of the rendering or presentation used for this element in the source text.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.source.attributes"> + <xs:attributeGroup ref="tei:tbibatt.global.source.attribute.source"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.source.attribute.source"> + <xs:attribute name="source"> + <xs:annotation> + <xs:documentation>specifies the source from which some aspect of this element is drawn.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.attributes"> + <xs:attributeGroup ref="tei:tbibatt.global.rendition.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.global.linking.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.global.responsibility.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.global.source.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.global.attribute.xmlid"/> + <xs:attributeGroup ref="tei:tbibatt.global.attribute.n"/> + <xs:attributeGroup ref="tei:tbibatt.global.attribute.xmllang"/> + <xs:attributeGroup ref="tei:tbibatt.global.attribute.xmlbase"/> + <xs:attributeGroup ref="tei:tbibatt.global.attribute.xmlspace"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.attribute.xmlid"> + <xs:attribute ref="xml:id"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.attribute.n"> + <xs:attribute name="n" type="xs:string"> + <xs:annotation> + <xs:documentation>(number) gives a number (or other label) for an element, which is not necessarily unique within the document.</xs:documentation> + </xs:annotation> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.attribute.xmllang"> + <xs:attribute ref="xml:lang"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.attribute.xmlbase"> + <xs:attribute ref="xml:base"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.attribute.xmlspace"> + <xs:attribute ref="xml:space"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.internetMedia.attributes"> + <xs:attributeGroup ref="tei:tbibatt.internetMedia.attribute.mimeType"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.internetMedia.attribute.mimeType"> + <xs:attribute name="mimeType"> + <xs:annotation> + <xs:documentation>(MIME media type) specifies the applicable multimedia internet mail extension (MIME) media type</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.naming.attributes"> + <xs:attributeGroup ref="tei:tbibatt.canonical.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.naming.attribute.role"/> + <xs:attributeGroup ref="tei:tbibatt.naming.attribute.nymRef"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.naming.attribute.role"> + <xs:attribute name="role"> + <xs:annotation> + <xs:documentation>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.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.naming.attribute.nymRef"> + <xs:attribute name="nymRef"> + <xs:annotation> + <xs:documentation>(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.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.notated.attributes"> + <xs:attributeGroup ref="tei:tbibatt.notated.attribute.notation"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.notated.attribute.notation"> + <xs:attribute name="notation"> + <xs:annotation> + <xs:documentation>names the notation used for the content of the element.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.placement.attributes"> + <xs:attributeGroup ref="tei:tbibatt.placement.attribute.place"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.placement.attribute.place"> + <xs:attribute name="place"> + <xs:annotation> + <xs:documentation>specifies where this item is placed. +Empfohlene Werte sind: 1] top; 2] bottom; 3] margin; 4] opposite; 5] overleaf; 6] above; 7] right; 8] below; 9] left; 10] end; 11] inline; 12] inspace</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:union> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="top"> + <xs:annotation> + <xs:documentation>at the top of the page</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="bottom"> + <xs:annotation> + <xs:documentation>at the foot of the page</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="margin"> + <xs:annotation> + <xs:documentation>in the margin (left, right, or both)</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="opposite"> + <xs:annotation> + <xs:documentation>on the opposite, i.e. facing, page</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="overleaf"> + <xs:annotation> + <xs:documentation>on the other side of the leaf</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="above"> + <xs:annotation> + <xs:documentation>above the line</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="right"> + <xs:annotation> + <xs:documentation>to the right, e.g. to the right of a vertical line of text, or to the right of a figure</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="below"> + <xs:annotation> + <xs:documentation>below the line</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="left"> + <xs:annotation> + <xs:documentation>to the left, e.g. to the left of a vertical line of text, or to the left of a figure</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="end"> + <xs:annotation> + <xs:documentation>at the end of e.g. chapter or volume.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="inline"> + <xs:annotation> + <xs:documentation>within the body of the text.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="inspace"> + <xs:annotation> + <xs:documentation>in a predefined space, for example left by an earlier scribe.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.typed.attributes"> + <xs:attributeGroup ref="tei:tbibatt.typed.attribute.type"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attribute.subtype"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.typed.attribute.type"> + <xs:attribute name="type"> + <xs:annotation> + <xs:documentation>characterizes the element in some sense, using any convenient classification scheme or typology.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.typed.attribute.subtype"> + <xs:attribute name="subtype"> + <xs:annotation> + <xs:documentation>(subtype) provides a sub-categorization of the element, if needed</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.pointing.attributes"> + <xs:attributeGroup ref="tei:tbibatt.pointing.attribute.targetLang"/> + <xs:attributeGroup ref="tei:tbibatt.pointing.attribute.target"/> + <xs:attributeGroup ref="tei:tbibatt.pointing.attribute.evaluate"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.pointing.attribute.targetLang"> + <xs:attribute name="targetLang"> + <xs:simpleType> + <xs:union memberTypes="xs:language"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value=""> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.pointing.attribute.target"> + <xs:attribute name="target"> + <xs:annotation> + <xs:documentation>specifies the destination of the reference by supplying one or more URI References</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.pointing.attribute.evaluate"> + <xs:attribute name="evaluate"> + <xs:annotation> + <xs:documentation>(evaluate) specifies the intended meaning when the target of a pointer is itself a pointer.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="all"> + <xs:annotation> + <xs:documentation>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.</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="one"> + <xs:annotation> + <xs:documentation>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.</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="none"> + <xs:annotation> + <xs:documentation>no further evaluation of targets is carried out beyond that needed to find the element specified in the pointer's target.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.pointing.group.attributes"> + <xs:attributeGroup ref="tei:tbibatt.pointing.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.pointing.group.attribute.domains"/> + <xs:attributeGroup ref="tei:tbibatt.pointing.group.attribute.targFunc"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.pointing.group.attribute.domains"> + <xs:attribute name="domains"> + <xs:annotation> + <xs:documentation>optionally specifies the identifiers of the elements within which all elements indicated by the contents of this element lie.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:union> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="2"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.pointing.group.attribute.targFunc"> + <xs:attribute name="targFunc"> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:union> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="2"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.segLike.attributes"> + <xs:attributeGroup ref="tei:tbibatt.datcat.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.fragmentable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.segLike.attribute.function"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.segLike.attribute.function"> + <xs:attribute name="function"> + <xs:annotation> + <xs:documentation>(function) characterizes the function of the segment.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.sortable.attributes"> + <xs:attributeGroup ref="tei:tbibatt.sortable.attribute.sortKey"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.sortable.attribute.sortKey"> + <xs:attribute name="sortKey"> + <xs:annotation> + <xs:documentation>supplies the sort key for this element in an index, list or group which contains it.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.edition.attributes"> + <xs:attributeGroup ref="tei:tbibatt.edition.attribute.ed"/> + <xs:attributeGroup ref="tei:tbibatt.edition.attribute.edRef"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.edition.attribute.ed"> + <xs:attribute name="ed"> + <xs:annotation> + <xs:documentation>(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.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.edition.attribute.edRef"> + <xs:attribute name="edRef"> + <xs:annotation> + <xs:documentation>(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.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.spanning.attributes"> + <xs:attributeGroup ref="tei:tbibatt.spanning.attribute.spanTo"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.spanning.attribute.spanTo"> + <xs:attribute name="spanTo"> + <xs:annotation> + <xs:documentation>indicates the end of a span initiated by the element bearing this attribute.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.transcriptional.attributes"> + <xs:attributeGroup ref="tei:tbibatt.editLike.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.written.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.transcriptional.attribute.status"/> + <xs:attributeGroup ref="tei:tbibatt.transcriptional.attribute.cause"/> + <xs:attributeGroup ref="tei:tbibatt.transcriptional.attribute.seq"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.transcriptional.attribute.status"> + <xs:attribute name="status" default="unremarkable"> + <xs:annotation> + <xs:documentation>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. +Beispielwerte sind etwa: 1] duplicate; 2] duplicate-partial; 3] excessStart; 4] excessEnd; 5] shortStart; 6] shortEnd; 7] partial; 8] unremarkable</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.transcriptional.attribute.cause"> + <xs:attribute name="cause"> + <xs:annotation> + <xs:documentation>documents the presumed cause for the intervention.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.transcriptional.attribute.seq"> + <xs:attribute name="seq" type="xs:nonNegativeInteger"> + <xs:annotation> + <xs:documentation>(sequence) assigns a sequence number related to the order in which the encoded features carrying this attribute are believed to have occurred.</xs:documentation> + </xs:annotation> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.citing.attributes"> + <xs:attributeGroup ref="tei:tbibatt.citing.attribute.unit"/> + <xs:attributeGroup ref="tei:tbibatt.citing.attribute.from"/> + <xs:attributeGroup ref="tei:tbibatt.citing.attribute.to"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.citing.attribute.unit"> + <xs:attribute name="unit"> + <xs:annotation> + <xs:documentation>identifies the unit of information conveyed by the element, e.g. columns, pages, volume, entry. +Empfohlene Werte sind: 1] volume (volume); 2] issue; 3] page (page); 4] line; 5] chapter (chapter); 6] part; 7] column; 8] entry</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="volume"> + <xs:annotation> + <xs:documentation>(volume) the element contains a volume number.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="issue"> + <xs:annotation> + <xs:documentation>the element contains an issue number, or volume and issue numbers.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="page"> + <xs:annotation> + <xs:documentation>(page) the element contains a page number or page range.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="line"> + <xs:annotation> + <xs:documentation>the element contains a line number or line range.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="chapter"> + <xs:annotation> + <xs:documentation>(chapter) the element contains a chapter indication (number and/or title)</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="part"> + <xs:annotation> + <xs:documentation>the element identifies a part of a book or collection.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="column"> + <xs:annotation> + <xs:documentation>the element identifies a column.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="entry"> + <xs:annotation> + <xs:documentation>the element identifies an entry number or label in a list of entries.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.citing.attribute.from"> + <xs:attribute name="from"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.citing.attribute.to"> + <xs:attribute name="to"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:group name="tbibmodel.nameLike.agent"> + <xs:choice> + <xs:element ref="tei:name"/> + <xs:element ref="tei:orgName"/> + <xs:element ref="tei:persName"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.nameLike.agent_alternation"> + <xs:choice> + <xs:element ref="tei:name"/> + <xs:element ref="tei:orgName"/> + <xs:element ref="tei:persName"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.nameLike.agent_sequence"> + <xs:sequence> + <xs:element ref="tei:name"/> + <xs:element ref="tei:orgName"/> + <xs:element ref="tei:persName"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.nameLike.agent_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:name"/> + <xs:element minOccurs="0" ref="tei:orgName"/> + <xs:element minOccurs="0" ref="tei:persName"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.nameLike.agent_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:name"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:orgName"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:persName"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.nameLike.agent_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:name"/> + <xs:element maxOccurs="unbounded" ref="tei:orgName"/> + <xs:element maxOccurs="unbounded" ref="tei:persName"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.segLike"> + <xs:sequence> + <xs:element ref="tei:seg"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.segLike_alternation"> + <xs:sequence> + <xs:element ref="tei:seg"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.segLike_sequence"> + <xs:sequence> + <xs:element ref="tei:seg"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.segLike_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:seg"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.segLike_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:seg"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.segLike_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:seg"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.hiLike"> + <xs:sequence> + <xs:element ref="tei:q"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.hiLike_alternation"> + <xs:sequence> + <xs:element ref="tei:q"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.hiLike_sequence"> + <xs:sequence> + <xs:element ref="tei:q"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.hiLike_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:q"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.hiLike_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:q"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.hiLike_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:q"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.emphLike"> + <xs:sequence> + <xs:element ref="tei:title"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.emphLike_alternation"> + <xs:sequence> + <xs:element ref="tei:title"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.emphLike_sequence"> + <xs:sequence> + <xs:element ref="tei:title"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.emphLike_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:title"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.emphLike_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:title"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.emphLike_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:title"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.highlighted"> + <xs:choice> + <xs:group ref="tei:tbibmodel.hiLike"/> + <xs:group ref="tei:tbibmodel.emphLike"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.highlighted_alternation"> + <xs:choice> + <xs:group ref="tei:tbibmodel.hiLike_alternation"/> + <xs:group ref="tei:tbibmodel.emphLike_alternation"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.highlighted_sequence"> + <xs:sequence> + <xs:group ref="tei:tbibmodel.hiLike_sequence"/> + <xs:group ref="tei:tbibmodel.emphLike_sequence"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.highlighted_sequenceOptional"> + <xs:sequence> + <xs:group minOccurs="0" ref="tei:tbibmodel.hiLike_sequenceOptional"/> + <xs:group minOccurs="0" ref="tei:tbibmodel.emphLike_sequenceOptional"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.highlighted_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.hiLike_sequenceOptionalRepeatable"/> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.emphLike_sequenceOptionalRepeatable"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.highlighted_sequenceRepeatable"> + <xs:sequence> + <xs:group maxOccurs="unbounded" ref="tei:tbibmodel.hiLike_sequenceRepeatable"/> + <xs:group maxOccurs="unbounded" ref="tei:tbibmodel.emphLike_sequenceRepeatable"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.dateLike"> + <xs:choice> + <xs:element ref="tei:date"/> + <xs:element ref="tei:time"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.dateLike_alternation"> + <xs:choice> + <xs:element ref="tei:date"/> + <xs:element ref="tei:time"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.dateLike_sequence"> + <xs:sequence> + <xs:element ref="tei:date"/> + <xs:element ref="tei:time"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.dateLike_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:date"/> + <xs:element minOccurs="0" ref="tei:time"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.dateLike_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:date"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:time"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.dateLike_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:date"/> + <xs:element maxOccurs="unbounded" ref="tei:time"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.measureLike"> + <xs:sequence> + <xs:element ref="tei:num"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.measureLike_alternation"> + <xs:sequence> + <xs:element ref="tei:num"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.measureLike_sequence"> + <xs:sequence> + <xs:element ref="tei:num"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.measureLike_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:num"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.measureLike_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:num"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.measureLike_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:num"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.editorial"> + <xs:choice> + <xs:element ref="tei:abbr"/> + <xs:element ref="tei:expan"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.pPart.editorial_alternation"> + <xs:choice> + <xs:element ref="tei:abbr"/> + <xs:element ref="tei:expan"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.pPart.editorial_sequence"> + <xs:sequence> + <xs:element ref="tei:abbr"/> + <xs:element ref="tei:expan"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.editorial_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:abbr"/> + <xs:element minOccurs="0" ref="tei:expan"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.editorial_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:abbr"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:expan"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.editorial_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:abbr"/> + <xs:element maxOccurs="unbounded" ref="tei:expan"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.transcriptional"> + <xs:sequence> + <xs:element ref="tei:add"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.transcriptional_alternation"> + <xs:sequence> + <xs:element ref="tei:add"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.transcriptional_sequence"> + <xs:sequence> + <xs:element ref="tei:add"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.transcriptional_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:add"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.transcriptional_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:add"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.transcriptional_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:add"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.edit"> + <xs:choice> + <xs:group ref="tei:tbibmodel.pPart.editorial"/> + <xs:group ref="tei:tbibmodel.pPart.transcriptional"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.pPart.edit_alternation"> + <xs:choice> + <xs:group ref="tei:tbibmodel.pPart.editorial_alternation"/> + <xs:group ref="tei:tbibmodel.pPart.transcriptional_alternation"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.pPart.edit_sequence"> + <xs:sequence> + <xs:group ref="tei:tbibmodel.pPart.editorial_sequence"/> + <xs:group ref="tei:tbibmodel.pPart.transcriptional_sequence"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.edit_sequenceOptional"> + <xs:sequence> + <xs:group minOccurs="0" ref="tei:tbibmodel.pPart.editorial_sequenceOptional"/> + <xs:group minOccurs="0" ref="tei:tbibmodel.pPart.transcriptional_sequenceOptional"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.edit_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.pPart.editorial_sequenceOptionalRepeatable"/> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.pPart.transcriptional_sequenceOptionalRepeatable"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.edit_sequenceRepeatable"> + <xs:sequence> + <xs:group maxOccurs="unbounded" ref="tei:tbibmodel.pPart.editorial_sequenceRepeatable"/> + <xs:group maxOccurs="unbounded" ref="tei:tbibmodel.pPart.transcriptional_sequenceRepeatable"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.ptrLike"> + <xs:choice> + <xs:element ref="tei:ptr"/> + <xs:element ref="tei:ref"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.ptrLike_alternation"> + <xs:choice> + <xs:element ref="tei:ptr"/> + <xs:element ref="tei:ref"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.ptrLike_sequence"> + <xs:sequence> + <xs:element ref="tei:ptr"/> + <xs:element ref="tei:ref"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.ptrLike_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:ptr"/> + <xs:element minOccurs="0" ref="tei:ref"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.ptrLike_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:ptr"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:ref"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.ptrLike_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:ptr"/> + <xs:element maxOccurs="unbounded" ref="tei:ref"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.global.meta"> + <xs:choice> + <xs:element ref="tei:link"/> + <xs:element ref="tei:linkGrp"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.global.meta_alternation"> + <xs:choice> + <xs:element ref="tei:link"/> + <xs:element ref="tei:linkGrp"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.global.meta_sequence"> + <xs:sequence> + <xs:element ref="tei:link"/> + <xs:element ref="tei:linkGrp"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.global.meta_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:link"/> + <xs:element minOccurs="0" ref="tei:linkGrp"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.global.meta_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:link"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:linkGrp"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.global.meta_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:link"/> + <xs:element maxOccurs="unbounded" ref="tei:linkGrp"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.milestoneLike"> + <xs:choice> + <xs:element ref="tei:pb"/> + <xs:element ref="tei:cb"/> + <xs:element ref="tei:anchor"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.milestoneLike_alternation"> + <xs:choice> + <xs:element ref="tei:pb"/> + <xs:element ref="tei:cb"/> + <xs:element ref="tei:anchor"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.milestoneLike_sequence"> + <xs:sequence> + <xs:element ref="tei:pb"/> + <xs:element ref="tei:cb"/> + <xs:element ref="tei:anchor"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.milestoneLike_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:pb"/> + <xs:element minOccurs="0" ref="tei:cb"/> + <xs:element minOccurs="0" ref="tei:anchor"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.milestoneLike_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:pb"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:cb"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:anchor"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.milestoneLike_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:pb"/> + <xs:element maxOccurs="unbounded" ref="tei:cb"/> + <xs:element maxOccurs="unbounded" ref="tei:anchor"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.biblLike"> + <xs:choice> + <xs:element ref="tei:bibl"/> + <xs:element ref="tei:biblStruct"/> + <xs:element ref="tei:listBibl"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.biblLike_alternation"> + <xs:choice> + <xs:element ref="tei:bibl"/> + <xs:element ref="tei:biblStruct"/> + <xs:element ref="tei:listBibl"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.biblLike_sequence"> + <xs:sequence> + <xs:element ref="tei:bibl"/> + <xs:element ref="tei:biblStruct"/> + <xs:element ref="tei:listBibl"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.biblLike_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:bibl"/> + <xs:element minOccurs="0" ref="tei:biblStruct"/> + <xs:element minOccurs="0" ref="tei:listBibl"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.biblLike_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:bibl"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:biblStruct"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:listBibl"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.biblLike_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:bibl"/> + <xs:element maxOccurs="unbounded" ref="tei:biblStruct"/> + <xs:element maxOccurs="unbounded" ref="tei:listBibl"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.labelLike"> + <xs:sequence> + <xs:element ref="tei:label"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.labelLike_alternation"> + <xs:sequence> + <xs:element ref="tei:label"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.labelLike_sequence"> + <xs:sequence> + <xs:element ref="tei:label"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.labelLike_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:label"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.labelLike_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:label"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.labelLike_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:label"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.noteLike"> + <xs:choice> + <xs:element ref="tei:note"/> + <xs:element ref="tei:noteGrp"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.noteLike_alternation"> + <xs:choice> + <xs:element ref="tei:note"/> + <xs:element ref="tei:noteGrp"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.noteLike_sequence"> + <xs:sequence> + <xs:element ref="tei:note"/> + <xs:element ref="tei:noteGrp"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.noteLike_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:note"/> + <xs:element minOccurs="0" ref="tei:noteGrp"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.noteLike_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:note"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:noteGrp"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.noteLike_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:note"/> + <xs:element maxOccurs="unbounded" ref="tei:noteGrp"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pLike"> + <xs:choice> + <xs:element ref="tei:p"/> + <xs:element ref="tei:ab"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.divPart"> + <xs:sequence> + <xs:group ref="tei:tbibmodel.pLike"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.quoteLike"> + <xs:sequence> + <xs:element ref="tei:quote"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.quoteLike_alternation"> + <xs:sequence> + <xs:element ref="tei:quote"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.quoteLike_sequence"> + <xs:sequence> + <xs:element ref="tei:quote"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.quoteLike_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:quote"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.quoteLike_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:quote"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.quoteLike_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:quote"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.attributable"> + <xs:sequence> + <xs:group ref="tei:tbibmodel.quoteLike"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.attributable_alternation"> + <xs:sequence> + <xs:group ref="tei:tbibmodel.quoteLike_alternation"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.attributable_sequence"> + <xs:sequence> + <xs:group ref="tei:tbibmodel.quoteLike_sequence"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.attributable_sequenceOptional"> + <xs:sequence> + <xs:group minOccurs="0" ref="tei:tbibmodel.quoteLike_sequenceOptional"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.attributable_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.quoteLike_sequenceOptionalRepeatable"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.attributable_sequenceRepeatable"> + <xs:sequence> + <xs:group maxOccurs="unbounded" ref="tei:tbibmodel.quoteLike_sequenceRepeatable"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.respLike"> + <xs:choice> + <xs:element ref="tei:author"/> + <xs:element ref="tei:editor"/> + <xs:element ref="tei:respStmt"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.imprintPart"> + <xs:choice> + <xs:element ref="tei:publisher"/> + <xs:element ref="tei:biblScope"/> + <xs:element ref="tei:pubPlace"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.addressLike"> + <xs:choice> + <xs:element ref="tei:email"/> + <xs:element ref="tei:address"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.addressLike_alternation"> + <xs:choice> + <xs:element ref="tei:email"/> + <xs:element ref="tei:address"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.addressLike_sequence"> + <xs:sequence> + <xs:element ref="tei:email"/> + <xs:element ref="tei:address"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.addressLike_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:email"/> + <xs:element minOccurs="0" ref="tei:address"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.addressLike_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:email"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:address"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.addressLike_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:email"/> + <xs:element maxOccurs="unbounded" ref="tei:address"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.nameLike"> + <xs:choice> + <xs:group ref="tei:tbibmodel.nameLike.agent"/> + <xs:element ref="tei:rs"/> + <xs:element ref="tei:idno"/> + <xs:group ref="tei:tbibmodel.persNamePart"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.nameLike_alternation"> + <xs:choice> + <xs:group ref="tei:tbibmodel.nameLike.agent_alternation"/> + <xs:element ref="tei:rs"/> + <xs:element ref="tei:idno"/> + <xs:group ref="tei:tbibmodel.persNamePart_alternation"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.nameLike_sequence"> + <xs:sequence> + <xs:group ref="tei:tbibmodel.nameLike.agent_sequence"/> + <xs:element ref="tei:rs"/> + <xs:element ref="tei:idno"/> + <xs:group ref="tei:tbibmodel.persNamePart_sequence"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.nameLike_sequenceOptional"> + <xs:sequence> + <xs:group minOccurs="0" ref="tei:tbibmodel.nameLike.agent_sequenceOptional"/> + <xs:element minOccurs="0" ref="tei:rs"/> + <xs:element minOccurs="0" ref="tei:idno"/> + <xs:group minOccurs="0" ref="tei:tbibmodel.persNamePart_sequenceOptional"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.nameLike_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.nameLike.agent_sequenceOptionalRepeatable"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:rs"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:idno"/> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.persNamePart_sequenceOptionalRepeatable"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.global"> + <xs:choice> + <xs:group ref="tei:tbibmodel.global.meta"/> + <xs:group ref="tei:tbibmodel.milestoneLike"/> + <xs:group ref="tei:tbibmodel.noteLike"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.biblPart"> + <xs:choice> + <xs:group ref="tei:tbibmodel.respLike"/> + <xs:group ref="tei:tbibmodel.imprintPart"/> + <xs:element ref="tei:quote"/> + <xs:element ref="tei:series"/> + <xs:element ref="tei:citedRange"/> + <xs:element ref="tei:bibl"/> + <xs:element ref="tei:relatedItem"/> + <xs:element ref="tei:textLang"/> + <xs:element ref="tei:edition"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.addrPart"> + <xs:choice> + <xs:group ref="tei:tbibmodel.nameLike"/> + <xs:element ref="tei:addrLine"/> + <xs:element ref="tei:street"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.pPart.data"> + <xs:choice> + <xs:group ref="tei:tbibmodel.dateLike"/> + <xs:group ref="tei:tbibmodel.measureLike"/> + <xs:group ref="tei:tbibmodel.addressLike"/> + <xs:group ref="tei:tbibmodel.nameLike"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.pPart.data_alternation"> + <xs:choice> + <xs:group ref="tei:tbibmodel.dateLike_alternation"/> + <xs:group ref="tei:tbibmodel.measureLike_alternation"/> + <xs:group ref="tei:tbibmodel.addressLike_alternation"/> + <xs:group ref="tei:tbibmodel.nameLike_alternation"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.pPart.data_sequence"> + <xs:sequence> + <xs:group ref="tei:tbibmodel.dateLike_sequence"/> + <xs:group ref="tei:tbibmodel.measureLike_sequence"/> + <xs:group ref="tei:tbibmodel.addressLike_sequence"/> + <xs:group ref="tei:tbibmodel.nameLike_sequence"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.data_sequenceOptional"> + <xs:sequence> + <xs:group minOccurs="0" ref="tei:tbibmodel.dateLike_sequenceOptional"/> + <xs:group minOccurs="0" ref="tei:tbibmodel.measureLike_sequenceOptional"/> + <xs:group minOccurs="0" ref="tei:tbibmodel.addressLike_sequenceOptional"/> + <xs:group minOccurs="0" ref="tei:tbibmodel.nameLike_sequenceOptional"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.pPart.data_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.dateLike_sequenceOptionalRepeatable"/> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.measureLike_sequenceOptionalRepeatable"/> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.addressLike_sequenceOptionalRepeatable"/> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.nameLike_sequenceOptionalRepeatable"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.inter"> + <xs:choice> + <xs:group ref="tei:tbibmodel.biblLike"/> + <xs:group ref="tei:tbibmodel.labelLike"/> + <xs:group ref="tei:tbibmodel.attributable"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.phrase"> + <xs:choice> + <xs:group ref="tei:tbibmodel.segLike"/> + <xs:group ref="tei:tbibmodel.highlighted"/> + <xs:group ref="tei:tbibmodel.pPart.edit"/> + <xs:group ref="tei:tbibmodel.ptrLike"/> + <xs:group ref="tei:tbibmodel.pPart.data"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.paraPart"> + <xs:choice> + <xs:group ref="tei:tbibmodel.global"/> + <xs:group ref="tei:tbibmodel.inter"/> + <xs:group ref="tei:tbibmodel.phrase"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.limitedPhrase"> + <xs:choice> + <xs:group ref="tei:tbibmodel.hiLike"/> + <xs:group ref="tei:tbibmodel.emphLike"/> + <xs:group ref="tei:tbibmodel.pPart.editorial"/> + <xs:group ref="tei:tbibmodel.ptrLike"/> + <xs:group ref="tei:tbibmodel.pPart.data"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.annotationLike"> + <xs:sequence> + <xs:element ref="tei:note"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.standOffPart"> + <xs:choice> + <xs:group ref="tei:tbibmodel.global.meta"/> + <xs:group ref="tei:tbibmodel.biblLike"/> + <xs:group ref="tei:tbibmodel.annotationLike"/> + <xs:element ref="tei:seg"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.resource"> + <xs:sequence> + <xs:element ref="tei:standOff"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.describedResource"> + <xs:choice> + <xs:element ref="tei:teiCorpus"/> + <xs:element ref="tei:TEI"/> + </xs:choice> + </xs:group> + <xs:attributeGroup name="tbibatt.personal.attributes"> + <xs:attributeGroup ref="tei:tbibatt.naming.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.personal.attribute.full"/> + <xs:attributeGroup ref="tei:tbibatt.personal.attribute.sort"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.personal.attribute.full"> + <xs:attribute name="full" default="yes"> + <xs:annotation> + <xs:documentation>indicates whether the name component is given in full, as an abbreviation or simply as an initial.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="yes"> + <xs:annotation> + <xs:documentation>(yes) the name component is spelled out in full.</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="abb"> + <xs:annotation> + <xs:documentation>(abbreviated) the name component is given in an abbreviated form.</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="init"> + <xs:annotation> + <xs:documentation>(initial letter) the name component is indicated only by one initial.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.personal.attribute.sort"> + <xs:attribute name="sort" type="xs:nonNegativeInteger"> + <xs:annotation> + <xs:documentation>(sort) specifies the sort order of the name component in relation to others within the name.</xs:documentation> + </xs:annotation> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.calendarSystem.attributes"> + <xs:attributeGroup ref="tei:tbibatt.calendarSystem.attribute.calendar"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.calendarSystem.attribute.calendar"> + <xs:attribute name="calendar"> + <xs:annotation> + <xs:documentation>indicates one or more systems or calendars to which the date represented by the content of this element belongs.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:element name="p"> + <xs:annotation> + <xs:documentation>(paragraph) marks paragraphs in prose. [3.1. Paragraphs 7.2.5. Speech Contents]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.paraContent"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.declaring.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.fragmentable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.written.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="quote"> + <xs:annotation> + <xs:documentation>(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]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.specialPara"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.notated.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="q"> + <xs:annotation> + <xs:documentation>(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]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.specialPara"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.ascribed.directed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + <xs:attribute name="type"> + <xs:annotation> + <xs:documentation>(type) may be used to indicate whether the offset passage is spoken or thought, or to characterize it more finely. +Empfohlene Werte sind: 1] spoken (spoken); 2] thought (thought); 3] written (written); 4] soCalled (so called); 5] foreign (foreign); 6] distinct (distinct); 7] term; 8] emph (emph); 9] mentioned (mentioned)</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="spoken"> + <xs:annotation> + <xs:documentation>(spoken) representation of speech</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="thought"> + <xs:annotation> + <xs:documentation>(thought) representation of thought, e.g. internal monologue</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="written"> + <xs:annotation> + <xs:documentation>(written) quotation from a written source</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="soCalled"> + <xs:annotation> + <xs:documentation>(so called) authorial distance</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="foreign"> + <xs:annotation> + <xs:documentation>(foreign) foreign words</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="distinct"> + <xs:annotation> + <xs:documentation>(distinct) linguistically distinct</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="term"> + <xs:annotation> + <xs:documentation>technical term</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="emph"> + <xs:annotation> + <xs:documentation>(emph) rhetorically emphasized</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="mentioned"> + <xs:annotation> + <xs:documentation>(mentioned) refering to itself, not its normal referent</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="add"> + <xs:annotation> + <xs:documentation>(addition) contains letters, words, or phrases inserted in the source text by an author, scribe, or a previous annotator or corrector. [3.5.3. Additions, Deletions, and Omissions]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.paraContent"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.transcriptional.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.placement.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.dimensions.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="name"> + <xs:annotation> + <xs:documentation>(name, proper noun) contains a proper noun or noun phrase. [3.6.1. Referring Strings]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.personal.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.datable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.editLike.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + <xs:attribute name="calendar"> + <xs:annotation> + <xs:documentation>indicates one or more systems or calendars to which the date represented by the content of this element belongs.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="rs"> + <xs:annotation> + <xs:documentation>(referencing string) contains a general purpose name or referring string. [14.2.1. Personal Names 3.6.1. Referring Strings]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.naming.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="email"> + <xs:annotation> + <xs:documentation>(electronic mail address) contains an email address identifying a location to which email messages can be delivered. [3.6.2. Addresses]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="address"> + <xs:annotation> + <xs:documentation>(address) contains a postal address, for example of a publisher, an organization, or an individual. [3.6.2. Addresses 2.2.4. Publication, Distribution, Licensing, etc. 3.12.2.4. Imprint, Size of a Document, and Reprint Information]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.global"/> + <xs:sequence maxOccurs="unbounded"> + <xs:group ref="tei:tbibmodel.addrPart"/> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.global"/> + </xs:sequence> + </xs:sequence> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="addrLine"> + <xs:annotation> + <xs:documentation>(address line) contains one line of a postal address. [3.6.2. Addresses 2.2.4. Publication, Distribution, Licensing, etc. 3.12.2.4. Imprint, Size of a Document, and Reprint Information]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="street"> + <xs:annotation> + <xs:documentation>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.6.2. Addresses]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="num"> + <xs:annotation> + <xs:documentation>(number) contains a number, written in any form. [3.6.3. Numbers and +Measures]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attribute.subtype"/> + <xs:attributeGroup ref="tei:tbibatt.ranging.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + <xs:attribute name="type"> + <xs:annotation> + <xs:documentation>indicates the type of numeric value. +Empfohlene Werte sind: 1] cardinal; 2] ordinal; 3] fraction; 4] percentage</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="cardinal"> + <xs:annotation> + <xs:documentation>absolute number, e.g. 21, 21.5</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="ordinal"> + <xs:annotation> + <xs:documentation>ordinal number, e.g. 21st</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="fraction"> + <xs:annotation> + <xs:documentation>fraction, e.g. one half or three-quarters</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="percentage"> + <xs:annotation> + <xs:documentation>a percentage</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="value"> + <xs:annotation> + <xs:documentation>supplies the value of the number in standard form.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:double xs:decimal"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="(\-?[\d]+/\-?[\d]+)"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="date"> + <xs:annotation> + <xs:documentation>(date) contains a date in any format. [3.6.4. Dates and Times 2.2.4. Publication, Distribution, Licensing, etc. 2.6. The Revision Description 3.12.2.4. Imprint, Size of a Document, and Reprint Information 16.2.3. The Setting Description 14.4. Dates]</xs:documentation> + </xs:annotation> + <xs:complexType mixed="true"> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:group ref="tei:tbibmodel.phrase"/> + <xs:group ref="tei:tbibmodel.global"/> + </xs:choice> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.canonical.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.datable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.calendarSystem.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.editLike.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.dimensions.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="time"> + <xs:annotation> + <xs:documentation>(time) contains a phrase defining a time of day in any format. [3.6.4. Dates and Times]</xs:documentation> + </xs:annotation> + <xs:complexType mixed="true"> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:group ref="tei:tbibmodel.phrase"/> + <xs:group ref="tei:tbibmodel.global"/> + </xs:choice> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.datable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.calendarSystem.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.canonical.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.editLike.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.dimensions.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="abbr"> + <xs:annotation> + <xs:documentation>(abbreviation) contains an abbreviation of any sort. [3.6.5. Abbreviations and Their Expansions]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attribute.subtype"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + <xs:attribute name="type"> + <xs:annotation> + <xs:documentation>(type) allows the encoder to classify the abbreviation according to some convenient typology. +Beispielwerte sind etwa: 1] suspension (suspension); 2] contraction (contraction); 3] brevigraph; 4] superscription (superscription); 5] acronym (acronym); 6] title (title); 7] organization (organization); 8] geographic (geographic)</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="expan"> + <xs:annotation> + <xs:documentation>(expansion) contains the expansion of an abbreviation. [3.6.5. Abbreviations and Their Expansions]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.editLike.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="ptr"> + <xs:annotation> + <xs:documentation>(pointer) defines a pointer to another location. [3.7. Simple Links and Cross-References 17.1. Links]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:attributeGroup ref="tei:tbibatt.cReferencing.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.declaring.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.internetMedia.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.pointing.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="ref"> + <xs:annotation> + <xs:documentation>(reference) defines a reference to another location, possibly modified by additional text or comment. [3.7. Simple Links and Cross-References 17.1. Links]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.paraContent"> + <xs:attributeGroup ref="tei:tbibatt.cReferencing.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.declaring.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.internetMedia.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.pointing.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attribute.subtype"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + <xs:attribute name="type"> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="footnote"> + <xs:annotation> + <xs:documentation>A footnote or endnote</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value=""> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="previous-author"> + <xs:annotation> + <xs:documentation>A reference to a previously stated name of an author, replaced by abbreviations such as "id.", "eadem" in English or "ders.", "dies." in German</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="previous-work"> + <xs:annotation> + <xs:documentation>A reference to a previously referenced work, usually indicated by abbreviations such as "op. cit.", "ibid." in English or "ebd.", "a.a.O." in German.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="label"> + <xs:annotation> + <xs:documentation>(label) contains any label or heading used to identify part of a text, typically but not exclusively in a list or glossary. [3.8. Lists]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.placement.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.written.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="note"> + <xs:annotation> + <xs:documentation>(note) contains a note or annotation. [3.9.1. Notes and Simple Annotation 2.2.6. The Notes Statement 3.12.2.8. Notes and Statement of Language 10.3.5.4. Notes within Entries]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.specialPara"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.placement.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.pointing.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attribute.subtype"/> + <xs:attributeGroup ref="tei:tbibatt.written.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.anchoring.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + <xs:attribute name="type"> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="footnote"> + <xs:annotation> + <xs:documentation>A footnote </xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="signal"> + <xs:annotation> + <xs:documentation>An introductory word or phrase signalling a following reference. Signal expressions can express agreement ("See" "Cf.") or disagreement ("contra", "but see", "anders...") or can contain a value judgement ("Abwegig hier")</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="comment"> + <xs:annotation> + <xs:documentation>A segment that does not contain bibliographic information but gives additional information or commentary on the work being referenced.</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="document-type"> + <xs:annotation> + <xs:documentation>Information on the type of document which is not necessarily part of the bibliographic data, such as "report", "Ph.D. dissertation", "Master's thesis"</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="noteGrp"> + <xs:annotation> + <xs:documentation>(note group) contains a group of notes [3.9.1.1. Encoding Grouped Notes]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:choice maxOccurs="unbounded"> + <xs:element ref="tei:note"/> + <xs:element ref="tei:noteGrp"/> + </xs:choice> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.placement.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.pointing.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.written.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.anchoring.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="pb"> + <xs:annotation> + <xs:documentation>(page beginning) marks the beginning of a new page in a paginated document. [3.11.3. Milestone +Elements]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.edition.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.spanning.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.breaking.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="cb"> + <xs:annotation> + <xs:documentation>(column beginning) marks the beginning of a new column of a text on a multi-column page. [3.11.3. Milestone +Elements]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.edition.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.spanning.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.breaking.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="analytic"> + <xs:annotation> + <xs:documentation>(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.12.2.1. Analytic, Monographic, and Series Levels]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="tei:author"/> + <xs:element ref="tei:editor"/> + <xs:element ref="tei:respStmt"/> + <xs:element ref="tei:title"/> + <xs:group ref="tei:tbibmodel.ptrLike"/> + <xs:element ref="tei:date"/> + <xs:element ref="tei:textLang"/> + <xs:element ref="tei:idno"/> + </xs:choice> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="monogr"> + <xs:annotation> + <xs:documentation>(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.12.2.1. Analytic, Monographic, and Series Levels]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + <xs:choice minOccurs="0"> + <xs:sequence> + <xs:choice> + <xs:element ref="tei:author"/> + <xs:element ref="tei:editor"/> + <xs:element ref="tei:respStmt"/> + </xs:choice> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="tei:author"/> + <xs:element ref="tei:editor"/> + <xs:element ref="tei:respStmt"/> + </xs:choice> + <xs:element maxOccurs="unbounded" ref="tei:title"/> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:group ref="tei:tbibmodel.ptrLike"/> + <xs:element ref="tei:idno"/> + <xs:element ref="tei:textLang"/> + <xs:element ref="tei:editor"/> + <xs:element ref="tei:respStmt"/> + </xs:choice> + </xs:sequence> + <xs:sequence> + <xs:choice maxOccurs="unbounded"> + <xs:element ref="tei:title"/> + <xs:group ref="tei:tbibmodel.ptrLike"/> + <xs:element ref="tei:idno"/> + </xs:choice> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="tei:textLang"/> + <xs:element ref="tei:author"/> + <xs:element ref="tei:editor"/> + <xs:element ref="tei:respStmt"/> + </xs:choice> + </xs:sequence> + <xs:element ref="tei:idno"/> + </xs:choice> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.noteLike"/> + <xs:sequence minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="tei:edition"/> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="tei:idno"/> + <xs:group ref="tei:tbibmodel.ptrLike"/> + <xs:element ref="tei:editor"/> + <xs:element ref="tei:respStmt"/> + </xs:choice> + </xs:sequence> + <xs:element ref="tei:imprint"/> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="tei:imprint"/> + <xs:element ref="tei:biblScope"/> + </xs:choice> + </xs:sequence> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="series"> + <xs:annotation> + <xs:documentation>(series information) contains information about the series in which a book or other bibliographic item has appeared. [3.12.2.1. Analytic, Monographic, and Series Levels]</xs:documentation> + </xs:annotation> + <xs:complexType mixed="true"> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:element ref="tei:title"/> + <xs:group ref="tei:tbibmodel.ptrLike"/> + <xs:element ref="tei:editor"/> + <xs:element ref="tei:respStmt"/> + <xs:element ref="tei:biblScope"/> + <xs:element ref="tei:idno"/> + <xs:element ref="tei:textLang"/> + <xs:group ref="tei:tbibmodel.global"/> + </xs:choice> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="author"> + <xs:annotation> + <xs:documentation>(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.12.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.naming.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.datable.attributes"/> + <xs:attribute name="calendar"> + <xs:annotation> + <xs:documentation>indicates one or more systems or calendars to which the date represented by the content of this element belongs.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="editor"> + <xs:annotation> + <xs:documentation>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.12.2.2. Titles, Authors, and Editors]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.naming.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.datable.attributes"/> + <xs:attribute name="calendar"> + <xs:annotation> + <xs:documentation>indicates one or more systems or calendars to which the date represented by the content of this element belongs.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="respStmt"> + <xs:annotation> + <xs:documentation>(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.12.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.2. The Edition Statement 2.2.5. The Series Statement]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + <xs:choice> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:resp"/> + <xs:group maxOccurs="unbounded" ref="tei:tbibmodel.nameLike.agent"/> + </xs:sequence> + <xs:sequence> + <xs:group maxOccurs="unbounded" ref="tei:tbibmodel.nameLike.agent"/> + <xs:element maxOccurs="unbounded" ref="tei:resp"/> + </xs:sequence> + </xs:choice> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:note"/> + </xs:sequence> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.canonical.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="resp"> + <xs:annotation> + <xs:documentation>(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.12.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.2. The Edition Statement 2.2.5. The Series Statement]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq.limited"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.canonical.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.datable.attributes"/> + <xs:attribute name="calendar"> + <xs:annotation> + <xs:documentation>indicates one or more systems or calendars to which the date represented by the content of this element belongs.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="title"> + <xs:annotation> + <xs:documentation>(title) contains a title for any kind of work. [3.12.2.2. Titles, Authors, and Editors 2.2.1. The Title Statement 2.2.5. The Series Statement]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.paraContent"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attribute.subtype"/> + <xs:attributeGroup ref="tei:tbibatt.canonical.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.datable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + <xs:attribute name="type"> + <xs:annotation> + <xs:documentation>classifies the title according to some convenient typology. +Beispielwerte sind etwa: 1] main; 2] sub (subordinate); 3] alt (alternate); 4] short; 5] desc (descriptive)</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="calendar"> + <xs:annotation> + <xs:documentation>indicates one or more systems or calendars to which the date represented by the content of this element belongs.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="level"> + <xs:annotation> + <xs:documentation>indicates the bibliographic level for a title, that is, whether it identifies an article, book, journal, series, or unpublished material.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="a"> + <xs:annotation> + <xs:documentation>(analytic) the title applies to an analytic item, such as an article, poem, or other work published as part of a larger item.</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="m"> + <xs:annotation> + <xs:documentation>(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</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="j"> + <xs:annotation> + <xs:documentation>(journal) the title applies to any serial or periodical publication such as a journal, magazine, or newspaper</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="s"> + <xs:annotation> + <xs:documentation>(series) the title applies to a series of otherwise distinct publications such as a collection</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="u"> + <xs:annotation> + <xs:documentation>(unpublished) the title applies to any unpublished material (including theses and dissertations unless published by a commercial press)</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="imprint"> + <xs:annotation> + <xs:documentation>groups information relating to the publication or distribution of a bibliographic item. [3.12.2.4. Imprint, Size of a Document, and Reprint Information]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence maxOccurs="unbounded"> + <xs:choice> + <xs:group ref="tei:tbibmodel.imprintPart"/> + <xs:group ref="tei:tbibmodel.dateLike"/> + </xs:choice> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:respStmt"/> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.global"/> + </xs:sequence> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="publisher"> + <xs:annotation> + <xs:documentation>(publisher) provides the name of the organization responsible for the publication or distribution of a bibliographic item. [3.12.2.4. Imprint, Size of a Document, and Reprint Information 2.2.4. Publication, Distribution, Licensing, etc.]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.canonical.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="biblScope"> + <xs:annotation> + <xs:documentation>(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.12.2.5. Scopes and Ranges in Bibliographic Citations]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.citing.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="citedRange"> + <xs:annotation> + <xs:documentation>(cited range) defines the range of cited content, often represented by pages or other units [3.12.2.5. Scopes and Ranges in Bibliographic Citations]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.pointing.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.citing.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="pubPlace"> + <xs:annotation> + <xs:documentation>(publication place) contains the name of the place where a bibliographic item was published. [3.12.2.4. Imprint, Size of a Document, and Reprint Information]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.naming.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="bibl"> + <xs:annotation> + <xs:documentation>(bibliographic citation) contains a loosely-structured bibliographic citation of which the sub-components may or may not be explicitly tagged. [3.12.1. Methods of Encoding Bibliographic References and Lists of References 2.2.7. The Source Description 16.3.2. Declarable Elements]</xs:documentation> + </xs:annotation> + <xs:complexType mixed="true"> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:group ref="tei:tbibmodel.highlighted"/> + <xs:group ref="tei:tbibmodel.pPart.data"/> + <xs:group ref="tei:tbibmodel.pPart.edit"/> + <xs:group ref="tei:tbibmodel.segLike"/> + <xs:group ref="tei:tbibmodel.ptrLike"/> + <xs:group ref="tei:tbibmodel.biblPart"/> + <xs:group ref="tei:tbibmodel.global"/> + </xs:choice> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.declarable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.sortable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.docStatus.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="biblStruct"> + <xs:annotation> + <xs:documentation>(structured bibliographic citation) contains a structured bibliographic citation, in which only bibliographic sub-elements appear and in a specified order. [3.12.1. Methods of Encoding Bibliographic References and Lists of References 2.2.7. The Source Description 16.3.2. Declarable Elements]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:analytic"/> + <xs:sequence maxOccurs="unbounded"> + <xs:element ref="tei:monogr"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:series"/> + </xs:sequence> + <xs:choice minOccurs="0" maxOccurs="unbounded"> + <xs:group ref="tei:tbibmodel.noteLike"/> + <xs:group ref="tei:tbibmodel.ptrLike"/> + <xs:element ref="tei:relatedItem"/> + <xs:element ref="tei:citedRange"/> + </xs:choice> + </xs:sequence> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.declarable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.sortable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.docStatus.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="listBibl"> + <xs:annotation> + <xs:documentation>(citation list) contains a list of bibliographic citations of any kind. [3.12.1. Methods of Encoding Bibliographic References and Lists of References 2.2.7. The Source Description 16.3.2. Declarable Elements]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:sequence> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.milestoneLike"/> + <xs:sequence maxOccurs="unbounded"> + <xs:group maxOccurs="unbounded" ref="tei:tbibmodel.biblLike"/> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.milestoneLike"/> + </xs:sequence> + </xs:sequence> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.sortable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.declarable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="relatedItem"> + <xs:annotation> + <xs:documentation>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.12.2.7. Related Items]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:choice minOccurs="0"> + <xs:group ref="tei:tbibmodel.biblLike"/> + <xs:group ref="tei:tbibmodel.ptrLike"/> + </xs:choice> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attribute name="target"> + <xs:annotation> + <xs:documentation>points to the related bibliographic element by means of an absolute or relative URI reference</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:complexType> + </xs:element> + <xs:element name="teiCorpus"> + <xs:complexType> + <xs:sequence> + <xs:group minOccurs="0" maxOccurs="unbounded" ref="tei:tbibmodel.resource"/> + <xs:group maxOccurs="unbounded" ref="tei:tbibmodel.describedResource"/> + </xs:sequence> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attribute name="version"> + <xs:annotation> + <xs:documentation>(version) specifies the version number of the TEI Guidelines against which this document is valid.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[\d]+(\.[\d]+){0,2}"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:complexType> + </xs:element> + <xs:element name="textLang"> + <xs:annotation> + <xs:documentation>(text language) describes the languages and writing systems identified within the bibliographic work being described, rather than its description. [3.12.2.4. Imprint, Size of a Document, and Reprint Information 11.6.6. Languages and Writing Systems]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.specialPara"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attribute name="mainLang"> + <xs:annotation> + <xs:documentation>(main language) supplies a code which identifies the chief language used in the bibliographic work.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:language"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value=""> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="otherLangs"> + <xs:annotation> + <xs:documentation>(other languages) one or more codes identifying any other languages used in the bibliographic work.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:union memberTypes="xs:language"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value=""> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:list> + </xs:simpleType> + </xs:attribute> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="edition"> + <xs:annotation> + <xs:documentation>(edition) describes the particularities of one edition of a text. [2.2.2. The Edition Statement]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="idno"> + <xs:annotation> + <xs:documentation>(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. [14.3.1. Basic Principles 2.2.4. Publication, Distribution, Licensing, etc. 2.2.5. The Series Statement 3.12.2.4. Imprint, Size of a Document, and Reprint Information]</xs:documentation> + </xs:annotation> + <xs:complexType mixed="true"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:idno"/> + </xs:sequence> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.sortable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.datable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attribute.subtype"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + <xs:attribute name="type"> + <xs:annotation> + <xs:documentation>categorizes the identifier, for example as an ISBN, Social Security number, etc. +Empfohlene Werte sind: 1] ISBN; 2] ISSN; 3] DOI; 4] URI; 5] VIAF; 6] ESTC; 7] OCLC</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="ISBN"/> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="ISSN"> + <xs:annotation> + <xs:documentation>International Standard Serial Number: an eight-digit number to uniquely identify a serial publication.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="DOI"> + <xs:annotation> + <xs:documentation>Digital Object Identifier: a unique string of letters and numbers assigned to an electronic document.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="URI"/> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="VIAF"> + <xs:annotation> + <xs:documentation>A data number in the Virtual Internet Authority File assigned to link different names in catalogs around the world for the same entity.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="ESTC"> + <xs:annotation> + <xs:documentation>English Short-Title Catalogue number: an identifying number assigned to a document in English printed in the British Isles or North America before 1801.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="OCLC"> + <xs:annotation> + <xs:documentation>OCLC control number (record number) for the union catalog record in WorldCat, a union catalog for member libraries in the Online Computer Library Center global cooperative.</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="calendar"> + <xs:annotation> + <xs:documentation>indicates one or more systems or calendars to which the date represented by the content of this element belongs.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:complexType> + </xs:element> + <xs:element name="TEI"> + <xs:complexType> + <xs:choice> + <xs:sequence> + <xs:group maxOccurs="unbounded" ref="tei:tbibmodel.resource"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:TEI"/> + </xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:TEI"/> + </xs:choice> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attribute name="version"> + <xs:annotation> + <xs:documentation>specifies the version number of the TEI Guidelines against which this document is valid.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[\d]+(\.[\d]+){0,2}"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:complexType> + </xs:element> + <xs:attributeGroup name="tbibatt.datable.custom.attributes"> + <xs:attributeGroup ref="tei:tbibatt.datable.custom.attribute.when-custom"/> + <xs:attributeGroup ref="tei:tbibatt.datable.custom.attribute.notBefore-custom"/> + <xs:attributeGroup ref="tei:tbibatt.datable.custom.attribute.notAfter-custom"/> + <xs:attributeGroup ref="tei:tbibatt.datable.custom.attribute.from-custom"/> + <xs:attributeGroup ref="tei:tbibatt.datable.custom.attribute.to-custom"/> + <xs:attributeGroup ref="tei:tbibatt.datable.custom.attribute.datingPoint"/> + <xs:attributeGroup ref="tei:tbibatt.datable.custom.attribute.datingMethod"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.custom.attribute.when-custom"> + <xs:attribute name="when-custom"> + <xs:annotation> + <xs:documentation>supplies the value of a date or time in some custom standard form.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.custom.attribute.notBefore-custom"> + <xs:attribute name="notBefore-custom"> + <xs:annotation> + <xs:documentation>specifies the earliest possible date for the event in some custom standard form.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.custom.attribute.notAfter-custom"> + <xs:attribute name="notAfter-custom"> + <xs:annotation> + <xs:documentation>specifies the latest possible date for the event in some custom standard form.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.custom.attribute.from-custom"> + <xs:attribute name="from-custom"> + <xs:annotation> + <xs:documentation>indicates the starting point of the period in some custom standard form.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.custom.attribute.to-custom"> + <xs:attribute name="to-custom"> + <xs:annotation> + <xs:documentation>indicates the ending point of the period in some custom standard form.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[^\p{C}\p{Z}]+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.custom.attribute.datingPoint"> + <xs:attribute name="datingPoint"> + <xs:annotation> + <xs:documentation>supplies a pointer to some location defining a named point in time with reference to which the datable item is understood to have occurred</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.custom.attribute.datingMethod"> + <xs:attribute name="datingMethod"> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:group name="tbibmodel.persNamePart"> + <xs:choice> + <xs:element ref="tei:surname"/> + <xs:element ref="tei:forename"/> + <xs:element ref="tei:nameLink"/> + <xs:element ref="tei:addName"/> + <xs:element ref="tei:roleName"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.persNamePart_alternation"> + <xs:choice> + <xs:element ref="tei:surname"/> + <xs:element ref="tei:forename"/> + <xs:element ref="tei:nameLink"/> + <xs:element ref="tei:addName"/> + <xs:element ref="tei:roleName"/> + </xs:choice> + </xs:group> + <xs:group name="tbibmodel.persNamePart_sequence"> + <xs:sequence> + <xs:element ref="tei:surname"/> + <xs:element ref="tei:forename"/> + <xs:element ref="tei:nameLink"/> + <xs:element ref="tei:addName"/> + <xs:element ref="tei:roleName"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.persNamePart_sequenceOptional"> + <xs:sequence> + <xs:element minOccurs="0" ref="tei:surname"/> + <xs:element minOccurs="0" ref="tei:forename"/> + <xs:element minOccurs="0" ref="tei:nameLink"/> + <xs:element minOccurs="0" ref="tei:addName"/> + <xs:element minOccurs="0" ref="tei:roleName"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.persNamePart_sequenceOptionalRepeatable"> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:surname"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:forename"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:nameLink"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:addName"/> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="tei:roleName"/> + </xs:sequence> + </xs:group> + <xs:group name="tbibmodel.persNamePart_sequenceRepeatable"> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="tei:surname"/> + <xs:element maxOccurs="unbounded" ref="tei:forename"/> + <xs:element maxOccurs="unbounded" ref="tei:nameLink"/> + <xs:element maxOccurs="unbounded" ref="tei:addName"/> + <xs:element maxOccurs="unbounded" ref="tei:roleName"/> + </xs:sequence> + </xs:group> + <xs:attributeGroup name="tbibatt.datable.iso.attributes"> + <xs:attributeGroup ref="tei:tbibatt.datable.iso.attribute.when-iso"/> + <xs:attributeGroup ref="tei:tbibatt.datable.iso.attribute.notBefore-iso"/> + <xs:attributeGroup ref="tei:tbibatt.datable.iso.attribute.notAfter-iso"/> + <xs:attributeGroup ref="tei:tbibatt.datable.iso.attribute.from-iso"/> + <xs:attributeGroup ref="tei:tbibatt.datable.iso.attribute.to-iso"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.iso.attribute.when-iso"> + <xs:attribute name="when-iso"> + <xs:annotation> + <xs:documentation>supplies the value of a date or time in a standard form.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:date xs:gYear xs:gMonth xs:gDay xs:gYearMonth xs:gMonthDay xs:time xs:dateTime"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[0-9.,DHMPRSTWYZ/:+\-]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.iso.attribute.notBefore-iso"> + <xs:attribute name="notBefore-iso"> + <xs:annotation> + <xs:documentation>specifies the earliest possible date for the event in standard form, e.g. yyyy-mm-dd.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:date xs:gYear xs:gMonth xs:gDay xs:gYearMonth xs:gMonthDay xs:time xs:dateTime"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[0-9.,DHMPRSTWYZ/:+\-]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.iso.attribute.notAfter-iso"> + <xs:attribute name="notAfter-iso"> + <xs:annotation> + <xs:documentation>specifies the latest possible date for the event in standard form, e.g. yyyy-mm-dd.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:date xs:gYear xs:gMonth xs:gDay xs:gYearMonth xs:gMonthDay xs:time xs:dateTime"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[0-9.,DHMPRSTWYZ/:+\-]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.iso.attribute.from-iso"> + <xs:attribute name="from-iso"> + <xs:annotation> + <xs:documentation>indicates the starting point of the period in standard form.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:date xs:gYear xs:gMonth xs:gDay xs:gYearMonth xs:gMonthDay xs:time xs:dateTime"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[0-9.,DHMPRSTWYZ/:+\-]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.datable.iso.attribute.to-iso"> + <xs:attribute name="to-iso"> + <xs:annotation> + <xs:documentation>indicates the ending point of the period in standard form.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:union memberTypes="xs:date xs:gYear xs:gMonth xs:gDay xs:gYearMonth xs:gMonthDay xs:time xs:dateTime"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:pattern value="[0-9.,DHMPRSTWYZ/:+\-]+"/> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:element name="orgName"> + <xs:annotation> + <xs:documentation>(organization name) contains an organizational name. [14.2.2. Organizational Names]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.datable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.editLike.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.personal.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + <xs:attribute name="calendar"> + <xs:annotation> + <xs:documentation>indicates one or more systems or calendars to which the date represented by the content of this element belongs.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="persName"> + <xs:annotation> + <xs:documentation>(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. [14.2.1. Personal Names]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.datable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.editLike.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.personal.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + <xs:attribute name="calendar"> + <xs:annotation> + <xs:documentation>indicates one or more systems or calendars to which the date represented by the content of this element belongs.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="surname"> + <xs:annotation> + <xs:documentation>(surname) contains a family (inherited) name, as opposed to a given, baptismal, or nick name. [14.2.1. Personal Names]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.personal.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="forename"> + <xs:annotation> + <xs:documentation>(forename) contains a forename, given or baptismal name. [14.2.1. Personal Names]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.personal.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="nameLink"> + <xs:annotation> + <xs:documentation>(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. [14.2.1. Personal Names]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="addName"> + <xs:annotation> + <xs:documentation>(additional name) contains an additional name component, such as a nickname, epithet, or alias, or any other descriptive phrase used within a personal name. [14.2.1. Personal Names]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.personal.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="roleName"> + <xs:annotation> + <xs:documentation>(role name) contains a name component which indicates that the referent has a particular role or position in society, such as an official title or rank. [14.2.1. Personal Names]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.phraseSeq"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.personal.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:attributeGroup name="tbibatt.global.linking.attributes"> + <xs:attributeGroup ref="tei:tbibatt.global.linking.attribute.corresp"/> + <xs:attributeGroup ref="tei:tbibatt.global.linking.attribute.synch"/> + <xs:attributeGroup ref="tei:tbibatt.global.linking.attribute.sameAs"/> + <xs:attributeGroup ref="tei:tbibatt.global.linking.attribute.copyOf"/> + <xs:attributeGroup ref="tei:tbibatt.global.linking.attribute.next"/> + <xs:attributeGroup ref="tei:tbibatt.global.linking.attribute.prev"/> + <xs:attributeGroup ref="tei:tbibatt.global.linking.attribute.exclude"/> + <xs:attributeGroup ref="tei:tbibatt.global.linking.attribute.select"/> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.linking.attribute.corresp"> + <xs:attribute name="corresp"> + <xs:annotation> + <xs:documentation>(corresponds) points to elements that correspond to the current element in some way.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.linking.attribute.synch"> + <xs:attribute name="synch"> + <xs:annotation> + <xs:documentation>(synchronous) points to elements that are synchronous with the current element.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.linking.attribute.sameAs"> + <xs:attribute name="sameAs"> + <xs:annotation> + <xs:documentation>points to an element that is the same as the current element.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.linking.attribute.copyOf"> + <xs:attribute name="copyOf"> + <xs:annotation> + <xs:documentation>points to an element of which the current element is a copy.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.linking.attribute.next"> + <xs:attribute name="next"> + <xs:annotation> + <xs:documentation>points to the next element of a virtual aggregate of which the current element is part.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.linking.attribute.prev"> + <xs:attribute name="prev"> + <xs:annotation> + <xs:documentation>(previous) points to the previous element of a virtual aggregate of which the current element is part.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.linking.attribute.exclude"> + <xs:attribute name="exclude"> + <xs:annotation> + <xs:documentation>points to elements that are in exclusive alternation with the current element.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:attributeGroup name="tbibatt.global.linking.attribute.select"> + <xs:attribute name="select"> + <xs:annotation> + <xs:documentation>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.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction> + <xs:simpleType> + <xs:list> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:list> + </xs:simpleType> + <xs:minLength value="1"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + </xs:attributeGroup> + <xs:element name="link"> + <xs:annotation> + <xs:documentation>(link) defines an association or hypertextual link among elements or passages, of some type not more precisely specifiable by other elements. [17.1. Links]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.pointing.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="linkGrp"> + <xs:annotation> + <xs:documentation>(link group) defines a collection of associations or hypertextual links. [17.1. Links]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:choice maxOccurs="unbounded"> + <xs:element ref="tei:link"/> + <xs:element ref="tei:ptr"/> + </xs:choice> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.pointing.group.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="ab"> + <xs:annotation> + <xs:documentation>(anonymous block) contains any component-level unit of text, acting as a container for phrase or inter level elements analogous to, but without the same constraints as, a paragraph. [17.3. Blocks, Segments, and Anchors]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.abContent"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.declaring.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.fragmentable.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.written.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="anchor"> + <xs:annotation> + <xs:documentation>(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 17.5. Correspondence and Alignment]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:complexType> + </xs:element> + <xs:element name="seg"> + <xs:annotation> + <xs:documentation>(arbitrary segment) represents any segmentation of text below the chunk level. [17.3. Blocks, Segments, and Anchors 6.2. Components of the Verse Line 7.2.5. Speech Contents]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:complexContent> + <xs:extension base="tei:tbibmacro.paraContent"> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.segLike.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.written.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.notated.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.cmc.attributes"/> + </xs:extension> + </xs:complexContent> + </xs:complexType> + </xs:element> + <xs:element name="standOff"> + <xs:annotation> + <xs:documentation>Functions as a container element for linked data, contextual information, and stand-off annotations embedded in a TEI document. [17.10. The standOff Container]</xs:documentation> + </xs:annotation> + <xs:complexType> + <xs:group maxOccurs="unbounded" ref="tei:tbibmodel.standOffPart"/> + <xs:attributeGroup ref="tei:tbibatt.global.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.typed.attributes"/> + <xs:attributeGroup ref="tei:tbibatt.declaring.attributes"/> + </xs:complexType> + </xs:element> +</xs:schema> diff --git a/convert-anystyle-data/llamore/schema/xsd/xml.xsd b/convert-anystyle-data/llamore/schema/xsd/xml.xsd new file mode 100644 index 0000000000000000000000000000000000000000..bf84197c15b61ed63bce3fd87d98dcff09cb37e5 --- /dev/null +++ b/convert-anystyle-data/llamore/schema/xsd/xml.xsd @@ -0,0 +1,53 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://www.w3.org/XML/1998/namespace" xmlns:tei="http://www.tei-c.org/ns/1.0"> + <xs:import namespace="http://www.tei-c.org/ns/1.0" schemaLocation="document.xsd"/> + <xs:attribute name="id" type="xs:ID"> + <xs:annotation> + <xs:documentation>(identifier) provides a unique identifier for the element bearing the attribute.</xs:documentation> + </xs:annotation> + </xs:attribute> + <xs:attribute name="lang"> + <xs:simpleType> + <xs:union memberTypes="xs:language"> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value=""> + <xs:annotation> + <xs:documentation/> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:union> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="base"> + <xs:annotation> + <xs:documentation>provides a base URI reference with which applications can resolve relative URI references into absolute URI references.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:anyURI"> + <xs:pattern value="\S+"/> + </xs:restriction> + </xs:simpleType> + </xs:attribute> + <xs:attribute name="space"> + <xs:annotation> + <xs:documentation>signals an intention about how white space should be managed by applications.</xs:documentation> + </xs:annotation> + <xs:simpleType> + <xs:restriction base="xs:token"> + <xs:enumeration value="default"> + <xs:annotation> + <xs:documentation>signals that the application's default white-space processing modes are acceptable</xs:documentation> + </xs:annotation> + </xs:enumeration> + <xs:enumeration value="preserve"> + <xs:annotation> + <xs:documentation>indicates the intent that applications preserve all white space</xs:documentation> + </xs:annotation> + </xs:enumeration> + </xs:restriction> + </xs:simpleType> + </xs:attribute> +</xs:schema> diff --git a/convert-anystyle-data/schema/10.1111_1467-6478.00057-schema.yaml b/convert-anystyle-data/schema/10.1111_1467-6478.00057-schema.yaml deleted file mode 100644 index 501bf93d659e0ded73d40aa631e1d00d0d3d2675..0000000000000000000000000000000000000000 --- a/convert-anystyle-data/schema/10.1111_1467-6478.00057-schema.yaml +++ /dev/null @@ -1,76 +0,0 @@ -name: Reference -description: Reference -id: https://w3id.org/Reference -imports: -- linkml:types -prefixes: - linkml: https://w3id.org/linkml/ - Reference: https://w3id.org/Reference -default_prefix: Reference -slots: - citation-number: - examples: - - value: '78' - range: integer - author: - examples: - - value: Lesbian and Gay Rights Service - range: string - title: - examples: - - value: The Bride Wore Pink; Legal Recognition of Our Relationships - range: string - container-title: - examples: - - value: Equity, Fiduciaries and Trusts - range: string - editor: - examples: - - value: T.G. Youdan - range: string - date: - examples: - - value: '1994' - range: integer - journal: - examples: - - value: The Age - range: string - backref: - examples: - - value: Above, n. 30 - range: string - legal-ref: - examples: - - value: Dean v. District of Columbia 653 U.S. App. D.C - range: string -classes: - Reference: - slots: - - citation-number - - author - - title - - container-title - - editor - - date - - journal - - backref - - legal-ref - tree_root: true - unique_keys: - title_key: - unique_key_name: title_key - unique_key_slots: - - title - container-title_key: - unique_key_name: container-title_key - unique_key_slots: - - container-title - editor_key: - unique_key_name: editor_key - unique_key_slots: - - editor - legal-ref_key: - unique_key_name: legal-ref_key - unique_key_slots: - - legal-ref diff --git a/convert-anystyle-data/schema/10.1111_1467-6478.00080-schema.yaml b/convert-anystyle-data/schema/10.1111_1467-6478.00080-schema.yaml deleted file mode 100644 index 5ce3a8bab4a25fafec3f1c0c754615e590802e17..0000000000000000000000000000000000000000 --- a/convert-anystyle-data/schema/10.1111_1467-6478.00080-schema.yaml +++ /dev/null @@ -1,72 +0,0 @@ -name: Reference -description: Reference -id: https://w3id.org/Reference -imports: -- linkml:types -prefixes: - linkml: https://w3id.org/linkml/ - Reference: https://w3id.org/Reference -default_prefix: Reference -slots: - citation-number: - examples: - - value: '57' - range: float - author: - examples: - - value: G. Steiner - range: string - title: - examples: - - value: 'Errata: An Examined Life' - range: string - container-title: - examples: - - value: Pressing Problems in the Law - range: string - editor: - examples: - - value: P. Birks - range: string - date: - examples: - - value: '1997' - range: integer - journal: - examples: - - value: The Law Teacher - range: string - backref: - examples: - - value: op. cit., n. 12 - range: string - legal-ref: - examples: - - value: Cmnd. 2154 - range: string -classes: - Reference: - slots: - - citation-number - - author - - title - - container-title - - editor - - date - - journal - - backref - - legal-ref - tree_root: true - unique_keys: - title_key: - unique_key_name: title_key - unique_key_slots: - - title - container-title_key: - unique_key_name: container-title_key - unique_key_slots: - - container-title - legal-ref_key: - unique_key_name: legal-ref_key - unique_key_slots: - - legal-ref diff --git a/convert-anystyle-data/schema/10.1515_zfrs-1980-0103-schema.yaml b/convert-anystyle-data/schema/10.1515_zfrs-1980-0103-schema.yaml deleted file mode 100644 index a0262f8da087ffb4d6816112144be44b7b4a39aa..0000000000000000000000000000000000000000 --- a/convert-anystyle-data/schema/10.1515_zfrs-1980-0103-schema.yaml +++ /dev/null @@ -1,59 +0,0 @@ -name: Reference -description: Reference -id: https://w3id.org/Reference -imports: -- linkml:types -prefixes: - linkml: https://w3id.org/linkml/ - Reference: https://w3id.org/Reference -default_prefix: Reference -slots: - citation-number: - examples: - - value: '36' - range: integer - author: - examples: - - value: Wanner, Craig - range: string - date: - examples: - - value: '1975' - range: integer - title: - examples: - - value: The Public Ordering of Private Cases; Winning Civil Court Cases - range: string - backref: - examples: - - value: Ebenda - range: string - journal: - examples: - - value: Law and Society Review - range: string - editor: - examples: - - value: "Vereigung f\xFCr Rechtssoziologie" - range: string - container-title: - examples: - - value: Arbeitslosigkeit und Recht - range: string -classes: - Reference: - slots: - - citation-number - - author - - date - - title - - backref - - journal - - editor - - container-title - tree_root: true - unique_keys: - backref_key: - unique_key_name: backref_key - unique_key_slots: - - backref diff --git a/convert-anystyle-data/schema/10.1515_zfrs-1980-0104-schema.yaml b/convert-anystyle-data/schema/10.1515_zfrs-1980-0104-schema.yaml deleted file mode 100644 index eb60b8a8568344cba575340fff7084ba1ea66752..0000000000000000000000000000000000000000 --- a/convert-anystyle-data/schema/10.1515_zfrs-1980-0104-schema.yaml +++ /dev/null @@ -1,59 +0,0 @@ -name: Reference -description: Reference -id: https://w3id.org/Reference -imports: -- linkml:types -prefixes: - linkml: https://w3id.org/linkml/ - Reference: https://w3id.org/Reference -default_prefix: Reference -slots: - editor: - examples: - - value: "Kulcs\xE1r" - range: string - title: - examples: - - value: "Recht und Konflikt \u2014 Mexiko und Afrika" - range: string - date: - examples: - - value: '1979' - range: integer - author: - examples: - - value: Siehe Bryde - range: string - citation-number: - examples: - - value: '78' - range: integer - journal: - examples: - - value: Verfassung und Recht in Obersee - range: string - container-title: - examples: - - value: "Festschrift f\xFCr Schmitthoff" - range: string - backref: - examples: - - value: oben N. 52 - range: string -classes: - Reference: - slots: - - editor - - title - - date - - author - - citation-number - - journal - - container-title - - backref - tree_root: true - unique_keys: - title_key: - unique_key_name: title_key - unique_key_slots: - - title diff --git a/convert-anystyle-data/schema/simple-schema.yaml b/convert-anystyle-data/schema/simple-schema.yaml deleted file mode 100644 index fe17b8272dcd2c6f03b2f2866a1807917cc5e646..0000000000000000000000000000000000000000 --- a/convert-anystyle-data/schema/simple-schema.yaml +++ /dev/null @@ -1,85 +0,0 @@ -name: Reference -description: Reference -id: https://w3id.org/Reference -imports: -- linkml:types -prefixes: - linkml: https://w3id.org/linkml/ - Reference: https://w3id.org/Reference -default_prefix: Reference -slots: - citation-number: - examples: - - value: '57' - range: string - description: The number of the footnote in which a reference occurs or the number - of the reference in the Vancouver citation system - author: - examples: - - value: G. Steiner - range: string - description: The full name names of the authors or creators of a work - title: - examples: - - value: 'Errata: An Examined Life' - range: string - description: The title of a work - container-title: - examples: - - value: Pressing Problems in the Law - range: string - description: The name of the work in which the referenced work is contained, such - as an edited volume - editor: - examples: - - value: P. Birks - range: string - description: The names of the editors of a work containing other works - date: - examples: - - value: '1997' - range: string - description: The date of the publication of the work, usually the year - journal: - examples: - - value: The Law Teacher - range: string - description: The name of the journal in which the work is published - backref: - examples: - - value: op. cit., n. 12 - range: string - description: A string containing a reference to a previous citation or footnote, - which is the source of the actual reference data - legal-ref: - examples: - - value: Cmnd. 2154 - range: string - description: A legal reference, such as the name or identifier of a court decision - or law, sometimes including the source where this reference can be found -classes: - Reference: - slots: - - citation-number - - author - - title - - container-title - - editor - - date - - journal - - backref - - legal-ref - tree_root: true - unique_keys: - title_key: - unique_key_name: title_key - unique_key_slots: - - title - container-title_key: - unique_key_name: container-title_key - unique_key_slots: - - container-title - legal-ref_key: - unique_key_name: legal-ref_key - unique_key_slots: - - legal-ref diff --git a/hedgedoc/hedgedoc_sync.py b/hedgedoc/hedgedoc_sync.py index 2cf0b13d8c8939da25950c01c118f93691439868..0a44fab975848c39845bb82e1d2e6ec61398b0b0 100644 --- a/hedgedoc/hedgedoc_sync.py +++ b/hedgedoc/hedgedoc_sync.py @@ -56,9 +56,6 @@ class HedgedocSyncClient(HedgedocClient): updatetime = None def __init__(self, basel_url, doc_id=None, verbose = False): - if not doc_id: - raise ValueError("A HedgeDoc document id is required") - self.cache_dir = user_cache_dir('hedgedoc-sync-local') self.doc_id = doc_id self.doc_file = os.path.join(self.cache_dir, f'{self.doc_id}.md') @@ -129,14 +126,10 @@ class HedgedocSyncClient(HedgedocClient): self.doc = markdown with open(self.doc_file, 'w', encoding='utf-8') as f: f.write(self.doc) - if self.verbose: - print(f"Updated document for {self.odc_id}") def save_metadata(self): with open(self.meta_file, 'w', encoding='utf-8') as f: json.dump(self.meta_data, f) - if self.verbose: - print(f'Updated metadata for {self.meta_doc_id}.') def update_from(self, other): @@ -168,7 +161,8 @@ class HedgedocSyncClient(HedgedocClient): # save the copy and the updated metadata self.save_doc(markdown) - self.update_metadata() + self.save_metadata() + return self.doc_id def main(): @@ -177,36 +171,32 @@ def main(): # Add arguments to the parser parser.add_argument('command', help='The command to execute: checkout, checkin') parser.add_argument('source_url', help='URL of the source document.') - parser.add_argument('target_url', help='URL of the target document. If a domain name without a path, a new document will be created.') - #parser.add_argument('-i', '--interval', type=int, default=10, help='The time interval in which the documents should be synchronized, in seconds. Default is 10 seconds.') parser.add_argument('-v', '--verbose', action='store_true', help='Provide verbose output.') + parser.add_argument('-s', '--local-server-url', default='http://localhost:3000', help='The URL of the local HedgeDoc server.') # Parse the arguments args = parser.parse_args() - source_base_url, source_id = parse_url(args.source_url) - target_base_url, target_id = parse_url(args.target_url) + source_base_url, source_doc_id = parse_url(args.source_url) + target_base_url = args.local_server_url verbose = args.verbose # create the clients - source = HedgedocSyncClient(source_base_url, source_id, verbose=verbose) - target = HedgedocSyncClient(target_base_url, target_id, verbose=verbose) + source = HedgedocSyncClient(source_base_url, source_doc_id, verbose=verbose) + target_doc_id = source.meta_data.get('target_doc_id', None) + target = HedgedocSyncClient(target_base_url, target_doc_id, verbose=verbose) # handle the commands if args.command == "checkout": - target.update_from(source) + target_doc_id = target.update_from(source) + source.meta_data['target_doc_id'] = target_doc_id + source.save_metadata() print(f'Document has been checked out from {source.document_url()} to {target.document_url()}') elif args.command == "checkin": + if target_doc_id is None: + print("Cannot check in, no target doc id is set") + exit(1) source.update_from(target) print(f'Document has been checked in from {target.document_url()} to {source.document_url()}') - elif args.command == "compare": - s, t = source.last_update_time(), target.last_update_time() - if s > t: - print(f'{source.document_url()} is newer') - elif t > s: - print(f'{target.document_url()} is newer') - else: - # this will never be called - print('Documents are identical') if __name__ == "__main__": main() \ No newline at end of file