From ae5d6257a84194753b53e8aee4f4d0f397b91c61 Mon Sep 17 00:00:00 2001 From: Christian Boulanger <boulanger@lhlt.mpg.de> Date: Wed, 31 Jul 2024 15:53:04 +0200 Subject: [PATCH] Segmented author and editor names --- convert-anystyle-data/anystyle-to-tei.ipynb | 97 +- convert-anystyle-data/requirements.txt | 3 +- .../tei/10.1111_1467-6478.00057.json | 1 - .../tei/10.1111_1467-6478.00057.xml | 1259 ++++++++---- .../tei/10.1111_1467-6478.00080.json | 1 - .../tei/10.1111_1467-6478.00080.xml | 769 ++++++-- .../tei/10.1515_zfrs-1980-0103.json | 1 - .../tei/10.1515_zfrs-1980-0103.xml | 988 ++++++++-- .../tei/10.1515_zfrs-1980-0104.json | 1 - .../tei/10.1515_zfrs-1980-0104.xml | 1724 +++++++++++++---- 10 files changed, 3756 insertions(+), 1088 deletions(-) delete mode 100644 convert-anystyle-data/tei/10.1111_1467-6478.00057.json delete mode 100644 convert-anystyle-data/tei/10.1111_1467-6478.00080.json delete mode 100644 convert-anystyle-data/tei/10.1515_zfrs-1980-0103.json delete mode 100644 convert-anystyle-data/tei/10.1515_zfrs-1980-0104.json diff --git a/convert-anystyle-data/anystyle-to-tei.ipynb b/convert-anystyle-data/anystyle-to-tei.ipynb index 0dae57c..0646d22 100644 --- a/convert-anystyle-data/anystyle-to-tei.ipynb +++ b/convert-anystyle-data/anystyle-to-tei.ipynb @@ -154,8 +154,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-07-31T06:59:05.520755600Z", - "start_time": "2024-07-31T06:59:03.755305900Z" + "end_time": "2024-07-31T13:51:17.671796400Z", + "start_time": "2024-07-31T13:51:17.489229700Z" } }, "cell_type": "code", @@ -167,7 +167,7 @@ "import xml.dom.minidom\n", "import json\n", "import xmlschema\n", - "\n", + "from nameparser import HumanName\n", "\n", "def even_num_brackets(string: str):\n", " \"\"\"\n", @@ -177,15 +177,19 @@ " return ((string.endswith(\")\") and string.count(\")\") == string.count(\"(\"))\n", " or (string.endswith(\"]\") and string.count(\"]\") == string.count(\"[\")))\n", "\n", - "def remove_punctuation(text):\n", + "def remove_punctuation(text, keep_trailing_chars=\"?!\"):\n", " \"\"\"This removes leading and trailing punctuation using very simple rules for German and English\"\"\"\n", " start, end = 0, len(text)\n", " while start < len(text) and re.match(\"\\p{P}\", text[start]) and text[end - 1]:\n", " start += 1\n", - " while end > start and re.match(\"\\p{P}\", text[end - 1]) and not even_num_brackets(text[start:end]) and text[end - 1] not in \"?!\":\n", + " while end > start and re.match(\"\\p{P}\", text[end - 1]) and not even_num_brackets(text[start:end]) and text[end - 1] not in keep_trailing_chars:\n", " end -= 1\n", " return text[start:end].strip()\n", "\n", + "def remove_punctuation2(text):\n", + " \"\"\"same as remove_punctuation, but keep trailing periods.\"\"\"\n", + " return remove_punctuation(text, \".\")\n", + "\n", "def clean_editor(text): \n", " text = re.sub(r'^in(:| )', '', remove_punctuation(text), flags=re.IGNORECASE)\n", " text = re.sub(r'\\(?(hrsg\\. v\\.|hg\\. v|hrsg\\.|ed\\.|eds\\.)\\)?', '', text, flags=re.IGNORECASE)\n", @@ -221,8 +225,11 @@ " if preserve:\n", " start, end = find_string(cleaned_text, text)\n", " prefix, suffix = text[:start], text[end:]\n", - " if prefix !=\"\" and len(parent) > 0:\n", - " parent[-1].tail = prefix\n", + " if prefix !=\"\" and len(parent) > 1:\n", + " prev_sibling = parent[-2]\n", + " prev_tail = (prev_sibling.tail or '')\n", + " new_prev_tail = f'{prev_tail} {prefix}'.strip()\n", + " prev_sibling.tail = new_prev_tail\n", " node.text = cleaned_text\n", " if suffix != \"\":\n", " node.tail = suffix\n", @@ -255,6 +262,32 @@ " \"\"\"Return a pretty-printed XML string\"\"\"\n", " return xml.dom.minidom.parseString(xml_string).toprettyxml(indent=indentation)\n", "\n", + "def split_creators(text:str, bibl, tag, clean_func, preserve):\n", + " sep_regex = r'[;&/]| and | und '\n", + " creators = re.split(sep_regex, text) \n", + " seperators = re.findall(sep_regex, text)\n", + " for creator in creators:\n", + " # <author>/<editor>\n", + " creator_node = add_node(bibl, tag, creator, clean_func=clean_func, preserve=preserve)\n", + " # <persName>\n", + " name = HumanName(creator_node.text)\n", + " creator_node.text = ''\n", + " pers_name = add_node(creator_node, 'persName')\n", + " inv_map = {v: k for k, v in name.as_dict(False).items()}\n", + " if len(name) == 1:\n", + " add_node(pers_name, 'surname', list(name)[0])\n", + " else:\n", + " for elem in list(name):\n", + " match inv_map[elem]:\n", + " case 'last':\n", + " # <surname>\n", + " add_node(pers_name, 'surname', elem)\n", + " case 'first' | 'middle':\n", + " # <forename>\n", + " add_node(pers_name, 'forename', elem)\n", + " if len(seperators):\n", + " creator_node.tail = seperators.pop(0).strip()\n", + " \n", "def anystyle_to_tei(input_xml_path, id, preserve=False):\n", " anystyle_root = ET.parse(input_xml_path).getroot()\n", " tei_root = create_tei_root()\n", @@ -267,8 +300,10 @@ " for sequence in anystyle_root.findall('sequence'):\n", " # if the sequence contains a citation-number, create a new <note> to add <bibl> elements to \n", " if (cn:= sequence.findall('citation-number')):\n", + " footnote_number = cn[0].text\n", " attributes = {\n", - " 'n': cn[0].text,\n", + " 'n': footnote_number,\n", + " 'type': 'footnote',\n", " 'place': 'bottom'\n", " }\n", " node = add_node(text_root, 'note', attributes=attributes, clean_func=remove_punctuation, preserve=preserve)\n", @@ -288,27 +323,34 @@ " bibl = ET.SubElement(node, 'bibl')\n", " match tag:\n", " case 'author':\n", - " add_node(bibl, 'author', text, clean_func=remove_punctuation, preserve=preserve)\n", + " split_creators(text, bibl, 'author', clean_func=remove_punctuation, preserve=preserve)\n", + " case 'authority':\n", + " split_creators(text, bibl, 'publisher', clean_func=remove_punctuation, preserve=preserve) \n", " case 'backref':\n", - " add_node(bibl, 'ref', text, clean_func=remove_punctuation, preserve=preserve)\n", + " add_node(bibl, 'ref', text, clean_func=remove_punctuation2, preserve=preserve)\n", " case 'container-title':\n", " add_node(bibl, 'title', text, {'level': 'm'}, clean_func= clean_container, preserve=preserve)\n", " case 'collection-title':\n", " add_node(bibl, 'title', text, {'level': 's'}, clean_func= clean_container, preserve=preserve)\n", " case 'date':\n", " add_node(bibl, 'date', text, clean_func= extract_year, preserve=preserve)\n", + " case 'edition':\n", + " add_node(bibl, 'edition', text, clean_func=remove_punctuation2, preserve=preserve)\n", " case 'editor':\n", - " add_node(bibl, 'editor', text, clean_func=clean_editor, preserve=preserve)\n", + " split_creators(text, bibl, 'editor', clean_func=clean_editor, preserve=preserve)\n", " case 'location':\n", " add_node(bibl, 'pubPlace', text, clean_func=remove_punctuation, preserve=preserve)\n", " case 'note':\n", - " add_node(bibl, 'note', text) \n", + " add_node(bibl, 'note', text, clean_func=remove_punctuation, preserve=preserve) \n", " case 'journal':\n", " add_node(bibl, 'title', text, {'level': 'j'}, clean_func= clean_container, preserve=preserve)\n", " case 'legal-ref':\n", " add_node(bibl, 'ref', text, {'type': 'legal'}, clean_func = remove_punctuation, preserve=preserve)\n", " case 'pages':\n", - " add_node(bibl, 'biblScope', text, {'unit': 'pp'}, clean_func= clean_pages, preserve=preserve)\n", + " if bibl[-1].tag == \"ref\":\n", + " add_node(bibl, 'citedRange', text, {'unit': 'pp'}, clean_func= clean_pages, preserve=preserve)\n", + " else:\n", + " add_node(bibl, 'biblScope', text, {'unit': 'pp'}, clean_func= clean_pages, preserve=preserve)\n", " case 'signal':\n", " add_node(bibl, 'note', text, {'type': 'signal'}, clean_func=remove_punctuation, preserve=preserve)\n", " case 'title':\n", @@ -328,20 +370,23 @@ " return json.dumps(dict_obj, default=str)\n", "\n", "# main\n", - "tei_xsd_path = \"schema/tei/tei_all.xsd\"\n", - "if 'schema' not in locals():\n", - " print(\"Parsing schema file, please wait...\")\n", - " schema = xmlschema.XMLSchema(tei_xsd_path)\n", + "\n", + "# XML->JSON-Conversion doesn't provide anything useful \n", + "# tei_xsd_path = \"schema/tei/tei_all.xsd\"\n", + "# if 'schema' not in locals():\n", + "# print(\"Parsing schema file, please wait...\")\n", + "# schema = xmlschema.XMLSchema(tei_xsd_path)\n", + "\n", "for input_path in glob.glob('anystyle/*.xml'):\n", " base_name = os.path.basename(input_path)\n", " id = os.path.splitext(base_name)[0]\n", - " print(f'Converting {base_name} into TEI-XML and JSON...')\n", + " print(f'Converting {base_name} into TEI-XML ...')\n", " output_xml = anystyle_to_tei(input_path, id, preserve=True)\n", - " output_json = tei_to_json(output_xml, schema)\n", + " # output_json = tei_to_json(output_xml, schema)\n", " with open(f'tei/{id}.xml', 'w', encoding='utf-8') as f:\n", " f.write(prettify(output_xml))\n", - " with open(f'tei/{id}.json', 'w', encoding='utf-8') as f:\n", - " f.write(output_json)\n", + " # with open(f'tei/{id}.json', 'w', encoding='utf-8') as f:\n", + " # f.write(output_json)\n", " \n" ], "id": "b3ee84984b88f24a", @@ -350,14 +395,14 @@ "name": "stdout", "output_type": "stream", "text": [ - "Converting 10.1111_1467-6478.00057.xml into TEI-XML and JSON...\n", - "Converting 10.1111_1467-6478.00080.xml into TEI-XML and JSON...\n", - "Converting 10.1515_zfrs-1980-0103.xml into TEI-XML and JSON...\n", - "Converting 10.1515_zfrs-1980-0104.xml into TEI-XML and JSON...\n" + "Converting 10.1111_1467-6478.00057.xml into TEI-XML ...\n", + "Converting 10.1111_1467-6478.00080.xml into TEI-XML ...\n", + "Converting 10.1515_zfrs-1980-0103.xml into TEI-XML ...\n", + "Converting 10.1515_zfrs-1980-0104.xml into TEI-XML ...\n" ] } ], - "execution_count": 34 + "execution_count": 78 }, { "metadata": {}, diff --git a/convert-anystyle-data/requirements.txt b/convert-anystyle-data/requirements.txt index 6fb39e3..d72ca28 100644 --- a/convert-anystyle-data/requirements.txt +++ b/convert-anystyle-data/requirements.txt @@ -3,4 +3,5 @@ spacy schema-automator quantulum3[classifier] xmlschema -xmltodict \ No newline at end of file +xmltodict +nameparser \ No newline at end of file diff --git a/convert-anystyle-data/tei/10.1111_1467-6478.00057.json b/convert-anystyle-data/tei/10.1111_1467-6478.00057.json deleted file mode 100644 index cd452a0..0000000 --- a/convert-anystyle-data/tei/10.1111_1467-6478.00057.json +++ /dev/null @@ -1 +0,0 @@ -["TEI", {"xmlns": "http://www.tei-c.org/ns/1.0"}, ["teiHeader", ["fileDesc", ["titleStmt", ["title", "10.1111_1467-6478.00057"]], ["publicationStmt", ["publisher", "mpilhlt"]], ["sourceDesc", {"default": "false"}, ["p", {"part": "N"}, "10.1111_1467-6478.00057"]]]], ["text", ["body", ["p", {"part": "N"}, "The article text is not part of this document"]], ["note", {"n": "1", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "A. Phillips"], ",", ["title", {"level": "a"}, "Citizenship and Feminist Politics"], "\u2019", ["title", {"level": "m"}, "Citizenship"], ",", ["editor", "G. Andrews"], "ed.", ["date", {"instant": false}, "1991"], ")", ["biblScope", {"unit": "pp"}, "77"], "."]], ["note", {"n": "2", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "T. Brennan and C. Pateman"], ",", ["title", {"level": "a"}, "Mere Auxiliaries to the Commonwealth\u201d: Women and the Origins of Liberalism"], "\u2019", ["date", {"instant": false}, "1979"], ")", ["biblScope", {"unit": "vol"}, "27"], ["title", {"level": "j"}, "Political Studies"], ["biblScope", {"unit": "pp"}, "183"], "."]], ["note", {"n": "3", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "M. Sawer and M. Simms"], ",", ["title", {"level": "a"}, "A Woman\u2019s Place: Women and Politics in Australia"], ["date", {"instant": false}, "1993"], ")."]], ["note", {"n": "4", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "I have explored the gendered nature of citizenship at greater length in two complementary papers:"], ["title", {"level": "a"}, "Embodying the Citizen"], "\u2019", ["title", {"level": "m"}, "Public and Private: Feminist Legal Debates"], ",", ["editor", "M. Thornton"], "ed.", ["date", {"instant": false}, "1995"], ")"], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "and"], ["title", {"level": "a"}, "Historicising Citizenship: Remembering Broken Promises"], "\u2019", ["date", {"instant": false}, "1996"], ")", ["biblScope", {"unit": "vol"}, "20"], ["title", {"level": "j"}, "Melbourne University Law Rev"], ".", ["biblScope", {"unit": "pp"}, "1072"], "."]], ["note", {"n": "5", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "S. Walby"], ",", ["title", {"level": "a"}, "Is Citizenship Gendered?"], "\u2019", ["date", {"instant": false}, "1994"], ")", ["biblScope", {"unit": "vol"}, "28"], ["title", {"level": "j"}, "Sociology"], ["biblScope", {"unit": "pp"}, "379"]]], ["note", {"n": "6", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "I. Kant"], ",", ["title", {"level": "a"}, "Metaphysical First Principles of the Doctrine of Right"], "\u2019", ["title", {"level": "m"}, "The Metaphysics of Morals"], "in", ["note", {"anchored": true}, "(trans. M. Gregor,"], ["date", {"instant": false}, "1991"], ")", ["biblScope", {"unit": "pp"}, "125\u20136, s. 146"], "."]], ["note", {"n": "7", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "U. Vogel"], ",", ["title", {"level": "a"}, "Marriage and the Boundaries of Citizenship"], "\u2019", ["title", {"level": "m"}, "The Condition of Citizenship"], ",", ["editor", "B. van Steenbergen"], "ed.", ["date", {"instant": false}, "1994"], ")", ["biblScope", {"unit": "pp"}, "75"], "."]], ["note", {"n": "8", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "N. Fraser and L. Gordon"], ",", ["title", {"level": "a"}, "Civil Citizenship against Social Citizenship?"], "\u2019", ["ref", "in id"], ".,", ["biblScope", {"unit": "pp"}, "97"], "."]], ["note", {"n": "9", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Vogel"], ",", ["ref", "id"], ".,", ["biblScope", {"unit": "pp"}, "79"], ".", ["author", "W. Blackstone"], ",", ["title", {"level": "a"}, "Commentaries"], ["note", {"anchored": true}, "(Facsimile of 1st. ed. of 1765\u201369,"], ["date", {"instant": false}, "1979"], ")", ["biblScope", {"unit": "pp"}, "442"], "."]], ["note", {"n": "11", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Vogel"], ",", ["ref", "op. cit., n. 7"], ",", ["biblScope", {"unit": "pp"}, "80\u20131"], "."]], ["note", {"n": "12", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["editor", "F. Haug"], "(ed.),", ["title", {"level": "a"}, "Female Sexualization: A Collective Work of Memory"], ["date", {"instant": false}, "1987"], ")", ["biblScope", {"unit": "pp"}, "196"], "."]], ["note", {"n": "13", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "A. Bottomley"], ",", ["title", {"level": "a"}, "Self and Subjectivities: Languages of Claim in Property Law"], "\u2019", ["date", {"instant": false}, "1993"], ")", ["biblScope", {"unit": "vol"}, "20"], ["title", {"level": "j"}, "J. of Law and Society"], ["biblScope", {"unit": "pp"}, "56, 61"], "."]], ["note", {"n": "14", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "D. West"], ",", ["title", {"level": "a"}, "Power and Formation: New Foundations for a Radical Concept of Power"], "\u2019", ["date", {"instant": false}, "1987"], ")"]], ["note", {"n": "30", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["title", {"level": "a"}, "Inquiry 137"], ",", ["biblScope", {"unit": "pp"}, "145"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Compare"], ["author", "M. Foucault"], ",", ["title", {"level": "a"}, "Power/Knowledge: Selected Interviews and Other Writings 1972\u20131977"], ",", ["editor", "C. Gordon"], "ed.", ["date", {"instant": false}, "1980"], ")", ["biblScope", {"unit": "pp"}, "98"], "."]], ["note", {"n": "15", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For a detailed analysis of legal method and the political role it plays, see"], ["author", "M.J. Mossman"], ",", ["title", {"level": "a"}, "Feminism, and Legal Method: The Difference it Makes"], "\u2019", ["date", {"instant": false}, "1986"], ")", ["biblScope", {"unit": "vol"}, "3"], ["title", {"level": "j"}, "Aust. J. of Law and Society"], ["biblScope", {"unit": "pp"}, "30"], "."]], ["note", {"n": "16", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "H.S. Maine"], ",", ["title", {"level": "a"}, "Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas"], ["date", {"instant": false}, "1912"], ")", ["biblScope", {"unit": "pp"}, "174"], "."]], ["note", {"n": "17", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "This was particularly the case in the United States of America."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See"], ["author", "M.J. Horwitz"], ",", ["title", {"level": "a"}, "The Transformation of American Law, 1780\u20131860"], ["date", {"instant": false}, "1977"], ")", ["biblScope", {"unit": "pp"}, "160"], "."]], ["note", {"n": "18", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "M. Grossberg"], ",", ["title", {"level": "a"}, "Governing the Hearth: Law and the Family in Nineteenth-Century America"], ["date", {"instant": false}, "1985"], ")", ["biblScope", {"unit": "pp"}, "ix"], "."]], ["note", {"n": "19", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "Staves postulates that the position was somewhat more complicated in that marriage, as a status, crumbled\n in response to contract ideology in the seventeenth century but, by the end of the eighteenth century,\n deeper patriarchal structures were re-imposed."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See"], ["author", "S. Staves"], ",", ["title", {"level": "a"}, "Married Women\u2019s Separate Property in England, 1660\u20131833"], ["date", {"instant": false}, "1990"], ")", ["biblScope", {"unit": "vol"}, "4"], ",", ["biblScope", {"unit": "pp"}, "220"], "."]], ["note", {"n": "20", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "Siegel presents a valuable study of the changing norms of marriage in the context of wife beating."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See"], ["author", "R.B. Siegel"], ",", ["title", {"level": "a"}, "The Rule of Love\u201d: Wife Beating as Prerogative and Privacy"], "\u2019", ["date", {"instant": false}, "1996"], ")", ["biblScope", {"unit": "vol"}, "105"], ["title", {"level": "j"}, "Yale Law J"], ".", ["biblScope", {"unit": "pp"}, "2117"], "."]], ["note", {"n": "21", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "C. Pateman"], ",", ["title", {"level": "a"}, "The Sexual Contract"], ["date", {"instant": false}, "1988"], ")."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For further analysis of the marriage contract, see"], ["author", "K. O\u2019Donovan"], ",", ["title", {"level": "a"}, "Family Matters"], ["date", {"instant": false}, "1993"], "),", ["biblScope", {"unit": "pp"}, "especially 43\u201359"], "."]], ["note", {"n": "23", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Crimes (Sexual Assault) Amendment Act"], ["date", {"instant": false}, "1981"], ["pubPlace", "N.S.W"], ".);"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Criminal Law Consolidation Act Amendment Act"], ["date", {"instant": false}, "1976"], ["pubPlace", "S.A"], ".);"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Criminal Code (Sexual Offences) Act"], ["date", {"instant": false}, "1987"], ["pubPlace", "Tas"], ".);"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Crimes (Sexual Offences)"], ["date", {"instant": false}, "1991"], ["pubPlace", "Vic"], ".);"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Acts Amendment (Sexual Assault) Act"], ["date", {"instant": false}, "1985"], ["pubPlace", "W.A"], ".).", ["note", {"anchored": true}, "The High Court upheld the validity of the South Australian law in 1991"]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "see"], "("], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "R. v. L"], ".", ["date", {"instant": false}, "1991"], ")"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "103 A.L.R. 577"], "),", ["note", {"anchored": true}, "the same year that the House of Lords abolished the immunity ("]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "see"]], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "R. v. R"], ".", ["date", {"instant": false}, "1991"], "]", ["biblScope", {"unit": "vol"}, "2"], ["title", {"level": "j"}, "All E.R"], "."], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "257"], ")."]], ["note", {"n": "24", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "M. Freeman"], ",", ["title", {"level": "a"}, "Contracting in the Haven: Balfour v. Balfour Revisited"], "\u2019", ["title", {"level": "m"}, "Exploring the Boundaries of Contract"], ",", ["editor", "R. Halson"], "ed.", ["date", {"instant": false}, "1996"], ")", ["biblScope", {"unit": "pp"}, "74"], ";", ["author", "R. Collier"], ",", ["title", {"level": "a"}, "Masculinity, Law and the Family"], ["date", {"instant": false}, "1995"], ")", ["biblScope", {"unit": "pp"}, "127 and throughout"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See"], ["author", "Collier"], ["note", {"anchored": true}, "further for a comprehensive study of sexuality in marriage."]]], ["note", {"n": "25", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "P.S. Atiyah"], ",", ["title", {"level": "a"}, "An Introduction to the Law of Contract"], ["date", {"instant": false}, "1995"], ")", ["biblScope", {"unit": "pp"}, "3"], "."]], ["note", {"n": "26", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "The Australian Law Reform Commission has addressed the issue and recommended recognition of prenuptial\n agreements."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See"], ["title", {"level": "a"}, "A.L.R.C., Matrimonial Property"], ",", ["title", {"level": "j"}, "report no. 37"], ["date", {"instant": false}, "1987"], ");", ["author", "A.L.R.C"], ".,", ["title", {"level": "a"}, "Report of the Joint Select Committee on Certain Aspects of the Operation and Interpretation of the Family\n Law Act"], ["date", {"instant": false}, "1992"], ")."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For critique, see"], ["author", "M. Neave"], ",", ["title", {"level": "a"}, "Private Ordering in Family Law \u2013 Will Women Benefit?"], "\u2019", ["title", {"level": "m"}, "Thornton"], ",", ["ref", "op. cit., n. 4"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For a feminist critique of contract in the American context, see"], ["author", "C. Dalton"], ",", ["title", {"level": "a"}, "An Essay in the Deconstruction of Contract Doctrine"], "\u2019", ["date", {"instant": false}, "1985"], ")", ["biblScope", {"unit": "vol"}, "94"], ["title", {"level": "j"}, "Yale Law J"], ".", ["biblScope", {"unit": "pp"}, "997"], "."]], ["note", {"n": "27", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "L. J. Weitzman"], ",", ["title", {"level": "a"}, "The Marriage Contract: Spouses, Lovers, and the Law"], ["date", {"instant": false}, "1981"], ")", ["biblScope", {"unit": "pp"}, "347 ff"], "."]], ["note", {"n": "28", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Grossberg"], ",", ["ref", "op. cit., n. 18"], ",", ["biblScope", {"unit": "pp"}, "52"], "."]], ["note", {"n": "29", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Balfour v. Balfour"], ["date", {"instant": false}, "1919"], "]", ["biblScope", {"unit": "pp"}, "2 K.B. 571"], "."]], ["note", {"n": "30", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Freeman"], ",", ["ref", "op. cit., n. 24"], ".", ["note", {"anchored": true}, "While acknowledging the trends towards contractualism and private ordering, Regan cautions against it,\n noting that greater freedom to contract invites greater scrutiny by the courts. More significantly, however,\n he would rather reclaim the idea of status by injecting it with new notions of responsibility and\n relationality, as well as divesting it of its sexist assumptions."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See"], ["author", "M.C. Regan Jr"], ".,", ["title", {"level": "a"}, "Family Law and the Pursuit of Intimacy"], ["date", {"instant": false}, "1993"], ")."]], ["note", {"n": "31", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "For example"], ","], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Law Reform (Miscellaneous Provisions) Act"], ["date", {"instant": false}, "1970"], ["pubPlace", "U.K"], ".);"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Domestic Relations Act"], ["date", {"instant": false}, "1975"], ["pubPlace", "N.Z"], ".);"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Marriage Act Amendment Act"], ["date", {"instant": false}, "1976"], ["pubPlace", "Cwth"], ".)"]], ["note", {"n": "32", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "G.S. Frost"], ",", ["title", {"level": "a"}, "Promises Broken: Courtship, Class, and Gender in Victorian England (1995)"], ";", ["author", "Thornton"], ",", ["ref", "op. cit"], ".", ["date", {"instant": false}, "1996"], "), n. 4."]], ["note", {"n": "33", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Grossberg"], ",", ["ref", "op. cit., n. 18"], ",", ["biblScope", {"unit": "pp"}, "38"], "."]], ["note", {"n": "34", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Compare"], ["author", "U. Vogel"], ",", ["title", {"level": "a"}, "Is Citizenship Gender-Specific?"], "\u2019", ["title", {"level": "m"}, "The Frontiers of Citizenship"], ",", ["editor", "U. Vogel and M. Moran"], "eds.", ["date", {"instant": false}, "1991"], ")", ["biblScope", {"unit": "pp"}, "59"], "."]], ["note", {"n": "35", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See, for example"], ","], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Bradwell v. Illinois 83 U.S. (16 Wall) 130"], ["date", {"instant": false}, "1873"], ")."]], ["note", {"n": "36", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Compare"], ["author", "J. Pahl"], ",", ["title", {"level": "a"}, "Money and Marriage"], ["date", {"instant": false}, "1989"], ")", ["biblScope", {"unit": "pp"}, "5"], "."]], ["note", {"n": "37", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Although"], ["note", {"anchored": true}, "Australia, like the United Kingdom, has a separate property regime, the courts are endowed with broad\n powers under the Family Law Act 1975 (Cwth.) to distribute property equitably."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For detailed treatment, see"], ["author", "S. Parker, P. Parkinson, and J. Behrens"], ",", ["title", {"level": "a"}, "Australian Family Law in Context: Commentary and Materials"], ["date", {"instant": false}, "1994"], ").", ["note", {"anchored": true}, "Most civil law countries and most American states have developed community property regimes which\n recognize the joint ownership of property acquired during marriage, but the legal significance is similarly\n directed to the time of divorce."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For discussion of the position during marriage, see"], ["author", "J.T. Oldham"], ",", ["title", {"level": "a"}, "Management of the Community Estate during an Intact Marriage"], "\u2019", ["date", {"instant": false}, "1993"], ")", ["biblScope", {"unit": "vol"}, "56"], ["title", {"level": "j"}, "Law and Contemporary Problems"], ["biblScope", {"unit": "pp"}, "99"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For a discussion of the genesis of the two systems, see"], ["author", "C. Donahue, Jr"], ".,", ["title", {"level": "a"}, "What Causes Fundamental Legal Ideas? Marital Property in England and France in the Thirteenth Century\u2019"], ["date", {"instant": false}, "1979"], ")", ["biblScope", {"unit": "vol"}, "78"], ["title", {"level": "j"}, "Michigan Law Rev"], ".", ["biblScope", {"unit": "pp"}, "59"], "."]], ["note", {"n": "38", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "The legal construction of masculinity and femininity in family law has been the subject of recent\n scholarly interest."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Notable examples are"], ["author", "O\u2019Donovan"], ",", ["ref", "op. cit., n. 21"]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "and"], ["author", "Collier"], ",", ["ref", "op. cit., n. 24"], "."]], ["note", {"n": "39", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For discussion of sex and legal subjecthood, see"], ["author", "N. Naffine"], ["title", {"level": "a"}, "Sexing the Subject (of Law)"], "\u2019", ["editor", "Thornton"], "in", ["ref", "op. cit"], ".", ["date", {"instant": false}, "1995"], "),", ["ref", "n. 4"], "."]], ["note", {"n": "40", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["title", {"level": "j"}, "Contracts Review Act"], ["date", {"instant": false}, "1980"], ["pubPlace", "N.S.W"], ".)."]], ["note", {"n": "41", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "J. Nedelsky"], ",", ["title", {"level": "a"}, "Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy"], ["date", {"instant": false}, "1990"], ")", ["biblScope", {"unit": "pp"}, "especially 223 ff"], "."]], ["note", {"n": "42", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "C.B. Macpherson"], ",", ["title", {"level": "a"}, "Democratic Theory: Essays in Retrieval"], ["date", {"instant": false}, "1973"], ")", ["biblScope", {"unit": "pp"}, "120"], "."]], ["note", {"n": "43", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For example"], ",", ["author", "N. Howell"], ",", ["title", {"level": "a"}, "Sexually Transmitted Debt\u201d: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers"], "\u2019", ["date", {"instant": false}, "1995"], ")", ["biblScope", {"unit": "vol"}, "4"], ["title", {"level": "j"}, "Aust. Feminist Law J"], ".", ["biblScope", {"unit": "pp"}, "93"], "."]], ["note", {"n": "44", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "P. Baron"], ",", ["title", {"level": "a"}, "The Free Exercise of Her Will: Women and Emotionally Transmitted Debt"], "\u2019", ["date", {"instant": false}, "1995"], ")", ["biblScope", {"unit": "vol"}, "13"], ["title", {"level": "j"}, "Law in Context"], ["biblScope", {"unit": "pp"}, "23"], "."]], ["note", {"n": "45", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["ref", "id"], ".,", ["biblScope", {"unit": "pp"}, "24"], ";", ["author", "B. Fehlberg"], ",", ["title", {"level": "a"}, "The Husband, the Bank, the Wife and Her Signature"], "\u2019", ["date", {"instant": false}, "1994"], ")", ["biblScope", {"unit": "vol"}, "57"], ["title", {"level": "j"}, "Modern Law Rev"], ".", ["biblScope", {"unit": "pp"}, "467, 468"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See, also"], ","], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Barclays Bank v. O\u2019Brien"], ["date", {"instant": false}, "1994"], "]"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "1 A.C. 180"], ",", ["biblScope", {"unit": "pp"}, "at 185"], ",", ["author", "per Brown-Wilkinson L"]]], ["note", {"n": "46", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Baron"], ",", ["ref", "op. cit., n. 44"], ",", ["biblScope", {"unit": "pp"}, "34"], ";", ["author", "M. Richardson"], ",", ["title", {"level": "a"}, "Protecting Women who provide Security for a Husband\u2019s, Partner\u2019s or Child\u2019s Debts. The Value and Limits\n of an Economic Perspective\u2019"], ["date", {"instant": false}, "1996"], ")", ["biblScope", {"unit": "vol"}, "16"], ["title", {"level": "j"}, "Legal Studies"], ["biblScope", {"unit": "pp"}, "368"], "."]], ["note", {"n": "47", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Examples are legion, and by no means confined to the more sensational criminal law cases picked up by\n the media, such as"]], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "R. v. Johns"], ","], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Supreme Court of South Australia"], ",", ["date", {"instant": false}, "1992"], "26 August", ["note", {"anchored": true}, "(unreported) in which Bollen J. stated that it was acceptable for a husband to resort to \u2018rougher than\n usual handling\u2019 to persuade his wife to have sex with him. For examples relating to STD,"]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "see"], ["author", "Howell"], ",", ["ref", "op. cit., n. 43"], "."]], ["note", {"n": "48", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "B. Fehlberg"], ",", ["title", {"level": "a"}, "The Husband, the Bank, the Wife and Her Signature \u2013 the Sequel"], "\u2019", ["date", {"instant": false}, "1996"], ")", ["biblScope", {"unit": "vol"}, "59"], ["title", {"level": "j"}, "Modern Law Rev"], ".", ["biblScope", {"unit": "pp"}, "675"], "."]], ["note", {"n": "49", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "National Australia Bank Ltd v. Garcia"], ["date", {"instant": false}, "1996"], ")", ["biblScope", {"unit": "vol"}, "39"], ["title", {"level": "j"}, "N.S.W.L.R"], "."], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "577 (N.S.W.C.A.). 50"], ["date", {"instant": false}, "1991"], ")"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "25 N.S.W.L.R. 32 (C.A.)"], "."]], ["note", {"n": "52", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["date", {"instant": false}, "1994"], ")"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "A.S.C. 56\u2013268 (N.S.W.C.A.)"], "."]], ["note", {"n": "53", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "Based on the"]], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Trade Practices Act 1974 (Cwth.)"], ",", ["biblScope", {"unit": "pp"}, "52"], ",", ["note", {"anchored": true}, "and the"]], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Contracts Review Act"], ["date", {"instant": false}, "1980"], ["pubPlace", "N.S.W"], ".).", ["biblScope", {"unit": "vol"}, "54"], ["date", {"instant": false}, "1994"], ")", ["biblScope", {"unit": "pp"}, "A.S.C. 56\u2013270 (N.S.W.C.A.)"], "."]], ["note", {"n": "55", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "A number of recent English cases have also turned on the question of whether the wife received independent\n legal advice. The House of Lords considered the issue"]], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "in Barclays Bank v. O\u2019Brien"], ["date", {"instant": false}, "1994"], "]", ["biblScope", {"unit": "pp"}, "1 A.C. 180"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See, also"], ","], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Banco Exterior Internacional v. Mann"], ["date", {"instant": false}, "1995"], "]"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "1 All E.R. 936"], "."]], ["note", {"n": "56", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "See I.J. Hardingham and M.A. Neave"], ",", ["title", {"level": "a"}, "Australian Family Property Law"], ["date", {"instant": false}, "1984"], ")", ["biblScope", {"unit": "pp"}, "94"], "."]], ["note", {"n": "57", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Compare"], ["author", "K. O\u2019Donovan"], ",", ["title", {"level": "a"}, "Sexual Divisions in Law"], ["date", {"instant": false}, "1985"], "),", ["biblScope", {"unit": "pp"}, "especially 112\u201318"], "."]], ["note", {"n": "58", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "Although Reich\u2019s work on the conceptualization of non-traditional sources of wealth, such as employment\n and professional qualifications, as forms of \u2018new property\u2019 has been influential, he did not broach the\n subject of caring work."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See"], ["author", "C.A. Reich"], ",", ["title", {"level": "a"}, "The New Property"], "\u2019", ["date", {"instant": false}, "1964"], ")", ["biblScope", {"unit": "vol"}, "73"], ["title", {"level": "j"}, "Yale Law J"], ".", ["biblScope", {"unit": "pp"}, "733"], ".", ["note", {"anchored": true}, "Despite a greater sensitivity to the interests of women, as well as writing almost two decades later,\n Glendon also fails to address the question of unpaid work as a form of property."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See"], ["author", "M.A. Glendon"], ",", ["title", {"level": "a"}, "The New Family and the New Property"], ["date", {"instant": false}, "1981"], ")."]], ["note", {"n": "59", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["date", {"instant": false}, "1992"], ")", ["biblScope", {"unit": "pp"}, "29 N.S.W.L.R. 188 (C.A.)"], "."]], ["note", {"n": "60", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "Trusts of this kind have been judicially created in order to obviate injustice. Ironically, such devices\n have been commonly utilized over the last twenty years or so in property disputes arising out of de facto\n relationships, where divisibility has permitted separate interests to crystallize in ways not recognized\n within marriage."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For a discussion of recent trends in Australia, see"], ["author", "P. Parkinson"], ",", ["title", {"level": "a"}, "Property Rights and Third Party Creditors \u2013 the Scope and Limitations of Equitable Doctrines"], "\u2019", ["date", {"instant": false}, "1997"], ")", ["biblScope", {"unit": "vol"}, "11"], ["title", {"level": "j"}, "Australian J. Family Law"], ["biblScope", {"unit": "pp"}, "100"], "."]], ["note", {"n": "61", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For discussion, see"], ["author", "J. Riley"], ",", ["title", {"level": "a"}, "The Property Rights of Home-Makers under General Law: Bryson v. Bryant"], "\u2019", ["date", {"instant": false}, "1994"], ")", ["biblScope", {"unit": "vol"}, "16"], ["title", {"level": "j"}, "Sydney Law Rev"], ".", ["biblScope", {"unit": "pp"}, "412"], "."]], ["note", {"n": "62", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "The"], ["author", "Hon. Justice T. E. Lindenmayer and P.A. Doolan"], ",", ["title", {"level": "a"}, "When Bankruptcy and Family Law Collide"], "\u2019", ["date", {"instant": false}, "1994"], ")", ["biblScope", {"unit": "vol"}, "8"], ["title", {"level": "j"}, "Aust. J. Family Law"], ["biblScope", {"unit": "pp"}, "111, 133"], "."]], ["note", {"n": "63", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "B. Bennett"], ",", ["title", {"level": "a"}, "The Economics of Wifing Services: Law and Economics on the Family"], "\u2019", ["date", {"instant": false}, "1991"], ")", ["biblScope", {"unit": "vol"}, "18"], ["title", {"level": "j"}, "J. of Law and Society"], ["biblScope", {"unit": "pp"}, "206"], "."]], ["note", {"n": "64", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "O\u2019Donovan"], ",", ["ref", "op. cit., n. 57"], ";", ["author", "Thornton"], ",", ["ref", "op. cit. (1995), n. 4"], "."]], ["note", {"n": "65", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "N.S.W.C.A., unreported,"], ["date", {"instant": false}, "1994"], "."]], ["note", {"n": "66", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For detailed discussion of the ramifications, see"], ["author", "L.J. Weitzman"], ",", ["title", {"level": "a"}, "The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in\n America"], ["date", {"instant": false}, "1985"], ")."]], ["note", {"n": "67", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "M.L. Shanley"], ",", ["title", {"level": "a"}, "Feminism, Marriage, and the Law in Victorian England, 1850\u20131895"], ["date", {"instant": false}, "1989"], ")", ["biblScope", {"unit": "pp"}, "46"], "."]], ["note", {"n": "68", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "The move to contract as the governing principle of family law has been noted by commentators."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See, for example"], ",", ["author", "Freeman"], ",", ["ref", "op. cit., n. 24"], ";", ["author", "Neave"], ",", ["ref", "op. cit., n. 26"], ";", ["author", "Regan"], ",", ["ref", "op. cit., n. 30"], "."]], ["note", {"n": "69", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Bryson v. Bryant"], ["note", {"anchored": true}, "in respect of which, it might be noted, the High Court refused leave to appeal. Marcia Neave notes the\n \u2018artificiality\u2019 of the concept of intention in a discussion of the constructive trust in the context of de\n facto spouses."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See"], ["author", "M. Neave,"], "\u2018", ["title", {"level": "a"}, "Three Approaches to Family Law Disputes \u2013 Intention/Belief, Unjust Enrichment and Unconscionability\u2019"], ["title", {"level": "m"}, "Equity, Fiduciaries and Trusts"], ",", ["editor", "T.G. Youdan"], "ed.", ["date", {"instant": false}, "1989"], ")", ["biblScope", {"unit": "pp"}, "262\u20134"], "."]], ["note", {"n": "70", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For an interesting case study of this phenomenon, see"], ["author", "L. Sarmas"], ",", ["title", {"level": "a"}, "Storytelling and the Law: A Case Study of Louth v. Diprose"], "\u2019", ["date", {"instant": false}, "1994"], ")", ["biblScope", {"unit": "vol"}, "19"], ["title", {"level": "j"}, "Melbourne University Law Rev"], ".", ["biblScope", {"unit": "pp"}, "701"], "."]], ["note", {"n": "71", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "C. Colebrook"], ",", ["title", {"level": "a"}, "Feminist Ethics and Historicism"], "\u2019", ["date", {"instant": false}, "1996"], ")", ["biblScope", {"unit": "vol"}, "11"], ["title", {"level": "j"}, "Aust. Feminist Studies"], ["biblScope", {"unit": "pp"}, "295, 300"], "."]], ["note", {"n": "72", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "M. Albertson Fineman"], ",", ["title", {"level": "a"}, "The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies"], ["date", {"instant": false}, "1995"], ")", ["biblScope", {"unit": "pp"}, "7"], "."]], ["note", {"n": "73", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Compare"], ["author", "K. O\u2019Donovan"], ",", ["title", {"level": "a"}, "Should all Maintenance of Spouses be abolished?"], "\u2019", ["date", {"instant": false}, "1982"], ")", ["biblScope", {"unit": "vol"}, "45"], ["title", {"level": "j"}, "Modern Law Rev"], ".", ["biblScope", {"unit": "pp"}, "424, 431\u20133"], "."]], ["note", {"n": "74", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For example"], ","], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "De Facto Relationships Act"], ["date", {"instant": false}, "1984"], ["pubPlace", "N.S.W"], ".)."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For detailed analysis of the policy considerations, see"], ["author", "M.D.A. Freeman and C.M. Lyon"], ",", ["title", {"level": "a"}, "Cohabitation without Marriage: An Essay in Law and Social Policy"], ["date", {"instant": false}, "1983"], ");", ["author", "New South Wales Law Reform Commission"], ",", ["title", {"level": "a"}, "De Facto Relationships: Issues Paper"], ["date", {"instant": false}, "1981"], ")."]], ["note", {"n": "75", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Eds. of the Harvard Law Review"], ",", ["title", {"level": "a"}, "Sexual Orientation and the Law"], ["date", {"instant": false}, "1990"], ");"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Dean v. District of Columbia 653 U.S. App. D.C"], ["biblScope", {"unit": "pp"}, "307"], ["date", {"instant": false}, "1995"], ");", ["author", "C. Overington"], ",", ["title", {"level": "a"}, "Why can\u2019t They Marry?"], "\u2019", ["title", {"level": "j"}, "The Age"], ",", ["biblScope", {"unit": "pp"}, "26"], ["date", {"instant": false}, "1997"], "."]], ["note", {"n": "76", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For example"], ",", ["author", "Lesbian and Gay Rights Service"], ",", ["title", {"level": "a"}, "The Bride Wore Pink; Legal Recognition of Our Relationships"], ["date", {"instant": false}, "1994"], ")."]], ["note", {"n": "77", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["ref", "id"], ".,", ["biblScope", {"unit": "pp"}, "3"], "."]], ["note", {"n": "78", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["ref", "Above, n. 30"], "."]]]] \ No newline at end of file diff --git a/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml b/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml index feb8db0..91f2888 100644 --- a/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml +++ b/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml @@ -17,28 +17,50 @@ <body> <p>The article text is not part of this document</p> </body> - <note n="1" place="bottom"> - <bibl> - <author>A. Phillips</author> - , + <note n="1" type="footnote" place="bottom"> + <bibl> + <author> + <persName> + <forename>A.</forename> + <surname>Phillips</surname> + </persName> + </author> + , ‘ <title level="a">Citizenship and Feminist Politics</title> - ’ + ’ in <title level="m">Citizenship</title> - , - <editor>G. Andrews</editor> - ed. + , ed. + <editor> + <persName> + <forename>G.</forename> + <surname>Andrews</surname> + </persName> + </editor> + ( <date>1991</date> ) <biblScope unit="pp">77</biblScope> . </bibl> </note> - <note n="2" place="bottom"> + <note n="2" type="footnote" place="bottom"> <bibl> - <author>T. Brennan and C. Pateman</author> - , + <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>1979</date> ) <biblScope unit="vol">27</biblScope> @@ -47,31 +69,53 @@ . </bibl> </note> - <note n="3" place="bottom"> + <note n="3" type="footnote" place="bottom"> <bibl> - <author>M. Sawer and M. Simms</author> + <author> + <persName> + <forename>M.</forename> + <surname>Sawer</surname> + </persName> + </author> + and + <author> + <persName> + <forename>M.</forename> + <surname>Simms</surname> + </persName> + </author> , <title level="a">A Woman’s Place: Women and Politics in Australia</title> + ( + <edition>2nd ed.</edition> + , <date>1993</date> ). </bibl> </note> - <note n="4" place="bottom"> + <note n="4" type="footnote" place="bottom"> <bibl> - <note>I have explored the gendered nature of citizenship at greater length in two complementary papers:</note> + <note>I have explored the gendered nature of citizenship at greater length in two complementary papers</note> + : ‘ <title level="a">Embodying the Citizen</title> - ’ + ’ in <title level="m">Public and Private: Feminist Legal Debates</title> - , - <editor>M. Thornton</editor> - ed. + , ed. + <editor> + <persName> + <forename>M.</forename> + <surname>Thornton</surname> + </persName> + </editor> + ( <date>1995</date> ) </bibl> <bibl> <note type="signal">and</note> + ‘ <title level="a">Historicising Citizenship: Remembering Broken Promises</title> - ’ + ’ ( <date>1996</date> ) <biblScope unit="vol">20</biblScope> @@ -81,12 +125,17 @@ . </bibl> </note> - <note n="5" place="bottom"> + <note n="5" type="footnote" place="bottom"> <bibl> - <author>S. Walby</author> - , + <author> + <persName> + <forename>S.</forename> + <surname>Walby</surname> + </persName> + </author> + , ‘ <title level="a">Is Citizenship Gendered?</title> - ’ + ’ ( <date>1994</date> ) <biblScope unit="vol">28</biblScope> @@ -94,94 +143,150 @@ <biblScope unit="pp">379</biblScope> </bibl> </note> - <note n="6" place="bottom"> + <note n="6" type="footnote" place="bottom"> <bibl> - <author>I. Kant</author> - , + <author> + <persName> + <forename>I.</forename> + <surname>Kant</surname> + </persName> + </author> + , ‘ <title level="a">Metaphysical First Principles of the Doctrine of Right</title> - ’ + ’ in <title level="m">The Metaphysics of Morals</title> - in - <note>(trans. M. Gregor,</note> + ( + <note>trans. M. Gregor</note> + , <date>1991</date> ) <biblScope unit="pp">125–6, s. 146</biblScope> . </bibl> </note> - <note n="7" place="bottom"> + <note n="7" type="footnote" place="bottom"> <bibl> - <author>U. Vogel</author> - , + <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> - , - <editor>B. van Steenbergen</editor> - ed. + , ed. + <editor> + <persName> + <forename>B.</forename> + <surname>van Steenbergen</surname> + </persName> + </editor> + ( <date>1994</date> ) <biblScope unit="pp">75</biblScope> . </bibl> </note> - <note n="8" place="bottom"> + <note n="8" type="footnote" place="bottom"> <bibl> - <author>N. Fraser and L. Gordon</author> - , + <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>in id</ref> - ., - <biblScope unit="pp">97</biblScope> + <ref>in id.</ref> + , p. + <citedRange unit="pp">97</citedRange> . </bibl> </note> - <note n="9" place="bottom"> + <note n="9" type="footnote" place="bottom"> <bibl> - <author>Vogel</author> + <author> + <persName> + <surname>Vogel</surname> + </persName> + </author> , - <ref>id</ref> - ., - <biblScope unit="pp">79</biblScope> + <ref>id.</ref> + , p. + <citedRange unit="pp">79</citedRange> . - <author>W. Blackstone</author> + </bibl> + <bibl> + <author> + <persName> + <forename>W.</forename> + <surname>Blackstone</surname> + </persName> + </author> , <title level="a">Commentaries</title> - <note>(Facsimile of 1st. ed. of 1765–69,</note> + ( + <note>Facsimile of 1st. ed. of 1765–69</note> + , <date>1979</date> ) <biblScope unit="pp">442</biblScope> . </bibl> </note> - <note n="11" place="bottom"> + <note n="11" type="footnote" place="bottom"> <bibl> - <author>Vogel</author> + <author> + <persName> + <surname>Vogel</surname> + </persName> + </author> , <ref>op. cit., n. 7</ref> - , - <biblScope unit="pp">80–1</biblScope> + , pp. + <citedRange unit="pp">80–1</citedRange> . </bibl> </note> - <note n="12" place="bottom"> + <note n="12" type="footnote" place="bottom"> <bibl> - <editor>F. Haug</editor> + <editor> + <persName> + <forename>F.</forename> + <surname>Haug</surname> + </persName> + </editor> (ed.), <title level="a">Female Sexualization: A Collective Work of Memory</title> + ( <date>1987</date> ) <biblScope unit="pp">196</biblScope> . </bibl> </note> - <note n="13" place="bottom"> + <note n="13" type="footnote" place="bottom"> <bibl> - <author>A. Bottomley</author> - , + <author> + <persName> + <forename>A.</forename> + <surname>Bottomley</surname> + </persName> + </author> + , ‘ <title level="a">Self and Subjectivities: Languages of Claim in Property Law</title> - ’ + ’ ( <date>1993</date> ) <biblScope unit="vol">20</biblScope> @@ -190,17 +295,22 @@ . </bibl> </note> - <note n="14" place="bottom"> + <note n="14" type="footnote" place="bottom"> <bibl> - <author>D. West</author> - , + <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>1987</date> ) </bibl> </note> - <note n="30" place="bottom"> + <note n="30" type="footnote" place="bottom"> <bibl> <title level="a">Inquiry 137</title> , @@ -209,25 +319,40 @@ </bibl> <bibl> <note type="signal">Compare</note> - <author>M. Foucault</author> + <author> + <persName> + <forename>M.</forename> + <surname>Foucault</surname> + </persName> + </author> , <title level="a">Power/Knowledge: Selected Interviews and Other Writings 1972–1977</title> - , - <editor>C. Gordon</editor> - ed. + , ed. + <editor> + <persName> + <forename>C.</forename> + <surname>Gordon</surname> + </persName> + </editor> + ( <date>1980</date> ) <biblScope unit="pp">98</biblScope> . </bibl> </note> - <note n="15" place="bottom"> + <note n="15" type="footnote" place="bottom"> <bibl> <note type="signal">For a detailed analysis of legal method and the political role it plays, see</note> - <author>M.J. Mossman</author> - , + <author> + <persName> + <forename>M.J.</forename> + <surname>Mossman</surname> + </persName> + </author> + , ‘ <title level="a">Feminism, and Legal Method: The Difference it Makes</title> - ’ + ’ ( <date>1986</date> ) <biblScope unit="vol">3</biblScope> @@ -236,55 +361,83 @@ . </bibl> </note> - <note n="16" place="bottom"> + <note n="16" type="footnote" place="bottom"> <bibl> - <author>H.S. Maine</author> + <author> + <persName> + <forename>H.S.</forename> + <surname>Maine</surname> + </persName> + </author> , <title level="a">Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas</title> + ( + <edition>10th ed.</edition> + , <date>1912</date> ) <biblScope unit="pp">174</biblScope> . </bibl> </note> - <note n="17" place="bottom"> + <note n="17" type="footnote" place="bottom"> <bibl> - <note>This was particularly the case in the United States of America.</note> + <note>This was particularly the case in the United States of America</note> + . </bibl> <bibl> <note type="signal">See</note> - <author>M.J. Horwitz</author> + <author> + <persName> + <forename>M.J.</forename> + <surname>Horwitz</surname> + </persName> + </author> , <title level="a">The Transformation of American Law, 1780–1860</title> + ( <date>1977</date> ) <biblScope unit="pp">160</biblScope> . </bibl> </note> - <note n="18" place="bottom"> + <note n="18" type="footnote" place="bottom"> <bibl> - <author>M. Grossberg</author> + <author> + <persName> + <forename>M.</forename> + <surname>Grossberg</surname> + </persName> + </author> , <title level="a">Governing the Hearth: Law and the Family in Nineteenth-Century America</title> + ( <date>1985</date> ) <biblScope unit="pp">ix</biblScope> . </bibl> </note> - <note n="19" place="bottom"> + <note n="19" type="footnote" place="bottom"> <bibl> <note>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> + deeper patriarchal structures were re-imposed.</note> + + </bibl> <bibl> <note type="signal">See</note> - <author>S. Staves</author> + <author> + <persName> + <forename>S.</forename> + <surname>Staves</surname> + </persName> + </author> , <title level="a">Married Women’s Separate Property in England, 1660–1833</title> + ( <date>1990</date> ) <biblScope unit="vol">4</biblScope> @@ -293,16 +446,22 @@ . </bibl> </note> - <note n="20" place="bottom"> + <note n="20" type="footnote" place="bottom"> <bibl> - <note>Siegel presents a valuable study of the changing norms of marriage in the context of wife beating.</note> + <note>Siegel presents a valuable study of the changing norms of marriage in the context of wife beating</note> + . </bibl> <bibl> <note type="signal">See</note> - <author>R.B. Siegel</author> - , + <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>1996</date> ) <biblScope unit="vol">105</biblScope> @@ -312,78 +471,95 @@ . </bibl> </note> - <note n="21" place="bottom"> + <note n="21" type="footnote" place="bottom"> <bibl> - <author>C. Pateman</author> + <author> + <persName> + <forename>C.</forename> + <surname>Pateman</surname> + </persName> + </author> , <title level="a">The Sexual Contract</title> + ( <date>1988</date> ). </bibl> <bibl> <note type="signal">For further analysis of the marriage contract, see</note> - <author>K. O’Donovan</author> + <author> + <persName> + <forename>K.</forename> + <surname>O’Donovan</surname> + </persName> + </author> , <title level="a">Family Matters</title> + ( <date>1993</date> ), <biblScope unit="pp">especially 43–59</biblScope> . </bibl> </note> - <note n="23" place="bottom"> + <note n="23" type="footnote" place="bottom"> <bibl> <ref type="legal">Crimes (Sexual Assault) Amendment Act</ref> <date>1981</date> + ( <pubPlace>N.S.W</pubPlace> .); </bibl> <bibl> <ref type="legal">Criminal Law Consolidation Act Amendment Act</ref> <date>1976</date> + ( <pubPlace>S.A</pubPlace> .); </bibl> <bibl> <ref type="legal">Criminal Code (Sexual Offences) Act</ref> <date>1987</date> + ( <pubPlace>Tas</pubPlace> .); </bibl> <bibl> <ref type="legal">Crimes (Sexual Offences)</ref> <date>1991</date> + ( <pubPlace>Vic</pubPlace> .); </bibl> <bibl> <ref type="legal">Acts Amendment (Sexual Assault) Act</ref> <date>1985</date> + ( <pubPlace>W.A</pubPlace> .). <note>The High Court upheld the validity of the South Australian law in 1991</note> </bibl> <bibl> <note type="signal">see</note> - ( </bibl> <bibl> <ref type="legal">R. v. L</ref> - . + . ( <date>1991</date> ) </bibl> <bibl> <ref type="legal">103 A.L.R. 577</ref> ), - <note>the same year that the House of Lords abolished the immunity (</note> + <note>the same year that the House of Lords abolished the immunity</note> + ( </bibl> <bibl> <note type="signal">see</note> </bibl> <bibl> <ref type="legal">R. v. R</ref> - . + . [ <date>1991</date> ] <biblScope unit="vol">2</biblScope> @@ -395,23 +571,41 @@ ). </bibl> </note> - <note n="24" place="bottom"> + <note n="24" type="footnote" place="bottom"> <bibl> - <author>M. Freeman</author> - , + <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> - , - <editor>R. Halson</editor> - ed. + , ed. + <editor> + <persName> + <forename>R.</forename> + <surname>Halson</surname> + </persName> + </editor> + ( <date>1996</date> ) <biblScope unit="pp">74</biblScope> ; - <author>R. Collier</author> + </bibl> + <bibl> + <author> + <persName> + <forename>R.</forename> + <surname>Collier</surname> + </persName> + </author> , <title level="a">Masculinity, Law and the Family</title> + ( <date>1995</date> ) <biblScope unit="pp">127 and throughout</biblScope> @@ -419,60 +613,87 @@ </bibl> <bibl> <note type="signal">See</note> - <author>Collier</author> - <note>further for a comprehensive study of sexuality in marriage.</note> + <author> + <persName> + <surname>Collier</surname> + </persName> + </author> + <note>further for a comprehensive study of sexuality in marriage</note> + . </bibl> </note> - <note n="25" place="bottom"> + <note n="25" type="footnote" place="bottom"> <bibl> - <author>P.S. Atiyah</author> + <author> + <persName> + <forename>P.S.</forename> + <surname>Atiyah</surname> + </persName> + </author> , <title level="a">An Introduction to the Law of Contract</title> + ( + <edition>5th ed.</edition> + , <date>1995</date> ) <biblScope unit="pp">3</biblScope> . </bibl> </note> - <note n="26" place="bottom"> + <note n="26" type="footnote" place="bottom"> <bibl> <note>The Australian Law Reform Commission has addressed the issue and recommended recognition of prenuptial - agreements. - </note> + agreements.</note> + + </bibl> <bibl> <note type="signal">See</note> <title level="a">A.L.R.C., Matrimonial Property</title> , <title level="j">report no. 37</title> + ( <date>1987</date> ); - <author>A.L.R.C</author> + <author> + <persName> + <surname>A.L.R.C</surname> + </persName> + </author> ., <title level="a">Report of the Joint Select Committee on Certain Aspects of the Operation and Interpretation of the Family Law Act</title> - - + ( <date>1992</date> ). </bibl> <bibl> <note type="signal">For critique, see</note> - <author>M. Neave</author> - , + <author> + <persName> + <forename>M.</forename> + <surname>Neave</surname> + </persName> + </author> + , ‘ <title level="a">Private Ordering in Family Law – Will Women Benefit?</title> - ’ + ’ in <title level="m">Thornton</title> , - <ref>op. cit., n. 4</ref> - . + <ref>op. cit., n. 4.</ref> </bibl> <bibl> <note type="signal">For a feminist critique of contract in the American context, see</note> - <author>C. Dalton</author> - , + <author> + <persName> + <forename>C.</forename> + <surname>Dalton</surname> + </persName> + </author> + , ‘ <title level="a">An Essay in the Deconstruction of Contract Doctrine</title> - ’ + ’ ( <date>1985</date> ) <biblScope unit="vol">94</biblScope> @@ -482,170 +703,270 @@ . </bibl> </note> - <note n="27" place="bottom"> + <note n="27" type="footnote" place="bottom"> <bibl> - <author>L. J. Weitzman</author> + <author> + <persName> + <forename>L.</forename> + <forename>J.</forename> + <surname>Weitzman</surname> + </persName> + </author> , <title level="a">The Marriage Contract: Spouses, Lovers, and the Law</title> + ( <date>1981</date> ) <biblScope unit="pp">347 ff</biblScope> . </bibl> </note> - <note n="28" place="bottom"> + <note n="28" type="footnote" place="bottom"> <bibl> - <author>Grossberg</author> + <author> + <persName> + <surname>Grossberg</surname> + </persName> + </author> , <ref>op. cit., n. 18</ref> - , - <biblScope unit="pp">52</biblScope> + , p. + <citedRange unit="pp">52</citedRange> . </bibl> </note> - <note n="29" place="bottom"> + <note n="29" type="footnote" place="bottom"> <bibl> - <author>Balfour v. Balfour</author> + <author> + <persName> + <surname>Balfour</surname> + <forename>v.</forename> + <surname>Balfour</surname> + </persName> + </author> + [ <date>1919</date> ] <biblScope unit="pp">2 K.B. 571</biblScope> . </bibl> </note> - <note n="30" place="bottom"> + <note n="30" type="footnote" place="bottom"> <bibl> - <author>Freeman</author> + <author> + <persName> + <surname>Freeman</surname> + </persName> + </author> , - <ref>op. cit., n. 24</ref> - . + <ref>op. cit., n. 24.</ref> <note>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 and - relationality, as well as divesting it of its sexist assumptions. - </note> + relationality, as well as divesting it of its sexist assumptions.</note> + + </bibl> <bibl> <note type="signal">See</note> - <author>M.C. Regan Jr</author> + <author> + <persName> + <forename>M.C.</forename> + <surname>Regan</surname> + </persName> + </author> ., <title level="a">Family Law and the Pursuit of Intimacy</title> + ( <date>1993</date> ). </bibl> </note> - <note n="31" place="bottom"> + <note n="31" type="footnote" place="bottom"> <bibl> - <author>For example</author> + <author> + <persName> + <forename>For</forename> + <surname>example</surname> + </persName> + </author> , </bibl> <bibl> <ref type="legal">Law Reform (Miscellaneous Provisions) Act</ref> <date>1970</date> + ( <pubPlace>U.K</pubPlace> .); </bibl> <bibl> <ref type="legal">Domestic Relations Act</ref> <date>1975</date> + ( <pubPlace>N.Z</pubPlace> .); </bibl> <bibl> <ref type="legal">Marriage Act Amendment Act</ref> <date>1976</date> + ( <pubPlace>Cwth</pubPlace> .) </bibl> </note> - <note n="32" place="bottom"> + <note n="32" type="footnote" place="bottom"> <bibl> - <author>G.S. Frost</author> + <author> + <persName> + <forename>G.S.</forename> + <surname>Frost</surname> + </persName> + </author> , <title level="a">Promises Broken: Courtship, Class, and Gender in Victorian England (1995)</title> ; - <author>Thornton</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Thornton</surname> + </persName> + </author> , - <ref>op. cit</ref> - . + <ref>op. cit.</ref> + ( <date>1996</date> ), n. 4. </bibl> </note> - <note n="33" place="bottom"> + <note n="33" type="footnote" place="bottom"> <bibl> - <author>Grossberg</author> + <author> + <persName> + <surname>Grossberg</surname> + </persName> + </author> , <ref>op. cit., n. 18</ref> - , - <biblScope unit="pp">38</biblScope> + , p. + <citedRange unit="pp">38</citedRange> . </bibl> </note> - <note n="34" place="bottom"> + <note n="34" type="footnote" place="bottom"> <bibl> <note type="signal">Compare</note> - <author>U. Vogel</author> - , + <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> - , - <editor>U. Vogel and M. Moran</editor> - eds. + , eds. + <editor> + <persName> + <forename>U.</forename> + <surname>Vogel</surname> + </persName> + </editor> + and + <editor> + <persName> + <forename>M.</forename> + <surname>Moran</surname> + </persName> + </editor> + ( <date>1991</date> ) <biblScope unit="pp">59</biblScope> . </bibl> </note> - <note n="35" place="bottom"> + <note n="35" type="footnote" place="bottom"> <bibl> <note type="signal">See, for example</note> , </bibl> <bibl> <ref type="legal">Bradwell v. Illinois 83 U.S. (16 Wall) 130</ref> + ( <date>1873</date> ). </bibl> </note> - <note n="36" place="bottom"> + <note n="36" type="footnote" place="bottom"> <bibl> <note type="signal">Compare</note> - <author>J. Pahl</author> + <author> + <persName> + <forename>J.</forename> + <surname>Pahl</surname> + </persName> + </author> , <title level="a">Money and Marriage</title> + ( <date>1989</date> ) <biblScope unit="pp">5</biblScope> . </bibl> </note> - <note n="37" place="bottom"> + <note n="37" type="footnote" place="bottom"> <bibl> - <author>Although</author> + <author> + <persName> + <surname>Although</surname> + </persName> + </author> <note>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> + powers under the Family Law Act 1975 (Cwth.) to distribute property equitably.</note> + + </bibl> <bibl> <note type="signal">For detailed treatment, see</note> - <author>S. Parker, P. Parkinson, and J. Behrens</author> + <author> + <persName> + <forename>P.</forename> + <forename>Parkinson</forename> + <surname>S. Parker</surname> + </persName> + </author> + and + <author> + <persName> + <forename>J.</forename> + <surname>Behrens</surname> + </persName> + </author> , <title level="a">Australian Family Law in Context: Commentary and Materials</title> + ( <date>1994</date> ). <note>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> + directed to the time of divorce.</note> + + </bibl> <bibl> <note type="signal">For discussion of the position during marriage, see</note> - <author>J.T. Oldham</author> - , + <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>1993</date> ) <biblScope unit="vol">56</biblScope> @@ -655,11 +976,15 @@ </bibl> <bibl> <note type="signal">For a discussion of the genesis of the two systems, see</note> - <author>C. Donahue, Jr</author> - ., + <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>1979</date> ) <biblScope unit="vol">78</biblScope> @@ -669,82 +994,115 @@ . </bibl> </note> - <note n="38" place="bottom"> + <note n="38" type="footnote" place="bottom"> <bibl> <note>The legal construction of masculinity and femininity in family law has been the subject of recent - scholarly interest. - </note> + scholarly interest.</note> + + </bibl> <bibl> <note type="signal">Notable examples are</note> - <author>O’Donovan</author> + <author> + <persName> + <surname>O’Donovan</surname> + </persName> + </author> , <ref>op. cit., n. 21</ref> </bibl> <bibl> <note type="signal">and</note> - <author>Collier</author> + <author> + <persName> + <surname>Collier</surname> + </persName> + </author> , - <ref>op. cit., n. 24</ref> - . + <ref>op. cit., n. 24.</ref> </bibl> </note> - <note n="39" place="bottom"> + <note n="39" type="footnote" place="bottom"> <bibl> <note type="signal">For discussion of sex and legal subjecthood, see</note> - <author>N. Naffine</author> + <author> + <persName> + <forename>N.</forename> + <surname>Naffine</surname> + </persName> + </author> + ‘ <title level="a">Sexing the Subject (of Law)</title> - ’ - <editor>Thornton</editor> - in - <ref>op. cit</ref> - . + ’ in + <editor> + <persName> + <surname>Thornton</surname> + </persName> + </editor> + , + <ref>op. cit.</ref> + ( <date>1995</date> ), - <ref>n. 4</ref> - . + <ref>n. 4.</ref> </bibl> </note> - <note n="40" place="bottom"> + <note n="40" type="footnote" place="bottom"> <bibl> <title level="j">Contracts Review Act</title> <date>1980</date> + ( <pubPlace>N.S.W</pubPlace> .). </bibl> </note> - <note n="41" place="bottom"> + <note n="41" type="footnote" place="bottom"> <bibl> - <author>J. Nedelsky</author> + <author> + <persName> + <forename>J.</forename> + <surname>Nedelsky</surname> + </persName> + </author> , <title level="a">Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy</title> - - + ( <date>1990</date> ) <biblScope unit="pp">especially 223 ff</biblScope> . </bibl> </note> - <note n="42" place="bottom"> + <note n="42" type="footnote" place="bottom"> <bibl> - <author>C.B. Macpherson</author> + <author> + <persName> + <forename>C.B.</forename> + <surname>Macpherson</surname> + </persName> + </author> , <title level="a">Democratic Theory: Essays in Retrieval</title> + ( <date>1973</date> ) <biblScope unit="pp">120</biblScope> . </bibl> </note> - <note n="43" place="bottom"> + <note n="43" type="footnote" place="bottom"> <bibl> <note type="signal">For example</note> , - <author>N. Howell</author> - , + <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>1995</date> ) <biblScope unit="vol">4</biblScope> @@ -754,12 +1112,17 @@ . </bibl> </note> - <note n="44" place="bottom"> + <note n="44" type="footnote" place="bottom"> <bibl> - <author>P. Baron</author> - , + <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>1995</date> ) <biblScope unit="vol">13</biblScope> @@ -768,16 +1131,21 @@ . </bibl> </note> - <note n="45" place="bottom"> + <note n="45" type="footnote" place="bottom"> <bibl> - <ref>id</ref> - ., - <biblScope unit="pp">24</biblScope> + <ref>id.</ref> + , p. + <citedRange unit="pp">24</citedRange> ; - <author>B. Fehlberg</author> - , + <author> + <persName> + <forename>B.</forename> + <surname>Fehlberg</surname> + </persName> + </author> + , ‘ <title level="a">The Husband, the Bank, the Wife and Her Signature</title> - ’ + ’ ( <date>1994</date> ) <biblScope unit="vol">57</biblScope> @@ -792,31 +1160,48 @@ </bibl> <bibl> <ref type="legal">Barclays Bank v. O’Brien</ref> + [ <date>1994</date> ] </bibl> <bibl> <ref type="legal">1 A.C. 180</ref> , - <biblScope unit="pp">at 185</biblScope> + <citedRange unit="pp">at 185</citedRange> , - <author>per Brown-Wilkinson L</author> + <author> + <persName> + <forename>per</forename> + <forename>Brown-Wilkinson</forename> + <surname>L</surname> + </persName> + </author> </bibl> </note> - <note n="46" place="bottom"> + <note n="46" type="footnote" place="bottom"> <bibl> - <author>Baron</author> + <author> + <persName> + <surname>Baron</surname> + </persName> + </author> , <ref>op. cit., n. 44</ref> - , - <biblScope unit="pp">34</biblScope> + , p. + <citedRange unit="pp">34</citedRange> ; - <author>M. Richardson</author> - , + </bibl> + <bibl> + <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>1996</date> ) <biblScope unit="vol">16</biblScope> @@ -825,7 +1210,7 @@ . </bibl> </note> - <note n="47" place="bottom"> + <note n="47" type="footnote" place="bottom"> <bibl> <note type="signal">Examples are legion, and by no means confined to the more sensational criminal law cases picked up by the media, such as</note> @@ -838,27 +1223,36 @@ </bibl> <bibl> <ref type="legal">Supreme Court of South Australia</ref> - , + , 26 August <date>1992</date> - 26 August - <note>(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, - </note> + ( + <note>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,</note> + + </bibl> <bibl> <note type="signal">see</note> - <author>Howell</author> + <author> + <persName> + <surname>Howell</surname> + </persName> + </author> , - <ref>op. cit., n. 43</ref> - . + <ref>op. cit., n. 43.</ref> </bibl> </note> - <note n="48" place="bottom"> + <note n="48" type="footnote" place="bottom"> <bibl> - <author>B. Fehlberg</author> - , + <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>1996</date> ) <biblScope unit="vol">59</biblScope> @@ -868,9 +1262,10 @@ . </bibl> </note> - <note n="49" place="bottom"> + <note n="49" type="footnote" place="bottom"> <bibl> <ref type="legal">National Australia Bank Ltd v. Garcia</ref> + ( <date>1996</date> ) <biblScope unit="vol">39</biblScope> @@ -879,6 +1274,7 @@ </bibl> <bibl> <ref type="legal">577 (N.S.W.C.A.). 50</ref> + ( <date>1991</date> ) </bibl> @@ -887,7 +1283,7 @@ . </bibl> </note> - <note n="52" place="bottom"> + <note n="52" type="footnote" place="bottom"> <bibl> <date>1994</date> ) @@ -897,37 +1293,41 @@ . </bibl> </note> - <note n="53" place="bottom"> + <note n="53" type="footnote" place="bottom"> <bibl> <note>Based on the</note> </bibl> <bibl> <ref type="legal">Trade Practices Act 1974 (Cwth.)</ref> - , - <biblScope unit="pp">52</biblScope> + , s. + <citedRange unit="pp">52</citedRange> , <note>and the</note> </bibl> <bibl> <ref type="legal">Contracts Review Act</ref> <date>1980</date> + ( <pubPlace>N.S.W</pubPlace> .). <biblScope unit="vol">54</biblScope> + ( <date>1994</date> ) <biblScope unit="pp">A.S.C. 56–270 (N.S.W.C.A.)</biblScope> . </bibl> </note> - <note n="55" place="bottom"> + <note n="55" type="footnote" place="bottom"> <bibl> <note>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 - </note> + legal advice. The House of Lords considered the issue</note> + + </bibl> <bibl> <ref type="legal">in Barclays Bank v. O’Brien</ref> + [ <date>1994</date> ] <biblScope unit="pp">1 A.C. 180</biblScope> @@ -939,6 +1339,7 @@ </bibl> <bibl> <ref type="legal">Banco Exterior Internacional v. Mann</ref> + [ <date>1995</date> ] </bibl> @@ -947,42 +1348,68 @@ . </bibl> </note> - <note n="56" place="bottom"> + <note n="56" type="footnote" place="bottom"> <bibl> - <author>See I.J. Hardingham and M.A. Neave</author> + <author> + <persName> + <forename>See</forename> + <forename>I.J.</forename> + <surname>Hardingham</surname> + </persName> + </author> + and + <author> + <persName> + <forename>M.A.</forename> + <surname>Neave</surname> + </persName> + </author> , <title level="a">Australian Family Property Law</title> + ( <date>1984</date> ) <biblScope unit="pp">94</biblScope> . </bibl> </note> - <note n="57" place="bottom"> + <note n="57" type="footnote" place="bottom"> <bibl> <note type="signal">Compare</note> - <author>K. O’Donovan</author> + <author> + <persName> + <forename>K.</forename> + <surname>O’Donovan</surname> + </persName> + </author> , <title level="a">Sexual Divisions in Law</title> + ( <date>1985</date> ), <biblScope unit="pp">especially 112–18</biblScope> . </bibl> </note> - <note n="58" place="bottom"> + <note n="58" type="footnote" place="bottom"> <bibl> <note>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> + subject of caring work.</note> + + </bibl> <bibl> <note type="signal">See</note> - <author>C.A. Reich</author> - , + <author> + <persName> + <forename>C.A.</forename> + <surname>Reich</surname> + </persName> + </author> + , ‘ <title level="a">The New Property</title> - ’ + ’ ( <date>1964</date> ) <biblScope unit="vol">73</biblScope> @@ -991,19 +1418,26 @@ <biblScope unit="pp">733</biblScope> . <note>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> + Glendon also fails to address the question of unpaid work as a form of property.</note> + + </bibl> <bibl> <note type="signal">See</note> - <author>M.A. Glendon</author> + <author> + <persName> + <forename>M.A.</forename> + <surname>Glendon</surname> + </persName> + </author> , <title level="a">The New Family and the New Property</title> + ( <date>1981</date> ). </bibl> </note> - <note n="59" place="bottom"> + <note n="59" type="footnote" place="bottom"> <bibl> <date>1992</date> ) @@ -1011,20 +1445,26 @@ . </bibl> </note> - <note n="60" place="bottom"> + <note n="60" type="footnote" place="bottom"> <bibl> <note>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> + within marriage.</note> + + </bibl> <bibl> <note type="signal">For a discussion of recent trends in Australia, see</note> - <author>P. Parkinson</author> - , + <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>1997</date> ) <biblScope unit="vol">11</biblScope> @@ -1033,13 +1473,18 @@ . </bibl> </note> - <note n="61" place="bottom"> + <note n="61" type="footnote" place="bottom"> <bibl> <note type="signal">For discussion, see</note> - <author>J. Riley</author> - , + <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>1994</date> ) <biblScope unit="vol">16</biblScope> @@ -1049,13 +1494,26 @@ . </bibl> </note> - <note n="62" place="bottom"> + <note n="62" type="footnote" place="bottom"> <bibl> <note type="signal">The</note> - <author>Hon. Justice T. E. Lindenmayer and P.A. Doolan</author> - , + <author> + <persName> + <forename>Justice</forename> + <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>1994</date> ) <biblScope unit="vol">8</biblScope> @@ -1064,12 +1522,17 @@ . </bibl> </note> - <note n="63" place="bottom"> + <note n="63" type="footnote" place="bottom"> <bibl> - <author>B. Bennett</author> - , + <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>1991</date> ) <biblScope unit="vol">18</biblScope> @@ -1078,102 +1541,159 @@ . </bibl> </note> - <note n="64" place="bottom"> + <note n="64" type="footnote" place="bottom"> <bibl> - <author>O’Donovan</author> + <author> + <persName> + <surname>O’Donovan</surname> + </persName> + </author> , <ref>op. cit., n. 57</ref> ; - <author>Thornton</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Thornton</surname> + </persName> + </author> , - <ref>op. cit. (1995), n. 4</ref> - . + <ref>op. cit. (1995), n. 4.</ref> </bibl> </note> - <note n="65" place="bottom"> + <note n="65" type="footnote" place="bottom"> <bibl> - <note>N.S.W.C.A., unreported,</note> + <note>N.S.W.C.A., unreported</note> + , 23 May <date>1994</date> . </bibl> </note> - <note n="66" place="bottom"> + <note n="66" type="footnote" place="bottom"> <bibl> <note type="signal">For detailed discussion of the ramifications, see</note> - <author>L.J. Weitzman</author> + <author> + <persName> + <forename>L.J.</forename> + <surname>Weitzman</surname> + </persName> + </author> , <title level="a">The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in America</title> - - + ( <date>1985</date> ). </bibl> </note> - <note n="67" place="bottom"> + <note n="67" type="footnote" place="bottom"> <bibl> - <author>M.L. Shanley</author> + <author> + <persName> + <forename>M.L.</forename> + <surname>Shanley</surname> + </persName> + </author> , <title level="a">Feminism, Marriage, and the Law in Victorian England, 1850–1895</title> + ( <date>1989</date> ) <biblScope unit="pp">46</biblScope> . </bibl> </note> - <note n="68" place="bottom"> + <note n="68" type="footnote" place="bottom"> <bibl> - <note>The move to contract as the governing principle of family law has been noted by commentators.</note> + <note>The move to contract as the governing principle of family law has been noted by commentators</note> + . </bibl> <bibl> <note type="signal">See, for example</note> , - <author>Freeman</author> + <author> + <persName> + <surname>Freeman</surname> + </persName> + </author> , <ref>op. cit., n. 24</ref> ; - <author>Neave</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Neave</surname> + </persName> + </author> , <ref>op. cit., n. 26</ref> ; - <author>Regan</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Regan</surname> + </persName> + </author> , - <ref>op. cit., n. 30</ref> - . + <ref>op. cit., n. 30.</ref> </bibl> </note> - <note n="69" place="bottom"> + <note n="69" type="footnote" place="bottom"> <bibl> - <author>Bryson v. Bryant</author> + <author> + <persName> + <forename>Bryson</forename> + <forename>v.</forename> + <surname>Bryant</surname> + </persName> + </author> <note>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> + facto spouses.</note> + + </bibl> <bibl> <note type="signal">See</note> - <author>M. Neave,</author> + <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> - , - <editor>T.G. Youdan</editor> - ed. + , ed. + <editor> + <persName> + <forename>T.G.</forename> + <surname>Youdan</surname> + </persName> + </editor> + ( <date>1989</date> ) <biblScope unit="pp">262–4</biblScope> . </bibl> </note> - <note n="70" place="bottom"> + <note n="70" type="footnote" place="bottom"> <bibl> <note type="signal">For an interesting case study of this phenomenon, see</note> - <author>L. Sarmas</author> - , + <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>1994</date> ) <biblScope unit="vol">19</biblScope> @@ -1183,12 +1703,17 @@ . </bibl> </note> - <note n="71" place="bottom"> + <note n="71" type="footnote" place="bottom"> <bibl> - <author>C. Colebrook</author> - , + <author> + <persName> + <forename>C.</forename> + <surname>Colebrook</surname> + </persName> + </author> + , ‘ <title level="a">Feminist Ethics and Historicism</title> - ’ + ’ ( <date>1996</date> ) <biblScope unit="vol">11</biblScope> @@ -1197,24 +1722,36 @@ . </bibl> </note> - <note n="72" place="bottom"> + <note n="72" type="footnote" place="bottom"> <bibl> - <author>M. Albertson Fineman</author> + <author> + <persName> + <forename>M.</forename> + <forename>Albertson</forename> + <surname>Fineman</surname> + </persName> + </author> , <title level="a">The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies</title> + ( <date>1995</date> ) <biblScope unit="pp">7</biblScope> . </bibl> </note> - <note n="73" place="bottom"> + <note n="73" type="footnote" place="bottom"> <bibl> <note type="signal">Compare</note> - <author>K. O’Donovan</author> - , + <author> + <persName> + <forename>K.</forename> + <surname>O’Donovan</surname> + </persName> + </author> + , ‘ <title level="a">Should all Maintenance of Spouses be abolished?</title> - ’ + ’ ( <date>1982</date> ) <biblScope unit="vol">45</biblScope> @@ -1224,7 +1761,7 @@ . </bibl> </note> - <note n="74" place="bottom"> + <note n="74" type="footnote" place="bottom"> <bibl> <note type="signal">For example</note> , @@ -1232,70 +1769,118 @@ <bibl> <ref type="legal">De Facto Relationships Act</ref> <date>1984</date> + ( <pubPlace>N.S.W</pubPlace> .). </bibl> <bibl> <note type="signal">For detailed analysis of the policy considerations, see</note> - <author>M.D.A. Freeman and C.M. Lyon</author> + <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="a">Cohabitation without Marriage: An Essay in Law and Social Policy</title> + ( <date>1983</date> ); - <author>New South Wales Law Reform Commission</author> + </bibl> + <bibl> + <author> + <persName> + <forename>New</forename> + <forename>South Wales Law Reform</forename> + <surname>Commission</surname> + </persName> + </author> , <title level="a">De Facto Relationships: Issues Paper</title> + ( <date>1981</date> ). </bibl> </note> - <note n="75" place="bottom"> + <note n="75" type="footnote" place="bottom"> <bibl> - <author>Eds. of the Harvard Law Review</author> + <author> + <persName> + <forename>Eds. of the Harvard</forename> + <forename>Law</forename> + <surname>Review</surname> + </persName> + </author> , <title level="a">Sexual Orientation and the Law</title> + ( <date>1990</date> ); </bibl> <bibl> <ref type="legal">Dean v. District of Columbia 653 U.S. App. D.C</ref> - <biblScope unit="pp">307</biblScope> + <citedRange unit="pp">307</citedRange> + ( <date>1995</date> ); - <author>C. Overington</author> - , + <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="pp">26</biblScope> + April <date>1997</date> . </bibl> </note> - <note n="76" place="bottom"> + <note n="76" type="footnote" place="bottom"> <bibl> <note type="signal">For example</note> , - <author>Lesbian and Gay Rights Service</author> - , + <author> + <persName> + <surname>Lesbian</surname> + </persName> + </author> + <author> + <persName> + <forename>Gay</forename> + <forename>Rights</forename> + <surname>Service</surname> + </persName> + </author> + and <title level="a">The Bride Wore Pink; Legal Recognition of Our Relationships</title> + ( <date>1994</date> ). </bibl> </note> - <note n="77" place="bottom"> + <note n="77" type="footnote" place="bottom"> <bibl> - <ref>id</ref> - ., - <biblScope unit="pp">3</biblScope> + <ref>id.</ref> + , p. + <citedRange unit="pp">3</citedRange> . </bibl> </note> - <note n="78" place="bottom"> + <note n="78" type="footnote" place="bottom"> <bibl> - <ref>Above, n. 30</ref> - . + <ref>Above, n. 30.</ref> </bibl> </note> </text> diff --git a/convert-anystyle-data/tei/10.1111_1467-6478.00080.json b/convert-anystyle-data/tei/10.1111_1467-6478.00080.json deleted file mode 100644 index 824f76d..0000000 --- a/convert-anystyle-data/tei/10.1111_1467-6478.00080.json +++ /dev/null @@ -1 +0,0 @@ -["TEI", {"xmlns": "http://www.tei-c.org/ns/1.0"}, ["teiHeader", ["fileDesc", ["titleStmt", ["title", "10.1111_1467-6478.00080"]], ["publicationStmt", ["publisher", "mpilhlt"]], ["sourceDesc", {"default": "false"}, ["p", {"part": "N"}, "10.1111_1467-6478.00080"]]]], ["text", ["body", ["p", {"part": "N"}, "The article text is not part of this document"]], ["note", {"n": "1", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For a contrary view, see"], ["author", "G. Jones"], ",", ["title", {"level": "a"}, "\u201cTraditional\u201d Legal Scholarship: a Personal View"], "\u2019", ["title", {"level": "m"}, "What Are Law Schools For?"], ",", ["editor", "P. Birks"], "ed.", ["date", {"instant": false}, "1996"], ")", ["biblScope", {"unit": "pp"}, "14"], "."]], ["note", {"n": "3", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "R. Goff"], ",", ["title", {"level": "a"}, "The Search for Principle"], "\u2019", ["date", {"instant": false}, "1983"], ")", ["title", {"level": "j"}, "Proceeedings of the British Academy"], ["biblScope", {"unit": "vol"}, "169"], ",", ["biblScope", {"unit": "pp"}, "at 171"], ".", ["note", {"anchored": true}, "This is an amplification of Dicey\u2019s remark that \u2018[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 . . .\u2019."], ["author", "A. Dicey"], ",", ["title", {"level": "a"}, "Can English Law be taught at the Universities?"], ["date", {"instant": false}, "1883"], ")", ["biblScope", {"unit": "pp"}, "20"], "."]], ["note", {"n": "4", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "J. Smith"], ",", ["title", {"level": "a"}, "The Law of Contract"], ["date", {"instant": false}, "1989"], ")"]], ["note", {"n": "6", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See, for example"], ",", ["author", "D. Kennedy"], ",", ["title", {"level": "a"}, "Form and substance in Private Law Ajudication"], "\u2019", ["date", {"instant": false}, "1976"], ")", ["biblScope", {"unit": "vol"}, "89"], ["title", {"level": "j"}, "Harvard Law Rev"], ".", ["biblScope", {"unit": "pp"}, "1685"], "."]], ["note", {"n": "7", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "B. Hepple"], ",", ["title", {"level": "a"}, "The Renewal of the Liberal Law Degree"], "\u2019", ["date", {"instant": false}, "1996"], ")", ["title", {"level": "j"}, "Cambridge Law J"], ".", ["biblScope", {"unit": "pp"}, "470, at 485 and 481"], "."]], ["note", {"n": "8", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "P.A. Thomas"], ",", ["title", {"level": "a"}, "Introduction"], "\u2019", ["title", {"level": "m"}, "Socio-Legal Studies"], ",", ["editor", "P.A. Thomas"], "ed.", ["date", {"instant": false}, "1997"], ")", ["biblScope", {"unit": "pp"}, "19"], "."]], ["note", {"n": "9", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "R. Cotterrell"], ",", ["title", {"level": "a"}, "Law\u2019s Community"], ["date", {"instant": false}, "1995"], ")", ["biblScope", {"unit": "pp"}, "296"], "."]], ["note", {"n": "10", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "Socio-legal studies has been defined in many different ways. In this essay the term is taken to indicate the use of ideas \u2018from other disciplines primarily but not exclusively from within the social science and humanities fields\u2019."], ["title", {"level": "a"}, "Company Law"], "\u2019", ["editor", "Thomas"], ",", ["ref", "op. cit., n. 8"], ",", ["biblScope", {"unit": "pp"}, "at p. 285"], "."]], ["note", {"n": "11", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "Some fail wholly. It is difficult to see any effect on academic legal education that resulted from"], ["author", "Lady Marre\u2019s"], ["title", {"level": "a"}, "report A Time for Change"], ["date", {"instant": false}, "1988"], ").", ["note", {"anchored": true}, "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"], ["date", {"instant": false}, "1988"], "),", ["note", {"anchored": true}, "produced much comment but little action. Even those that are thought of as being a success are not wholly implemented. Despite Ormrod\u2019s 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"], ["title", {"level": "a"}, "Report of the Committee on Legal Education"], "(", ["date", {"instant": false}, "1971"], ";"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Cmnd 4595)"], ["biblScope", {"unit": "pp"}, "ch. 9, recs. 40 and 23"], ").", ["note", {"anchored": true}, "There were also other recommendations that were not implemented."], ["title", {"level": "a"}, "The Robbins report on higher education, Higher Education"], ["date", {"instant": false}, "1963"], ";"], ["bibl", {"default": "false", "status": "draft"}, ["ref", {"type": "legal"}, "Cmnd. 2154"], ")", ["note", {"anchored": true}, "took it is axiomatic that \u2018courses of higher education should be available for all those who are qualified by ability and attainment to pursue them and wish to do so\u2019"], ["biblScope", {"unit": "pp"}, "para. 31"], ").", ["note", {"anchored": true}, "This has yet to happen."]]], ["note", {"n": "12", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "National Committee of Inquiry into Higher Education"], ",", ["title", {"level": "a"}, "Higher Education in the learning society"], ["date", {"instant": false}, "1997"], ")", ["note", {"anchored": true}, "(the Dearing report);"], ["author", "ACLEC"], ",", ["title", {"level": "a"}, "First Report on Legal Education and Training"], ["date", {"instant": false}, "1996"], ").", ["note", {"anchored": true}, "The Government\u2019s White Paper on further and higher education had not been published at the time of writing this essay."], ["author", "ACLEC"], ",", ["ref", "id"], ".,", ["biblScope", {"unit": "pp"}, "para 4.6"], "."]], ["note", {"n": "14", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "ACLEC\u2019s 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."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See"], "(", ["author", "A. Bradney and F. Cownie"], ",", ["title", {"level": "a"}, "Working on the Chain Gang?"], "\u2019", ["date", {"instant": false}, "1996"], ")", ["biblScope", {"unit": "vol"}, "2"], ["title", {"level": "j"}, "Contemporary Issues in Law"], ["biblScope", {"unit": "pp"}, "15, at 24\u20136"], ")."]], ["note", {"n": "15", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "J. MacFarlane, M. Jeeves, and A. Boon"], ",", ["title", {"level": "a"}, "Education for Life or for Work?"], "\u2019", ["date", {"instant": false}, "1987"], ")", ["biblScope", {"unit": "vol"}, "137"], ["title", {"level": "j"}, "New Law J"], ".", ["biblScope", {"unit": "pp"}, "835, at 836"], "."]], ["note", {"n": "16", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "T.H. Huxley"], ",", ["title", {"level": "a"}, "Universities: Actual and Ideal"], "\u2019", ["title", {"level": "m"}, "T.H. Huxley, Collected Essays"], ":", ["biblScope", {"unit": "vol"}, "Volume III"], ["date", {"instant": false}, "1905"], ")", ["biblScope", {"unit": "pp"}, "215"], "."]], ["note", {"n": "17", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "J.S. Mill"], ",", ["title", {"level": "a"}, "Inaugural address to the University of St Andrews"], "\u2019", ["title", {"level": "m"}, "Collected Work of John Stuart Mill: Volume"], "in", ["biblScope", {"unit": "vol"}, "XXI"], ",", ["editor", "J.M. Robson"], "ed.", ["date", {"instant": false}, "1984"], ")", ["biblScope", {"unit": "pp"}, "218"], "."]], ["note", {"n": "18", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Dearing"], ",", ["ref", "op. cit., n. 12"], ",", ["biblScope", {"unit": "pp"}, "para. 9.32"], "."]], ["note", {"n": "19", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["ref", "id"], ".,", ["biblScope", {"unit": "pp"}, "para. 5.11"], "."]], ["note", {"n": "20", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "F.R. Leavis"], ",", ["title", {"level": "a"}, "Education and the University"], ["date", {"instant": false}, "1948"], ")", ["biblScope", {"unit": "vol"}, "28"], ".", ["note", {"anchored": true}, "Leavis\u2019s view was narrowly nationalistic. For \u2018centre\u2019 it would be better to substitute \u2018centres\u2019."]]], ["note", {"n": "21", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See, further"], ",", ["author", "A. Bradney"], ",", ["title", {"level": "a"}, "Liberalising Legal Education"], "\u2019", ["title", {"level": "m"}, "The Law School: Global Issues, Local Questions"], ",", ["note", {"anchored": true}, "ed. F. Cownie (forthcoming)."]]], ["note", {"n": "22", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "P. Goodrich,"], "\u2018", ["title", {"level": "a"}, "Of Blackstone\u2019s Tower: Metephors of Distance and Histories of the English Law School"], "\u2019", ["ref", "in Birks, op. cit., n. 1"], ",", ["biblScope", {"unit": "pp"}, "59. 23"], "p.", ["title", {"level": "j"}, "S. Turow, One L"], ["date", {"instant": false}, "1977"], ")", ["biblScope", {"unit": "pp"}, "106"], "."]], ["note", {"n": "24", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "O. Kahn-Freund"], ",", ["title", {"level": "a"}, "Reflections on Legal Education"], "\u2019", ["date", {"instant": false}, "1966"], ")", ["biblScope", {"unit": "vol"}, "29"], ["title", {"level": "j"}, "Modern Law Rev"], ".", ["biblScope", {"unit": "pp"}, "121, at 129"], "."]], ["note", {"n": "25", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "Kahn-Freund believed ... legal argument"], ["author", "Kahn-Freund"], ",", ["ref", "id"], ".)."]], ["note", {"n": "26", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Leavis"], ",", ["ref", "op. cit., n. 20"], ",", ["biblScope", {"unit": "pp"}, "120"], "."]], ["note", {"n": "29", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "Leavis has, of course, been widely criticized for the cultural and gender assumptions that lie behind his selection of material to be studied."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See, for example"], ",", ["author", "M. King"], ",", ["title", {"level": "a"}, "The New English Literatures"], ["date", {"instant": false}, "1980"], ")", ["biblScope", {"unit": "pp"}, "at 216\u201317"], ".)", ["note", {"anchored": true}, "Whatever the accuracy of these criticisms, they are criticisms of the application of the method rather than the method itself."]]], ["note", {"n": "30", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["title", {"level": "a"}, "Jurisprudence by Sir John Salmond"], ",", ["editor", "G. Willliams (10th ed"], ".,", ["date", {"instant": false}, "1947"], ")", ["biblScope", {"unit": "pp"}, "at 256 and 257"], "."]], ["note", {"n": "31", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "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."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "See, for example"], ",", ["author", "E. Durkheim"], ["title", {"level": "a"}, "The Division of Labour in Society"], ["date", {"instant": false}, "1933"], ")", ["biblScope", {"unit": "pp"}, "68"], "."]], ["note", {"n": "32", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "M. Le Brun and R. Johnstone"], ",", ["title", {"level": "a"}, "The Quiet Revolution: Improving Student Learning in Law"], ["date", {"instant": false}, "1994"], ")", ["note", {"anchored": true}, "65. On the effect on women students,"]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "see"], ["title", {"level": "a"}, "Define and Empower: Women Students Consider Feminist Learning"], "\u2019", ["date", {"instant": false}, "1990"], ")", ["biblScope", {"unit": "vol"}, "I"], ["title", {"level": "j"}, "Law and Critique"], ["biblScope", {"unit": "pp"}, "47 at pp. 54\u201355"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "For a survey of CLS and feminist literature on this general point, see"], ["author", "W. Conklin"], ",", ["title", {"level": "a"}, "The Invisible Author of Legal Authority"], "\u2019", ["date", {"instant": false}, "1996"], ")", ["biblScope", {"unit": "vol"}, "VII"], ["title", {"level": "j"}, "Law and Critique"], ["biblScope", {"unit": "pp"}, "173 at pp. 173\u20136"], "."]], ["note", {"n": "33", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "R. Collier"], ",", ["title", {"level": "a"}, "Masculinism, Law and Law Teaching"], "\u2019", ["date", {"instant": false}, "1991"], ")", ["biblScope", {"unit": "vol"}, "19"], ["title", {"level": "j"}, "International J. of the Sociology of Law"], ["biblScope", {"unit": "pp"}, "427, at 429"], "."]], ["note", {"n": "34", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "P. McAuslan"], ",", ["title", {"level": "a"}, "Administrative Law, Collective Consumption and Judicial Policy"], "\u2019", ["date", {"instant": false}, "1983"], ")", ["biblScope", {"unit": "vol"}, "46"], ["title", {"level": "j"}, "Modern Law Rev"], ".", ["biblScope", {"unit": "pp"}, "1, at 8"], "."]], ["note", {"n": "35", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Le Brun and Johnstone"], ",", ["ref", "op. cit, n. 32"], ",", ["biblScope", {"unit": "pp"}, "71\u20135"], "."]], ["note", {"n": "38", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Goodrich"], ",", ["ref", "op. cit., n. 22"], "."]], ["note", {"n": "39", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "P. Samuelson"], ",", ["title", {"level": "a"}, "The Convergence of the Law School and the University"], "\u2019", ["date", {"instant": false}, "1975"], ")", ["biblScope", {"unit": "vol"}, "44"], ["title", {"level": "j"}, "The Am. Scholar"], ["biblScope", {"unit": "pp"}, "256, at 258"], "."]], ["note", {"n": "40", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "P. Harris and M. Jones"], ["title", {"level": "a"}, "A Survey of Law Schools in the United Kingdom, 1996"], "\u2019", ["date", {"instant": false}, "1997"], ")", ["biblScope", {"unit": "vol"}, "31"], ["title", {"level": "j"}, "The Law Teacher"], ["biblScope", {"unit": "pp"}, "38, at 46"], "."]], ["note", {"n": "41", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "J. Wilson"], ",", ["title", {"level": "a"}, "A third survey of university legal education"], "\u2019", ["date", {"instant": false}, "1993"], ")", ["biblScope", {"unit": "vol"}, "13"], ["title", {"level": "j"}, "Legal Studies"], ["biblScope", {"unit": "pp"}, "143, at 152"], "."]], ["note", {"n": "42", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "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."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Harris and"], "(", ["author", "Jones"], ",", ["ref", "op. cit., n. 40"], ",", ["biblScope", {"unit": "pp"}, "at p. 54"], ")."]], ["note", {"n": "43", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "P. Leighton, T. Mortimer, and N. Whatley"], ",", ["title", {"level": "a"}, "Law Teachers: Lawyers or Academics?"], ["date", {"instant": false}, "1995"], ")"]], ["note", {"n": "34.", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "This would include teaching both non-law degree students and sub-degree students."], ["ref", "44 id"], ".,", ["biblScope", {"unit": "pp"}, "p 35"]]], ["note", {"n": "45", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "L. Skwarok"], ",", ["title", {"level": "a"}, "Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and Assessment at Hong Kong Polytechnic University"], "\u2019", ["date", {"instant": false}, "1995"], ")", ["biblScope", {"unit": "vol"}, "29"], ["title", {"level": "j"}, "The Law Teacher"], ["biblScope", {"unit": "pp"}, "189, at 189"], "."]], ["note", {"n": "46", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "N. Bastin"], ",", ["title", {"level": "a"}, "Law, Law Staff and CNAA Business Studies Degree Courses"], "\u2019", ["date", {"instant": false}, "1985"], ")", ["biblScope", {"unit": "vol"}, "19"], ["title", {"level": "j"}, "The Law Teacher"], ["biblScope", {"unit": "pp"}, "12, at 13"], "."]], ["note", {"n": "47", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "A. Ridley"], ",", ["title", {"level": "a"}, "Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?"], "\u2019", ["date", {"instant": false}, "1994"], ")", ["biblScope", {"unit": "vol"}, "28"], ["title", {"level": "j"}, "The Law Teacher"], ["biblScope", {"unit": "pp"}, "281, at 282"], "."]], ["note", {"n": "48", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "G. Cartan and T. Vilkinas"], ",", ["title", {"level": "a"}, "Legal Literacy for Managers: The Role of the Educator"], "\u2019", ["date", {"instant": false}, "1990"], ")", ["biblScope", {"unit": "vol"}, "24"], ["title", {"level": "j"}, "The Law Teacher"], ["biblScope", {"unit": "pp"}, "246, at 248"], "."]], ["note", {"n": "49", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Ridley"], ",", ["ref", "op. cit., n. 47"], ",", ["biblScope", {"unit": "pp"}, "at p. 284"], "."]], ["note", {"n": "50", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "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", {"n": "51", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "P. Birks"], ",", ["title", {"level": "a"}, "Short Cuts"], "\u2019", ["title", {"level": "m"}, "Pressing Problems in the Law"], ",", ["editor", "P. Birks"], "ed.", ["date", {"instant": false}, "1994"], ")", ["biblScope", {"unit": "pp"}, "10\u201324"], "."]], ["note", {"n": "52", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Ridley"], ",", ["ref", "op. cit., n. 47"], ",", ["biblScope", {"unit": "pp"}, "283"], "."]], ["note", {"n": "53", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Cartan and Vilkinas"], ",", ["ref", "op. cit., n. 48"], ",", ["biblScope", {"unit": "pp"}, "248"], "."]], ["note", {"n": "54", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "P. Harris"], ",", ["title", {"level": "a"}, "Curriculum Development in Legal Studies"], "\u2019", ["date", {"instant": false}, "1986"], ")", ["biblScope", {"unit": "vol"}, "20"], ["title", {"level": "j"}, "The Law Teacher"], ["biblScope", {"unit": "pp"}, "110, at 112"], "."]], ["note", {"n": "55", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Dearing"], ",", ["ref", "op. cit., n. 12"], ",", ["biblScope", {"unit": "pp"}, "para 9.3"], "."]], ["note", {"n": "57", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "G. Steiner"], ",", ["title", {"level": "a"}, "Errata: An Examined Life"], ["date", {"instant": false}, "1997"], ")", ["biblScope", {"unit": "pp"}, "20"], "."]]]] \ No newline at end of file diff --git a/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml b/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml index 9496768..07335c0 100644 --- a/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml +++ b/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml @@ -17,29 +17,44 @@ <body> <p>The article text is not part of this document</p> </body> - <note n="1" place="bottom"> + <note n="1" type="footnote" place="bottom"> <bibl> <note type="signal">For a contrary view, see</note> - <author>G. Jones</author> - , + <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> - , - <editor>P. Birks</editor> - ed. + , ed. + <editor> + <persName> + <forename>P.</forename> + <surname>Birks</surname> + </persName> + </editor> + ( <date>1996</date> ) <biblScope unit="pp">14</biblScope> . </bibl> </note> - <note n="3" place="bottom"> + <note n="3" type="footnote" place="bottom"> <bibl> - <author>R. Goff</author> - , + <author> + <persName> + <forename>R.</forename> + <surname>Goff</surname> + </persName> + </author> + , ‘ <title level="a">The Search for Principle</title> - ’ + ’ ( <date>1983</date> ) <title level="j">Proceeedings of the British Academy</title> @@ -47,33 +62,53 @@ , <biblScope unit="pp">at 171</biblScope> . - <note>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> - <author>A. Dicey</author> + <note>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> + <bibl> + <author> + <persName> + <forename>A.</forename> + <surname>Dicey</surname> + </persName> + </author> , <title level="a">Can English Law be taught at the Universities?</title> + ( <date>1883</date> ) <biblScope unit="pp">20</biblScope> . </bibl> </note> - <note n="4" place="bottom"> + <note n="4" type="footnote" place="bottom"> <bibl> - <author>J. Smith</author> + <author> + <persName> + <forename>J.</forename> + <surname>Smith</surname> + </persName> + </author> , <title level="a">The Law of Contract</title> + ( <date>1989</date> ) </bibl> </note> - <note n="6" place="bottom"> + <note n="6" type="footnote" place="bottom"> <bibl> <note type="signal">See, for example</note> , - <author>D. Kennedy</author> - , + <author> + <persName> + <forename>D.</forename> + <surname>Kennedy</surname> + </persName> + </author> + , ‘ <title level="a">Form and substance in Private Law Ajudication</title> - ’ + ’ ( <date>1976</date> ) <biblScope unit="vol">89</biblScope> @@ -83,12 +118,17 @@ . </bibl> </note> - <note n="7" place="bottom"> + <note n="7" type="footnote" place="bottom"> <bibl> - <author>B. Hepple</author> - , + <author> + <persName> + <forename>B.</forename> + <surname>Hepple</surname> + </persName> + </author> + , ‘ <title level="a">The Renewal of the Liberal Law Degree</title> - ’ + ’ ( <date>1996</date> ) <title level="j">Cambridge Law J</title> @@ -97,57 +137,92 @@ . </bibl> </note> - <note n="8" place="bottom"> + <note n="8" type="footnote" place="bottom"> <bibl> - <author>P.A. Thomas</author> - , + <author> + <persName> + <forename>P.A.</forename> + <surname>Thomas</surname> + </persName> + </author> + , ‘ <title level="a">Introduction</title> - ’ + ’ in <title level="m">Socio-Legal Studies</title> - , - <editor>P.A. Thomas</editor> - ed. + , ed. + <editor> + <persName> + <forename>P.A.</forename> + <surname>Thomas</surname> + </persName> + </editor> + ( <date>1997</date> ) <biblScope unit="pp">19</biblScope> . </bibl> </note> - <note n="9" place="bottom"> + <note n="9" type="footnote" place="bottom"> <bibl> - <author>R. Cotterrell</author> + <author> + <persName> + <forename>R.</forename> + <surname>Cotterrell</surname> + </persName> + </author> , <title level="a">Law’s Community</title> + ( <date>1995</date> ) <biblScope unit="pp">296</biblScope> . </bibl> </note> - <note n="10" place="bottom"> + <note n="10" type="footnote" place="bottom"> <bibl> - <note>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> + <note>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> + ’. + <publisher> + <persName> + <forename>S.</forename> + <surname>Wheeler</surname> + </persName> + </publisher> + , ‘ <title level="a">Company Law</title> - ’ - <editor>Thomas</editor> + ’ in + <editor> + <persName> + <surname>Thomas</surname> + </persName> + </editor> , <ref>op. cit., n. 8</ref> , - <biblScope unit="pp">at p. 285</biblScope> + <citedRange unit="pp">at p. 285</citedRange> . </bibl> </note> - <note n="11" place="bottom"> + <note n="11" type="footnote" place="bottom"> <bibl> <note>Some fail wholly. It is difficult to see any effect on academic legal education that resulted from</note> - <author>Lady Marre’s</author> + <author> + <persName> + <surname>Marre’s</surname> + </persName> + </author> <title level="a">report A Time for Change</title> + ( <date>1988</date> ). <note>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</note> + ( <date>1988</date> ), <note>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> + ( <title level="a">Report of the Committee on Legal Education</title> ( <date>1971</date> @@ -156,55 +231,93 @@ <bibl> <ref type="legal">Cmnd 4595)</ref> - <biblScope unit="pp">ch. 9, recs. 40 and 23</biblScope> + <citedRange unit="pp">ch. 9, recs. 40 and 23</citedRange> ). - <note>There were also other recommendations that were not implemented.</note> + <note>There were also other recommendations that were not implemented</note> + . <title level="a">The Robbins report on higher education, Higher Education</title> + ( <date>1963</date> ; </bibl> <bibl> <ref type="legal">Cmnd. 2154</ref> ) - <note>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> + <note>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> + ’ ( <biblScope unit="pp">para. 31</biblScope> ). - <note>This has yet to happen.</note> + <note>This has yet to happen</note> + . </bibl> </note> - <note n="12" place="bottom"> + <note n="12" type="footnote" place="bottom"> <bibl> - <author>National Committee of Inquiry into Higher Education</author> + <author> + <persName> + <forename>Committee of Inquiry</forename> + <forename>into Higher</forename> + <surname>Education</surname> + </persName> + </author> , <title level="a">Higher Education in the learning society</title> + ( <date>1997</date> - ) - <note>(the Dearing report);</note> - <author>ACLEC</author> + ) ( + <note>the Dearing report</note> + ); + </bibl> + <bibl> + <author> + <persName> + <surname>ACLEC</surname> + </persName> + </author> , <title level="a">First Report on Legal Education and Training</title> + ( <date>1996</date> ). - <note>The Government’s White Paper on further and higher education had not been published at the time of writing this essay.</note> - <author>ACLEC</author> + <note>The Government’s White Paper on further and higher education had not been published at the time of writing this essay</note> + . + </bibl> + <bibl> + <author> + <persName> + <surname>ACLEC</surname> + </persName> + </author> , - <ref>id</ref> - ., - <biblScope unit="pp">para 4.6</biblScope> + <ref>id.</ref> + , + <citedRange unit="pp">para 4.6</citedRange> . </bibl> </note> - <note n="14" place="bottom"> + <note n="14" type="footnote" place="bottom"> <bibl> - <note>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>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> + . </bibl> <bibl> <note type="signal">See</note> - ( - <author>A. Bradney and F. Cownie</author> - , + <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>1996</date> ) <biblScope unit="vol">2</biblScope> @@ -213,12 +326,25 @@ ). </bibl> </note> - <note n="15" place="bottom"> + <note n="15" type="footnote" place="bottom"> <bibl> - <author>J. MacFarlane, M. Jeeves, and A. Boon</author> - , + <author> + <persName> + <forename>M.</forename> + <forename>Jeeves</forename> + <surname>J. 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>1987</date> ) <biblScope unit="vol">137</biblScope> @@ -228,105 +354,147 @@ . </bibl> </note> - <note n="16" place="bottom"> + <note n="16" type="footnote" place="bottom"> <bibl> - <author>T.H. Huxley</author> - , + <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="vol">Volume III</biblScope> + ( <date>1905</date> ) <biblScope unit="pp">215</biblScope> . </bibl> </note> - <note n="17" place="bottom"> + <note n="17" type="footnote" place="bottom"> <bibl> - <author>J.S. Mill</author> - , + <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> - in <biblScope unit="vol">XXI</biblScope> - , - <editor>J.M. Robson</editor> - ed. + , ed. + <editor> + <persName> + <forename>J.M.</forename> + <surname>Robson</surname> + </persName> + </editor> + ( <date>1984</date> ) <biblScope unit="pp">218</biblScope> . </bibl> </note> - <note n="18" place="bottom"> + <note n="18" type="footnote" place="bottom"> <bibl> - <author>Dearing</author> + <author> + <persName> + <surname>Dearing</surname> + </persName> + </author> , <ref>op. cit., n. 12</ref> , - <biblScope unit="pp">para. 9.32</biblScope> + <citedRange unit="pp">para. 9.32</citedRange> . </bibl> </note> - <note n="19" place="bottom"> + <note n="19" type="footnote" place="bottom"> <bibl> - <ref>id</ref> - ., - <biblScope unit="pp">para. 5.11</biblScope> + <ref>id.</ref> + , + <citedRange unit="pp">para. 5.11</citedRange> . </bibl> </note> - <note n="20" place="bottom"> + <note n="20" type="footnote" place="bottom"> <bibl> - <author>F.R. Leavis</author> + <author> + <persName> + <forename>F.R.</forename> + <surname>Leavis</surname> + </persName> + </author> , <title level="a">Education and the University</title> + ( <date>1948</date> ) <biblScope unit="vol">28</biblScope> . - <note>Leavis’s view was narrowly nationalistic. For ‘centre’ it would be better to substitute ‘centres’.</note> + <note>Leavis’s view was narrowly nationalistic. For ‘centre’ it would be better to substitute ‘centres</note> + ’. </bibl> </note> - <note n="21" place="bottom"> + <note n="21" type="footnote" place="bottom"> <bibl> <note type="signal">See, further</note> , - <author>A. Bradney</author> - , + <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> , - <note>ed. F. Cownie (forthcoming).</note> + <note>ed. F. Cownie (forthcoming)</note> + . </bibl> </note> - <note n="22" place="bottom"> + <note n="22" type="footnote" place="bottom"> <bibl> - <author>P. Goodrich,</author> + <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> ’ <ref>in Birks, op. cit., n. 1</ref> - , - <biblScope unit="pp">59. 23</biblScope> - p. + , p. + <citedRange unit="pp">59. 23</citedRange> <title level="j">S. Turow, One L</title> + ( <date>1977</date> ) <biblScope unit="pp">106</biblScope> . </bibl> </note> - <note n="24" place="bottom"> + <note n="24" type="footnote" place="bottom"> <bibl> - <author>O. Kahn-Freund</author> - , + <author> + <persName> + <forename>O.</forename> + <surname>Kahn-Freund</surname> + </persName> + </author> + , ‘ <title level="a">Reflections on Legal Education</title> - ’ + ’ ( <date>1966</date> ) <biblScope unit="vol">29</biblScope> @@ -336,47 +504,69 @@ . </bibl> </note> - <note n="25" place="bottom"> + <note n="25" type="footnote" place="bottom"> <bibl> <note>Kahn-Freund believed ... legal argument</note> - <author>Kahn-Freund</author> + ( + <author> + <persName> + <surname>Kahn-Freund</surname> + </persName> + </author> , - <ref>id</ref> - .). + <ref>id.).</ref> </bibl> </note> - <note n="26" place="bottom"> + <note n="26" type="footnote" place="bottom"> <bibl> - <author>Leavis</author> + <author> + <persName> + <surname>Leavis</surname> + </persName> + </author> , <ref>op. cit., n. 20</ref> - , - <biblScope unit="pp">120</biblScope> + , p. + <citedRange unit="pp">120</citedRange> . </bibl> </note> - <note n="29" place="bottom"> + <note n="29" type="footnote" place="bottom"> <bibl> - <note>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>Leavis has, of course, been widely criticized for the cultural and gender assumptions that lie behind his selection of material to be studied</note> + . </bibl> <bibl> <note type="signal">See, for example</note> , - <author>M. King</author> + <author> + <persName> + <forename>M.</forename> + <surname>King</surname> + </persName> + </author> , <title level="a">The New English Literatures</title> + ( <date>1980</date> ) <biblScope unit="pp">at 216–17</biblScope> .) - <note>Whatever the accuracy of these criticisms, they are criticisms of the application of the method rather than the method itself.</note> + <note>Whatever the accuracy of these criticisms, they are criticisms of the application of the method rather than the method itself</note> + . </bibl> </note> - <note n="30" place="bottom"> + <note n="30" type="footnote" place="bottom"> <bibl> <title level="a">Jurisprudence by Sir John Salmond</title> - , - <editor>G. Willliams (10th ed</editor> + , ed. + <editor> + <persName> + <forename>G.</forename> + <forename>Willliams</forename> + <surname>(10th</surname> + </persName> + </editor> ., <date>1947</date> ) @@ -384,34 +574,56 @@ . </bibl> </note> - <note n="31" place="bottom"> + <note n="31" type="footnote" place="bottom"> <bibl> - <note>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>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> + . </bibl> <bibl> <note type="signal">See, for example</note> , - <author>E. Durkheim</author> + <author> + <persName> + <forename>E.</forename> + <surname>Durkheim</surname> + </persName> + </author> <title level="a">The Division of Labour in Society</title> + ( <date>1933</date> ) <biblScope unit="pp">68</biblScope> . </bibl> </note> - <note n="32" place="bottom"> + <note n="32" type="footnote" place="bottom"> <bibl> - <author>M. Le Brun and R. Johnstone</author> + <author> + <persName> + <forename>M.</forename> + <surname>Le Brun</surname> + </persName> + </author> + and + <author> + <persName> + <forename>R.</forename> + <surname>Johnstone</surname> + </persName> + </author> , <title level="a">The Quiet Revolution: Improving Student Learning in Law</title> + ( <date>1994</date> ) - <note>65. On the effect on women students,</note> + <note>65. On the effect on women students</note> + , </bibl> <bibl> <note type="signal">see</note> + ‘ <title level="a">Define and Empower: Women Students Consider Feminist Learning</title> - ’ + ’ ( <date>1990</date> ) <biblScope unit="vol">I</biblScope> @@ -421,10 +633,15 @@ </bibl> <bibl> <note type="signal">For a survey of CLS and feminist literature on this general point, see</note> - <author>W. Conklin</author> - , + <author> + <persName> + <forename>W.</forename> + <surname>Conklin</surname> + </persName> + </author> + , ‘ <title level="a">The Invisible Author of Legal Authority</title> - ’ + ’ ( <date>1996</date> ) <biblScope unit="vol">VII</biblScope> @@ -433,12 +650,17 @@ . </bibl> </note> - <note n="33" place="bottom"> + <note n="33" type="footnote" place="bottom"> <bibl> - <author>R. Collier</author> - , + <author> + <persName> + <forename>R.</forename> + <surname>Collier</surname> + </persName> + </author> + , ‘ <title level="a">Masculinism, Law and Law Teaching</title> - ’ + ’ ( <date>1991</date> ) <biblScope unit="vol">19</biblScope> @@ -447,12 +669,17 @@ . </bibl> </note> - <note n="34" place="bottom"> + <note n="34" type="footnote" place="bottom"> <bibl> - <author>P. McAuslan</author> - , + <author> + <persName> + <forename>P.</forename> + <surname>McAuslan</surname> + </persName> + </author> + , ‘ <title level="a">Administrative Law, Collective Consumption and Judicial Policy</title> - ’ + ’ ( <date>1983</date> ) <biblScope unit="vol">46</biblScope> @@ -462,30 +689,49 @@ . </bibl> </note> - <note n="35" place="bottom"> + <note n="35" type="footnote" place="bottom"> <bibl> - <author>Le Brun and Johnstone</author> + <author> + <persName> + <forename>Le</forename> + <surname>Brun</surname> + </persName> + </author> + and + <author> + <persName> + <surname>Johnstone</surname> + </persName> + </author> , <ref>op. cit, n. 32</ref> - , - <biblScope unit="pp">71–5</biblScope> + , pp. + <citedRange unit="pp">71–5</citedRange> . </bibl> </note> - <note n="38" place="bottom"> + <note n="38" type="footnote" place="bottom"> <bibl> - <author>Goodrich</author> + <author> + <persName> + <surname>Goodrich</surname> + </persName> + </author> , - <ref>op. cit., n. 22</ref> - . + <ref>op. cit., n. 22.</ref> </bibl> </note> - <note n="39" place="bottom"> + <note n="39" type="footnote" place="bottom"> <bibl> - <author>P. Samuelson</author> - , + <author> + <persName> + <forename>P.</forename> + <surname>Samuelson</surname> + </persName> + </author> + , ‘ <title level="a">The Convergence of the Law School and the University</title> - ’ + ’ ( <date>1975</date> ) <biblScope unit="vol">44</biblScope> @@ -494,11 +740,24 @@ . </bibl> </note> - <note n="40" place="bottom"> + <note n="40" type="footnote" place="bottom"> <bibl> - <author>P. Harris and M. Jones</author> + <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>1997</date> ) <biblScope unit="vol">31</biblScope> @@ -507,12 +766,17 @@ . </bibl> </note> - <note n="41" place="bottom"> + <note n="41" type="footnote" place="bottom"> <bibl> - <author>J. Wilson</author> - , + <author> + <persName> + <forename>J.</forename> + <surname>Wilson</surname> + </persName> + </author> + , ‘ <title level="a">A third survey of university legal education</title> - ’ + ’ ( <date>1993</date> ) <biblScope unit="vol">13</biblScope> @@ -521,44 +785,68 @@ . </bibl> </note> - <note n="42" place="bottom"> + <note n="42" type="footnote" place="bottom"> <bibl> - <note>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> + <note>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> <bibl> <note type="signal">Harris and</note> - ( - <author>Jones</author> + <author> + <persName> + <surname>Jones</surname> + </persName> + </author> , <ref>op. cit., n. 40</ref> , - <biblScope unit="pp">at p. 54</biblScope> + <citedRange unit="pp">at p. 54</citedRange> ). </bibl> </note> - <note n="43" place="bottom"> + <note n="43" type="footnote" place="bottom"> <bibl> - <author>P. Leighton, T. Mortimer, and N. Whatley</author> + <author> + <persName> + <forename>T.</forename> + <forename>Mortimer</forename> + <surname>P. Leighton</surname> + </persName> + </author> + and + <author> + <persName> + <forename>N.</forename> + <surname>Whatley</surname> + </persName> + </author> , <title level="a">Law Teachers: Lawyers or Academics?</title> + ( <date>1995</date> ) </bibl> </note> - <note n="34." place="bottom"> + <note n="34." type="footnote" place="bottom"> <bibl> - <note>This would include teaching both non-law degree students and sub-degree students.</note> - <ref>44 id</ref> - ., - <biblScope unit="pp">p 35</biblScope> + <note>This would include teaching both non-law degree students and sub-degree students</note> + . + <ref>44 id.</ref> + , + <citedRange unit="pp">p 35</citedRange> </bibl> </note> - <note n="45" place="bottom"> + <note n="45" type="footnote" place="bottom"> <bibl> - <author>L. Skwarok</author> - , + <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>1995</date> ) <biblScope unit="vol">29</biblScope> @@ -567,12 +855,17 @@ . </bibl> </note> - <note n="46" place="bottom"> + <note n="46" type="footnote" place="bottom"> <bibl> - <author>N. Bastin</author> - , + <author> + <persName> + <forename>N.</forename> + <surname>Bastin</surname> + </persName> + </author> + , ‘ <title level="a">Law, Law Staff and CNAA Business Studies Degree Courses</title> - ’ + ’ ( <date>1985</date> ) <biblScope unit="vol">19</biblScope> @@ -581,12 +874,17 @@ . </bibl> </note> - <note n="47" place="bottom"> + <note n="47" type="footnote" place="bottom"> <bibl> - <author>A. Ridley</author> - , + <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>1994</date> ) <biblScope unit="vol">28</biblScope> @@ -595,12 +893,24 @@ . </bibl> </note> - <note n="48" place="bottom"> + <note n="48" type="footnote" place="bottom"> <bibl> - <author>G. Cartan and T. Vilkinas</author> - , + <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>1990</date> ) <biblScope unit="vol">24</biblScope> @@ -609,63 +919,96 @@ . </bibl> </note> - <note n="49" place="bottom"> + <note n="49" type="footnote" place="bottom"> <bibl> - <author>Ridley</author> + <author> + <persName> + <surname>Ridley</surname> + </persName> + </author> , <ref>op. cit., n. 47</ref> , - <biblScope unit="pp">at p. 284</biblScope> + <citedRange unit="pp">at p. 284</citedRange> . </bibl> </note> - <note n="50" place="bottom"> + <note n="50" type="footnote" place="bottom"> <bibl> - <note>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>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> + . </bibl> </note> - <note n="51" place="bottom"> + <note n="51" type="footnote" place="bottom"> <bibl> - <author>P. Birks</author> - , + <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> - , - <editor>P. Birks</editor> - ed. + , ed. + <editor> + <persName> + <forename>P.</forename> + <surname>Birks</surname> + </persName> + </editor> + ( <date>1994</date> ) <biblScope unit="pp">10–24</biblScope> . </bibl> </note> - <note n="52" place="bottom"> + <note n="52" type="footnote" place="bottom"> <bibl> - <author>Ridley</author> + <author> + <persName> + <surname>Ridley</surname> + </persName> + </author> , <ref>op. cit., n. 47</ref> - , - <biblScope unit="pp">283</biblScope> + , p. + <citedRange unit="pp">283</citedRange> . </bibl> </note> - <note n="53" place="bottom"> + <note n="53" type="footnote" place="bottom"> <bibl> - <author>Cartan and Vilkinas</author> + <author> + <persName> + <surname>Cartan</surname> + </persName> + </author> + <author> + <persName> + <surname>Vilkinas</surname> + </persName> + </author> , <ref>op. cit., n. 48</ref> - , - <biblScope unit="pp">248</biblScope> + , p. + <citedRange unit="pp">248</citedRange> . </bibl> </note> - <note n="54" place="bottom"> + <note n="54" type="footnote" place="bottom"> <bibl> - <author>P. Harris</author> - , + <author> + <persName> + <forename>P.</forename> + <surname>Harris</surname> + </persName> + </author> + , ‘ <title level="a">Curriculum Development in Legal Studies</title> - ’ + ’ ( <date>1986</date> ) <biblScope unit="vol">20</biblScope> @@ -674,21 +1017,31 @@ . </bibl> </note> - <note n="55" place="bottom"> + <note n="55" type="footnote" place="bottom"> <bibl> - <author>Dearing</author> + <author> + <persName> + <surname>Dearing</surname> + </persName> + </author> , <ref>op. cit., n. 12</ref> , - <biblScope unit="pp">para 9.3</biblScope> + <citedRange unit="pp">para 9.3</citedRange> . </bibl> </note> - <note n="57" place="bottom"> + <note n="57" type="footnote" place="bottom"> <bibl> - <author>G. Steiner</author> + <author> + <persName> + <forename>G.</forename> + <surname>Steiner</surname> + </persName> + </author> , <title level="a">Errata: An Examined Life</title> + ( <date>1997</date> ) <biblScope unit="pp">20</biblScope> diff --git a/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.json b/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.json deleted file mode 100644 index 673e48b..0000000 --- a/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.json +++ /dev/null @@ -1 +0,0 @@ -["TEI", {"xmlns": "http://www.tei-c.org/ns/1.0"}, ["teiHeader", ["fileDesc", ["titleStmt", ["title", "10.1515_zfrs-1980-0103"]], ["publicationStmt", ["publisher", "mpilhlt"]], ["sourceDesc", {"default": "false"}, ["p", {"part": "N"}, "10.1515_zfrs-1980-0103"]]]], ["text", ["body", ["p", {"part": "N"}, "The article text is not part of this document"], ["listBibl", {"default": "false"}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Baumg\u00e4rtei, Gottfried"], ",", ["date", {"instant": false}, "1976"], ":", ["title", {"level": "a"}, "Gleicher Zugang zum Recht f\u00fcr alle"], ".", ["pubPlace", "K\u00f6ln"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Bender, Rolf und Rolf Schumacher"], ",", ["date", {"instant": false}, "1980"], ":", ["title", {"level": "a"}, "Erfolgsbarrieren vor Gericht."], ["pubPlace", "T\u00fcbingen"], ".", ["author", "Black, Donald"], ",", ["date", {"instant": false}, "1973"], ":", ["title", {"level": "a"}, "The Mobilization of Law"], ",", ["title", {"level": "j"}, "Journal of Legal Studies"], "in:", ["biblScope", {"unit": "vol"}, "2"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut"], ",", ["date", {"instant": false}, "1972"], ":", ["title", {"level": "a"}, "Der lange Weg in die Berufung"], ",", ["editor", "Bender, Rolf"], "(Hrsg.):", ["title", {"level": "m"}, "Tatsachenforschung in der Justiz"], ".", ["pubPlace", "T\u00fcbingen"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Blankenburg, Erhard"], ",", ["date", {"instant": false}, "1976"], ":", ["title", {"level": "a"}, "Nichtkriminalisierung als Struktur und Routine"], ",", ["editor", "G\u00f6ppinger"], ",", ["title", {"level": "a"}, "Hans und G\u00fcnter Kaiser: Kriminologie und Strafverfahren"], ".", ["pubPlace", "Stuttgart"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke"], ",", ["date", {"instant": false}, "1978"], ":", ["title", {"level": "a"}, "Die Staatsanwaltschaft im Proze\u00df strafrechtlicher Sozialkontrolle"], ".", ["pubPlace", "Berlin"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Blankenburg, Erhard; Sch\u00f6nholz, Siegfried, unter Mitarbeit von Ralf Rogowski"], ",", ["date", {"instant": false}, "1979"], ":", ["title", {"level": "a"}, "Zur Soziologie des Arbeitsgerichtsverfahrens"], ".", ["pubPlace", "Neuwied und Darmstadt"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Blankenburg, Erhard"], ",", ["date", {"instant": false}, "1980"], ":", ["title", {"level": "a"}, "Recht als gradualisiertes Konzept"], ",", ["editor", "Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner"], "(Hrsg.):", ["title", {"level": "m"}, "Alternative Rechtsformen und Alternativen zum Recht"], ",", ["title", {"level": "s"}, "Jahrbuch f\u00fcr Rechtssoziologie und Rechtstheorie"], ["biblScope", {"unit": "vol"}, "Bd. 6. Opladen"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Carlin, Jerome-, Jan Howard und Sheldon Messinger"], ",", ["date", {"instant": false}, "1967"], ":", ["title", {"level": "a"}, "Civil Justice and the Poor"], ".", ["pubPlace", "New York. Danzig,"], ["author", "Richard /Lowy, Michael"], ",", ["date", {"instant": false}, "1974"], "/75;", ["title", {"level": "a"}, "Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner"], ",", ["title", {"level": "j"}, "Law and Society Review"], ",", ["biblScope", {"unit": "vol"}, "vol. 9"], ",", ["biblScope", {"unit": "pp"}, "675\u2014694"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Feest, Johannes/Blankenburg, Erhard"], ",", ["date", {"instant": false}, "1972"], ":", ["title", {"level": "a"}, "Die Definitionsmacht der Polizei"], ".", ["pubPlace", "D\u00fcsseldorf"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Felstiner, William L. F"], ".,", ["date", {"instant": false}, "1974"], "/75:", ["title", {"level": "a"}, "Influences of Social Organization on Dispute processing"], ",", ["title", {"level": "j"}, "Law and Society Review"], ",", ["biblScope", {"unit": "vol"}, "vol. 9"], ",", ["biblScope", {"unit": "pp"}, "63\u201494"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Felstiner, William L. F"], ".,", ["date", {"instant": false}, "1974"], "/75:", ["title", {"level": "a"}, "Avoidance as Dispute Processing: An Elaboration"], ",", ["title", {"level": "j"}, "Law and Society Review"], ",", ["biblScope", {"unit": "vol"}, "vol. 9"], ",", ["biblScope", {"unit": "pp"}, "695-706"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Galanter, Marc"], ",", ["date", {"instant": false}, "1974"], ":", ["title", {"level": "a"}, "Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change"], ",", ["title", {"level": "j"}, "Law and Society Review"], ",", ["biblScope", {"unit": "vol"}, "vol. 9"], ",", ["biblScope", {"unit": "pp"}, "95\u2014160"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Geiger, Theodor"], ",", ["date", {"instant": false}, "1964"], ":", ["title", {"level": "a"}, "Vorstudien zu einer Soziologie des Rechts"], ".", ["author", "Neuwied. Gessner, Volkmar"], ",", ["date", {"instant": false}, "1976"], ":", ["title", {"level": "a"}, "Recht und Konflikt"], ".", ["pubPlace", "T\u00fcbingen"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Hilden, Hartmut"], ",", ["date", {"instant": false}, "1976"], ":", ["title", {"level": "a"}, "Rechtstatsachen im R\u00e4umungsstreit. Frankfurt/Main"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Johnson, Earl"], ",", ["date", {"instant": false}, "1979"], ";", ["title", {"level": "a"}, "Thinking about Access: A Preliminary Typology of Possible Strategies"], ".", ["editor", "Cappelletti, Mauro und Bryant Garth"], "(Hrsg.):", ["title", {"level": "m"}, "Access to Justice"], ",", ["biblScope", {"unit": "vol"}, "Bd. III"], ".", ["editor", "Milan und Alphen/ Rijn"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Koch, Hartmut"], ",", ["date", {"instant": false}, "1975"], ":", ["title", {"level": "a"}, "Das Gerichtsverfahren als Konfliktl\u00f6sungsproze\u00df \u2014 Einstellung von Kl\u00e4gern und Beklagten zu Mietprozessen"], ".", ["note", {"anchored": true}, "Diss."], ["pubPlace", "Hamburg"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Luhmann, Niklas"], ",", ["date", {"instant": false}, "1969"], ":", ["title", {"level": "a"}, "Legitimation durch Verfahren"], ".", ["pubPlace", "Neuwied und Darmstadt"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Luhmann, Niklas"], ",", ["date", {"instant": false}, "1980"], ":", ["title", {"level": "a"}, "Kommunikation \u00fcber Recht in Interaktionssystemen"], ",", ["editor", "Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner"], "(Hrsg.):", ["title", {"level": "m"}, "Alternative Rechtsformen und Alternativen zum Recht"], ",", ["title", {"level": "s"}, "Jahrbuch f\u00fcr Rechtssoziologie und Rechtstheorie"], ["biblScope", {"unit": "vol"}, "Bd. 6. Opladen"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Reifner, Udo"], ",", ["date", {"instant": false}, "1978"], ":", ["title", {"level": "a"}, "Rechtshilfebed\u00fcrfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative"], ",", ["biblScope", {"unit": "pp"}, "IIM-dp/78\u201470"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Reifner, Udo"], ",", ["date", {"instant": false}, "1979"], ":", ["title", {"level": "a"}, "Gewerkschaftlicher Rechtsschutz \u2014 Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894\u20141945"], ".", ["biblScope", {"unit": "pp"}, "IIM-dp/79\u2014104"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Reifner, Udo und Irmela Gorges"], ",", ["date", {"instant": false}, "1980"], ";", ["title", {"level": "a"}, "Alternativen der Rechtsberatung: Dienstleistung, F\u00fcrsorge und kollektive Selbsthilfe"], ",", ["editor", "Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner"], "(Hrsg.):", ["title", {"level": "m"}, "Alternative Rechtsformen und Alternativen zum Recht"], ",", ["title", {"level": "s"}, "Jahrbuch f\u00fcr Rechtssoziologie und Rechtstheorie"], ["biblScope", {"unit": "vol"}, "Bd. 6. Opladen"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Sarat"], ",", ["pubPlace", "Austin"], ",", ["date", {"instant": false}, "1976"], ":", ["title", {"level": "a"}, "Alternatives in Dispute Processing in a Small Claim Court"], ",", ["title", {"level": "j"}, "Law and Society Review"], ",", ["biblScope", {"unit": "vol"}, "vol. 10"], ",", ["biblScope", {"unit": "pp"}, "339\u2014375"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Sch\u00f6nholz, Siegfried"], ",", ["date", {"instant": false}, "1980"], ":", ["title", {"level": "a"}, "Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich"], ["editor", "Vereinigung f\u00fcr Rechtssoziologie"], "(Hrsg.):", ["title", {"level": "m"}, "Arbeitslosigkeit und Recht"], ".", ["pubPlace", "Baden-Baden"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Steinbach, E"], ".,", ["date", {"instant": false}, "1979"], ":", ["title", {"level": "a"}, "GMD-Bericht, Manuskript. Gesellschaft f\u00fcr Mathematik und Datenverarbeitung"], ".", ["pubPlace", "Birlinghoven bei Bonn"], "."], ["bibl", {"default": "false", "status": "draft"}, ["author", "Wanner, Craig"], ",", ["date", {"instant": false}, "1975"], ":", ["title", {"level": "a"}, "The Public Ordering of Private Cases; Winning Civil Court Cases"], ",", ["title", {"level": "j"}, "Law and Society Review"], ",", ["biblScope", {"unit": "vol"}, "vol. 9"], ",", ["biblScope", {"unit": "pp"}, "293-306"], "."]]], ["note", {"n": "1", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Geiger"], ["date", {"instant": false}, "1964"], ",", ["biblScope", {"unit": "pp"}, "insbesondere S. 65\u201483"], "."]], ["note", {"n": "2", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Vgl"], ".", ["author", "Feest/Blankenburg"], ",", ["date", {"instant": false}, "1972"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Die Konsequenz einer gr\u00f6\u00dferen Dunkelziffer bei den von der Polizei selbst entdeckten Straftaten entwickle"], ["author", "ich"], ["note", {"anchored": true}, "ausf\u00fchrlicher in meinem Beitrag \u00fcber"], ["title", {"level": "a"}, "Nichtkriminalisierung als Struktur und Routine"], "',", ["date", {"instant": false}, "1976"], "."]], ["note", {"n": "3", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Angaben aus einer Befragung von"], ["author", "Peter MacNaughton-Smith und Richard Rosellen"], ["note", {"anchored": true}, "zur"], ["title", {"level": "a"}, "Bereitschaft zur Anzeigeerstattung"], "'", ["note", {"anchored": true}, "Manuskript"], ["pubPlace", "Freiburg"], ["date", {"instant": false}, "1978"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Der ausf\u00fchrliche Forschungsbericht von"], ["author", "Richard Rosellen"], ["note", {"anchored": true}, "erscheint in K\u00fcrze unter dem Titel"], ["title", {"level": "a"}, "Private Verbrechenskontrolle \u2014 eine empirische Untersuchung zur Anzeigeerstattung"], "',", ["pubPlace", "Berlin"], ",", ["date", {"instant": false}, "1980"], "."]], ["note", {"n": "4", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Vgl"], ".", ["author", "Blankenburg/Sessar/Steffen"], ",", ["date", {"instant": false}, "1978"], ",", ["biblScope", {"unit": "pp"}, "66-85"], "."]], ["note", {"n": "5", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Black"], ["date", {"instant": false}, "1973"], ",", ["biblScope", {"unit": "pp"}, "125 ff"], "."]], ["note", {"n": "6", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Zur h\u00f6heren Wahrscheinlichkeit der Normierung von Verhalten in weniger komplexen Beziehungen vgl. die Konflikttheorie von"], ["author", "Gessner"], ["date", {"instant": false}, "1976"], ",", ["biblScope", {"unit": "pp"}, "insbesondere S. 170\u2014183"], "."]], ["note", {"n": "7", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Zum Konzept der 'Thematisierung von Recht' vgl"], ".", ["author", "Luhmann"], ["date", {"instant": false}, "1980"], ",", ["biblScope", {"unit": "pp"}, "99\u2014112"], "."]], ["note", {"n": "8", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Ausf\u00fchrlicher bei"], ["author", "Gessner"], ["date", {"instant": false}, "1976"]]], ["note", {"n": "9", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Vgl"], ".", ["author", "Sch\u00f6nholz"], ["date", {"instant": false}, "1980"], "."]], ["note", {"n": "10", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Blankenburg/Sch\u00f6nholz; Rogowski"], ["date", {"instant": false}, "1979"], ",", ["biblScope", {"unit": "pp"}, "64 ff"], "."]], ["note", {"n": "11", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Hilden"], ["date", {"instant": false}, "1976"], ",", ["biblScope", {"unit": "pp"}, "64 ff"], "."]], ["note", {"n": "12", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Koch"], ["date", {"instant": false}, "1975"], ",", ["biblScope", {"unit": "pp"}, "75"], ",", ["note", {"anchored": true}, "der allerdings nur streitige Urteile und Vergleiche untersucht hat."]]], ["note", {"n": "13", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "F\u00fcr Angaben der Z\u00e4hlkartenstatistik f\u00fcr die Familiengerichte siehe"], ":", ["author", "Statistisches Bundesamt Wiesbaden"], ",", ["title", {"level": "a"}, "Fachserie 10 (Rechtspflege) Reihe 2.1, Tabelle 10"], ",", ["pubPlace", "Wiesbaden"], ["date", {"instant": false}, "1978"], "."]], ["note", {"n": "14", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Blankenburg/Sch\u00f6nholz; Rogowski"], ["date", {"instant": false}, "1979"], ",", ["biblScope", {"unit": "pp"}, "78 ff"], "."]], ["note", {"n": "15", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "Steinbach 1979 hat in einer Erhebung von 1144 Amtsgerichtsprozessen in der Bundesrepublik ohne Berlin in den Jahren 1974\u20141976 ein Verh\u00e4ltnis von 1 R\u00e4umungsklage je 1,2 Forderungsklagen, in Berlin allerdings von 1 R\u00e4umungsklage je 0,12 Forderungsklagen ermittelt. Im folgenden auch als GMD-Erhebung zitiert."]]], ["note", {"n": "16", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Johnson"], ["date", {"instant": false}, "1979"], ["note", {"anchored": true}, "berichtet von dem erfolgreichen Versuch einer Unfall-Schadensregulierung ohne Ber\u00fccksichtigung einer Schuldzuschreibung in Neuseeland (no fault accident compensation),"], ["biblScope", {"unit": "pp"}, "90 ff"], "."]], ["note", {"n": "17", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Steinbach"], ["date", {"instant": false}, "1979"], ",", ["biblScope", {"unit": "pp"}, "66 ff"], ".;", ["author", "Blankenburg/Blankenburg/Morasch"], ["date", {"instant": false}, "1972"], ",", ["biblScope", {"unit": "pp"}, "82 ff"], "."]], ["note", {"n": "18", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["title", {"level": "a"}, "Projektbericht ,Rechtshilfebed\u00fcrfnisse sozial Schwacher"], "*,", ["author", "Blankenburg/Gorges/Reifner; Ticmann)."], ["note", {"anchored": true}, "Befragt wurden im Januar bis M\u00e4rz 1979 je eine Person in 835 Haushalten Westberlins. Ver\u00f6ffentlichung ist vorgesehen f\u00fcr"], ["date", {"instant": false}, "1980"], ".", ["note", {"anchored": true}, "Quelle: Eigene Befragung in West-Berlin 1979, Zufallsauswahl aus allen Haushalten mit Deutschen. Mehrfachnennungen, % jeweils bezogen auf Personen, die im jeweiligen Bereich ein Problem nennen."]]], ["note", {"n": "19", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Explizit bei"], ["author", "Baumg\u00e4rtei"], ["date", {"instant": false}, "1976"], ",", ["biblScope", {"unit": "pp"}, "113-128"], "."]], ["note", {"n": "20", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "Laut einer GMD-Erhebung aus der Z\u00e4hlkartenstatistik wurde in Baden-W\u00fcrttemberg 1978 in"]]], ["note", {"n": "21", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["title", {"level": "a"}, "Projektbericht Rechtsschutzversicherung"], "*.", ["author", "Blankenburg; Fiedler"], "),", ["note", {"anchored": true}, "Ver\u00f6ffentlichung voraussichtlich"], ["date", {"instant": false}, "1980"], "."]], ["note", {"n": "22", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Vgl. auch"], ["author", "Reifner/Gorges"], ["date", {"instant": false}, "1980"], "."]], ["note", {"n": "23", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Reifner"], ["date", {"instant": false}, "1979"], "."]], ["note", {"n": "24", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Klassisch bei"], ["author", "Carlin/Howard/Messinger"], ["date", {"instant": false}, "1967"], "."]], ["note", {"n": "25", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Grunds\u00e4tzlich vgl. hierzu den klassischen Beitrag von"], ["author", "Galanter"], ["date", {"instant": false}, "1974"], ",", ["biblScope", {"unit": "pp"}, "95\u2014160"], ".", ["note", {"anchored": true}, "Die gr\u00f6sseren Chancen von Firmen, insbesondere bei der gro\u00dfen Zahl von vorstreitigen Erledigungen zeigt"], ["author", "Sarat"], ["date", {"instant": false}, "1976"], ",", ["biblScope", {"unit": "pp"}, "339-375"], "."]], ["note", {"n": "26", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Bender/Schumacher"], ["date", {"instant": false}, "1980"], ",", ["biblScope", {"unit": "pp"}, "138"], "."]], ["note", {"n": "27", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Steinbach"], ["date", {"instant": false}, "1979"], ",", ["biblScope", {"unit": "pp"}, "96 ff"], ","], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "vgl. auch"], ["author", "Blankenburg/Blankenburg/Morasch"], ["date", {"instant": false}, "1972"], ",", ["biblScope", {"unit": "pp"}, "89, Fn. 17"], ","]], ["note", {"n": "28", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Reifner"], ["date", {"instant": false}, "1978"], "."]], ["note", {"n": "29", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Blankenburg/Sch\u00f6nholz; Rogowski"], ["date", {"instant": false}, "1979"], ",", ["biblScope", {"unit": "pp"}, "102 ff"], "."]], ["note", {"n": "30", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Vgl. zum Verrechtlichungsbegriff meinen Beitrag \u00fcber:"], ["title", {"level": "a"}, "Recht als gradualisiertes Konzept"], ["date", {"instant": false}, "1980"], ",", ["biblScope", {"unit": "pp"}, "83\u201498"], "."]], ["note", {"n": "31", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Steinbach"], ["date", {"instant": false}, "1979"], ",", ["biblScope", {"unit": "pp"}, "35"], ";", ["author", "Bender/Schumacher"], ["date", {"instant": false}, "1980"], ",", ["biblScope", {"unit": "pp"}, "24 und S. 49"], "."]], ["note", {"n": "32", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Wanner"], ["date", {"instant": false}, "1975"], ",", ["biblScope", {"unit": "pp"}, "293\u2014306"], "S.", ["note", {"anchored": true}, "hebt dies deutlich hervor,"]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "ebenso"], ["author", "Bender/Schumacher"], ["date", {"instant": false}, "1980"], ",", ["biblScope", {"unit": "pp"}, "72 ff"], ".;"], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "sowie"], ["author", "Galanter"], ["date", {"instant": false}, "1974"], ";", ["author", "Sarat"], ["date", {"instant": false}, "1976"], "."]], ["note", {"n": "33", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Blankenburg/Sch\u00f6nholz; Rogowski"], ["date", {"instant": false}, "1979"], ",", ["biblScope", {"unit": "pp"}, "78 ff"], "."]], ["note", {"n": "34", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["ref", "Ebenda"], ",", ["biblScope", {"unit": "pp"}, "138-186"], "."]], ["note", {"n": "35", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Luhmann"], ["date", {"instant": false}, "1969"], "."]], ["note", {"n": "36", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "F\u00fcr eine \u00fcberaus positive Bewertung des .Vermeidens1 vgl"], ".", ["author", "Felstiner und Danzig/Lowy"], ["title", {"level": "j"}, "Law and Society Review"], ",", ["biblScope", {"unit": "vol"}, "vol. 9"], ",", ["date", {"instant": false}, "1974"], "/75."]]]] \ No newline at end of file diff --git a/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml b/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml index 85410c7..b3ad5c3 100644 --- a/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml +++ b/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml @@ -18,7 +18,12 @@ <p>The article text is not part of this document</p> <listBibl> <bibl> - <author>Baumgärtei, Gottfried</author> + <author> + <persName> + <forename>Gottfried</forename> + <surname>Baumgärtei</surname> + </persName> + </author> , <date>1976</date> : @@ -28,7 +33,19 @@ . </bibl> <bibl> - <author>Bender, Rolf und Rolf Schumacher</author> + <author> + <persName> + <forename>Rolf</forename> + <surname>Bender</surname> + </persName> + </author> + und + <author> + <persName> + <forename>Rolf</forename> + <surname>Schumacher</surname> + </persName> + </author> , <date>1980</date> : @@ -36,25 +53,55 @@ <pubPlace>Tübingen</pubPlace> . - <author>Black, Donald</author> + </bibl> + <bibl> + <author> + <persName> + <forename>Donald</forename> + <surname>Black</surname> + </persName> + </author> , <date>1973</date> : <title level="a">The Mobilization of Law</title> - , + , in: <title level="j">Journal of Legal Studies</title> - in: <biblScope unit="vol">2</biblScope> . </bibl> <bibl> - <author>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut</author> + <author> + <persName> + <forename>Erhard</forename> + <surname>Blankenburg</surname> + </persName> + </author> + / + <author> + <persName> + <forename>Viola</forename> + <surname>Blankenburg</surname> + </persName> + </author> + / + <author> + <persName> + <forename>Helmut</forename> + <surname>Morasch</surname> + </persName> + </author> , <date>1972</date> : <title level="a">Der lange Weg in die Berufung</title> - , - <editor>Bender, Rolf</editor> + , in: + <editor> + <persName> + <forename>Rolf</forename> + <surname>Bender</surname> + </persName> + </editor> (Hrsg.): <title level="m">Tatsachenforschung in der Justiz</title> . @@ -62,13 +109,22 @@ . </bibl> <bibl> - <author>Blankenburg, Erhard</author> + <author> + <persName> + <forename>Erhard</forename> + <surname>Blankenburg</surname> + </persName> + </author> , <date>1976</date> : <title level="a">Nichtkriminalisierung als Struktur und Routine</title> - , - <editor>Göppinger</editor> + , in: + <editor> + <persName> + <surname>Göppinger</surname> + </persName> + </editor> , <title level="a">Hans und Günter Kaiser: Kriminologie und Strafverfahren</title> . @@ -76,7 +132,26 @@ . </bibl> <bibl> - <author>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke</author> + <author> + <persName> + <forename>Erhard</forename> + <surname>Blankenburg</surname> + </persName> + </author> + / + <author> + <persName> + <forename>Klaus</forename> + <surname>Sessar</surname> + </persName> + </author> + / + <author> + <persName> + <forename>Wiebke</forename> + <surname>Steffen</surname> + </persName> + </author> , <date>1978</date> : @@ -86,7 +161,19 @@ . </bibl> <bibl> - <author>Blankenburg, Erhard; Schönholz, Siegfried, unter Mitarbeit von Ralf Rogowski</author> + <author> + <persName> + <forename>Erhard</forename> + <surname>Blankenburg</surname> + </persName> + </author> + ; + <author> + <persName> + <forename>Siegfried</forename> + <surname>Schönholz</surname> + </persName> + </author> , <date>1979</date> : @@ -96,13 +183,37 @@ . </bibl> <bibl> - <author>Blankenburg, Erhard</author> + <author> + <persName> + <forename>Erhard</forename> + <surname>Blankenburg</surname> + </persName> + </author> , <date>1980</date> : <title level="a">Recht als gradualisiertes Konzept</title> - , - <editor>Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner</editor> + , in: + <editor> + <persName> + <forename>Erhard</forename> + <surname>Blankenburg</surname> + </persName> + </editor> + ; + <editor> + <persName> + <forename>Ekkehard</forename> + <surname>Klausa</surname> + </persName> + </editor> + und + <editor> + <persName> + <forename>Hubert</forename> + <surname>Rottleuthner</surname> + </persName> + </editor> (Hrsg.): <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title> , @@ -111,7 +222,19 @@ . </bibl> <bibl> - <author>Carlin, Jerome-, Jan Howard und Sheldon Messinger</author> + <author> + <persName> + <forename>Jerome-</forename> + <surname>Carlin</surname> + </persName> + </author> + und + <author> + <persName> + <forename>Sheldon</forename> + <surname>Messinger</surname> + </persName> + </author> , <date>1967</date> : @@ -119,8 +242,21 @@ . <pubPlace>New York. Danzig,</pubPlace> - <author>Richard /Lowy, Michael</author> - , + </bibl> + <bibl> + <author> + <persName> + <surname>Richard</surname> + </persName> + </author> + + <author> + <persName> + <forename>Michael</forename> + <surname>Lowy</surname> + </persName> + </author> + / <date>1974</date> /75; <title level="a">Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner</title> @@ -128,12 +264,24 @@ <title level="j">Law and Society Review</title> , <biblScope unit="vol">vol. 9</biblScope> - , + , pp. <biblScope unit="pp">675—694</biblScope> . </bibl> <bibl> - <author>Feest, Johannes/Blankenburg, Erhard</author> + <author> + <persName> + <forename>Johannes</forename> + <surname>Feest</surname> + </persName> + </author> + / + <author> + <persName> + <forename>Erhard</forename> + <surname>Blankenburg</surname> + </persName> + </author> , <date>1972</date> : @@ -143,55 +291,84 @@ . </bibl> <bibl> - <author>Felstiner, William L. F</author> + <author> + <persName> + <forename>William</forename> + <forename>L. F</forename> + <surname>Felstiner</surname> + </persName> + </author> ., <date>1974</date> /75: <title level="a">Influences of Social Organization on Dispute processing</title> - , + , in: <title level="j">Law and Society Review</title> , <biblScope unit="vol">vol. 9</biblScope> - , + , pp. <biblScope unit="pp">63—94</biblScope> . </bibl> <bibl> - <author>Felstiner, William L. F</author> + <author> + <persName> + <forename>William</forename> + <forename>L. F</forename> + <surname>Felstiner</surname> + </persName> + </author> ., <date>1974</date> /75: <title level="a">Avoidance as Dispute Processing: An Elaboration</title> - , + , in: <title level="j">Law and Society Review</title> , <biblScope unit="vol">vol. 9</biblScope> - , + , pp. <biblScope unit="pp">695-706</biblScope> . </bibl> <bibl> - <author>Galanter, Marc</author> + <author> + <persName> + <forename>Marc</forename> + <surname>Galanter</surname> + </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="vol">vol. 9</biblScope> - , + , pp. <biblScope unit="pp">95—160</biblScope> . </bibl> <bibl> - <author>Geiger, Theodor</author> + <author> + <persName> + <forename>Theodor</forename> + <surname>Geiger</surname> + </persName> + </author> , <date>1964</date> : <title level="a">Vorstudien zu einer Soziologie des Rechts</title> . - <author>Neuwied. Gessner, Volkmar</author> + </bibl> + <bibl> + <author> + <persName> + <forename>Volkmar</forename> + <surname>Neuwied. Gessner</surname> + </persName> + </author> , <date>1976</date> : @@ -201,7 +378,12 @@ . </bibl> <bibl> - <author>Hilden, Hartmut</author> + <author> + <persName> + <forename>Hartmut</forename> + <surname>Hilden</surname> + </persName> + </author> , <date>1976</date> : @@ -209,34 +391,78 @@ . </bibl> <bibl> - <author>Johnson, Earl</author> + <author> + <persName> + <forename>Earl</forename> + <surname>Johnson</surname> + </persName> + </author> , <date>1979</date> ; <title level="a">Thinking about Access: A Preliminary Typology of Possible Strategies</title> - . - <editor>Cappelletti, Mauro und Bryant Garth</editor> + . In: + <editor> + <persName> + <forename>Mauro</forename> + <surname>Cappelletti</surname> + </persName> + </editor> + und + <editor> + <persName> + <forename>Bryant</forename> + <surname>Garth</surname> + </persName> + </editor> (Hrsg.): <title level="m">Access to Justice</title> , <biblScope unit="vol">Bd. III</biblScope> . - <editor>Milan und Alphen/ Rijn</editor> + </bibl> + <bibl> + <editor> + <persName> + <surname>Milan</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Alphen</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Rijn</surname> + </persName> + </editor> . </bibl> <bibl> - <author>Koch, Hartmut</author> + <author> + <persName> + <forename>Hartmut</forename> + <surname>Koch</surname> + </persName> + </author> , <date>1975</date> : <title level="a">Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen</title> . - <note>Diss.</note> + <note>Diss</note> + . <pubPlace>Hamburg</pubPlace> . </bibl> <bibl> - <author>Luhmann, Niklas</author> + <author> + <persName> + <forename>Niklas</forename> + <surname>Luhmann</surname> + </persName> + </author> , <date>1969</date> : @@ -246,13 +472,37 @@ . </bibl> <bibl> - <author>Luhmann, Niklas</author> + <author> + <persName> + <forename>Niklas</forename> + <surname>Luhmann</surname> + </persName> + </author> , <date>1980</date> : <title level="a">Kommunikation über Recht in Interaktionssystemen</title> - , - <editor>Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner</editor> + , in: + <editor> + <persName> + <forename>Erhard</forename> + <surname>Blankenburg</surname> + </persName> + </editor> + ; + <editor> + <persName> + <forename>Ekkehard</forename> + <surname>Klausa</surname> + </persName> + </editor> + und + <editor> + <persName> + <forename>Hubert</forename> + <surname>Rottleuthner</surname> + </persName> + </editor> (Hrsg.): <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title> , @@ -261,7 +511,12 @@ . </bibl> <bibl> - <author>Reifner, Udo</author> + <author> + <persName> + <forename>Udo</forename> + <surname>Reifner</surname> + </persName> + </author> , <date>1978</date> : @@ -271,7 +526,12 @@ . </bibl> <bibl> - <author>Reifner, Udo</author> + <author> + <persName> + <forename>Udo</forename> + <surname>Reifner</surname> + </persName> + </author> , <date>1979</date> : @@ -281,13 +541,44 @@ . </bibl> <bibl> - <author>Reifner, Udo und Irmela Gorges</author> + <author> + <persName> + <forename>Udo</forename> + <surname>Reifner</surname> + </persName> + </author> + und + <author> + <persName> + <forename>Irmela</forename> + <surname>Gorges</surname> + </persName> + </author> , <date>1980</date> ; <title level="a">Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe</title> - , - <editor>Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner</editor> + , in: + <editor> + <persName> + <forename>Erhard</forename> + <surname>Blankenburg</surname> + </persName> + </editor> + ; + <editor> + <persName> + <forename>Ekkehard</forename> + <surname>Klausa</surname> + </persName> + </editor> + und + <editor> + <persName> + <forename>Hubert</forename> + <surname>Rottleuthner</surname> + </persName> + </editor> (Hrsg.): <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title> , @@ -296,28 +587,44 @@ . </bibl> <bibl> - <author>Sarat</author> + <author> + <persName> + <surname>Sarat</surname> + </persName> + </author> , <pubPlace>Austin</pubPlace> , <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="vol">vol. 10</biblScope> - , + , pp. <biblScope unit="pp">339—375</biblScope> . </bibl> <bibl> - <author>Schönholz, Siegfried</author> + <author> + <persName> + <forename>Siegfried</forename> + <surname>Schönholz</surname> + </persName> + </author> , <date>1980</date> : <title level="a">Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich</title> - <editor>Vereinigung für Rechtssoziologie</editor> + in: + <editor> + <persName> + <forename>Vereinigung</forename> + <forename>für</forename> + <surname>Rechtssoziologie</surname> + </persName> + </editor> (Hrsg.): <title level="m">Arbeitslosigkeit und Recht</title> . @@ -325,7 +632,12 @@ . </bibl> <bibl> - <author>Steinbach, E</author> + <author> + <persName> + <forename>E</forename> + <surname>Steinbach</surname> + </persName> + </author> ., <date>1979</date> : @@ -335,55 +647,91 @@ . </bibl> <bibl> - <author>Wanner, Craig</author> + <author> + <persName> + <forename>Craig</forename> + <surname>Wanner</surname> + </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="vol">vol. 9</biblScope> - , + , pp. <biblScope unit="pp">293-306</biblScope> . </bibl> </listBibl> </body> - <note n="1" place="bottom"> + <note n="1" type="footnote" place="bottom"> <bibl> - <author>Geiger</author> + <author> + <persName> + <surname>Geiger</surname> + </persName> + </author> <date>1964</date> , <biblScope unit="pp">insbesondere S. 65—83</biblScope> . </bibl> </note> - <note n="2" place="bottom"> + <note n="2" type="footnote" place="bottom"> <bibl> <note type="signal">Vgl</note> . - <author>Feest/Blankenburg</author> + <author> + <persName> + <surname>Feest</surname> + </persName> + </author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> , <date>1972</date> . </bibl> <bibl> <note type="signal">Die Konsequenz einer größeren Dunkelziffer bei den von der Polizei selbst entdeckten Straftaten entwickle</note> - <author>ich</author> - <note>ausführlicher in meinem Beitrag über </note> + <author> + <persName> + <surname>ich</surname> + </persName> + </author> + <note>ausführlicher in meinem Beitrag über</note> + , <title level="a">Nichtkriminalisierung als Struktur und Routine</title> ', <date>1976</date> . </bibl> </note> - <note n="3" place="bottom"> + <note n="3" type="footnote" place="bottom"> <bibl> <note type="signal">Angaben aus einer Befragung von</note> - <author>Peter MacNaughton-Smith und Richard Rosellen</author> + <author> + <persName> + <forename>Peter</forename> + <surname>MacNaughton-Smith</surname> + </persName> + </author> + und + <author> + <persName> + <forename>Richard</forename> + <surname>Rosellen</surname> + </persName> + </author> <note>zur</note> + ' <title level="a">Bereitschaft zur Anzeigeerstattung</title> ' <note>Manuskript</note> @@ -394,107 +742,176 @@ <bibl> <note type="signal">Der ausführliche Forschungsbericht von</note> - <author>Richard Rosellen</author> - <note> erscheint in Kürze unter dem Titel</note> + <author> + <persName> + <forename>Richard</forename> + <surname>Rosellen</surname> + </persName> + </author> + <note>erscheint in Kürze unter dem Titel</note> + ' <title level="a">Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung</title> ', <pubPlace>Berlin</pubPlace> - , + , voraussichtlich <date>1980</date> . </bibl> </note> - <note n="4" place="bottom"> + <note n="4" type="footnote" place="bottom"> <bibl> <note type="signal">Vgl</note> . - <author>Blankenburg/Sessar/Steffen</author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Sessar</surname> + </persName> + </author> + <author> + <persName> + <surname>Steffen</surname> + </persName> + </author> , <date>1978</date> - , + , S. <biblScope unit="pp">66-85</biblScope> . </bibl> </note> - <note n="5" place="bottom"> + <note n="5" type="footnote" place="bottom"> <bibl> - <author>Black</author> + <author> + <persName> + <surname>Black</surname> + </persName> + </author> <date>1973</date> - , + , S. <biblScope unit="pp">125 ff</biblScope> . </bibl> </note> - <note n="6" place="bottom"> + <note n="6" type="footnote" place="bottom"> <bibl> <note type="signal">Zur höheren Wahrscheinlichkeit der Normierung von Verhalten in weniger komplexen Beziehungen vgl. die Konflikttheorie von</note> - <author>Gessner</author> + <author> + <persName> + <surname>Gessner</surname> + </persName> + </author> <date>1976</date> , <biblScope unit="pp">insbesondere S. 170—183</biblScope> . </bibl> </note> - <note n="7" place="bottom"> + <note n="7" type="footnote" place="bottom"> <bibl> <note type="signal">Zum Konzept der 'Thematisierung von Recht' vgl</note> . - <author>Luhmann</author> + <author> + <persName> + <surname>Luhmann</surname> + </persName> + </author> <date>1980</date> - , + , S. <biblScope unit="pp">99—112</biblScope> . </bibl> </note> - <note n="8" place="bottom"> + <note n="8" type="footnote" place="bottom"> <bibl> <note type="signal">Ausführlicher bei</note> - <author>Gessner</author> + <author> + <persName> + <surname>Gessner</surname> + </persName> + </author> <date>1976</date> </bibl> </note> - <note n="9" place="bottom"> + <note n="9" type="footnote" place="bottom"> <bibl> <note type="signal">Vgl</note> . - <author>Schönholz</author> + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author> <date>1980</date> . </bibl> </note> - <note n="10" place="bottom"> + <note n="10" type="footnote" place="bottom"> <bibl> - <author>Blankenburg/Schönholz; Rogowski</author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author> + <author> + <persName> + <surname>Rogowski</surname> + </persName> + </author> <date>1979</date> - , + , S. <biblScope unit="pp">64 ff</biblScope> . </bibl> </note> - <note n="11" place="bottom"> + <note n="11" type="footnote" place="bottom"> <bibl> - <author>Hilden</author> + <author> + <persName> + <surname>Hilden</surname> + </persName> + </author> <date>1976</date> - , + , S. <biblScope unit="pp">64 ff</biblScope> . </bibl> </note> - <note n="12" place="bottom"> + <note n="12" type="footnote" place="bottom"> <bibl> - <author>Koch</author> + <author> + <persName> + <surname>Koch</surname> + </persName> + </author> <date>1975</date> - , + , S. <biblScope unit="pp">75</biblScope> , - <note>der allerdings nur streitige Urteile und Vergleiche untersucht hat. </note> + <note>der allerdings nur streitige Urteile und Vergleiche untersucht hat.</note> + </bibl> </note> - <note n="13" place="bottom"> + <note n="13" type="footnote" place="bottom"> <bibl> <note type="signal">Für Angaben der Zählkartenstatistik für die Familiengerichte siehe</note> : - <author>Statistisches Bundesamt Wiesbaden</author> + <author> + <persName> + <forename>Statistisches</forename> + <forename>Bundesamt</forename> + <surname>Wiesbaden</surname> + </persName> + </author> , <title level="a">Fachserie 10 (Rechtspflege) Reihe 2.1, Tabelle 10</title> , @@ -503,243 +920,472 @@ . </bibl> </note> - <note n="14" place="bottom"> + <note n="14" type="footnote" place="bottom"> <bibl> - <author>Blankenburg/Schönholz; Rogowski</author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author> + <author> + <persName> + <surname>Rogowski</surname> + </persName> + </author> <date>1979</date> - , + , S. <biblScope unit="pp">78 ff</biblScope> . </bibl> </note> - <note n="15" place="bottom"> + <note n="15" type="footnote" place="bottom"> <bibl> - <note>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.</note> + <note>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</note> + . </bibl> </note> - <note n="16" place="bottom"> + <note n="16" type="footnote" place="bottom"> <bibl> - <author>Johnson</author> + <author> + <persName> + <surname>Johnson</surname> + </persName> + </author> <date>1979</date> - <note> berichtet von dem erfolgreichen Versuch einer Unfall-Schadensregulierung ohne Berücksichtigung einer Schuldzuschreibung in Neuseeland (no fault accident compensation),</note> + <note>berichtet von dem erfolgreichen Versuch einer Unfall-Schadensregulierung ohne Berücksichtigung einer Schuldzuschreibung in Neuseeland (no fault accident compensation)</note> + , S. <biblScope unit="pp">90 ff</biblScope> . </bibl> </note> - <note n="17" place="bottom"> + <note n="17" type="footnote" place="bottom"> <bibl> - <author>Steinbach</author> + <author> + <persName> + <surname>Steinbach</surname> + </persName> + </author> <date>1979</date> - , + , S. <biblScope unit="pp">66 ff</biblScope> .; - <author>Blankenburg/Blankenburg/Morasch</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Morasch</surname> + </persName> + </author> <date>1972</date> - , + , S. <biblScope unit="pp">82 ff</biblScope> . </bibl> </note> - <note n="18" place="bottom"> + <note n="18" type="footnote" place="bottom"> <bibl> <title level="a">Projektbericht ,Rechtshilfebedürfnisse sozial Schwacher</title> - *, - <author>Blankenburg/Gorges/Reifner; Ticmann).</author> + *, ( + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Gorges</surname> + </persName> + </author> + <author> + <persName> + <surname>Reifner</surname> + </persName> + </author> + <author> + <persName> + <surname>Ticmann).</surname> + </persName> + </author> - <note>Befragt wurden im Januar bis März 1979 je eine Person in 835 Haushalten Westberlins. Veröffentlichung ist vorgesehen für </note> + <note>Befragt wurden im Januar bis März 1979 je eine Person in 835 Haushalten Westberlins. Veröffentlichung ist vorgesehen für</note> + Ende <date>1980</date> . - <note>Quelle: Eigene Befragung in West-Berlin 1979, Zufallsauswahl aus allen Haushalten mit Deutschen. Mehrfachnennungen, % jeweils bezogen auf Personen, die im jeweiligen Bereich ein Problem nennen.</note> + <note>Quelle: Eigene Befragung in West-Berlin 1979, Zufallsauswahl aus allen Haushalten mit Deutschen. Mehrfachnennungen, % jeweils bezogen auf Personen, die im jeweiligen Bereich ein Problem nennen</note> + . </bibl> </note> - <note n="19" place="bottom"> + <note n="19" type="footnote" place="bottom"> <bibl> <note type="signal">Explizit bei</note> - <author>Baumgärtei</author> + <author> + <persName> + <surname>Baumgärtei</surname> + </persName> + </author> <date>1976</date> - , + , S. <biblScope unit="pp">113-128</biblScope> . </bibl> </note> - <note n="20" place="bottom"> + <note n="20" type="footnote" place="bottom"> <bibl> <note>Laut einer GMD-Erhebung aus der Zählkartenstatistik wurde in Baden-Württemberg 1978 in</note> </bibl> </note> - <note n="21" place="bottom"> + <note n="21" type="footnote" place="bottom"> <bibl> <title level="a">Projektbericht Rechtsschutzversicherung</title> - *. - <author>Blankenburg; Fiedler</author> + *. ( + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Fiedler</surname> + </persName> + </author> ), <note>Veröffentlichung voraussichtlich</note> + Mitte <date>1980</date> . </bibl> </note> - <note n="22" place="bottom"> + <note n="22" type="footnote" place="bottom"> <bibl> <note type="signal">Vgl. auch</note> - <author>Reifner/Gorges</author> + <author> + <persName> + <surname>Reifner</surname> + </persName> + </author> + <author> + <persName> + <surname>Gorges</surname> + </persName> + </author> <date>1980</date> . </bibl> </note> - <note n="23" place="bottom"> + <note n="23" type="footnote" place="bottom"> <bibl> - <author>Reifner</author> + <author> + <persName> + <surname>Reifner</surname> + </persName> + </author> <date>1979</date> . </bibl> </note> - <note n="24" place="bottom"> + <note n="24" type="footnote" place="bottom"> <bibl> <note type="signal">Klassisch bei</note> - <author>Carlin/Howard/Messinger</author> + <author> + <persName> + <surname>Carlin</surname> + </persName> + </author> + <author> + <persName> + <surname>Howard</surname> + </persName> + </author> + <author> + <persName> + <surname>Messinger</surname> + </persName> + </author> <date>1967</date> . </bibl> </note> - <note n="25" place="bottom"> + <note n="25" type="footnote" place="bottom"> <bibl> <note type="signal">Grundsätzlich vgl. hierzu den klassischen Beitrag von</note> - <author>Galanter</author> + <author> + <persName> + <surname>Galanter</surname> + </persName> + </author> <date>1974</date> - , + , S. <biblScope unit="pp">95—160</biblScope> . - <note>Die grösseren Chancen von Firmen, insbesondere bei der großen Zahl von vorstreitigen Erledigungen zeigt </note> - <author>Sarat</author> + <note>Die grösseren Chancen von Firmen, insbesondere bei der großen Zahl von vorstreitigen Erledigungen zeigt</note> + + </bibl> + <bibl> + <author> + <persName> + <surname>Sarat</surname> + </persName> + </author> <date>1976</date> - , + , S. <biblScope unit="pp">339-375</biblScope> . </bibl> </note> - <note n="26" place="bottom"> + <note n="26" type="footnote" place="bottom"> <bibl> - <author>Bender/Schumacher</author> + <author> + <persName> + <surname>Bender</surname> + </persName> + </author> + <author> + <persName> + <surname>Schumacher</surname> + </persName> + </author> <date>1980</date> - , + , S. <biblScope unit="pp">138</biblScope> . </bibl> </note> - <note n="27" place="bottom"> + <note n="27" type="footnote" place="bottom"> <bibl> - <author>Steinbach</author> + <author> + <persName> + <surname>Steinbach</surname> + </persName> + </author> <date>1979</date> - , + , S. <biblScope unit="pp">96 ff</biblScope> , </bibl> <bibl> <note type="signal">vgl. auch</note> - <author>Blankenburg/Blankenburg/Morasch</author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Morasch</surname> + </persName> + </author> <date>1972</date> - , + , S. <biblScope unit="pp">89, Fn. 17</biblScope> , </bibl> </note> - <note n="28" place="bottom"> + <note n="28" type="footnote" place="bottom"> <bibl> - <author>Reifner</author> + <author> + <persName> + <surname>Reifner</surname> + </persName> + </author> <date>1978</date> . </bibl> </note> - <note n="29" place="bottom"> + <note n="29" type="footnote" place="bottom"> <bibl> - <author>Blankenburg/Schönholz; Rogowski</author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author> + <author> + <persName> + <surname>Rogowski</surname> + </persName> + </author> <date>1979</date> - , + , S. <biblScope unit="pp">102 ff</biblScope> . </bibl> </note> - <note n="30" place="bottom"> + <note n="30" type="footnote" place="bottom"> <bibl> <note type="signal">Vgl. zum Verrechtlichungsbegriff meinen Beitrag über:</note> <title level="a">Recht als gradualisiertes Konzept</title> <date>1980</date> - , + , S. <biblScope unit="pp">83—98</biblScope> . </bibl> </note> - <note n="31" place="bottom"> + <note n="31" type="footnote" place="bottom"> <bibl> - <author>Steinbach</author> + <author> + <persName> + <surname>Steinbach</surname> + </persName> + </author> <date>1979</date> - , + , S. <biblScope unit="pp">35</biblScope> ; - <author>Bender/Schumacher</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Bender</surname> + </persName> + </author> + <author> + <persName> + <surname>Schumacher</surname> + </persName> + </author> <date>1980</date> - , + , S. <biblScope unit="pp">24 und S. 49</biblScope> . </bibl> </note> - <note n="32" place="bottom"> + <note n="32" type="footnote" place="bottom"> <bibl> - <author>Wanner</author> + <author> + <persName> + <surname>Wanner</surname> + </persName> + </author> <date>1975</date> - , + , S. <biblScope unit="pp">293—306</biblScope> - S. - <note>hebt dies deutlich hervor,</note> + <note>hebt dies deutlich hervor</note> + , </bibl> <bibl> <note type="signal">ebenso</note> - <author>Bender/Schumacher</author> + <author> + <persName> + <surname>Bender</surname> + </persName> + </author> + <author> + <persName> + <surname>Schumacher</surname> + </persName> + </author> <date>1980</date> - , + , S. <biblScope unit="pp">72 ff</biblScope> .; </bibl> <bibl> <note type="signal">sowie</note> - <author>Galanter</author> + <author> + <persName> + <surname>Galanter</surname> + </persName> + </author> <date>1974</date> ; - <author>Sarat</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Sarat</surname> + </persName> + </author> <date>1976</date> . </bibl> </note> - <note n="33" place="bottom"> + <note n="33" type="footnote" place="bottom"> <bibl> - <author>Blankenburg/Schönholz; Rogowski</author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + <author> + <persName> + <surname>Schönholz</surname> + </persName> + </author> + <author> + <persName> + <surname>Rogowski</surname> + </persName> + </author> <date>1979</date> - , + , S. <biblScope unit="pp">78 ff</biblScope> . </bibl> </note> - <note n="34" place="bottom"> + <note n="34" type="footnote" place="bottom"> <bibl> <ref>Ebenda</ref> - , - <biblScope unit="pp">138-186</biblScope> + , S. + <citedRange unit="pp">138-186</citedRange> . </bibl> </note> - <note n="35" place="bottom"> + <note n="35" type="footnote" place="bottom"> <bibl> - <author>Luhmann</author> + <author> + <persName> + <surname>Luhmann</surname> + </persName> + </author> <date>1969</date> . </bibl> </note> - <note n="36" place="bottom"> + <note n="36" type="footnote" place="bottom"> <bibl> <note type="signal">Für eine überaus positive Bewertung des .Vermeidens1 vgl</note> . - <author>Felstiner und Danzig/Lowy</author> + <author> + <persName> + <surname>Felstiner</surname> + </persName> + </author> + <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="vol">vol. 9</biblScope> diff --git a/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.json b/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.json deleted file mode 100644 index 2b4fac6..0000000 --- a/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.json +++ /dev/null @@ -1 +0,0 @@ -["TEI", {"xmlns": "http://www.tei-c.org/ns/1.0"}, ["teiHeader", ["fileDesc", ["titleStmt", ["title", "10.1515_zfrs-1980-0104"]], ["publicationStmt", ["publisher", "mpilhlt"]], ["sourceDesc", {"default": "false"}, ["p", {"part": "N"}, "10.1515_zfrs-1980-0104"]]]], ["text", ["body", ["p", {"part": "N"}, "The article text is not part of this document"]], ["note", {"n": "1", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe n\u00e4her"], ["author", "Zweigert/K\u00f6tz"], ["biblScope", {"unit": "vol"}, "I"], ["biblScope", {"unit": "pp"}, "12 ff"], "."]], ["note", {"n": "2", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Rabel"], ",", ["title", {"level": "a"}, "Aufgabe und Notwendigkeit der Rechtsvergleichung"], ["date", {"instant": false}, "1925"], "),"], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "abgedruckt in"], ":", ["author", "Rabel"], ",", ["title", {"level": "a"}, "Gesammelte Aufs\u00e4tze"], ["biblScope", {"unit": "vol"}, "III"], ["editor", "Leser"], ",", ["date", {"instant": false}, "1967"], ")", ["biblScope", {"unit": "pp"}, "1 (3)"], "."]], ["note", {"n": "3", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe insbes. die Beitr\u00e4ge in"], ["author", "Drobnig/Rehbinder"], "."]], ["note", {"n": "4", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu"], ["author", "R. Abel"], ",", ["title", {"level": "a"}, "Law Books and Books About Law"], ",", ["title", {"level": "j"}, "Stanford Law Rev"], ".", ["biblScope", {"unit": "vol"}, "26"], ["date", {"instant": false}, "1973"], ")", ["biblScope", {"unit": "pp"}, "174 ff"], ".;", ["author", "Benda-Beckmann"], ",", ["title", {"level": "a"}, "Einige Anmerkungen \u00fcber die Beziehung zwischen Rechtssoziologie und Rechtsvergleichung"], ",", ["title", {"level": "j"}, "ZvglRW"], ["biblScope", {"unit": "vol"}, "78"], ["date", {"instant": false}, "1979"], ")", ["biblScope", {"unit": "pp"}, "51 ff"], "."]], ["note", {"n": "5", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Carbonnier"], ",", ["title", {"level": "a"}, "L\u2019apport du droit compare \u00e4 la sociologie juridique"], ",", ["title", {"level": "m"}, "Livre du centenaire de la Societe de legislation comparee"], "in:", ["pubPlace", "Paris"], "(", ["date", {"instant": false}, "1969"], ")", ["biblScope", {"unit": "pp"}, "75 (83)"], "."]], ["note", {"n": "6", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Carbonnier"], ["ref", "vorige N.) a.a.O"], "."]], ["note", {"n": "7", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Nowak"], ",", ["title", {"level": "a"}, "The Strategy of Cross-National Survey Research for the Development of Social Theory"], ",", ["editor", "Szalai/Petrella"], "in:", ["biblScope", {"unit": "pp"}, "3 (9 ff.)"], ":", ["author", "Rose"], ",", ["title", {"level": "a"}, "Interkulturelle Forschung in der Rechtssoziologie"], ",", ["editor", "Drobnig/Rehbinder"], "in:", ["biblScope", {"unit": "pp"}, "171 ff"], "."]], ["note", {"n": "8", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu n\u00e4her"], ["author", "Wirsing"], ",", ["title", {"level": "a"}, "Probleme des interkulturellen Vergleichs in der Ethnologie"], ",", ["title", {"level": "j"}, "Sociologus"], ["biblScope", {"unit": "vol"}, "25"], ["date", {"instant": false}, "1975"], ") 97 ff. -"], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Vgl. auch"], ["author", "Poirier"], ",", ["title", {"level": "a"}, "Situation actuelle et Programme de travail de Techno logie juridique"], ",", ["title", {"level": "j"}, "Rev. int. Sc. Soc"], ".", ["biblScope", {"unit": "vol"}, "22"], ["date", {"instant": false}, "1970"], ")", ["biblScope", {"unit": "pp"}, "509 (526)"], "."]], ["note", {"n": "9", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Macaulay"], ",", ["title", {"level": "a"}, "Elegant Models, Empirical Pictures, and the Complexities of Contract"], ",", ["title", {"level": "j"}, "Law & Soc. Rev"], ".", ["biblScope", {"unit": "vol"}, "11"], ["date", {"instant": false}, "1977"], ")", ["biblScope", {"unit": "pp"}, "507 ff"], "."]], ["note", {"n": "10", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Rose"], ["ref", "oben N. 7"], ")", ["biblScope", {"unit": "pp"}, "175"], "."]], ["note", {"n": "11", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu"], ["author", "Grimshau"], ",", ["title", {"level": "a"}, "Comparative Sociology - In What Ways Different From Other Sociologies?"], ",", ["editor", "Armer/Grimshaw"], "in:", ["biblScope", {"unit": "pp"}, "3 (18)"], ".", ["note", {"anchored": true}, "Auch der Oberbegriff \u201ecross System comparison\" wird vorgeschlagen,"], ["author", "Tomasson"], ",", ["title", {"level": "a"}, "Introduction; Comparative Sociology \u2014 The State of the Art"], ",", ["editor", "Tomasson"], "(Hrsg.),", ["title", {"level": "m"}, "Comparative Studies in Sociology"], ["biblScope", {"unit": "vol"}, "Vol. 1"], ["pubPlace", "Greenwich, Conn"], ".", ["date", {"instant": false}, "1978"], ")", ["biblScope", {"unit": "pp"}, "1"], ".", ["note", {"anchored": true}, "\u2014 \u00dcber die Methoden interkultureller und internationaler Vergleiche ist inzwischen so viel geschrieben worden, da\u00df nicht nur die F\u00fclle des Materials schon wieder abschreckend wirkt, sondern da\u00df es auch gen\u00fcgt, im Rahmen dieses Aufsatzes nur einige wichtige Aspekte anzusprechen."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Bibliographien finden sich etwa bei"], ["author", "Rokkan/Verba/Viet/Almasy"], ["biblScope", {"unit": "pp"}, "117 ff"], ".;", ["author", "Vallier"], ["biblScope", {"unit": "pp"}, "423 ff"], ".;", ["author", "Almasy/Balandier/Delatte"], ",", ["title", {"level": "a"}, "Comparative Survey Analysis \u2014 An Annotated Bibliography 1967 \u2014 1973"], ["pubPlace", "Beverly Hills, London"], "(", ["date", {"instant": false}, "1976"], ")"], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "sowie bei"], ["author", "Marsh"], ",", ["title", {"level": "a"}, "Comparative Sociology"], ["pubPlace", "New York, Chicago, San Francisco, Atlanta"], "(", ["date", {"instant": false}, "1967"], ")", ["biblScope", {"unit": "pp"}, "375 ff"], "."]], ["note", {"n": "12", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Durkheim"], ",", ["title", {"level": "a"}, "Les r\u00e8gles de la methode sociologique"], ["pubPlace", "Paris"], ["date", {"instant": false}, "1977"], ")", ["biblScope", {"unit": "pp"}, "137"], "."]], ["note", {"n": "13", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Smelser"], ["biblScope", {"unit": "pp"}, "2 f"], ".", ["author", "Payne"], ",", ["title", {"level": "a"}, "Comparative Sociology \u2014 Some Problems of Theory and Method"], ",", ["title", {"level": "j"}, "Brit. J. Soc"], ".", ["biblScope", {"unit": "vol"}, "24"], ["date", {"instant": false}, "1973"], ")", ["biblScope", {"unit": "pp"}, "13 (15 ff.)."], "-"], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "\u00c4hnlich auch"], ["author", "Eisenstadt"], ",", ["title", {"level": "a"}, "Social Institutions - Comparative Method"], ",", ["title", {"level": "j"}, "International Encyclopedia of the Social Sciences"], "in:", ["biblScope", {"unit": "vol"}, "Bd. 14"], ["pubPlace", "London"], "(", ["date", {"instant": false}, "1968"], ")", ["biblScope", {"unit": "pp"}, "421 (423)"], "."]], ["note", {"n": "14", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Boesch/Eckensberger"], ",", ["title", {"level": "a"}, "Methodische Probleme des interkulturellen Vergleichs"], ",", ["editor", "Graumann"], "(Hrsg.),", ["title", {"level": "m"}, "Handbuch der Psychologie"], ",", ["biblScope", {"unit": "vol"}, "Bd. Vll 1 (2. Auf"], "],", ["date", {"instant": false}, "1969"], ")", ["biblScope", {"unit": "pp"}, "514 (520 ff.)"], ".", ["note", {"anchored": true}, "\u2014 Zur \u201ecultunit\u201c, die vor allem durch die gemeinsame Sprache und die Zugeh\u00f6rigkeit zu einem Staat bzw. einer interpersonellen Kontaktgruppe gekennzeichnet ist,"]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "s"], ".", ["editor", "Naroll/Cohen"], "(Hrsg.),", ["title", {"level": "a"}, "A Handbook of Method in Cultural Anthropology"], ["pubPlace", "New York, London"], "(", ["date", {"instant": false}, "1973"], ")"], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "sowie"], ["author", "Smelser"], ["biblScope", {"unit": "pp"}, "168 f"], ".;", ["author", "Wirsing"], ["ref", "oben N. 8"], ")", ["biblScope", {"unit": "pp"}, "115"], "."]], ["note", {"n": "15", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "N\u00e4her dazu"], ["author", "Zelditch"], ",", ["title", {"level": "a"}, "Intelligible Comparisons"], ",", ["editor", "Vallier"], "in:", ["biblScope", {"unit": "pp"}, "267 (270 ff.)"], "."]], ["note", {"n": "16", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Carbonnier"], ["ref", "oben N. 5"], ")", ["biblScope", {"unit": "pp"}, "80"], "."]], ["note", {"n": "17", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe"], ["author", "Zweigert"], ",", ["title", {"level": "a"}, "Die soziologische Dimension der Rechtsvergleichung"], ",", ["editor", "Drobnig/Rebbinder"], "in:", ["biblScope", {"unit": "pp"}, "151 (159)"], "."]], ["note", {"n": "18", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Zu entsprechenden Versuchen etwa"], ["author", "Merryman"], ",", ["title", {"level": "a"}, "Comparative Law and Scientific Explanation"], ",", ["title", {"level": "m"}, "Law in the United States of America in Social and Technological Revolution"], "in:", ["pubPlace", "Br\u00fcssel"], "(", ["date", {"instant": false}, "1974"], ")", ["biblScope", {"unit": "pp"}, "81 (89 ff.)"], "."]], ["note", {"n": "19", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Beispiel von"], ["author", "Carbonnier"], ",", ["title", {"level": "a"}, "Sociologie juridique"], ["pubPlace", "Paris"], "(", ["date", {"instant": false}, "1972"], ")", ["biblScope", {"unit": "pp"}, "188 N. 1"], "."]], ["note", {"n": "20", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu"], ["author", "Heidrich"], ",", ["title", {"level": "a"}, "H\u00f6chstrichterliche Rechtsprechung als Triebfehier sozialen Wandels"], ",", ["title", {"level": "s"}, "Jahr buch f\u00fcr Rechtssoziologie und Rechtstheorie"], ["biblScope", {"unit": "vol"}, "3"], ["date", {"instant": false}, "1972"], ")", ["biblScope", {"unit": "pp"}, "305 (330 ff.)"], "."]], ["note", {"n": "21", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Insbesondere"], ["author", "Zweigert"], ["ref", "oben N. 17"], ")", ["biblScope", {"unit": "pp"}, "157 ff"], "."]], ["note", {"n": "22", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Kaiser"], ",", ["title", {"level": "a"}, "Strafrecht und vergleichende Kriminologie"], ",", ["editor", "Kaiser/Vogler"], "(Hrsg.),", ["title", {"level": "m"}, "Strafrecht, Straf rechtsvergleichung"], ["date", {"instant": false}, "1975"], ")", ["biblScope", {"unit": "pp"}, "79 ff"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe auch"], "\u2014", ["author", "Villmow/Albrecht"], ",", ["title", {"level": "a"}, "Die Vergleichung als Methode der Strafrechtswissenschaft und der Kriminologie"], ",", ["title", {"level": "j"}, "MschrKrim"], ".", ["biblScope", {"unit": "vol"}, "62"], ["date", {"instant": false}, "1979"], ")", ["biblScope", {"unit": "pp"}, "163 ff"], "."]], ["note", {"n": "23", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "So etwa"], ["author", "K. H. Neumayer"], ",", ["title", {"level": "a"}, "Ziele und Methoden der Rechtsvergleichung"], ",", ["title", {"level": "m"}, "Recueil des travaux suisses pr\u00e9sent\u00e9s au IXe Congr\u00e8s international de droit compare"], "in:", ["date", {"instant": false}, "1976"], ")", ["biblScope", {"unit": "pp"}, "45 (48)"], "."]], ["note", {"n": "24", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Zur Abgrenzung n\u00e4her"], ["author", "Rehbinder"], ",", ["title", {"level": "a"}, "Erkenntnistheoretisches zum Verh\u00e4ltnis von Rechtssoziologie und Rechtsvergleichung"], ",", ["editor", "Drobnig/Rehbinder"], "in:", ["biblScope", {"unit": "pp"}, "56 ff"], "."]], ["note", {"n": "25", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "N\u00e4her dazu"], ["author", "Merryman"], ["ref", "oben N. 18"], ")", ["biblScope", {"unit": "pp"}, "101 ff"], "."]], ["note", {"n": "26", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Heidrich"], ",", ["title", {"level": "a"}, "Sozialwissenschaftliche Aspekte der Rechtsvergleichung"], ",", ["editor", "Drobnig/Rehbinder"], "in:", ["biblScope", {"unit": "pp"}, "178 (186 ff.)"], "."]], ["note", {"n": "27", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe etwa die Erkl\u00e4rung, warum das \u201eAccess to justice movement\" in der Bundesrepublik vergleichsweise wenig Widerhall gefunden hat von"], ["author", "Blankenburg"], ",", ["title", {"level": "a"}, "Patterns of Legal Culture as a Variable for the Chances of Legal Innovation"], ",", ["editor", "Blankenburg"], "(Hrsg.),", ["title", {"level": "m"}, "innovations in the Legal Services"], ["pubPlace", "Cambridge, Mass.; Meisenheim"], "(", ["date", {"instant": false}, "1980"], ")."]], ["note", {"n": "28", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "So"], ["author", "Rehbinder"], ["ref", "oben N. 24"], ")", ["biblScope", {"unit": "pp"}, "60"], "."]], ["note", {"n": "29", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu"], ["author", "R. Abel"], ",", ["title", {"level": "a"}, "Comparative Law and Social Theory"], ",", ["title", {"level": "s"}, "Am. J. Comp. L"], ".", ["biblScope", {"unit": "vol"}, "26"], ["date", {"instant": false}, "1978"], ")", ["biblScope", {"unit": "pp"}, "219 (224 ff.)"], "."]], ["note", {"n": "30", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu etwa"], ["author", "Smelser"], ["biblScope", {"unit": "pp"}, "175 f"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "F\u00fcr die Kriminologie siehe"], "\u2014", ["author", "Kaiser"], ["ref", "oben N. 22"], ")", ["biblScope", {"unit": "pp"}, "89"]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "sowie"], ["author", "Blazicek/Janeksela"], ",", ["title", {"level": "a"}, "Some Comments on Comparative Methodologies in Criminal Justice"], ",", ["title", {"level": "j"}, "Int. J. Crim. Pen"], ["biblScope", {"unit": "vol"}, "6"], ["date", {"instant": false}, "1978"], ")", ["biblScope", {"unit": "pp"}, "233 (240)"], ".", ["note", {"anchored": true}, "Als besonders gef\u00e4hrlich hat sich die unkritische \u00dcbertragung solcher Konzepte auf L\u00e4nder der Dritten Welt erwiesen. So kam man etwa zu dem Ergebnis: \u201eThe U. S. law and development movement was largely a parochial expression of the American legal style\u201c,"], ["author", "Merryman"], ",", ["title", {"level": "a"}, "Comparative Law and Social Change - On the Origins, Style, Decline and Revival of the Law and Development Movement"], ",", ["title", {"level": "j"}, "Am. J. Comp. L"], ".", ["biblScope", {"unit": "vol"}, "25"], ["date", {"instant": false}, "1977"], ")", ["biblScope", {"unit": "pp"}, "457 (479)"], "."]], ["note", {"n": "31", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Payne"], ["ref", "oben N. 13"], ")", ["biblScope", {"unit": "pp"}, "15, 25 f"], "."]], ["note", {"n": "32", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "D\u00e4ubler"], ",", ["title", {"level": "a"}, "Systemvergleich im Arbeitsrecht? Vor\u00fcberlegungen zu einigen Methodenfragen"], ",", ["title", {"level": "j"}, "Demokratie und Recht"], ["date", {"instant": false}, "1979"], ["biblScope", {"unit": "vol"}, "1"], "/", ["biblScope", {"unit": "pp"}, "23 (31 ff.)."], "-"], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Zum Vergleich mit den sozialistischen L\u00e4ndern siehe auch"], ["author", "Zweigert/Puttfarken"], ",", ["title", {"level": "a"}, "Zur Vergleichbarkeit analoger Rechtsinstitute in verschiede nen Gesellschaftsordnungen"], ",", ["editor", "Zweigert/Puttfarken"], "(Hrsg.),", ["title", {"level": "m"}, "Rechtsvergleichung"], ["date", {"instant": false}, "1978"], ")", ["biblScope", {"unit": "pp"}, "395 (402 ff.)"], "."]], ["note", {"n": "33", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Blankenburg"], ",", ["title", {"level": "a"}, "Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration"], ["title", {"level": "j"}, "HM discussion papers"], "(", ["date", {"instant": false}, "1978"], ["biblScope", {"unit": "vol"}, "23"], ")", ["biblScope", {"unit": "pp"}, "5 ff"], "."]], ["note", {"n": "34", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Zweigert/K\u00f6tz"], ["biblScope", {"unit": "vol"}, "I"], ["biblScope", {"unit": "pp"}, "30 f"], "."]], ["note", {"n": "35", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu etwa"], ["author", "Armer"], ",", ["title", {"level": "a"}, "Methodology Problems and Possibilities in Comparative Research"], ",", ["editor", "Armer/Grimsbaw"], "in:", ["biblScope", {"unit": "pp"}, "49 (50 ff.)"], ";", ["author", "Smelser"], ["biblScope", {"unit": "pp"}, "182 f"], ".;", ["author", "Trommsdorf"], ",", ["title", {"level": "a"}, "M\u00f6glichkeiten und Probleme des Kulturvergleichs am Beispiel einer Agressionsstudie"], ",", ["title", {"level": "j"}, "KZfSS"], ["biblScope", {"unit": "vol"}, "30"], ["date", {"instant": false}, "1978"], ")", ["biblScope", {"unit": "pp"}, "361 (364 ff.)"], "."]], ["note", {"n": "36", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "Wenn die Strenge elterlicher Strafen gemessen werden soll, kann man etwa darauf ausweichen, welche Strafe die Kinder am meisten f\u00fcrchten,"]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "siehe"], ["author", "Malewswka/Peyre"], ",", ["title", {"level": "a"}, "Juvenile Deliquency and Development"], ",", ["editor", "Szalai/Petrella"], "in:", ["biblScope", {"unit": "pp"}, "131 (157 f.)"], "."]], ["note", {"n": "37", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "N\u00e4her"], ["author", "Scheuch"], ",", ["title", {"level": "a"}, "The Cross-Cultural Use of Sample Surveys \u2014 Problems of Comparability"], ",", ["editor", "Rokkan"], "in:", ["biblScope", {"unit": "pp"}, "176 (185)"], ";", ["author", "Biervert"], ",", ["title", {"level": "a"}, "Der internationale Vergleich"], ",", ["editor", "van Koolwiyk/Wieken-Mayser"], "(Hrsg.),", ["title", {"level": "m"}, "Techniken empirischer Sozialforschung"], ",", ["biblScope", {"unit": "vol"}, "Bd. 2"], ["date", {"instant": false}, "1975"], ")", ["biblScope", {"unit": "pp"}, "113 (124 ff.)"], "."]], ["note", {"n": "38", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Verba"], ",", ["title", {"level": "a"}, "The Uses of Survey Research in the Study of Comparative Politics \u2014 Issues and Strategies"], ",", ["editor", "Rokkan/Verba/Viet/Almasy"], "in:", ["biblScope", {"unit": "pp"}, "56 (80)"], "."]], ["note", {"n": "39", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Gessner"], ",", ["title", {"level": "a"}, "Soziologische \u00dcberlegungen zu einer Theorie der angewandten Rechtsvergleichung"], ",", ["editor", "Drobnig/Rehbinder"], "in:", ["biblScope", {"unit": "pp"}, "123 (134 ff.)"], "."]], ["note", {"n": "40", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Nowak"], ["ref", "oben N. 7"], ")", ["biblScope", {"unit": "pp"}, "42"], "."]], ["note", {"n": "41", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "F\u00fcr die Bedeutung der funktionalen \u00c4quivalenz beruft man sich h\u00e4ufig auf"], ["author", "Merton"], ["note", {"anchored": true}, ", der sie am Beispiel der Religion n\u00e4her erl\u00e4utert hat"], ["title", {"level": "a"}, "Social Theory and Social Structure"], ",", ["pubPlace", "New York, London"], ",", ["date", {"instant": false}, "1968"], ",", ["biblScope", {"unit": "pp"}, "82 ff"], ".):", ["note", {"anchored": true}, "Eine gemeinsame Religion erf\u00fcllt im allgemeinen data\"."], ["title", {"level": "a"}, "The OECD Social Indicator Development Programme - 1976 Progress Report on Phase II"], ["pubPlace", "Paris"], "(", ["date", {"instant": false}, "1977"], ")", ["biblScope", {"unit": "pp"}, "40"], "."]], ["note", {"n": "43", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Rheinstein"], ",", ["title", {"level": "a"}, "Marriage Stability, Divorce, and the Law"], ["pubPlace", "Chicago"], "(", ["date", {"instant": false}, "1972"], ")."]], ["note", {"n": "44", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Abel"], ["ref", "oben N. 4"], ")", ["biblScope", {"unit": "pp"}, "194 ff., 221 f."], "-"], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe auch"], ["author", "Wilpert"], ",", ["title", {"level": "a"}, "Die Messung von Mitbestimmungsnormen \u2014 Darstellung eines international vergleichenden Forschungsansatzes"], ["date", {"instant": false}, "1979"], "\u2014", ["biblScope", {"unit": "pp"}, "13) 2 ff"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Zur Behandlung der \u201eKultur\" in vergleichenden Untersuchungen n\u00e4her"], "-", ["author", "Scheuch"], ["ref", "oben N. 37"], ")", ["biblScope", {"unit": "pp"}, "197 ff"], "."]], ["note", {"n": "45", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Abel"], ["ref", "oben N. 4"], ")", ["biblScope", {"unit": "pp"}, "207 ff"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe auch"], "\u2014", ["author", "Constantinesco"], ",", ["title", {"level": "a"}, "Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise"], ",", ["title", {"level": "j"}, "Zeitschrift f\u00fcr Rechtsvergleichung"], ["biblScope", {"unit": "vol"}, "19"], ["date", {"instant": false}, "1978"], ")", ["biblScope", {"unit": "pp"}, "161 ff"], "."]], ["note", {"n": "46", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe"], ["author", "Blankenburg"], ["ref", "oben N. 33"], ")", ["biblScope", {"unit": "pp"}, "3 ff"], "."]], ["note", {"n": "47", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Rose"], ["ref", "oben N. 7"], ")", ["biblScope", {"unit": "pp"}, "176"], "."]], ["note", {"n": "48", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu etwa"], ["author", "Benda-Beckmann"], ["ref", "oben N. 4"], ")", ["biblScope", {"unit": "pp"}, "55 ff"], ".;", ["author", "Constantinesco"], ",", ["title", {"level": "a"}, "\u00dcber den Stil der \u201eStilthe orie\" in der Rechtsvergleichung"], ",", ["title", {"level": "j"}, "ZvglRW"], ["biblScope", {"unit": "vol"}, "78"], ["date", {"instant": false}, "1979"], ")", ["biblScope", {"unit": "pp"}, "154 ff"], ".", ["note", {"anchored": true}, "mwNachw. \u2014 Eine vergleichbare Debatte \u00fcber \u201e\u00e4hnliche\u201c und \u201eun\u00e4hnliche Gesellschaften\u201c wird seit D\u00fcrkheim auch in der Soziologie gef\u00fchrt."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe"], ["author", "Payne"], ["ref", "oben N. 13"], ")", ["biblScope", {"unit": "pp"}, "16 ff"], "."]], ["note", {"n": "49", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe"], ["author", "Zweigert/K\u00f6tz"], ["biblScope", {"unit": "vol"}, "I"], ["biblScope", {"unit": "pp"}, "70"], "."]], ["note", {"n": "50", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Hofstede"], ",", ["title", {"level": "a"}, "Cultural Determinants of the Exercise of Power in a Hierarchy"], ["note", {"anchored": true}, "(Mimeographed,"], ["title", {"level": "m"}, "European Institute for Advanced Studies in Management Working Paper"], ["date", {"instant": false}, "1977"], ["biblScope", {"unit": "vol"}, "8"], ")."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Ebenso f\u00fcr das Arbeitsrecht"], ["author", "D\u00e4ubler"], ["ref", "oben N. 32"], ")", ["biblScope", {"unit": "pp"}, "33"], ",", ["note", {"anchored": true}, "der auch die skandinavischen L\u00e4nder in diese Gruppe aufnimmt."]]], ["note", {"n": "51", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu"], ["author", "Zweigert/K\u00f6tz"], ["biblScope", {"unit": "vol"}, "1"], ["biblScope", {"unit": "pp"}, "110 f"], ".", ["note", {"anchored": true}, "\u2014 Kritisch"], ["author", "Benda-Beckmann"], ["ref", "oben N. 4"], ")", ["biblScope", {"unit": "pp"}, "58 ff"], "."]], ["note", {"n": "52", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "IDE-International Research Group"], ",", ["title", {"level": "a"}, "Industrial Democracy in Europe"], ["note", {"anchored": true}, "(erscheint bei"], ["pubPlace", "London"], ["date", {"instant": false}, "1980"], ")", ["biblScope", {"unit": "pp"}, "Chapter VIII"], "."]], ["note", {"n": "53", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Zweigert/K\u00f6tz"], ["biblScope", {"unit": "vol"}, "I"], ["biblScope", {"unit": "pp"}, "78"], "."]], ["note", {"n": "54", "place": ["bottom"], "anchored": true}], ["note", {"n": "55", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Daf\u00fcr"], ["author", "D\u00e4ubler"], ["ref", "oben N. 32"], ")", ["biblScope", {"unit": "pp"}, "33"], "."]], ["note", {"n": "56", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe dazu"], ["author", "Rheinstein"], ",", ["title", {"level": "a"}, "Die Rechtshonoratioren und ihr Einflu\u00df auf Charakter und Funk tion der Rechtsordnungen"], ",", ["title", {"level": "j"}, "RabelsZ"], ["biblScope", {"unit": "vol"}, "34"], ["date", {"instant": false}, "1970"], ")", ["biblScope", {"unit": "pp"}, "1 ff"], ".;", ["author", "Bernstein"], ",", ["title", {"level": "a"}, "Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der Rechtsvergleichung"], ",", ["title", {"level": "j"}, "RabelsZ"], ["biblScope", {"unit": "vol"}, "34"], ["date", {"instant": false}, "1970"], ")", ["biblScope", {"unit": "pp"}, "443 ff"], "."]], ["note", {"n": "57", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu etwa"], ["author", "Ruescbemeyer"], ",", ["title", {"level": "a"}, "Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in Germany and the United States"], ["pubPlace", "Cambridge, Mass"], ".", ["date", {"instant": false}, "1973"], ");", ["author", "ders"], ".,", ["title", {"level": "a"}, "The Legal Profession in Comparative Perspective"], ",", ["editor", "H. M. Johnson"], ",", ["title", {"level": "m"}, "Social System and Legal Process"], ["pubPlace", "San Francisco, Washington, London"], "(", ["date", {"instant": false}, "1978"], ")", ["biblScope", {"unit": "pp"}, "97 ff"], "."]], ["note", {"n": "58", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Klausa"], ",", ["title", {"level": "a"}, "Politische Inhaltsanalyse von Rechtslehrertexten"], ",", ["title", {"level": "j"}, "ZfS"], ["biblScope", {"unit": "vol"}, "8"], ["date", {"instant": false}, "1979"], ")", ["biblScope", {"unit": "pp"}, "362 ff"], "."]], ["note", {"n": "59", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe"], ["author", "Nowak"], ["ref", "oben N. 7"], ")", ["biblScope", {"unit": "pp"}, "23 ff"], ".;", ["author", "Smelser"], ["biblScope", {"unit": "pp"}, "167 ff"], "."]], ["note", {"n": "60", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu n\u00e4her"], ["author", "Teune"], ",", ["title", {"level": "a"}, "Analysis and Interpretation in Cross-National Survey Research"], ",", ["editor", "Szalai/Petrella"], "in:", ["biblScope", {"unit": "pp"}, "95 (101) ff"], "."]], ["note", {"n": "61", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe dazu"], ["author", "Nader/Todd"], ",", ["title", {"level": "a"}, "The Disputing Process \u2014 Law in Ten Societies"], ["pubPlace", "New York"], "(", ["date", {"instant": false}, "1978"], ")."]], ["note", {"n": "62", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe zum entsprechenden"], ["title", {"level": "a"}, "Problem in der Kriminologie"], ["author", "Kaiser"], ["ref", "oben N. 22"], ")", ["biblScope", {"unit": "pp"}, "88"]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "mwNachw"], ".", ["author", "Blazicek/Janeksela"], ";", ["ref", "oben N. 30"], ")", ["biblScope", {"unit": "pp"}, "235 f., 242"], "."]], ["note", {"n": "63", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Clinard"], ",", ["title", {"level": "a"}, "Comparative Crime Victimization Surveys \u2014 Some Problems and Results"], ",", ["title", {"level": "j"}, "Int. J. Crim, and Pen"], ".", ["biblScope", {"unit": "vol"}, "6"], ["date", {"instant": false}, "1978"], ")", ["biblScope", {"unit": "pp"}, "221 ff"], "."]], ["note", {"n": "64", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe"], ["author", "Abel-Smith/Zander/Brooke"], ",", ["title", {"level": "a"}, "Legal Problems and the Citizen"], ["pubPlace", "London"], "(", ["date", {"instant": false}, "1973"], ");", ["author", "Rokumoto"], ",", ["title", {"level": "a"}, "Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in International Comparison"], ",", ["title", {"level": "j"}, "ZfS"], ["biblScope", {"unit": "vol"}, "7"], ["date", {"instant": false}, "1978"], ")", ["biblScope", {"unit": "pp"}, "228 ff"], ".;", ["author", "Schuyt/Groenendijk/Sloot"], ",", ["title", {"level": "a"}, "Rechtspro bleme oder private Schwierigkeiten \u2014 Die Inanspruchnahme von Rechtshilfe in den Nieder landen"], ",", ["title", {"level": "j"}, "Jahrbuch f\u00fcr Rechtssoziologie und Rechtstheorie"], "in:", ["biblScope", {"unit": "vol"}, "5"], ["date", {"instant": false}, "1978"], ")", ["biblScope", {"unit": "pp"}, "109 ff"], "."]], ["note", {"n": "65", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu"], ["author", "Podgdrecki"], ",", ["title", {"level": "a"}, "Comparative Studies on the Attitudes Towards Various Legal Systems"], ",", ["title", {"level": "j"}, "Polish Sociological Bulletin"], ["biblScope", {"unit": "vol"}, "21 No. 1"], ["date", {"instant": false}, "1970"], ")", ["biblScope", {"unit": "pp"}, "83 (88 ff.)"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe auch"], ["author", "Ziegen,"], ["title", {"level": "a"}, "Zur Effek tivit\u00e4t der Rechtssoziologie: die Rekonstruktion der Gesellschaft durch Recht"], ["date", {"instant": false}, "1975"], ")", ["biblScope", {"unit": "pp"}, "196 ff"], "."]], ["note", {"n": "66", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe"], ["author", "Podgdrecki"], ",", ["title", {"level": "a"}, "Legal Consciousness as a Research Problem"], ",", ["title", {"level": "j"}, "European Yearbook in Law and Sociology 1977"], ["pubPlace", "Den Haag"], "(", ["date", {"instant": false}, "1977"], ")", ["biblScope", {"unit": "pp"}, "85 (88 ff.)"], "."]], ["note", {"n": "67", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Kutchinsky"], ",", ["title", {"level": "a"}, "The Legal Consciousness\u201c: A Survey of Research on Knowledge and Opinion about Law"], ",", ["editor", "Podgdrecki/Kaupen/van Houtte/Vinke/Kutchinsky"], ",", ["title", {"level": "m"}, "Knowledge and Opinion about Law"], ["pubPlace", "Bristol"], "(", ["date", {"instant": false}, "1973"], ")", ["biblScope", {"unit": "pp"}, "101 (126)"], "."]], ["note", {"n": "68", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Podgdrecki"], ",", ["title", {"level": "a"}, "Public Opinion on Law"], ",", ["title", {"level": "m"}, "Knowledge and Opinion about Law"], "in:", ["ref", "vorige N"], ".)", ["biblScope", {"unit": "pp"}, "65 (84 ff.)"], "."]], ["note", {"n": "69", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["author", "Heintz"], ",", ["title", {"level": "a"}, "Interkultureller Vergleich"], ",", ["editor", "K\u00f6nig"], "(Hrsg.),", ["title", {"level": "m"}, "Handbuch der empirischen Sozialfor schung"], ",", ["biblScope", {"unit": "vol"}, "Bd. 4 (3. Aufl"], ".", ["date", {"instant": false}, "1974"], ")", ["biblScope", {"unit": "pp"}, "405 (414 f.)"], "."]], ["note", {"n": "70", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe"], ["author", "Hegenbarth"], ",", ["title", {"level": "a"}, "\u00dcber methodische und organisatorische Grenzen der empirischen Rechts forschung in Entwicklungsl\u00e4ndern"], ",", ["title", {"level": "j"}, "Informationsbrief f\u00fcr Rechtssoziologie"], ["date", {"instant": false}, "1979"], ",", ["biblScope", {"unit": "vol"}, "Son derheft 2"], ",", ["biblScope", {"unit": "pp"}, "5 ff"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "mwNachw"], "."]], ["note", {"n": "71", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe etwa"], ["author", "Gessner"], ",", ["title", {"level": "a"}, "Recht und Konflikt \u2014 Eine soziologische Untersuchungprivatrechtlicher Konflikte in Mexiko"], ["date", {"instant": false}, "1976"], ")", ["biblScope", {"unit": "pp"}, "37 ff"], "."]], ["note", {"n": "72", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Vgl"], ".", ["author", "Heintz"], ["ref", "oben N. 69"], ")", ["biblScope", {"unit": "pp"}, "407"], "."]], ["note", {"n": "73", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"anchored": true}, "Da die theoretischen und technischen Erfordernisse solcher Vergleiche in der Tat komplex sind, bestand in der Kriminologie noch Mitte der sechziger Jahre internationale \u00dcberein stimmung, da\u00df vergleichenden Studien kein Vorrang zu geben sei."]], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu"], ["author", "Friday"], ",", ["title", {"level": "a"}, "Problems in Comparative Criminology"], ",", ["title", {"level": "j"}, "Int. J. Crim"], ".", ["biblScope", {"unit": "vol"}, "1"], ["date", {"instant": false}, "1973"], ")", ["biblScope", {"unit": "pp"}, "151 (152)"], "."]], ["note", {"n": "74", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Zur Anlage vergleichender Studien n\u00e4her"], ["author", "Rokkan"], ",", ["title", {"level": "a"}, "Vergleichende Sozialwissenschaft"], ["date", {"instant": false}, "1972"], ")", ["biblScope", {"unit": "pp"}, "9 ff"], ".;", ["author", "Szalai"], ",", ["title", {"level": "a"}, "The Organization and Execution of Cross-National Survey Research Projects"], ",", ["editor", "Szalai/Petrella"], "in:", ["biblScope", {"unit": "pp"}, "49 ff"], "."], ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "sowie"], ["ref", "oben N. 52"], ")", ["biblScope", {"unit": "pp"}, "Chapter I"], "."]], ["note", {"n": "75", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe"], ["author", "Blegvad"], ",", ["title", {"level": "a"}, "Methodological Aspects of the Project \u201eLocal Legal Systems"], "\u201c,", ["editor", "Kulcs\u00e1r"], "(Hrsg.),", ["title", {"level": "m"}, "Sociology of Law and Legal Sciences"], ["pubPlace", "Budapest"], "(", ["date", {"instant": false}, "1977"], ")", ["biblScope", {"unit": "pp"}, "97 (99 ff.)"], "."]], ["note", {"n": "76", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Dazu n\u00e4her"], ["author", "Zweigert"], ",", ["title", {"level": "a"}, "Die kritische Wertung in der Rechtsvergleichung"], ",", ["title", {"level": "m"}, "Festschrift f\u00fcr Schmitthoff"], ["date", {"instant": false}, "1973"], ")", ["biblScope", {"unit": "pp"}, "403 ff"], "."]], ["note", {"n": "77", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe etwa zu vorliegenden franz\u00f6sischen Untersuchungen"], ["author", "D\u00f6rner"], ",", ["title", {"level": "a"}, "Rechtstatsachenforschung und Gesetzgebung \u2014 Hinweise zur Entwicklung einer Gesetzgebungssoziologie in Frank reich"], ",", ["title", {"level": "j"}, "Interview und Analyse"], ["date", {"instant": false}, "1979"], ",", ["biblScope", {"unit": "pp"}, "377 ff"], "."]], ["note", {"n": "78", "place": ["bottom"], "anchored": true}, ["bibl", {"default": "false", "status": "draft"}, ["note", {"type": "signal", "anchored": true}, "Siehe"], ["author", "Bryde"], ",", ["title", {"level": "a"}, "Recht und Konflikt \u2014 Mexiko und Afrika"], ",", ["title", {"level": "j"}, "Verfassung und Recht in Obersee"], ["biblScope", {"unit": "vol"}, "12"], ["date", {"instant": false}, "1979"], "),", ["biblScope", {"unit": "pp"}, "159 ff"], "."]]]] \ No newline at end of file diff --git a/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml b/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml index 29e8cb8..21a3899 100644 --- a/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml +++ b/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml @@ -16,32 +16,183 @@ <text> <body> <p>The article text is not part of this document</p> + <listBibl> + <bibl> + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Rebbinder</surname> + </persName> + </editor> + (Hrsg.), + <title level="a">Rechtssoziologie und Rechtsvergleichung</title> + ( + <date>1977</date> + ); + </bibl> + <bibl> + <editor> + <persName> + <surname>Rokkan</surname> + </persName> + </editor> + (Hrsg.), + <title level="a">Compa rative Research Across Cultures and Nations</title> + ( + <pubPlace>Paris, Den Haag</pubPlace> + <date>1968</date> + ); + </bibl> + <bibl> + <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> + (Hrsg.), + <title level="a">Comparative Sutvey Analysis</title> + ( + <pubPlace>Den Haag, Paris</pubPlace> + <date>1969</date> + ); + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> + + <title level="a">Comparative Methods in the Social Sciences</title> + </bibl> + <bibl> + <author> + <persName> + <forename>N.</forename> + <forename>J</forename> + <surname>Englewood Cliffs</surname> + </persName> + </author> + . + <date>1976</date> + ) + <editor> + <persName/> + </editor> + ; + <editor> + <persName> + <surname>Szalai</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Petrella</surname> + </persName> + </editor> + (Hrsg.), + <title level="a">Cross National Comparative Survey Research</title> + ( + <pubPlace>Oxford, New York, Toronto, Sydney, Paris, Frank furt</pubPlace> + <date>1977</date> + ); + </bibl> + <bibl> + <editor> + <persName> + <surname>Vallier</surname> + </persName> + </editor> + (Hrsg.), + <title level="a">Comparative Methods in Sociology</title> + ( + <pubPlace>Berkeley, Los Angeles, London</pubPlace> + <date>1971</date> + ); + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> + . + <title level="a">Einführung in die Rechtsvergleichung</title> + <biblScope unit="vol">Bd. I</biblScope> + ( + <date>1971</date> + ). + </bibl> + </listBibl> </body> - <note n="1" place="bottom"> + <note n="1" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe näher</note> - <author>Zweigert/Kötz</author> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> <biblScope unit="vol">I</biblScope> <biblScope unit="pp">12 ff</biblScope> . </bibl> </note> - <note n="2" place="bottom"> + <note n="2" type="footnote" place="bottom"> <bibl> - <author>Rabel</author> + <author> + <persName> + <surname>Rabel</surname> + </persName> + </author> , <title level="a">Aufgabe und Notwendigkeit der Rechtsvergleichung</title> + ( <date>1925</date> ), </bibl> <bibl> <note type="signal">abgedruckt in</note> : - <author>Rabel</author> + <author> + <persName> + <surname>Rabel</surname> + </persName> + </author> , <title level="a">Gesammelte Aufsätze</title> <biblScope unit="vol">III</biblScope> - <editor>Leser</editor> + (Hrsg. + <editor> + <persName> + <surname>Leser</surname> + </persName> + </editor> , <date>1967</date> ) @@ -49,194 +200,342 @@ . </bibl> </note> - <note n="3" place="bottom"> + <note n="3" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe insbes. die Beiträge in</note> - <author>Drobnig/Rehbinder</author> + <author> + <persName> + <surname>Drobnig</surname> + </persName> + </author> + <author> + <persName> + <surname>Rehbinder</surname> + </persName> + </author> . </bibl> </note> - <note n="4" place="bottom"> + <note n="4" type="footnote" place="bottom"> <bibl> <note type="signal">Dazu</note> - <author>R. Abel</author> + <author> + <persName> + <forename>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="vol">26</biblScope> + ( <date>1973</date> ) <biblScope unit="pp">174 ff</biblScope> .; - <author>Benda-Beckmann</author> + </bibl> + <bibl> + <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="vol">78</biblScope> + ( <date>1979</date> ) <biblScope unit="pp">51 ff</biblScope> . </bibl> </note> - <note n="5" place="bottom"> + <note n="5" type="footnote" place="bottom"> <bibl> - <author>Carbonnier</author> + <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> - in: - <pubPlace>Paris</pubPlace> ( + <pubPlace>Paris</pubPlace> <date>1969</date> ) <biblScope unit="pp">75 (83)</biblScope> . </bibl> </note> - <note n="6" place="bottom"> + <note n="6" type="footnote" place="bottom"> <bibl> - <author>Carbonnier</author> - <ref>vorige N.) a.a.O</ref> - . + <author> + <persName> + <surname>Carbonnier</surname> + </persName> + </author> + ( + <ref>vorige N.) a.a.O.</ref> </bibl> </note> - <note n="7" place="bottom"> + <note n="7" type="footnote" place="bottom"> <bibl> - <author>Nowak</author> + <author> + <persName> + <surname>Nowak</surname> + </persName> + </author> , <title level="a">The Strategy of Cross-National Survey Research for the Development of Social Theory</title> - , - <editor>Szalai/Petrella</editor> - in: + , in: + <editor> + <persName> + <surname>Szalai</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Petrella</surname> + </persName> + </editor> <biblScope unit="pp">3 (9 ff.)</biblScope> : - <author>Rose</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Rose</surname> + </persName> + </author> , <title level="a">Interkulturelle Forschung in der Rechtssoziologie</title> - , - <editor>Drobnig/Rehbinder</editor> - in: + , in: + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> <biblScope unit="pp">171 ff</biblScope> . </bibl> </note> - <note n="8" place="bottom"> + <note n="8" type="footnote" place="bottom"> <bibl> <note type="signal">Dazu näher</note> - <author>Wirsing</author> + <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="vol">25</biblScope> + ( <date>1975</date> ) 97 ff. - </bibl> <bibl> <note type="signal">Vgl. auch</note> - <author>Poirier</author> + <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="vol">22</biblScope> + ( <date>1970</date> ) <biblScope unit="pp">509 (526)</biblScope> . </bibl> </note> - <note n="9" place="bottom"> + <note n="9" type="footnote" place="bottom"> <bibl> - <author>Macaulay</author> + <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="vol">11</biblScope> + ( <date>1977</date> ) <biblScope unit="pp">507 ff</biblScope> . </bibl> </note> - <note n="10" place="bottom"> + <note n="10" type="footnote" place="bottom"> <bibl> - <author>Rose</author> + <author> + <persName> + <surname>Rose</surname> + </persName> + </author> + ( <ref>oben N. 7</ref> ) - <biblScope unit="pp">175</biblScope> + <citedRange unit="pp">175</citedRange> . </bibl> </note> - <note n="11" place="bottom"> + <note n="11" type="footnote" place="bottom"> <bibl> <note type="signal">Dazu</note> - <author>Grimshau</author> + <author> + <persName> + <surname>Grimshau</surname> + </persName> + </author> , <title level="a">Comparative Sociology - In What Ways Different From Other Sociologies?</title> - , - <editor>Armer/Grimshaw</editor> - in: + , in: + <editor> + <persName> + <surname>Armer</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Grimshaw</surname> + </persName> + </editor> <biblScope unit="pp">3 (18)</biblScope> . - <note>Auch der Oberbegriff „cross System comparison" wird vorgeschlagen,</note> - <author>Tomasson</author> + <note>Auch der Oberbegriff „cross System comparison" wird vorgeschlagen</note> , - <title level="a">Introduction; Comparative Sociology — The State of the Art</title> + </bibl> + <bibl> + <author> + <persName> + <surname>Tomasson</surname> + </persName> + </author> , - <editor>Tomasson</editor> + <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="vol">Vol. 1</biblScope> + ( <pubPlace>Greenwich, Conn</pubPlace> . <date>1978</date> ) <biblScope unit="pp">1</biblScope> + . — + <note>Ãœ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>— Ãœ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> </bibl> <bibl> <note type="signal">Bibliographien finden sich etwa bei</note> - <author>Rokkan/Verba/Viet/Almasy</author> + <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> <biblScope unit="pp">117 ff</biblScope> .; - <author>Vallier</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Vallier</surname> + </persName> + </author> <biblScope unit="pp">423 ff</biblScope> .; - <author>Almasy/Balandier/Delatte</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Almasy</surname> + </persName> + </author> + <author> + <persName> + <surname>Balandier</surname> + </persName> + </author> + <author> + <persName> + <surname>Delatte</surname> + </persName> + </author> , <title level="a">Comparative Survey Analysis — An Annotated Bibliography 1967 — 1973</title> - - <pubPlace>Beverly Hills, London</pubPlace> ( + <pubPlace>Beverly Hills, London</pubPlace> <date>1976</date> ) </bibl> <bibl> <note type="signal">sowie bei</note> - <author>Marsh</author> + <author> + <persName> + <surname>Marsh</surname> + </persName> + </author> , <title level="a">Comparative Sociology</title> - <pubPlace>New York, Chicago, San Francisco, Atlanta</pubPlace> ( + <pubPlace>New York, Chicago, San Francisco, Atlanta</pubPlace> <date>1967</date> ) <biblScope unit="pp">375 ff</biblScope> . </bibl> </note> - <note n="12" place="bottom"> + <note n="12" type="footnote" place="bottom"> <bibl> - <author>Durkheim</author> + <author> + <persName> + <surname>Durkheim</surname> + </persName> + </author> , <title level="a">Les règles de la methode sociologique</title> @@ -247,19 +546,34 @@ . </bibl> </note> - <note n="13" place="bottom"> + <note n="13" type="footnote" place="bottom"> <bibl> - <author>Smelser</author> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> <biblScope unit="pp">2 f</biblScope> . - <author>Payne</author> + </bibl> + <bibl> + <author> + <persName/> + </author> + ; + <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="vol">24</biblScope> + ( <date>1973</date> ) <biblScope unit="pp">13 (15 ff.).</biblScope> @@ -267,28 +581,44 @@ </bibl> <bibl> <note type="signal">Ähnlich auch</note> - <author>Eisenstadt</author> + <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> - in: <biblScope unit="vol">Bd. 14</biblScope> - <pubPlace>London</pubPlace> ( + <pubPlace>London</pubPlace> <date>1968</date> ) <biblScope unit="pp">421 (423)</biblScope> . </bibl> </note> - <note n="14" place="bottom"> + <note n="14" type="footnote" place="bottom"> <bibl> - <author>Boesch/Eckensberger</author> + <author> + <persName> + <surname>Boesch</surname> + </persName> + </author> + <author> + <persName> + <surname>Eckensberger</surname> + </persName> + </author> , <title level="a">Methodische Probleme des interkulturellen Vergleichs</title> - , - <editor>Graumann</editor> + , in: + <editor> + <persName> + <surname>Graumann</surname> + </persName> + </editor> (Hrsg.), <title level="m">Handbuch der Psychologie</title> , @@ -297,132 +627,208 @@ <date>1969</date> ) <biblScope unit="pp">514 (520 ff.)</biblScope> - . - <note>— Zur „cultunit“, die vor allem durch die gemeinsame Sprache und die Zugehörigkeit zu einem Staat bzw. einer interpersonellen Kontaktgruppe gekennzeichnet ist,</note> + . — + <note>Zur „cultunit“, die vor allem durch die gemeinsame Sprache und die Zugehörigkeit zu einem Staat bzw. einer interpersonellen Kontaktgruppe gekennzeichnet ist</note> + , </bibl> <bibl> <note type="signal">s</note> . - <editor>Naroll/Cohen</editor> + <editor> + <persName> + <surname>Naroll</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Cohen</surname> + </persName> + </editor> (Hrsg.), <title level="a">A Handbook of Method in Cultural Anthropology</title> - <pubPlace>New York, London</pubPlace> ( + <pubPlace>New York, London</pubPlace> <date>1973</date> ) </bibl> <bibl> <note type="signal">sowie</note> - <author>Smelser</author> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> <biblScope unit="pp">168 f</biblScope> .; - <author>Wirsing</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Wirsing</surname> + </persName> + </author> + ( <ref>oben N. 8</ref> ) - <biblScope unit="pp">115</biblScope> + <citedRange unit="pp">115</citedRange> . </bibl> </note> - <note n="15" place="bottom"> + <note n="15" type="footnote" place="bottom"> <bibl> <note type="signal">Näher dazu</note> - <author>Zelditch</author> + <author> + <persName> + <surname>Zelditch</surname> + </persName> + </author> , <title level="a">Intelligible Comparisons</title> - , - <editor>Vallier</editor> - in: + , in: + <editor> + <persName> + <surname>Vallier</surname> + </persName> + </editor> <biblScope unit="pp">267 (270 ff.)</biblScope> . </bibl> </note> - <note n="16" place="bottom"> + <note n="16" type="footnote" place="bottom"> <bibl> - <author>Carbonnier</author> + <author> + <persName> + <surname>Carbonnier</surname> + </persName> + </author> + ( <ref>oben N. 5</ref> ) - <biblScope unit="pp">80</biblScope> + <citedRange unit="pp">80</citedRange> . </bibl> </note> - <note n="17" place="bottom"> + <note n="17" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe</note> - <author>Zweigert</author> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> , <title level="a">Die soziologische Dimension der Rechtsvergleichung</title> - , - <editor>Drobnig/Rebbinder</editor> - in: + , in: + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Rebbinder</surname> + </persName> + </editor> <biblScope unit="pp">151 (159)</biblScope> . </bibl> </note> - <note n="18" place="bottom"> + <note n="18" type="footnote" place="bottom"> <bibl> <note type="signal">Zu entsprechenden Versuchen etwa</note> - <author>Merryman</author> + <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> - in: - <pubPlace>Brüssel</pubPlace> ( + <pubPlace>Brüssel</pubPlace> <date>1974</date> ) <biblScope unit="pp">81 (89 ff.)</biblScope> . </bibl> </note> - <note n="19" place="bottom"> + <note n="19" type="footnote" place="bottom"> <bibl> <note type="signal">Beispiel von</note> - <author>Carbonnier</author> + <author> + <persName> + <surname>Carbonnier</surname> + </persName> + </author> , <title level="a">Sociologie juridique</title> - <pubPlace>Paris</pubPlace> ( + <pubPlace>Paris</pubPlace> <date>1972</date> ) <biblScope unit="pp">188 N. 1</biblScope> . </bibl> </note> - <note n="20" place="bottom"> + <note n="20" type="footnote" place="bottom"> <bibl> <note type="signal">Dazu</note> - <author>Heidrich</author> + <author> + <persName> + <surname>Heidrich</surname> + </persName> + </author> , <title level="a">Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels</title> , <title level="s">Jahr buch für Rechtssoziologie und Rechtstheorie</title> <biblScope unit="vol">3</biblScope> + ( <date>1972</date> ) <biblScope unit="pp">305 (330 ff.)</biblScope> . </bibl> </note> - <note n="21" place="bottom"> + <note n="21" type="footnote" place="bottom"> <bibl> <note type="signal">Insbesondere</note> - <author>Zweigert</author> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + ( <ref>oben N. 17</ref> ) - <biblScope unit="pp">157 ff</biblScope> + <citedRange unit="pp">157 ff</citedRange> . </bibl> </note> - <note n="22" place="bottom"> + <note n="22" type="footnote" place="bottom"> <bibl> - <author>Kaiser</author> + <author> + <persName> + <surname>Kaiser</surname> + </persName> + </author> , <title level="a">Strafrecht und vergleichende Kriminologie</title> - , - <editor>Kaiser/Vogler</editor> + , in: + <editor> + <persName> + <surname>Kaiser</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Vogler</surname> + </persName> + </editor> (Hrsg.), <title level="m">Strafrecht, Straf rechtsvergleichung</title> + ( <date>1975</date> ) <biblScope unit="pp">79 ff</biblScope> @@ -430,362 +836,633 @@ </bibl> <bibl> <note type="signal">Siehe auch</note> - — - <author>Villmow/Albrecht</author> + <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="vol">62</biblScope> + ( <date>1979</date> ) <biblScope unit="pp">163 ff</biblScope> . </bibl> </note> - <note n="23" place="bottom"> + <note n="23" type="footnote" place="bottom"> <bibl> <note type="signal">So etwa</note> - <author>K. H. Neumayer</author> + <author> + <persName> + <forename>K.</forename> + <forename>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> - in: + ( <date>1976</date> ) <biblScope unit="pp">45 (48)</biblScope> . </bibl> </note> - <note n="24" place="bottom"> + <note n="24" type="footnote" place="bottom"> <bibl> <note type="signal">Zur Abgrenzung näher</note> - <author>Rehbinder</author> + <author> + <persName> + <surname>Rehbinder</surname> + </persName> + </author> , <title level="a">Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und Rechtsvergleichung</title> - , - <editor>Drobnig/Rehbinder</editor> - in: + , in: + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> <biblScope unit="pp">56 ff</biblScope> . </bibl> </note> - <note n="25" place="bottom"> + <note n="25" type="footnote" place="bottom"> <bibl> <note type="signal">Näher dazu</note> - <author>Merryman</author> + <author> + <persName> + <surname>Merryman</surname> + </persName> + </author> + ( <ref>oben N. 18</ref> ) - <biblScope unit="pp">101 ff</biblScope> + <citedRange unit="pp">101 ff</citedRange> . </bibl> </note> - <note n="26" place="bottom"> + <note n="26" type="footnote" place="bottom"> <bibl> - <author>Heidrich</author> + <author> + <persName> + <surname>Heidrich</surname> + </persName> + </author> , <title level="a">Sozialwissenschaftliche Aspekte der Rechtsvergleichung</title> - , - <editor>Drobnig/Rehbinder</editor> - in: + , in: + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> <biblScope unit="pp">178 (186 ff.)</biblScope> . </bibl> </note> - <note n="27" place="bottom"> + <note n="27" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe etwa die Erklärung, warum das „Access to justice movement" in der Bundesrepublik vergleichsweise wenig Widerhall gefunden hat von</note> - <author>Blankenburg</author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> , <title level="a">Patterns of Legal Culture as a Variable for the Chances of Legal Innovation</title> - , - <editor>Blankenburg</editor> + , in: + <editor> + <persName> + <surname>Blankenburg</surname> + </persName> + </editor> (Hrsg.), <title level="m">innovations in the Legal Services</title> - <pubPlace>Cambridge, Mass.; Meisenheim</pubPlace> ( + <pubPlace>Cambridge, Mass.; Meisenheim</pubPlace> <date>1980</date> ). </bibl> </note> - <note n="28" place="bottom"> + <note n="28" type="footnote" place="bottom"> <bibl> <note type="signal">So</note> - <author>Rehbinder</author> + <author> + <persName> + <surname>Rehbinder</surname> + </persName> + </author> + ( <ref>oben N. 24</ref> ) - <biblScope unit="pp">60</biblScope> + <citedRange unit="pp">60</citedRange> . </bibl> </note> - <note n="29" place="bottom"> + <note n="29" type="footnote" place="bottom"> <bibl> <note type="signal">Dazu</note> - <author>R. Abel</author> + <author> + <persName> + <forename>R.</forename> + <surname>Abel</surname> + </persName> + </author> , <title level="a">Comparative Law and Social Theory</title> , <title level="s">Am. J. Comp. L</title> . <biblScope unit="vol">26</biblScope> + ( <date>1978</date> ) <biblScope unit="pp">219 (224 ff.)</biblScope> . </bibl> </note> - <note n="30" place="bottom"> + <note n="30" type="footnote" place="bottom"> <bibl> <note type="signal">Dazu etwa</note> - <author>Smelser</author> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> <biblScope unit="pp">175 f</biblScope> . </bibl> <bibl> <note type="signal">Für die Kriminologie siehe</note> - — - <author>Kaiser</author> + <author> + <persName> + <surname>Kaiser</surname> + </persName> + </author> + ( <ref>oben N. 22</ref> ) - <biblScope unit="pp">89</biblScope> + <citedRange unit="pp">89</citedRange> </bibl> <bibl> <note type="signal">sowie</note> - <author>Blazicek/Janeksela</author> + <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="vol">6</biblScope> + ( <date>1978</date> ) <biblScope unit="pp">233 (240)</biblScope> . - <note>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> - <author>Merryman</author> + <note>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> + <bibl> + <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="vol">25</biblScope> - + ( <date>1977</date> ) <biblScope unit="pp">457 (479)</biblScope> . </bibl> </note> - <note n="31" place="bottom"> + <note n="31" type="footnote" place="bottom"> <bibl> - <author>Payne</author> + <author> + <persName> + <surname>Payne</surname> + </persName> + </author> + ( <ref>oben N. 13</ref> ) - <biblScope unit="pp">15, 25 f</biblScope> + <citedRange unit="pp">15, 25 f</citedRange> . </bibl> </note> - <note n="32" place="bottom"> + <note n="32" type="footnote" place="bottom"> <bibl> - <author>Däubler</author> + <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>1979</date> - <biblScope unit="vol">1</biblScope> / + <biblScope unit="vol">1</biblScope> + S. <biblScope unit="pp">23 (31 ff.).</biblScope> - </bibl> <bibl> <note type="signal">Zum Vergleich mit den sozialistischen Ländern siehe auch</note> - <author>Zweigert/Puttfarken</author> + <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> - , - <editor>Zweigert/Puttfarken</editor> + , in: + <editor> + <persName> + <surname>Zweigert</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Puttfarken</surname> + </persName> + </editor> (Hrsg.), <title level="m">Rechtsvergleichung</title> + ( <date>1978</date> ) <biblScope unit="pp">395 (402 ff.)</biblScope> . </bibl> </note> - <note n="33" place="bottom"> + <note n="33" type="footnote" place="bottom"> <bibl> - <author>Blankenburg</author> + <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> ( + <title level="j">HM discussion papers</title> <date>1978</date> + — <biblScope unit="vol">23</biblScope> ) <biblScope unit="pp">5 ff</biblScope> . </bibl> </note> - <note n="34" place="bottom"> + <note n="34" type="footnote" place="bottom"> <bibl> - <author>Zweigert/Kötz</author> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> <biblScope unit="vol">I</biblScope> <biblScope unit="pp">30 f</biblScope> . </bibl> </note> - <note n="35" place="bottom"> + <note n="35" type="footnote" place="bottom"> <bibl> <note type="signal">Dazu etwa</note> - <author>Armer</author> + <author> + <persName> + <surname>Armer</surname> + </persName> + </author> , <title level="a">Methodology Problems and Possibilities in Comparative Research</title> - , - <editor>Armer/Grimsbaw</editor> - in: + , in: + <editor> + <persName> + <surname>Armer</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Grimsbaw</surname> + </persName> + </editor> <biblScope unit="pp">49 (50 ff.)</biblScope> ; - <author>Smelser</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> <biblScope unit="pp">182 f</biblScope> .; - <author>Trommsdorf</author> + </bibl> + <bibl> + <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="vol">30</biblScope> + ( <date>1978</date> ) <biblScope unit="pp">361 (364 ff.)</biblScope> . </bibl> </note> - <note n="36" place="bottom"> + <note n="36" type="footnote" place="bottom"> <bibl> - <note>Wenn die Strenge elterlicher Strafen gemessen werden soll, kann man etwa darauf ausweichen, welche Strafe die Kinder am meisten fürchten,</note> + <note>Wenn die Strenge elterlicher Strafen gemessen werden soll, kann man etwa darauf ausweichen, welche Strafe die Kinder am meisten fürchten</note> + , </bibl> <bibl> <note type="signal">siehe</note> - <author>Malewswka/Peyre</author> + <author> + <persName> + <surname>Malewswka</surname> + </persName> + </author> + <author> + <persName> + <surname>Peyre</surname> + </persName> + </author> , <title level="a">Juvenile Deliquency and Development</title> - , - <editor>Szalai/Petrella</editor> - in: + , in: + <editor> + <persName> + <surname>Szalai</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Petrella</surname> + </persName> + </editor> <biblScope unit="pp">131 (157 f.)</biblScope> . </bibl> </note> - <note n="37" place="bottom"> + <note n="37" type="footnote" place="bottom"> <bibl> <note type="signal">Näher</note> - <author>Scheuch</author> + <author> + <persName> + <surname>Scheuch</surname> + </persName> + </author> , <title level="a">The Cross-Cultural Use of Sample Surveys — Problems of Comparability</title> - , - <editor>Rokkan</editor> - in: + , in: + <editor> + <persName> + <surname>Rokkan</surname> + </persName> + </editor> <biblScope unit="pp">176 (185)</biblScope> ; - <author>Biervert</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Biervert</surname> + </persName> + </author> , <title level="a">Der internationale Vergleich</title> - , - <editor>van Koolwiyk/Wieken-Mayser</editor> + , in: + <editor> + <persName> + <forename>van</forename> + <surname>Koolwiyk</surname> + </persName> + </editor> + / + <editor> + <persName> + <surname>Wieken-Mayser</surname> + </persName> + </editor> (Hrsg.), <title level="m">Techniken empirischer Sozialforschung</title> , <biblScope unit="vol">Bd. 2</biblScope> + ( <date>1975</date> ) <biblScope unit="pp">113 (124 ff.)</biblScope> . </bibl> </note> - <note n="38" place="bottom"> + <note n="38" type="footnote" place="bottom"> <bibl> - <author>Verba</author> + <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> - , - <editor>Rokkan/Verba/Viet/Almasy</editor> - in: + , 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="pp">56 (80)</biblScope> . </bibl> </note> - <note n="39" place="bottom"> + <note n="39" type="footnote" place="bottom"> <bibl> - <author>Gessner</author> + <author> + <persName> + <surname>Gessner</surname> + </persName> + </author> , <title level="a">Soziologische Ãœberlegungen zu einer Theorie der angewandten Rechtsvergleichung</title> - , - <editor>Drobnig/Rehbinder</editor> - in: + , in: + <editor> + <persName> + <surname>Drobnig</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Rehbinder</surname> + </persName> + </editor> <biblScope unit="pp">123 (134 ff.)</biblScope> . </bibl> </note> - <note n="40" place="bottom"> + <note n="40" type="footnote" place="bottom"> <bibl> - <author>Nowak</author> + <author> + <persName> + <surname>Nowak</surname> + </persName> + </author> + ( <ref>oben N. 7</ref> ) - <biblScope unit="pp">42</biblScope> + <citedRange unit="pp">42</citedRange> . </bibl> </note> - <note n="41" place="bottom"> + <note n="41" type="footnote" place="bottom"> <bibl> - <note>Für die Bedeutung der funktionalen Äquivalenz beruft man sich häufig auf </note> - <author>Merton</author> - <note>, der sie am Beispiel der Religion näher erläutert hat</note> + <note>Für die Bedeutung der funktionalen Äquivalenz beruft man sich häufig auf</note> + + <author> + <persName> + <surname>Merton</surname> + </persName> + </author> + , + <note>der sie am Beispiel der Religion näher erläutert hat</note> + ( <title level="a">Social Theory and Social Structure</title> , <pubPlace>New York, London</pubPlace> , + <edition>erweiterte Aufl.</edition> <date>1968</date> - , + , S. <biblScope unit="pp">82 ff</biblScope> .): - <note>Eine gemeinsame Religion erfüllt im allgemeinen data".</note> + <note>Eine gemeinsame Religion erfüllt im allgemeinen data</note> + ". + <publisher> + <persName> + <surname>OECD</surname> + </persName> + </publisher> + , <title level="a">The OECD Social Indicator Development Programme - 1976 Progress Report on Phase II</title> - <pubPlace>Paris</pubPlace> ( + <pubPlace>Paris</pubPlace> <date>1977</date> ) <biblScope unit="pp">40</biblScope> . </bibl> </note> - <note n="43" place="bottom"> + <note n="43" type="footnote" place="bottom"> <bibl> - <author>Rheinstein</author> + <author> + <persName> + <surname>Rheinstein</surname> + </persName> + </author> , <title level="a">Marriage Stability, Divorce, and the Law</title> - <pubPlace>Chicago</pubPlace> ( + <pubPlace>Chicago</pubPlace> <date>1972</date> ). </bibl> </note> - <note n="44" place="bottom"> + <note n="44" type="footnote" place="bottom"> <bibl> - <author>Abel</author> + <author> + <persName> + <surname>Abel</surname> + </persName> + </author> + ( <ref>oben N. 4</ref> ) - <biblScope unit="pp">194 ff., 221 f.</biblScope> + <citedRange unit="pp">194 ff., 221 f.</citedRange> - </bibl> <bibl> <note type="signal">Siehe auch</note> - <author>Wilpert</author> + <author> + <persName> + <surname>Wilpert</surname> + </persName> + </author> , <title level="a">Die Messung von Mitbestimmungsnormen — Darstellung eines international vergleichenden Forschungsansatzes</title> - + ( + <publisher> + <persName> + <surname>HM-Paper</surname> + </persName> + </publisher> <date>1979</date> — <biblScope unit="pp">13) 2 ff</biblScope> @@ -793,136 +1470,222 @@ </bibl> <bibl> <note type="signal">Zur Behandlung der „Kultur" in vergleichenden Untersuchungen näher</note> - - - <author>Scheuch</author> + <author> + <persName> + <surname>Scheuch</surname> + </persName> + </author> + ( <ref>oben N. 37</ref> ) - <biblScope unit="pp">197 ff</biblScope> + <citedRange unit="pp">197 ff</citedRange> . </bibl> </note> - <note n="45" place="bottom"> + <note n="45" type="footnote" place="bottom"> <bibl> - <author>Abel</author> + <author> + <persName> + <surname>Abel</surname> + </persName> + </author> + ( <ref>oben N. 4</ref> ) - <biblScope unit="pp">207 ff</biblScope> + <citedRange unit="pp">207 ff</citedRange> . </bibl> <bibl> <note type="signal">Siehe auch</note> - — - <author>Constantinesco</author> + <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="vol">19</biblScope> + ( <date>1978</date> ) <biblScope unit="pp">161 ff</biblScope> . </bibl> </note> - <note n="46" place="bottom"> + <note n="46" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe</note> - <author>Blankenburg</author> + <author> + <persName> + <surname>Blankenburg</surname> + </persName> + </author> + ( <ref>oben N. 33</ref> ) - <biblScope unit="pp">3 ff</biblScope> + <citedRange unit="pp">3 ff</citedRange> . </bibl> </note> - <note n="47" place="bottom"> + <note n="47" type="footnote" place="bottom"> <bibl> - <author>Rose</author> + <author> + <persName> + <surname>Rose</surname> + </persName> + </author> + ( <ref>oben N. 7</ref> ) - <biblScope unit="pp">176</biblScope> + <citedRange unit="pp">176</citedRange> . </bibl> </note> - <note n="48" place="bottom"> + <note n="48" type="footnote" place="bottom"> <bibl> <note type="signal">Dazu etwa</note> - <author>Benda-Beckmann</author> + <author> + <persName> + <surname>Benda-Beckmann</surname> + </persName> + </author> + ( <ref>oben N. 4</ref> ) - <biblScope unit="pp">55 ff</biblScope> + <citedRange unit="pp">55 ff</citedRange> .; - <author>Constantinesco</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Constantinesco</surname> + </persName> + </author> , <title level="a">Ãœber den Stil der „Stilthe orie" in der Rechtsvergleichung</title> , <title level="j">ZvglRW</title> <biblScope unit="vol">78</biblScope> + ( <date>1979</date> ) <biblScope unit="pp">154 ff</biblScope> . - <note>mwNachw. — Eine vergleichbare Debatte über „ähnliche“ und „unähnliche Gesellschaften“ wird seit Dürkheim auch in der Soziologie geführt.</note> + <note>mwNachw. — Eine vergleichbare Debatte über „ähnliche“ und „unähnliche Gesellschaften“ wird seit Dürkheim auch in der Soziologie geführt</note> + . </bibl> <bibl> <note type="signal">Siehe</note> - <author>Payne</author> + <author> + <persName> + <surname>Payne</surname> + </persName> + </author> + ( <ref>oben N. 13</ref> ) - <biblScope unit="pp">16 ff</biblScope> + <citedRange unit="pp">16 ff</citedRange> . </bibl> </note> - <note n="49" place="bottom"> + <note n="49" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe</note> - <author>Zweigert/Kötz</author> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> <biblScope unit="vol">I</biblScope> <biblScope unit="pp">70</biblScope> . </bibl> </note> - <note n="50" place="bottom"> + <note n="50" type="footnote" place="bottom"> <bibl> - <author>Hofstede</author> + <author> + <persName> + <surname>Hofstede</surname> + </persName> + </author> , <title level="a">Cultural Determinants of the Exercise of Power in a Hierarchy</title> - <note>(Mimeographed,</note> + ( + <note>Mimeographed</note> + , <title level="m">European Institute for Advanced Studies in Management Working Paper</title> <date>1977</date> + - <biblScope unit="vol">8</biblScope> ). </bibl> <bibl> <note type="signal">Ebenso für das Arbeitsrecht</note> - <author>Däubler</author> + <author> + <persName> + <surname>Däubler</surname> + </persName> + </author> + ( <ref>oben N. 32</ref> ) - <biblScope unit="pp">33</biblScope> + <citedRange unit="pp">33</citedRange> , - <note>der auch die skandinavischen Länder in diese Gruppe aufnimmt.</note> + <note>der auch die skandinavischen Länder in diese Gruppe aufnimmt</note> + . </bibl> </note> - <note n="51" place="bottom"> + <note n="51" type="footnote" place="bottom"> <bibl> <note type="signal">Dazu</note> - <author>Zweigert/Kötz</author> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> <biblScope unit="vol">1</biblScope> <biblScope unit="pp">110 f</biblScope> - . - <note>— Kritisch</note> - <author>Benda-Beckmann</author> + . — + <note>Kritisch</note> + </bibl> + <bibl> + <author> + <persName> + <surname>Benda-Beckmann</surname> + </persName> + </author> + ( <ref>oben N. 4</ref> ) - <biblScope unit="pp">58 ff</biblScope> + <citedRange unit="pp">58 ff</citedRange> . </bibl> </note> - <note n="52" place="bottom"> + <note n="52" type="footnote" place="bottom"> <bibl> - <author>IDE-International Research Group</author> + <author> + <persName> + <forename>IDE-International</forename> + <forename>Research</forename> + <surname>Group</surname> + </persName> + </author> , <title level="a">Industrial Democracy in Europe</title> - <note>(erscheint bei</note> + ( + <note>erscheint bei</note> <pubPlace>London</pubPlace> <date>1980</date> ) @@ -930,208 +1693,366 @@ . </bibl> </note> - <note n="53" place="bottom"> + <note n="53" type="footnote" place="bottom"> <bibl> - <author>Zweigert/Kötz</author> + <author> + <persName> + <surname>Zweigert</surname> + </persName> + </author> + <author> + <persName> + <surname>Kötz</surname> + </persName> + </author> <biblScope unit="vol">I</biblScope> <biblScope unit="pp">78</biblScope> . </bibl> </note> - <note n="54" place="bottom"/> - <note n="55" place="bottom"> + <note n="54" type="footnote" place="bottom"> + <bibl> + <publisher> + <persName> + <forename>IDE-International</forename> + <forename>Research</forename> + <surname>Group</surname> + </persName> + </publisher> + ( + <ref>oben N. 52</ref> + ) + <citedRange unit="pp">Chapter VIII</citedRange> + . + </bibl> + </note> + <note n="55" type="footnote" place="bottom"> <bibl> <note type="signal">Dafür</note> - <author>Däubler</author> + <author> + <persName> + <surname>Däubler</surname> + </persName> + </author> + ( <ref>oben N. 32</ref> ) - <biblScope unit="pp">33</biblScope> + <citedRange unit="pp">33</citedRange> . </bibl> </note> - <note n="56" place="bottom"> + <note n="56" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe dazu</note> - <author>Rheinstein</author> + <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="vol">34</biblScope> + ( <date>1970</date> ) <biblScope unit="pp">1 ff</biblScope> .; - <author>Bernstein</author> + </bibl> + <bibl> + <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="vol">34</biblScope> + ( <date>1970</date> ) <biblScope unit="pp">443 ff</biblScope> . </bibl> </note> - <note n="57" place="bottom"> + <note n="57" type="footnote" place="bottom"> <bibl> <note type="signal">Dazu etwa</note> - <author>Ruescbemeyer</author> + <author> + <persName> + <surname>Ruescbemeyer</surname> + </persName> + </author> , <title level="a">Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in Germany and the United States</title> + ( <pubPlace>Cambridge, Mass</pubPlace> . <date>1973</date> ); - <author>ders</author> + </bibl> + <bibl> + <author> + <persName> + <surname>ders</surname> + </persName> + </author> ., <title level="a">The Legal Profession in Comparative Perspective</title> - , - <editor>H. M. Johnson</editor> + , in: + <editor> + <persName> + <forename>H.</forename> + <forename>M.</forename> + <surname>Johnson</surname> + </persName> + </editor> , <title level="m">Social System and Legal Process</title> - <pubPlace>San Francisco, Washington, London</pubPlace> ( + <pubPlace>San Francisco, Washington, London</pubPlace> <date>1978</date> ) <biblScope unit="pp">97 ff</biblScope> . </bibl> </note> - <note n="58" place="bottom"> + <note n="58" type="footnote" place="bottom"> <bibl> - <author>Klausa</author> + <author> + <persName> + <surname>Klausa</surname> + </persName> + </author> , <title level="a">Politische Inhaltsanalyse von Rechtslehrertexten</title> , <title level="j">ZfS</title> <biblScope unit="vol">8</biblScope> + ( <date>1979</date> ) <biblScope unit="pp">362 ff</biblScope> . </bibl> </note> - <note n="59" place="bottom"> + <note n="59" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe</note> - <author>Nowak</author> - + <author> + <persName> + <surname>Nowak</surname> + </persName> + </author> + ( <ref>oben N. 7</ref> ) - <biblScope unit="pp">23 ff</biblScope> + <citedRange unit="pp">23 ff</citedRange> .; - <author>Smelser</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Smelser</surname> + </persName> + </author> <biblScope unit="pp">167 ff</biblScope> . </bibl> </note> - <note n="60" place="bottom"> + <note n="60" type="footnote" place="bottom"> <bibl> <note type="signal">Dazu näher</note> - <author>Teune</author> + <author> + <persName> + <surname>Teune</surname> + </persName> + </author> , <title level="a">Analysis and Interpretation in Cross-National Survey Research</title> - , - <editor>Szalai/Petrella</editor> - in: + , in: + <editor> + <persName> + <surname>Szalai</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Petrella</surname> + </persName> + </editor> <biblScope unit="pp">95 (101) ff</biblScope> . </bibl> </note> - <note n="61" place="bottom"> + <note n="61" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe dazu</note> - <author>Nader/Todd</author> + <author> + <persName> + <surname>Nader</surname> + </persName> + </author> + <author> + <persName> + <surname>Todd</surname> + </persName> + </author> , <title level="a">The Disputing Process — Law in Ten Societies</title> - <pubPlace>New York</pubPlace> ( + <pubPlace>New York</pubPlace> <date>1978</date> ). </bibl> </note> - <note n="62" place="bottom"> + <note n="62" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe zum entsprechenden</note> <title level="a">Problem in der Kriminologie</title> - <author>Kaiser</author> - + <author> + <persName> + <surname>Kaiser</surname> + </persName> + </author> + ( <ref>oben N. 22</ref> ) - <biblScope unit="pp">88</biblScope> + <citedRange unit="pp">88</citedRange> </bibl> <bibl> <note type="signal">mwNachw</note> . - <author>Blazicek/Janeksela</author> - ; + <author> + <persName/> + </author> + ; + <author> + <persName> + <surname>Blazicek</surname> + </persName> + </author> + <author> + <persName> + <surname>Janeksela</surname> + </persName> + </author> + ( <ref>oben N. 30</ref> ) - <biblScope unit="pp">235 f., 242</biblScope> + <citedRange unit="pp">235 f., 242</citedRange> . </bibl> </note> - <note n="63" place="bottom"> + <note n="63" type="footnote" place="bottom"> <bibl> - <author>Clinard</author> + <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="vol">6</biblScope> + ( <date>1978</date> ) <biblScope unit="pp">221 ff</biblScope> . </bibl> </note> - <note n="64" place="bottom"> + <note n="64" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe</note> - <author>Abel-Smith/Zander/Brooke</author> + <author> + <persName> + <surname>Abel-Smith</surname> + </persName> + </author> + <author> + <persName> + <surname>Zander</surname> + </persName> + </author> + <author> + <persName> + <surname>Brooke</surname> + </persName> + </author> , <title level="a">Legal Problems and the Citizen</title> - <pubPlace>London</pubPlace> ( + <pubPlace>London</pubPlace> <date>1973</date> ); - <author>Rokumoto</author> + </bibl> + <bibl> + <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="vol">7</biblScope> + ( <date>1978</date> ) <biblScope unit="pp">228 ff</biblScope> .; - <author>Schuyt/Groenendijk/Sloot</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Schuyt</surname> + </persName> + </author> + <author> + <persName> + <surname>Groenendijk</surname> + </persName> + </author> + <author> + <persName> + <surname>Sloot</surname> + </persName> + </author> , <title level="a">Rechtspro bleme oder private Schwierigkeiten — Die Inanspruchnahme von Rechtshilfe in den Nieder landen</title> - , + , in: <title level="j">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> - in: <biblScope unit="vol">5</biblScope> + ( <date>1978</date> ) <biblScope unit="pp">109 ff</biblScope> . </bibl> </note> - <note n="65" place="bottom"> + <note n="65" type="footnote" place="bottom"> <bibl> <note type="signal">Dazu</note> - <author>Podgdrecki</author> + <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="vol">21 No. 1</biblScope> + ( <date>1970</date> ) <biblScope unit="pp">83 (88 ff.)</biblScope> @@ -1140,69 +2061,120 @@ <bibl> <note type="signal">Siehe auch</note> - <author>Ziegen,</author> + <author> + <persName> + <surname>Ziegen</surname> + </persName> + </author> <title level="a">Zur Effek tivität der Rechtssoziologie: die Rekonstruktion der Gesellschaft durch Recht</title> + ( <date>1975</date> ) <biblScope unit="pp">196 ff</biblScope> . </bibl> </note> - <note n="66" place="bottom"> + <note n="66" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe</note> - <author>Podgdrecki</author> + <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> ( + <pubPlace>Den Haag</pubPlace> <date>1977</date> ) <biblScope unit="pp">85 (88 ff.)</biblScope> . </bibl> </note> - <note n="67" place="bottom"> + <note n="67" type="footnote" place="bottom"> <bibl> - <author>Kutchinsky</author> - , + <author> + <persName> + <surname>Kutchinsky</surname> + </persName> + </author> + , „ <title level="a">The Legal Consciousness“: A Survey of Research on Knowledge and Opinion about Law</title> - , - <editor>Podgdrecki/Kaupen/van Houtte/Vinke/Kutchinsky</editor> + , in: + <editor> + <persName> + <surname>Podgdrecki</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Kaupen</surname> + </persName> + </editor> + <editor> + <persName> + <forename>van</forename> + <surname>Houtte</surname> + </persName> + </editor> + / + <editor> + <persName> + <surname>Vinke</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Kutchinsky</surname> + </persName> + </editor> , <title level="m">Knowledge and Opinion about Law</title> - <pubPlace>Bristol</pubPlace> ( + <pubPlace>Bristol</pubPlace> <date>1973</date> ) <biblScope unit="pp">101 (126)</biblScope> . </bibl> </note> - <note n="68" place="bottom"> + <note n="68" type="footnote" place="bottom"> <bibl> - <author>Podgdrecki</author> + <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> - in: - <ref>vorige N</ref> - .) - <biblScope unit="pp">65 (84 ff.)</biblScope> + ( + <ref>vorige N.</ref> + ) + <citedRange unit="pp">65 (84 ff.)</citedRange> . </bibl> </note> - <note n="69" place="bottom"> + <note n="69" type="footnote" place="bottom"> <bibl> - <author>Heintz</author> + <author> + <persName> + <surname>Heintz</surname> + </persName> + </author> , <title level="a">Interkultureller Vergleich</title> - , - <editor>König</editor> + , in: + <editor> + <persName> + <surname>König</surname> + </persName> + </editor> (Hrsg.), <title level="m">Handbuch der empirischen Sozialfor schung</title> , @@ -1214,18 +2186,23 @@ . </bibl> </note> - <note n="70" place="bottom"> + <note n="70" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe</note> - <author>Hegenbarth</author> + <author> + <persName> + <surname>Hegenbarth</surname> + </persName> + </author> , <title level="a">Ãœber methodische und organisatorische Grenzen der empirischen Rechts forschung in Entwicklungsländern</title> , <title level="j">Informationsbrief für Rechtssoziologie</title> + April <date>1979</date> , <biblScope unit="vol">Son derheft 2</biblScope> - , + , S. <biblScope unit="pp">5 ff</biblScope> . </bibl> @@ -1234,111 +2211,171 @@ . </bibl> </note> - <note n="71" place="bottom"> + <note n="71" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe etwa</note> - <author>Gessner</author> + <author> + <persName> + <surname>Gessner</surname> + </persName> + </author> , <title level="a">Recht und Konflikt — Eine soziologische Untersuchungprivatrechtlicher Konflikte in Mexiko</title> + ( <date>1976</date> ) <biblScope unit="pp">37 ff</biblScope> . </bibl> </note> - <note n="72" place="bottom"> + <note n="72" type="footnote" place="bottom"> <bibl> <note type="signal">Vgl</note> . - <author>Heintz</author> + <author> + <persName> + <surname>Heintz</surname> + </persName> + </author> + ( <ref>oben N. 69</ref> ) - <biblScope unit="pp">407</biblScope> + <citedRange unit="pp">407</citedRange> . </bibl> </note> - <note n="73" place="bottom"> + <note n="73" type="footnote" place="bottom"> <bibl> - <note>Da die theoretischen und technischen Erfordernisse solcher Vergleiche in der Tat komplex sind, bestand in der Kriminologie noch Mitte der sechziger Jahre internationale Ãœberein stimmung, daß vergleichenden Studien kein Vorrang zu geben sei.</note> + <note>Da die theoretischen und technischen Erfordernisse solcher Vergleiche in der Tat komplex sind, bestand in der Kriminologie noch Mitte der sechziger Jahre internationale Ãœberein stimmung, daß vergleichenden Studien kein Vorrang zu geben sei</note> + . </bibl> <bibl> <note type="signal">Dazu</note> - <author>Friday</author> + <author> + <persName> + <surname>Friday</surname> + </persName> + </author> , <title level="a">Problems in Comparative Criminology</title> , <title level="j">Int. J. Crim</title> . <biblScope unit="vol">1</biblScope> + ( <date>1973</date> ) <biblScope unit="pp">151 (152)</biblScope> . </bibl> </note> - <note n="74" place="bottom"> + <note n="74" type="footnote" place="bottom"> <bibl> <note type="signal">Zur Anlage vergleichender Studien näher</note> - <author>Rokkan</author> + <author> + <persName> + <surname>Rokkan</surname> + </persName> + </author> , <title level="a">Vergleichende Sozialwissenschaft</title> + ( <date>1972</date> ) <biblScope unit="pp">9 ff</biblScope> .; - <author>Szalai</author> + </bibl> + <bibl> + <author> + <persName> + <surname>Szalai</surname> + </persName> + </author> , <title level="a">The Organization and Execution of Cross-National Survey Research Projects</title> - , - <editor>Szalai/Petrella</editor> - in: + , in: + <editor> + <persName> + <surname>Szalai</surname> + </persName> + </editor> + <editor> + <persName> + <surname>Petrella</surname> + </persName> + </editor> <biblScope unit="pp">49 ff</biblScope> . </bibl> <bibl> <note type="signal">sowie</note> + <publisher> + <persName> + <forename>IDE-International</forename> + <forename>Research</forename> + <surname>Group</surname> + </persName> + </publisher> + ( <ref>oben N. 52</ref> ) - <biblScope unit="pp">Chapter I</biblScope> + <citedRange unit="pp">Chapter I</citedRange> . </bibl> </note> - <note n="75" place="bottom"> + <note n="75" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe</note> - <author>Blegvad</author> + <author> + <persName> + <surname>Blegvad</surname> + </persName> + </author> , <title level="a">Methodological Aspects of the Project „Local Legal Systems</title> - “, - <editor>Kulcsár</editor> + “, in: + <editor> + <persName> + <surname>Kulcsár</surname> + </persName> + </editor> (Hrsg.), <title level="m">Sociology of Law and Legal Sciences</title> - <pubPlace>Budapest</pubPlace> ( + <pubPlace>Budapest</pubPlace> <date>1977</date> ) <biblScope unit="pp">97 (99 ff.)</biblScope> . </bibl> </note> - <note n="76" place="bottom"> + <note n="76" type="footnote" place="bottom"> <bibl> <note type="signal">Dazu näher</note> - <author>Zweigert</author> + <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>1973</date> ) <biblScope unit="pp">403 ff</biblScope> . </bibl> </note> - <note n="77" place="bottom"> + <note n="77" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe etwa zu vorliegenden französischen Untersuchungen</note> - <author>Dörner</author> + <author> + <persName> + <surname>Dörner</surname> + </persName> + </author> , <title level="a">Rechtstatsachenforschung und Gesetzgebung — Hinweise zur Entwicklung einer Gesetzgebungssoziologie in Frank reich</title> , @@ -1349,15 +2386,20 @@ . </bibl> </note> - <note n="78" place="bottom"> + <note n="78" type="footnote" place="bottom"> <bibl> <note type="signal">Siehe</note> - <author>Bryde</author> + <author> + <persName> + <surname>Bryde</surname> + </persName> + </author> , <title level="a">Recht und Konflikt — Mexiko und Afrika</title> , <title level="j">Verfassung und Recht in Obersee</title> <biblScope unit="vol">12</biblScope> + ( <date>1979</date> ), <biblScope unit="pp">159 ff</biblScope> -- GitLab