From 8985e985c957b38ee43f8c451e9e993876676efc Mon Sep 17 00:00:00 2001 From: Christian Boulanger <boulanger@lhlt.mpg.de> Date: Tue, 30 Jul 2024 16:08:47 +0200 Subject: [PATCH] handle bibl elements outside footnotes --- convert-anystyle-data/anystyle-to-tei.ipynb | 95 +-- .../anystyle/10.1515_zfrs-1980-0103.xml | 8 +- .../anystyle/10.1515_zfrs-1980-0104.xml | 2 +- .../tei/10.1111_1467-6478.00057.xml | 236 +++--- .../tei/10.1111_1467-6478.00080.xml | 149 ++-- .../tei/10.1515_zfrs-1980-0103.xml | 677 +++++++++--------- .../tei/10.1515_zfrs-1980-0104.xml | 273 +++---- 7 files changed, 682 insertions(+), 758 deletions(-) diff --git a/convert-anystyle-data/anystyle-to-tei.ipynb b/convert-anystyle-data/anystyle-to-tei.ipynb index 18d2db1..dcd6c09 100644 --- a/convert-anystyle-data/anystyle-to-tei.ipynb +++ b/convert-anystyle-data/anystyle-to-tei.ipynb @@ -319,8 +319,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-07-30T13:21:35.263603300Z", - "start_time": "2024-07-30T13:21:34.796357300Z" + "end_time": "2024-07-30T14:03:11.482551100Z", + "start_time": "2024-07-30T14:03:11.388100200Z" } }, "cell_type": "code", @@ -374,16 +374,26 @@ " return start, end\n", " raise ValueError(f\"Could not find '{string}' in '{container}'\")\n", "\n", - "def add_node(parent, tag, text=\"\", attributes=None, clean_func=None):\n", - " cleaned_text = clean_func(text) if clean_func else text\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", + "def add_node(parent, tag, text=\"\", attributes=None, clean_func=None, preserve=False):\n", + " \"\"\"\n", + " Adds a child node to the parent, optionally adding text and attributes. \n", + " If a clean_func is passed, the text is set after applying the function to it.\n", + " If the `preserve` flag is True, the removed preceding or trailing text is preserved in the xml,\n", + " outside of the node content \n", + " \"\"\"\n", " node = ET.SubElement(parent, tag, (attributes or {}))\n", - " node.text = cleaned_text\n", - " if suffix != \"\":\n", - " node.tail = suffix\n", + " if clean_func:\n", + " cleaned_text = clean_func(text)\n", + " 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", + " node.text = cleaned_text\n", + " if suffix != \"\":\n", + " node.tail = suffix\n", + " else:\n", + " node.text = text\n", " return node\n", "\n", "def create_tei_root():\n", @@ -392,41 +402,46 @@ " })\n", "\n", "def create_tei_header(tei_root, title):\n", - " tei_header = ET.SubElement(tei_root, 'teiHeader')\n", - " file_desc = ET.SubElement(tei_header, 'fileDesc')\n", - " title_stmt = ET.SubElement(file_desc, 'titleStmt')\n", - " ET.SubElement(title_stmt, 'title').text = title\n", - " publication_stmt = ET.SubElement(file_desc, 'publicationStmt')\n", - " ET.SubElement(publication_stmt, 'publisher').text = \"mpilhlt\"\n", - " source_desc = ET.SubElement(file_desc, 'sourceDesc')\n", - " ET.SubElement(source_desc, 'p').text = title\n", + " tei_header = add_node(tei_root, 'teiHeader')\n", + " file_desc = add_node(tei_header, 'fileDesc')\n", + " title_stmt = add_node(file_desc, 'titleStmt')\n", + " add_node(title_stmt, 'title', title)\n", + " publication_stmt = add_node(file_desc, 'publicationStmt')\n", + " add_node(publication_stmt, 'publisher', 'mpilhlt')\n", + " source_desc = add_node(file_desc, 'sourceDesc')\n", + " add_node(source_desc, 'p', title)\n", " return tei_header\n", "\n", "def create_body(text_root):\n", " body = ET.SubElement(text_root, 'body')\n", - " ET.SubElement(body, 'p').text = 'The article text is not part of this document'\n", + " add_node(body, 'p', 'The article text is not part of this document')\n", " return body\n", "\n", - "def anystyle_to_tei(input_xml_path, id):\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", " create_tei_header(tei_root, title=id)\n", - " text_root = ET.SubElement(tei_root, 'text')\n", - " create_body(text_root)\n", + " text_root = add_node(tei_root, 'text')\n", + " body = create_body(text_root)\n", + " # <listBibl> element for <bibl> elements that are not in footnotes, such as a bibliography\n", + " listBibl = add_node(body, 'listBibl')\n", + " # iterate over all sequences (=footnotes) and translate into TEI equivalents\n", " 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", " attributes = {\n", " 'n': cn[0].text,\n", " 'place': 'bottom'\n", " }\n", - " node = add_node(text_root, 'note', attributes=attributes, clean_func=remove_punctuation)\n", + " node = add_node(text_root, 'note', attributes=attributes, clean_func=remove_punctuation, preserve=preserve)\n", " else:\n", - " node = text_root\n", + " # otherwise add to <listBibl> element\n", + " node = listBibl\n", " bibl = None\n", " for child in sequence:\n", " tag = child.tag\n", " text = child.text\n", - " if tag == \"citation-number\": continue\n", + " if tag == \"citation-number\": continue # this has already been taken care of\n", " if (bibl is None # if we do not have a bibl element yet\n", " or bibl.find(tag) and tag != \"note\" # or tag already exists in the current element\n", " or tag in ['signal', 'legal-ref'] # or tag belongs to a specific groups that signal a separate reference\n", @@ -435,38 +450,38 @@ " bibl = ET.SubElement(node, 'bibl')\n", " match tag:\n", " case 'author':\n", - " add_node(bibl, 'author', text, clean_func=remove_punctuation)\n", + " add_node(bibl, 'author', text, clean_func=remove_punctuation, preserve=preserve)\n", " case 'backref':\n", - " add_node(bibl, 'ref', text, clean_func=remove_punctuation)\n", + " add_node(bibl, 'ref', text, clean_func=remove_punctuation, preserve=preserve)\n", " case 'container-title':\n", - " add_node(bibl, 'title', text, {'level': 'm'}, clean_func= clean_container)\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)\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)\n", + " add_node(bibl, 'date', text, clean_func= extract_year, preserve=preserve)\n", " case 'editor':\n", - " add_node(bibl, 'editor', text, clean_func=clean_editor)\n", + " add_node(bibl, 'editor', text, clean_func=clean_editor, preserve=preserve)\n", " case 'note':\n", " add_node(bibl, 'note', text) \n", " case 'journal':\n", - " add_node(bibl, 'title', text, {'level': 'j'}, clean_func= clean_container)\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)\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)\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)\n", + " add_node(bibl, 'note', text, {'type': 'signal'}, clean_func=remove_punctuation, preserve=preserve)\n", " case 'title':\n", - " add_node(bibl, 'title', text, {'level': 'a'}, clean_func=remove_punctuation)\n", + " add_node(bibl, 'title', text, {'level': 'a'}, clean_func=remove_punctuation, preserve=preserve)\n", " case 'volume':\n", - " add_node(bibl, 'biblScope', text, {'unit': 'vol'}, clean_func = remove_punctuation)\n", + " add_node(bibl, 'biblScope', text, {'unit': 'vol'}, clean_func = remove_punctuation, preserve=preserve)\n", " return prettify(tei_root)\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", " output_path = f'tei/{id}.xml'\n", - " output_xml = anystyle_to_tei(input_path, id)\n", + " output_xml = anystyle_to_tei(input_path, id, preserve=True)\n", " print(f'Writing {output_path}')\n", " with open(output_path, 'w', encoding='utf-8') as output_file:\n", " output_file.write(output_xml)" @@ -484,7 +499,7 @@ ] } ], - "execution_count": 15 + "execution_count": 17 }, { "metadata": {}, diff --git a/convert-anystyle-data/anystyle/10.1515_zfrs-1980-0103.xml b/convert-anystyle-data/anystyle/10.1515_zfrs-1980-0103.xml index acfacf3..fbb1113 100644 --- a/convert-anystyle-data/anystyle/10.1515_zfrs-1980-0103.xml +++ b/convert-anystyle-data/anystyle/10.1515_zfrs-1980-0103.xml @@ -28,9 +28,9 @@ <location>Freiburg</location> <date>1978.</date> <signal>Der ausführliche Forschungsbericht von </signal> - <author>Richard Rosellen</author> + <author>Richard Rosellen</author> <note> erscheint in Kürze unter dem Titel</note> - <title>.Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung',</title> + <title>'Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung',</title> <location>Berlin,</location> <date>voraussichtlich 1980.</date> </sequence> @@ -56,7 +56,7 @@ </sequence> <sequence> <citation-number>7</citation-number> - <signal>Zum Konzept der .Thematisierung von Recht' vgl.</signal> + <signal>Zum Konzept der 'Thematisierung von Recht' vgl.</signal> <author>Luhmann</author> <date>1980,</date> <pages>S. 99—112.</pages> @@ -133,7 +133,7 @@ <citation-number>18</citation-number> <title>Projektbericht ,Rechtshilfebedürfnisse sozial Schwacher*,</title> <author>(Blankenburg/Gorges/Reifner; Ticmann). </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> <date>Ende 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> </sequence> diff --git a/convert-anystyle-data/anystyle/10.1515_zfrs-1980-0104.xml b/convert-anystyle-data/anystyle/10.1515_zfrs-1980-0104.xml index 55c930c..b1c6de4 100644 --- a/convert-anystyle-data/anystyle/10.1515_zfrs-1980-0104.xml +++ b/convert-anystyle-data/anystyle/10.1515_zfrs-1980-0104.xml @@ -3,7 +3,7 @@ <sequence> <ignore>Abgekürzt werden zitiert:</ignore> <editor>Armer/Grimshaw (Hrsg.),</editor> - <title>Comparative Social ResearchMethodological Problems and Strategies</title> + <title>Comparative Social Research - Methodological Problems and Strategies</title> <location>(New York, London, Sydney, Tokio</location> <date>1973);</date> <editor>Drobnig/ Rebbinder (Hrsg.),</editor> 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 4805746..ae9839b 100644 --- a/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml +++ b/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml @@ -16,17 +16,18 @@ <text> <body> <p>The article text is not part of this document</p> + <listBibl/> </body> <note n="1" place="bottom"> <bibl> <author>A. Phillips</author> - ‘ + , <title level="a">Citizenship and Feminist Politics</title> - in + ’ <title level="m">Citizenship</title> - ed. + , <editor> G. Andrews</editor> - ( + ed. <date>1991</date> ) <biblScope unit="pp">77</biblScope> @@ -36,9 +37,9 @@ <note n="2" place="bottom"> <bibl> <author>T. Brennan and C. Pateman</author> - ‘“ + , <title level="a">Mere Auxiliaries to the Commonwealthâ€: Women and the Origins of Liberalism</title> - ( + ’ <date>1979</date> ) <biblScope unit="vol">27</biblScope> @@ -59,21 +60,19 @@ <note n="4" place="bottom"> <bibl> <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> - ed. + , <editor> M. Thornton</editor> - ( + ed. <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> @@ -86,9 +85,9 @@ <note n="5" place="bottom"> <bibl> <author>S. Walby</author> - ‘ + , <title level="a">Is Citizenship Gendered?</title> - ( + ’ <date>1994</date> ) <biblScope unit="vol">28</biblScope> @@ -99,10 +98,11 @@ <note n="6" place="bottom"> <bibl> <author>I. Kant</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> <date>1991</date> ) @@ -113,13 +113,13 @@ <note n="7" place="bottom"> <bibl> <author>U. Vogel</author> - ‘ + , <title level="a">Marriage and the Boundaries of Citizenship</title> - in + ’ <title level="m">The Condition of Citizenship</title> - ed. + , <editor> B. van Steenbergen</editor> - ( + ed. <date>1994</date> ) <biblScope unit="pp">75</biblScope> @@ -129,11 +129,11 @@ <note n="8" place="bottom"> <bibl> <author>N. Fraser and L. Gordon</author> - ‘ + , <title level="a">Civil Citizenship against Social Citizenship?</title> ’ <ref>in id</ref> - p. + ., <biblScope unit="pp">97</biblScope> . </bibl> @@ -143,7 +143,7 @@ <author>Vogel</author> , <ref>id</ref> - p. + ., <biblScope unit="pp">79</biblScope> . <author>W. Blackstone</author> @@ -161,7 +161,7 @@ <author>Vogel</author> , <ref>op. cit., n. 7</ref> - pp. + , <biblScope unit="pp">80–1</biblScope> . </bibl> @@ -171,7 +171,6 @@ <editor>F. Haug </editor> (ed.), <title level="a">Female Sexualization: A Collective Work of Memory</title> - ( <date>1987</date> ) <biblScope unit="pp">196</biblScope> @@ -181,9 +180,9 @@ <note n="13" place="bottom"> <bibl> <author>A. Bottomley</author> - ‘ + , <title level="a">Self and Subjectivities: Languages of Claim in Property Law</title> - ( + ’ <date>1993</date> ) <biblScope unit="vol">20</biblScope> @@ -195,9 +194,9 @@ <note n="14" place="bottom"> <bibl> <author>D. West</author> - ‘ + , <title level="a">Power and Formation: New Foundations for a Radical Concept of Power</title> - ( + ’ <date>1987</date> ) </bibl> @@ -214,9 +213,9 @@ <author>M. Foucault</author> , <title level="a">Power/Knowledge: Selected Interviews and Other Writings 1972–1977</title> - ed. + , <editor> C. Gordon</editor> - ( + ed. <date>1980</date> ) <biblScope unit="pp">98</biblScope> @@ -227,9 +226,9 @@ <bibl> <note type="signal">For a detailed analysis of legal method and the political role it plays, see</note> <author>M.J. Mossman</author> - ‘ + , <title level="a">Feminism, and Legal Method: The Difference it Makes</title> - ( + ’ <date>1986</date> ) <biblScope unit="vol">3</biblScope> @@ -258,7 +257,6 @@ <author>M.J. Horwitz</author> , <title level="a">The Transformation of American Law, 1780–1860</title> - ( <date>1977</date> ) <biblScope unit="pp">160</biblScope> @@ -270,7 +268,6 @@ <author>M. Grossberg</author> , <title level="a">Governing the Hearth: Law and the Family in Nineteenth-Century America</title> - ( <date>1985</date> ) <biblScope unit="pp">ix</biblScope> @@ -289,7 +286,6 @@ <author>S. Staves</author> , <title level="a">Married Women’s Separate Property in England, 1660–1833</title> - ( <date>1990</date> ) <biblScope unit="vol">4</biblScope> @@ -305,9 +301,9 @@ <bibl> <note type="signal">See</note> <author>R.B. Siegel</author> - ‘“ + , <title level="a">The Rule of Loveâ€: Wife Beating as Prerogative and Privacy</title> - ( + ’ <date>1996</date> ) <biblScope unit="vol">105</biblScope> @@ -322,7 +318,6 @@ <author>C. Pateman</author> , <title level="a">The Sexual Contract</title> - ( <date>1988</date> ). </bibl> @@ -331,7 +326,6 @@ <author>K. O’Donovan</author> , <title level="a">Family Matters</title> - ( <date>1993</date> ), <biblScope unit="pp">especially 43–59</biblScope> @@ -362,10 +356,11 @@ </bibl> <bibl> <note type="signal">see</note> + ( </bibl> <bibl> <ref type="legal">R. v. L</ref> - ( + . <date>1991</date> ) </bibl> @@ -379,7 +374,7 @@ </bibl> <bibl> <ref type="legal">R. v. R</ref> - [ + . <date>1991</date> ] <biblScope unit="vol">2</biblScope> @@ -394,13 +389,13 @@ <note n="24" place="bottom"> <bibl> <author>M. Freeman</author> - ‘ + , <title level="a">Contracting in the Haven: Balfour v. Balfour Revisited</title> - in + ’ <title level="m">Exploring the Boundaries of Contract</title> - ed. + , <editor> R. Halson</editor> - ( + ed. <date>1996</date> ) <biblScope unit="pp">74</biblScope> @@ -408,7 +403,6 @@ <author>R. Collier</author> , <title level="a">Masculinity, Law and the Family</title> - ( <date>1995</date> ) <biblScope unit="pp">127 and throughout</biblScope> @@ -442,23 +436,23 @@ <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> ., <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> - ‘ + , <title level="a">Private Ordering in Family Law – Will Women Benefit?</title> - in + ’ <title level="m">Thornton</title> , <ref>op. cit., n. 4</ref> @@ -467,9 +461,9 @@ <bibl> <note type="signal">For a feminist critique of contract in the American context, see</note> <author>C. Dalton</author> - ‘ + , <title level="a">An Essay in the Deconstruction of Contract Doctrine</title> - ( + ’ <date>1985</date> ) <biblScope unit="vol">94</biblScope> @@ -484,7 +478,6 @@ <author>L. J. Weitzman</author> , <title level="a">The Marriage Contract: Spouses, Lovers, and the Law</title> - ( <date>1981</date> ) <biblScope unit="pp">347 ff</biblScope> @@ -496,7 +489,7 @@ <author>Grossberg</author> , <ref>op. cit., n. 18</ref> - p. + , <biblScope unit="pp">52</biblScope> . </bibl> @@ -504,7 +497,6 @@ <note n="29" place="bottom"> <bibl> <author>Balfour v. Balfour</author> - [ <date>1919</date> ] <biblScope unit="pp">2 K.B. 571</biblScope> @@ -528,7 +520,6 @@ <author>M.C. Regan Jr</author> ., <title level="a">Family Law and the Pursuit of Intimacy</title> - ( <date>1993</date> ). </bibl> @@ -560,7 +551,7 @@ <author>Thornton</author> , <ref>op. cit</ref> - ( + . <date>1996</date> ), n. 4. </bibl> @@ -570,7 +561,7 @@ <author>Grossberg</author> , <ref>op. cit., n. 18</ref> - p. + , <biblScope unit="pp">38</biblScope> . </bibl> @@ -579,13 +570,13 @@ <bibl> <note type="signal">Compare</note> <author>U. Vogel</author> - ‘ + , <title level="a">Is Citizenship Gender-Specific?</title> - in + ’ <title level="m">The Frontiers of Citizenship</title> - eds. + , <editor> U. Vogel and M. Moran</editor> - ( + eds. <date>1991</date> ) <biblScope unit="pp">59</biblScope> @@ -599,7 +590,6 @@ </bibl> <bibl> <ref type="legal">Bradwell v. Illinois 83 U.S. (16 Wall) 130</ref> - ( <date>1873</date> ). </bibl> @@ -610,7 +600,6 @@ <author>J. Pahl</author> , <title level="a">Money and Marriage</title> - ( <date>1989</date> ) <biblScope unit="pp">5</biblScope> @@ -629,7 +618,6 @@ <author>S. Parker, P. Parkinson, and J. Behrens</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 @@ -640,9 +628,9 @@ <bibl> <note type="signal">For discussion of the position during marriage, see</note> <author>J.T. Oldham</author> - ‘ + , <title level="a">Management of the Community Estate during an Intact Marriage</title> - ( + ’ <date>1993</date> ) <biblScope unit="vol">56</biblScope> @@ -653,9 +641,10 @@ <bibl> <note type="signal">For a discussion of the genesis of the two systems, see</note> <author>C. Donahue, Jr</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> @@ -689,13 +678,12 @@ <bibl> <note type="signal">For discussion of sex and legal subjecthood, see</note> <author>N. Naffine</author> - ‘ <title level="a">Sexing the Subject (of Law)</title> - in + ’ <editor>Thornton</editor> - , + in <ref>op. cit</ref> - ( + . <date>1995</date> ), <ref>n. 4</ref> @@ -713,7 +701,8 @@ <author>J. Nedelsky</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> @@ -725,7 +714,6 @@ <author>C.B. Macpherson</author> , <title level="a">Democratic Theory: Essays in Retrieval</title> - ( <date>1973</date> ) <biblScope unit="pp">120</biblScope> @@ -737,9 +725,9 @@ <note type="signal">For example</note> , <author>N. Howell</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> @@ -752,9 +740,9 @@ <note n="44" place="bottom"> <bibl> <author>P. Baron</author> - ‘ + , <title level="a">The Free Exercise of Her Will: Women and Emotionally Transmitted Debt</title> - ( + ’ <date>1995</date> ) <biblScope unit="vol">13</biblScope> @@ -766,13 +754,13 @@ <note n="45" place="bottom"> <bibl> <ref>id</ref> - p. + ., <biblScope unit="pp">24</biblScope> ; <author>B. Fehlberg</author> - ‘ + , <title level="a">The Husband, the Bank, the Wife and Her Signature</title> - ( + ’ <date>1994</date> ) <biblScope unit="vol">57</biblScope> @@ -787,7 +775,6 @@ </bibl> <bibl> <ref type="legal">Barclays Bank v. O’Brien</ref> - [ <date>1994</date> ] </bibl> @@ -804,14 +791,15 @@ <author>Baron</author> , <ref>op. cit., n. 44</ref> - p. + , <biblScope unit="pp">34</biblScope> ; <author>M. Richardson</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> @@ -833,8 +821,9 @@ </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> @@ -850,9 +839,9 @@ <note n="48" place="bottom"> <bibl> <author>B. Fehlberg</author> - ‘ + , <title level="a">The Husband, the Bank, the Wife and Her Signature – the Sequel</title> - ( + ’ <date>1996</date> ) <biblScope unit="vol">59</biblScope> @@ -865,7 +854,6 @@ <note n="49" place="bottom"> <bibl> <ref type="legal">National Australia Bank Ltd v. Garcia</ref> - ( <date>1996</date> ) <biblScope unit="vol">39</biblScope> @@ -874,7 +862,6 @@ </bibl> <bibl> <ref type="legal">577 (N.S.W.C.A.). 50</ref> - ( <date>1991</date> ) </bibl> @@ -899,7 +886,7 @@ </bibl> <bibl> <ref type="legal">Trade Practices Act 1974 (Cwth.)</ref> - s. + , <biblScope unit="pp">52</biblScope> , <note>and the</note> @@ -908,7 +895,6 @@ <ref type="legal">Contracts Review Act</ref> <date>1980</date> <biblScope unit="vol">54</biblScope> - ( <date>1994</date> ) <biblScope unit="pp">A.S.C. 56–270 (N.S.W.C.A.)</biblScope> @@ -923,7 +909,6 @@ </bibl> <bibl> <ref type="legal">in Barclays Bank v. O’Brien</ref> - [ <date>1994</date> ] <biblScope unit="pp">1 A.C. 180</biblScope> @@ -935,7 +920,6 @@ </bibl> <bibl> <ref type="legal">Banco Exterior Internacional v. Mann</ref> - [ <date>1995</date> ] </bibl> @@ -949,7 +933,6 @@ <author>See I.J. Hardingham and M.A. Neave</author> , <title level="a">Australian Family Property Law</title> - ( <date>1984</date> ) <biblScope unit="pp">94</biblScope> @@ -962,7 +945,6 @@ <author>K. O’Donovan</author> , <title level="a">Sexual Divisions in Law</title> - ( <date>1985</date> ), <biblScope unit="pp">especially 112–18</biblScope> @@ -979,9 +961,9 @@ <bibl> <note type="signal">See</note> <author>C.A. Reich</author> - ‘ + , <title level="a">The New Property</title> - ( + ’ <date>1964</date> ) <biblScope unit="vol">73</biblScope> @@ -998,7 +980,6 @@ <author>M.A. Glendon</author> , <title level="a">The New Family and the New Property</title> - ( <date>1981</date> ). </bibl> @@ -1022,9 +1003,9 @@ <bibl> <note type="signal">For a discussion of recent trends in Australia, see</note> <author>P. Parkinson</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> @@ -1037,9 +1018,9 @@ <bibl> <note type="signal">For discussion, see</note> <author>J. Riley</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> @@ -1053,9 +1034,9 @@ <bibl> <note type="signal">The</note> <author>Hon. Justice T. E. Lindenmayer and P.A. Doolan</author> - ‘ + , <title level="a">When Bankruptcy and Family Law Collide</title> - ( + ’ <date>1994</date> ) <biblScope unit="vol">8</biblScope> @@ -1069,9 +1050,9 @@ <note n="63" place="bottom"> <bibl> <author>B. Bennett</author> - ‘ + , <title level="a">The Economics of Wifing Services: Law and Economics on the Family</title> - ( + ’ <date>1991</date> ) <biblScope unit="vol">18</biblScope> @@ -1089,7 +1070,7 @@ <author>Thornton</author> , <ref>op. cit</ref> - ( + . <date>1995</date> ), n. 4. </bibl> @@ -1097,7 +1078,6 @@ <note n="65" place="bottom"> <bibl> <note>N.S.W.C.A., unreported,</note> - 23 May <date>1994</date> . </bibl> @@ -1109,7 +1089,8 @@ , <title level="a">The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in America</title> - ( + + <date>1985</date> ). </bibl> @@ -1119,7 +1100,6 @@ <author>M.L. Shanley</author> , <title level="a">Feminism, Marriage, and the Law in Victorian England, 1850–1895</title> - ( <date>1989</date> ) <biblScope unit="pp">46</biblScope> @@ -1160,11 +1140,12 @@ <author>M. Neave,</author> ‘ <title level="a">Three Approaches to Family Law Disputes – Intention/Belief, Unjust Enrichment and Unconscionability’</title> - in + + <title level="m">Equity, Fiduciaries and Trusts</title> - ed. + , <editor> T.G. Youdan</editor> - ( + ed. <date>1989</date> ) <biblScope unit="pp">262–4</biblScope> @@ -1175,9 +1156,9 @@ <bibl> <note type="signal">For an interesting case study of this phenomenon, see</note> <author>L. Sarmas</author> - ‘ + , <title level="a">Storytelling and the Law: A Case Study of Louth v. Diprose</title> - ( + ’ <date>1994</date> ) <biblScope unit="vol">19</biblScope> @@ -1190,9 +1171,9 @@ <note n="71" place="bottom"> <bibl> <author>C. Colebrook</author> - ‘ + , <title level="a">Feminist Ethics and Historicism</title> - ( + ’ <date>1996</date> ) <biblScope unit="vol">11</biblScope> @@ -1206,7 +1187,6 @@ <author>M. Albertson Fineman</author> , <title level="a">The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies</title> - ( <date>1995</date> ) <biblScope unit="pp">7</biblScope> @@ -1217,9 +1197,9 @@ <bibl> <note type="signal">Compare</note> <author>K. O’Donovan</author> - ‘ + , <title level="a">Should all Maintenance of Spouses be abolished?</title> - ( + ’ <date>1982</date> ) <biblScope unit="vol">45</biblScope> @@ -1243,13 +1223,11 @@ <author>M.D.A. Freeman and C.M. Lyon</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> , <title level="a">De Facto Relationships: Issues Paper</title> - ( <date>1981</date> ). </bibl> @@ -1259,24 +1237,21 @@ <author>Eds. of the Harvard Law Review</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> - ( <date>1995</date> ); <author>C. Overington</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> @@ -1288,7 +1263,6 @@ <author>Lesbian and Gay Rights Service</author> , <title level="a">The Bride Wore Pink; Legal Recognition of Our Relationships</title> - ( <date>1994</date> ). </bibl> @@ -1296,7 +1270,7 @@ <note n="77" place="bottom"> <bibl> <ref>id</ref> - p. + ., <biblScope unit="pp">3</biblScope> . </bibl> 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 ef10849..42e48cd 100644 --- a/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml +++ b/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml @@ -16,18 +16,19 @@ <text> <body> <p>The article text is not part of this document</p> + <listBibl/> </body> <note n="1" place="bottom"> <bibl> <note type="signal">For a contrary view, see</note> <author>G. Jones</author> - ‘ + , <title level="a">“Traditional†Legal Scholarship: a Personal View</title> - in + ’ <title level="m">What Are Law Schools For?</title> - ed. + , <editor> P. Birks</editor> - ( + ed. <date>1996</date> ) <biblScope unit="pp">14</biblScope> @@ -37,9 +38,9 @@ <note n="3" place="bottom"> <bibl> <author>R. Goff</author> - ‘ + , <title level="a">The Search for Principle</title> - ( + ’ <date>1983</date> ) <title level="j">Proceeedings of the British Academy</title> @@ -51,7 +52,6 @@ <author>A. Dicey</author> , <title level="a">Can English Law be taught at the Universities?</title> - ( <date>1883</date> ) <biblScope unit="pp">20</biblScope> @@ -63,7 +63,6 @@ <author>J. Smith</author> , <title level="a">The Law of Contract</title> - ( <date>1989</date> ) </bibl> @@ -73,9 +72,9 @@ <note type="signal">See, for example</note> , <author>D. Kennedy</author> - ‘ + , <title level="a">Form and substance in Private Law Ajudication</title> - ( + ’ <date>1976</date> ) <biblScope unit="vol">89</biblScope> @@ -88,9 +87,9 @@ <note n="7" place="bottom"> <bibl> <author>B. Hepple</author> - ‘ + , <title level="a">The Renewal of the Liberal Law Degree</title> - ( + ’ <date>1996</date> ) <title level="j">Cambridge Law J</title> @@ -102,13 +101,13 @@ <note n="8" place="bottom"> <bibl> <author>P.A. Thomas</author> - ‘ + , <title level="a">Introduction</title> - in + ’ <title level="m">Socio-Legal Studies</title> - ed. + , <editor> P.A. Thomas</editor> - ( + ed. <date>1997</date> ) <biblScope unit="pp">19</biblScope> @@ -120,7 +119,6 @@ <author>R. Cotterrell</author> , <title level="a">Law’s Community</title> - ( <date>1995</date> ) <biblScope unit="pp">296</biblScope> @@ -130,9 +128,8 @@ <note n="10" 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> - ‘ <title level="a">Company Law</title> - in + ’ <editor>Thomas</editor> , <ref>op. cit., n. 8</ref> @@ -146,15 +143,12 @@ <note>Some fail wholly. It is difficult to see any effect on academic legal education that resulted from</note> <author>Lady Marre’s</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> @@ -167,7 +161,6 @@ ). <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> @@ -175,7 +168,6 @@ <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> - ( <biblScope unit="pp">para. 31</biblScope> ). <note>This has yet to happen.</note> @@ -186,14 +178,12 @@ <author>National Committee of Inquiry into Higher Education</author> , <title level="a">Higher Education in the learning society</title> - ( <date>1997</date> ) <note>(the Dearing report);</note> <author>ACLEC</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> @@ -211,10 +201,11 @@ </bibl> <bibl> <note type="signal">See</note> + ( <author>A. Bradney and F. Cownie</author> - ‘ + , <title level="a">Working on the Chain Gang?</title> - ( + ’ <date>1996</date> ) <biblScope unit="vol">2</biblScope> @@ -226,9 +217,9 @@ <note n="15" place="bottom"> <bibl> <author>J. MacFarlane, M. Jeeves, and A. Boon</author> - ‘ + , <title level="a">Education for Life or for Work?</title> - ( + ’ <date>1987</date> ) <biblScope unit="vol">137</biblScope> @@ -241,13 +232,12 @@ <note n="16" place="bottom"> <bibl> <author>T.H. Huxley</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> @@ -257,14 +247,15 @@ <note n="17" place="bottom"> <bibl> <author>J.S. Mill</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> - ed. + , <editor> J.M. Robson</editor> - ( + ed. <date>1984</date> ) <biblScope unit="pp">218</biblScope> @@ -294,7 +285,6 @@ <author>F.R. Leavis</author> , <title level="a">Education and the University</title> - ( <date>1948</date> ) <biblScope unit="vol">28</biblScope> @@ -307,9 +297,9 @@ <note type="signal">See, further</note> , <author>A. Bradney</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> @@ -322,10 +312,10 @@ <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> - p. + , <biblScope unit="pp">59. 23</biblScope> + p. <title level="j">S. Turow, One L</title> - ( <date>1977</date> ) <biblScope unit="pp">106</biblScope> @@ -335,9 +325,9 @@ <note n="24" place="bottom"> <bibl> <author>O. Kahn-Freund</author> - ‘ + , <title level="a">Reflections on Legal Education</title> - ( + ’ <date>1966</date> ) <biblScope unit="vol">29</biblScope> @@ -350,7 +340,6 @@ <note n="25" place="bottom"> <bibl> <note>Kahn-Freund believed ... legal argument</note> - ( <author>Kahn-Freund</author> , <ref>id</ref> @@ -362,7 +351,7 @@ <author>Leavis</author> , <ref>op. cit., n. 20</ref> - p. + , <biblScope unit="pp">120</biblScope> . </bibl> @@ -377,7 +366,6 @@ <author>M. King</author> , <title level="a">The New English Literatures</title> - ( <date>1980</date> ) <biblScope unit="pp">at 216–17</biblScope> @@ -388,7 +376,7 @@ <note n="30" place="bottom"> <bibl> <title level="a">Jurisprudence by Sir John Salmond</title> - ed. + , <editor> G. Willliams (10th ed</editor> ., <date>1947</date> @@ -406,7 +394,6 @@ , <author>E. Durkheim</author> <title level="a">The Division of Labour in Society</title> - ( <date>1933</date> ) <biblScope unit="pp">68</biblScope> @@ -418,16 +405,14 @@ <author>M. Le Brun and R. Johnstone</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> </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> @@ -438,9 +423,9 @@ <bibl> <note type="signal">For a survey of CLS and feminist literature on this general point, see</note> <author>W. Conklin</author> - ‘ + , <title level="a">The Invisible Author of Legal Authority</title> - ( + ’ <date>1996</date> ) <biblScope unit="vol">VII</biblScope> @@ -452,9 +437,9 @@ <note n="33" place="bottom"> <bibl> <author>R. Collier</author> - ‘ + , <title level="a">Masculinism, Law and Law Teaching</title> - ( + ’ <date>1991</date> ) <biblScope unit="vol">19</biblScope> @@ -466,9 +451,9 @@ <note n="34" place="bottom"> <bibl> <author>P. McAuslan</author> - ‘ + , <title level="a">Administrative Law, Collective Consumption and Judicial Policy</title> - ( + ’ <date>1983</date> ) <biblScope unit="vol">46</biblScope> @@ -483,7 +468,7 @@ <author>Le Brun and Johnstone</author> , <ref>op. cit, n. 32</ref> - pp. + , <biblScope unit="pp">71–5</biblScope> . </bibl> @@ -499,9 +484,9 @@ <note n="39" place="bottom"> <bibl> <author>P. Samuelson</author> - ‘ + , <title level="a">The Convergence of the Law School and the University</title> - ( + ’ <date>1975</date> ) <biblScope unit="vol">44</biblScope> @@ -513,9 +498,8 @@ <note n="40" place="bottom"> <bibl> <author>P. Harris and M. Jones</author> - ‘ <title level="a">A Survey of Law Schools in the United Kingdom, 1996</title> - ( + ’ <date>1997</date> ) <biblScope unit="vol">31</biblScope> @@ -527,9 +511,9 @@ <note n="41" place="bottom"> <bibl> <author>J. Wilson</author> - ‘ + , <title level="a">A third survey of university legal education</title> - ( + ’ <date>1993</date> ) <biblScope unit="vol">13</biblScope> @@ -544,6 +528,7 @@ </bibl> <bibl> <note type="signal">Harris and</note> + ( <author>Jones</author> , <ref>op. cit., n. 40</ref> @@ -557,7 +542,6 @@ <author>P. Leighton, T. Mortimer, and N. Whatley</author> , <title level="a">Law Teachers: Lawyers or Academics?</title> - ( <date>1995</date> ) </bibl> @@ -573,9 +557,9 @@ <note n="45" place="bottom"> <bibl> <author>L. Skwarok</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> @@ -587,9 +571,9 @@ <note n="46" place="bottom"> <bibl> <author>N. Bastin</author> - ‘ + , <title level="a">Law, Law Staff and CNAA Business Studies Degree Courses</title> - ( + ’ <date>1985</date> ) <biblScope unit="vol">19</biblScope> @@ -601,9 +585,9 @@ <note n="47" place="bottom"> <bibl> <author>A. Ridley</author> - ‘ + , <title level="a">Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?</title> - ( + ’ <date>1994</date> ) <biblScope unit="vol">28</biblScope> @@ -615,9 +599,9 @@ <note n="48" place="bottom"> <bibl> <author>G. Cartan and T. Vilkinas</author> - ‘ + , <title level="a">Legal Literacy for Managers: The Role of the Educator</title> - ( + ’ <date>1990</date> ) <biblScope unit="vol">24</biblScope> @@ -644,13 +628,13 @@ <note n="51" place="bottom"> <bibl> <author>P. Birks</author> - ‘ + , <title level="a">Short Cuts</title> - in + ’ <title level="m">Pressing Problems in the Law</title> - ed. + , <editor> P. Birks</editor> - ( + ed. <date>1994</date> ) <biblScope unit="pp">10–24</biblScope> @@ -662,7 +646,7 @@ <author>Ridley</author> , <ref>op. cit., n. 47</ref> - p. + , <biblScope unit="pp">283</biblScope> . </bibl> @@ -672,7 +656,7 @@ <author>Cartan and Vilkinas</author> , <ref>op. cit., n. 48</ref> - p. + , <biblScope unit="pp">248</biblScope> . </bibl> @@ -680,9 +664,9 @@ <note n="54" place="bottom"> <bibl> <author>P. Harris</author> - ‘ + , <title level="a">Curriculum Development in Legal Studies</title> - ( + ’ <date>1986</date> ) <biblScope unit="vol">20</biblScope> @@ -706,7 +690,6 @@ <author>G. Steiner</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.xml b/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml index 91d9884..8298a48 100644 --- a/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml +++ b/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml @@ -16,6 +16,312 @@ <text> <body> <p>The article text is not part of this document</p> + <listBibl> + <bibl/> + <bibl> + <author>Baumgärtei, Gottfried</author> + , + <date>1976</date> + : + <title level="a">Gleicher Zugang zum Recht für alle</title> + . + </bibl> + <bibl> + <author>Bender, Rolf und Rolf Schumacher</author> + , + <date>1980</date> + : + <title level="a">Erfolgsbarrieren vor Gericht.</title> + + <author>Black, Donald</author> + , + <date>1973</date> + : + <title level="a">The Mobilization of Law</title> + , + <title level="j">Journal of Legal Studies</title> + in: + <biblScope unit="vol">2</biblScope> + . + </bibl> + <bibl> + <author>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut</author> + , + <date>1972</date> + : + <title level="a">Der lange Weg in die Berufung</title> + , + <editor> Bender, Rolf </editor> + (Hrsg.): + <title level="m">Tatsachenforschung in der Justiz</title> + . + </bibl> + <bibl> + <author>Blankenburg, Erhard</author> + , + <date>1976</date> + : + <title level="a">Nichtkriminalisierung als Struktur und Routine</title> + , + <editor> Göppinger</editor> + , + <title level="a">Hans und Günter Kaiser: Kriminologie und Strafverfahren</title> + . + </bibl> + <bibl> + <author>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke</author> + , + <date>1978</date> + : + <title level="a">Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle</title> + . + </bibl> + <bibl> + <author>Blankenburg, Erhard; Schönholz, Siegfried, unter Mitarbeit von Ralf Rogowski</author> + , + <date>1979</date> + : + <title level="a">Zur Soziologie des Arbeitsgerichtsverfahrens</title> + . + </bibl> + <bibl> + <author>Blankenburg, Erhard</author> + , + <date>1980</date> + : + <title level="a">Recht als gradualisiertes Konzept</title> + , + <editor> Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner </editor> + (Hrsg.): + <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title> + , + <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> + <biblScope unit="vol">Bd. 6. Opladen</biblScope> + . + </bibl> + <bibl> + <author>Carlin, Jerome-, Jan Howard und Sheldon Messinger</author> + , + <date>1967</date> + : + <title level="a">Civil Justice and the Poor</title> + . + <author>Richard /Lowy, Michael</author> + , + <date>1974</date> + /75; + <title level="a">Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner</title> + , + <title level="j">Law and Society Review</title> + , + <biblScope unit="vol">vol. 9</biblScope> + , + <biblScope unit="pp">675—694</biblScope> + . + </bibl> + <bibl> + <author>Feest, Johannes/Blankenburg, Erhard</author> + , + <date>1972</date> + : + <title level="a">Die Definitionsmacht der Polizei</title> + . + </bibl> + <bibl> + <author>Felstiner, William L. F</author> + ., + <date>1974</date> + /75: + <title level="a">Influences of Social Organization on Dispute processing</title> + , + <title level="j">Law and Society Review</title> + , + <biblScope unit="vol">vol. 9</biblScope> + , + <biblScope unit="pp">63—94</biblScope> + . + </bibl> + <bibl> + <author>Felstiner, William L. F</author> + ., + <date>1974</date> + /75: + <title level="a">Avoidance as Dispute Processing: An Elaboration</title> + , + <title level="j">Law and Society Review</title> + , + <biblScope unit="vol">vol. 9</biblScope> + , + <biblScope unit="pp">695-706</biblScope> + . + </bibl> + <bibl> + <author>Galanter, Marc</author> + , + <date>1974</date> + : + <title level="a">Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change</title> + , + <title level="j">Law and Society Review</title> + , + <biblScope unit="vol">vol. 9</biblScope> + , + <biblScope unit="pp">95—160</biblScope> + . + </bibl> + <bibl> + <author>Geiger, Theodor</author> + , + <date>1964</date> + : + <title level="a">Vorstudien zu einer Soziologie des Rechts</title> + . + <author>Neuwied. Gessner, Volkmar</author> + , + <date>1976</date> + : + <title level="a">Recht und Konflikt</title> + . + </bibl> + <bibl> + <author>Hilden, Hartmut</author> + , + <date>1976</date> + : + <title level="a">Rechtstatsachen im Räumungsstreit. Frankfurt/Main</title> + . + </bibl> + <bibl> + <author>Johnson, Earl</author> + , + <date>1979</date> + ; + <title level="a">Thinking about Access: A Preliminary Typology of Possible Strategies</title> + . + <editor> Cappelletti, Mauro und Bryant Garth </editor> + (Hrsg.): + <title level="m">Access to Justice</title> + , + <biblScope unit="vol">Bd. III</biblScope> + . + <editor>Milan und Alphen/ Rijn</editor> + . + </bibl> + <bibl> + <author>Koch, Hartmut</author> + , + <date>1975</date> + : + <title level="a">Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen</title> + . + <note>Diss.</note> + </bibl> + <bibl> + <author>Luhmann, Niklas</author> + , + <date>1969</date> + : + <title level="a">Legitimation durch Verfahren</title> + . + </bibl> + <bibl> + <author>Luhmann, Niklas</author> + , + <date>1980</date> + : + <title level="a">Kommunikation über Recht in Interaktionssystemen</title> + , + <editor> Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner </editor> + (Hrsg.): + <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title> + , + <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> + <biblScope unit="vol">Bd. 6. Opladen</biblScope> + . + </bibl> + <bibl> + <author>Reifner, Udo</author> + , + <date>1978</date> + : + <title level="a">Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative</title> + , + <biblScope unit="pp">IIM-dp/78—70</biblScope> + . + </bibl> + <bibl> + <author>Reifner, Udo</author> + , + <date>1979</date> + : + <title level="a">Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945</title> + . + <biblScope unit="pp">IIM-dp/79—104</biblScope> + . + </bibl> + <bibl> + <author>Reifner, Udo und Irmela Gorges</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> + (Hrsg.): + <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title> + , + <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> + <biblScope unit="vol">Bd. 6. Opladen</biblScope> + . + </bibl> + <bibl> + <author>Sarat</author> + , + <date>1976</date> + : + <title level="a">Alternatives in Dispute Processing in a Small Claim Court</title> + , + <title level="j">Law and Society Review</title> + , + <biblScope unit="vol">vol. 10</biblScope> + , + <biblScope unit="pp">339—375</biblScope> + . + </bibl> + <bibl> + <author>Schönholz, Siegfried</author> + , + <date>1980</date> + : + <title level="a">Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich</title> + <editor> Vereinigung für Rechtssoziologie </editor> + (Hrsg.): + <title level="m">Arbeitslosigkeit und Recht</title> + . + </bibl> + <bibl> + <author>Steinbach, E</author> + ., + <date>1979</date> + : + <title level="a">GMD-Bericht, Manuskript. Gesellschaft für Mathematik und Datenverarbeitung</title> + . + </bibl> + <bibl> + <author>Wanner, Craig</author> + , + <date>1975</date> + : + <title level="a">The Public Ordering of Private Cases; Winning Civil Court Cases</title> + , + <title level="j">Law and Society Review</title> + , + <biblScope unit="vol">vol. 9</biblScope> + , + <biblScope unit="pp">293-306</biblScope> + . + </bibl> + </listBibl> </body> <note n="1" place="bottom"> <bibl> @@ -39,7 +345,6 @@ <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> - , <title level="a">Nichtkriminalisierung als Struktur und Routine</title> ', <date>1976</date> @@ -52,7 +357,6 @@ <author>Peter MacNaughton-Smith und Richard Rosellen</author> <note>zur</note> - ' <title level="a">Bereitschaft zur Anzeigeerstattung</title> ' <note>Manuskript</note> @@ -62,11 +366,10 @@ <bibl> <note type="signal">Der ausführliche Forschungsbericht von</note> - <author>Richard Rosellen</author> + <author>Richard Rosellen</author> <note> erscheint in Kürze unter dem Titel</note> - . <title level="a">Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung</title> - voraussichtlich + ', <date>1980</date> . </bibl> @@ -78,7 +381,7 @@ <author>Blankenburg/Sessar/Steffen</author> , <date>1978</date> - S. + , <biblScope unit="pp">66-85</biblScope> . </bibl> @@ -87,7 +390,7 @@ <bibl> <author>Black</author> <date>1973</date> - S. + , <biblScope unit="pp">125 ff</biblScope> . </bibl> @@ -104,11 +407,11 @@ </note> <note n="7" place="bottom"> <bibl> - <note type="signal">Zum Konzept der .Thematisierung von Recht' vgl</note> + <note type="signal">Zum Konzept der 'Thematisierung von Recht' vgl</note> . <author>Luhmann</author> <date>1980</date> - S. + , <biblScope unit="pp">99—112</biblScope> . </bibl> @@ -133,7 +436,7 @@ <bibl> <author>Blankenburg/Schönholz; Rogowski</author> <date>1979</date> - S. + , <biblScope unit="pp">64 ff</biblScope> . </bibl> @@ -142,7 +445,7 @@ <bibl> <author>Hilden</author> <date>1976</date> - S. + , <biblScope unit="pp">64 ff</biblScope> . </bibl> @@ -151,13 +454,12 @@ <bibl> <author>Koch</author> <date>1975</date> - S. + , <biblScope unit="pp">75</biblScope> , <note>der allerdings nur streitige Urteile und Vergleiche untersucht hat. </note> </bibl> </note> - <bibl/> <note n="13" place="bottom"> <bibl> <note type="signal">Für Angaben der Zählkartenstatistik für die Familiengerichte siehe</note> @@ -174,7 +476,7 @@ <bibl> <author>Blankenburg/Schönholz; Rogowski</author> <date>1979</date> - S. + , <biblScope unit="pp">78 ff</biblScope> . </bibl> @@ -189,7 +491,6 @@ <author>Johnson</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> - S. <biblScope unit="pp">90 ff</biblScope> . </bibl> @@ -198,12 +499,12 @@ <bibl> <author>Steinbach</author> <date>1979</date> - S. + , <biblScope unit="pp">66 ff</biblScope> .; <author>Blankenburg/Blankenburg/Morasch</author> <date>1972</date> - S. + , <biblScope unit="pp">82 ff</biblScope> . </bibl> @@ -211,11 +512,10 @@ <note n="18" place="bottom"> <bibl> <title level="a">Projektbericht ,Rechtshilfebedürfnisse sozial Schwacher</title> - ( + *, <author>Blankenburg/Gorges/Reifner; Ticmann).</author> - <note>Befragt wurden im Januar bis März 1979 je eine Person in 835 Haushalten Westberlins. Veröffentlichung ist vorgesehen für </note> - Ende + <note>Befragt wurden im Januar bis März 1979 je eine Person in 835 Haushalten Westberlins. Veröffentlichung ist vorgesehen für </note> <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> @@ -226,7 +526,7 @@ <note type="signal">Explizit bei</note> <author>Baumgärtei</author> <date>1976</date> - S. + , <biblScope unit="pp">113-128</biblScope> . </bibl> @@ -239,11 +539,10 @@ <note n="21" place="bottom"> <bibl> <title level="a">Projektbericht Rechtsschutzversicherung</title> - ( + *. <author>Blankenburg; Fiedler</author> ), <note>Veröffentlichung voraussichtlich</note> - Mitte <date>1980</date> . </bibl> @@ -276,13 +575,13 @@ <note type="signal">Grundsätzlich vgl. hierzu den klassischen Beitrag von</note> <author>Galanter</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> <date>1976</date> - S. + , <biblScope unit="pp">339-375</biblScope> . </bibl> @@ -291,7 +590,7 @@ <bibl> <author>Bender/Schumacher</author> <date>1980</date> - S. + , <biblScope unit="pp">138</biblScope> . </bibl> @@ -300,7 +599,7 @@ <bibl> <author>Steinbach</author> <date>1979</date> - S. + , <biblScope unit="pp">96 ff</biblScope> , </bibl> @@ -308,7 +607,7 @@ <note type="signal">vgl. auch</note> <author>Blankenburg/Blankenburg/Morasch</author> <date>1972</date> - S. + , <biblScope unit="pp">89, Fn. 17</biblScope> , </bibl> @@ -324,7 +623,7 @@ <bibl> <author>Blankenburg/Schönholz; Rogowski</author> <date>1979</date> - S. + , <biblScope unit="pp">102 ff</biblScope> . </bibl> @@ -335,7 +634,7 @@ <title level="a">Recht als gradualisiertes Konzept</title> <date>1980</date> - S. + , <biblScope unit="pp">83—98</biblScope> . </bibl> @@ -344,12 +643,12 @@ <bibl> <author>Steinbach</author> <date>1979</date> - S. + , <biblScope unit="pp">35</biblScope> ; <author>Bender/Schumacher</author> <date>1980</date> - S. + , <biblScope unit="pp">24 und S. 49</biblScope> . </bibl> @@ -358,15 +657,16 @@ <bibl> <author>Wanner</author> <date>1975</date> - S. + , <biblScope unit="pp">293—306</biblScope> + S. <note>hebt dies deutlich hervor,</note> </bibl> <bibl> <note type="signal">ebenso</note> <author>Bender/Schumacher</author> <date>1980</date> - S. + , <biblScope unit="pp">72 ff</biblScope> .; </bibl> @@ -376,7 +676,6 @@ <date>1974</date> ; <author>Sarat</author> - <date>1976</date> . </bibl> @@ -385,7 +684,7 @@ <bibl> <author>Blankenburg/Schönholz; Rogowski</author> <date>1979</date> - S. + , <biblScope unit="pp">78 ff</biblScope> . </bibl> @@ -393,7 +692,7 @@ <note n="34" place="bottom"> <bibl> <ref>Ebenda</ref> - S. + , <biblScope unit="pp">138-186</biblScope> . </bibl> @@ -410,7 +709,6 @@ <note type="signal">Für eine überaus positive Bewertung des .Vermeidens1 vgl</note> . <author>Felstiner und Danzig/Lowy</author> - in <title level="j">Law and Society Review</title> , <biblScope unit="vol">vol. 9</biblScope> @@ -419,308 +717,5 @@ /75. </bibl> </note> - <bibl> - <author>Baumgärtei, Gottfried</author> - , - <date>1976</date> - : - <title level="a">Gleicher Zugang zum Recht für alle</title> - . - </bibl> - <bibl> - <author>Bender, Rolf und Rolf Schumacher</author> - , - <date>1980</date> - : - <title level="a">Erfolgsbarrieren vor Gericht.</title> - - <author>Black, Donald</author> - , - <date>1973</date> - : - <title level="a">The Mobilization of Law</title> - in: - <title level="j">Journal of Legal Studies</title> - <biblScope unit="vol">2</biblScope> - . - </bibl> - <bibl> - <author>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut</author> - , - <date>1972</date> - : - <title level="a">Der lange Weg in die Berufung</title> - in: - <editor> Bender, Rolf </editor> - (Hrsg.): - <title level="m">Tatsachenforschung in der Justiz</title> - . - </bibl> - <bibl> - <author>Blankenburg, Erhard</author> - , - <date>1976</date> - : - <title level="a">Nichtkriminalisierung als Struktur und Routine</title> - in: - <editor> Göppinger</editor> - , - <title level="a">Hans und Günter Kaiser: Kriminologie und Strafverfahren</title> - . - </bibl> - <bibl> - <author>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke</author> - , - <date>1978</date> - : - <title level="a">Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle</title> - . - </bibl> - <bibl> - <author>Blankenburg, Erhard; Schönholz, Siegfried, unter Mitarbeit von Ralf Rogowski</author> - , - <date>1979</date> - : - <title level="a">Zur Soziologie des Arbeitsgerichtsverfahrens</title> - . - </bibl> - <bibl> - <author>Blankenburg, Erhard</author> - , - <date>1980</date> - : - <title level="a">Recht als gradualisiertes Konzept</title> - in: - <editor> Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner </editor> - (Hrsg.): - <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title> - , - <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> - <biblScope unit="vol">Bd. 6. Opladen</biblScope> - . - </bibl> - <bibl> - <author>Carlin, Jerome-, Jan Howard und Sheldon Messinger</author> - , - <date>1967</date> - : - <title level="a">Civil Justice and the Poor</title> - . - <author>Richard /Lowy, Michael</author> - , - <date>1974</date> - /75; - <title level="a">Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner</title> - , - <title level="j">Law and Society Review</title> - , - <biblScope unit="vol">vol. 9</biblScope> - pp. - <biblScope unit="pp">675—694</biblScope> - . - </bibl> - <bibl> - <author>Feest, Johannes/Blankenburg, Erhard</author> - , - <date>1972</date> - : - <title level="a">Die Definitionsmacht der Polizei</title> - . - </bibl> - <bibl> - <author>Felstiner, William L. F</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> - ., - <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> - , - <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> - , - <date>1964</date> - : - <title level="a">Vorstudien zu einer Soziologie des Rechts</title> - . - <author>Neuwied. Gessner, Volkmar</author> - , - <date>1976</date> - : - <title level="a">Recht und Konflikt</title> - . - </bibl> - <bibl> - <author>Hilden, Hartmut</author> - , - <date>1976</date> - : - <title level="a">Rechtstatsachen im Räumungsstreit. Frankfurt/Main</title> - . - </bibl> - <bibl> - <author>Johnson, Earl</author> - , - <date>1979</date> - ; - <title level="a">Thinking about Access: A Preliminary Typology of Possible Strategies</title> - In: - <editor> Cappelletti, Mauro und Bryant Garth </editor> - (Hrsg.): - <title level="m">Access to Justice</title> - , - <biblScope unit="vol">Bd. III</biblScope> - . - <editor>Milan und Alphen/ Rijn</editor> - . - </bibl> - <bibl> - <author>Koch, Hartmut</author> - , - <date>1975</date> - : - <title level="a">Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen</title> - . - <note>Diss.</note> - </bibl> - <bibl> - <author>Luhmann, Niklas</author> - , - <date>1969</date> - : - <title level="a">Legitimation durch Verfahren</title> - . - </bibl> - <bibl> - <author>Luhmann, Niklas</author> - , - <date>1980</date> - : - <title level="a">Kommunikation über Recht in Interaktionssystemen</title> - in: - <editor> Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner </editor> - (Hrsg.): - <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title> - , - <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> - <biblScope unit="vol">Bd. 6. Opladen</biblScope> - . - </bibl> - <bibl> - <author>Reifner, Udo</author> - , - <date>1978</date> - : - <title level="a">Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative</title> - , - <biblScope unit="pp">IIM-dp/78—70</biblScope> - . - </bibl> - <bibl> - <author>Reifner, Udo</author> - , - <date>1979</date> - : - <title level="a">Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945</title> - . - <biblScope unit="pp">IIM-dp/79—104</biblScope> - . - </bibl> - <bibl> - <author>Reifner, Udo und Irmela Gorges</author> - , - <date>1980</date> - ; - <title level="a">Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe</title> - in: - <editor> Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner </editor> - (Hrsg.): - <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title> - , - <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> - <biblScope unit="vol">Bd. 6. Opladen</biblScope> - . - </bibl> - <bibl> - <author>Sarat</author> - , - <date>1976</date> - : - <title level="a">Alternatives in Dispute Processing in a Small Claim Court</title> - in: - <title level="j">Law and Society Review</title> - , - <biblScope unit="vol">vol. 10</biblScope> - pp. - <biblScope unit="pp">339—375</biblScope> - . - </bibl> - <bibl> - <author>Schönholz, Siegfried</author> - , - <date>1980</date> - : - <title level="a">Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich</title> - in: - <editor> Vereinigung für Rechtssoziologie </editor> - (Hrsg.): - <title level="m">Arbeitslosigkeit und Recht</title> - . - </bibl> - <bibl> - <author>Steinbach, E</author> - ., - <date>1979</date> - : - <title level="a">GMD-Bericht, Manuskript. Gesellschaft für Mathematik und Datenverarbeitung</title> - . - </bibl> - <bibl> - <author>Wanner, Craig</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> </text> </TEI> 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 344e7d1..71f4616 100644 --- a/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml +++ b/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml @@ -16,55 +16,54 @@ <text> <body> <p>The article text is not part of this document</p> + <listBibl> + <bibl> + <editor>Armer/Grimshaw </editor> + (Hrsg.), + <title level="a">Comparative Social Research - Methodological Problems and Strategies</title> + <date>1973</date> + ); + <editor>Drobnig/ Rebbinder </editor> + (Hrsg.), + <title level="a">Rechtssoziologie und Rechtsvergleichung</title> + <date>1977</date> + ); + <editor>Rokkan </editor> + (Hrsg.), + <title level="a">Compa rative Research Across Cultures and Nations</title> + <date>1968</date> + ); + <editor>Rokkan/Verba/Viet/ Almasy </editor> + (Hrsg.), + <title level="a">Comparative Sutvey Analysis</title> + <date>1969</date> + ); + <author>Smelser,</author> + + <title level="a">Comparative Methods in the Social Sciences</title> + <author>Englewood Cliffs, N. J</author> + . + <date>1976</date> + ) + <editor>Szalai/Petrella </editor> + (Hrsg.), + <title level="a">Cross National Comparative Survey Research</title> + <date>1977</date> + ); + <editor>Vallier </editor> + (Hrsg.), + <title level="a">Comparative Methods in Sociology</title> + <date>1971</date> + ); + <author>Zweigert/Kötz</author> + . + <title level="a">Einführung in die Rechtsvergleichung</title> + <biblScope unit="vol">Bd. I</biblScope> + <date>1971</date> + ). + </bibl> + </listBibl> </body> - <bibl> - <editor>Armer/Grimshaw </editor> - (Hrsg.), - <title level="a">Comparative Social ResearchMethodological Problems and Strategies</title> - <date>1973</date> - ); - <editor>Drobnig/ Rebbinder </editor> - (Hrsg.), - <title level="a">Rechtssoziologie und Rechtsvergleichung</title> - ( - <date>1977</date> - ); - <editor>Rokkan </editor> - (Hrsg.), - <title level="a">Compa rative Research Across Cultures and Nations</title> - <date>1968</date> - ); - <editor>Rokkan/Verba/Viet/ Almasy </editor> - (Hrsg.), - <title level="a">Comparative Sutvey Analysis</title> - <date>1969</date> - ); - <author>Smelser,</author> - - <title level="a">Comparative Methods in the Social Sciences</title> - ( - <author>Englewood Cliffs, N. J</author> - - <date>1976</date> - ; - <editor>Szalai/Petrella </editor> - (Hrsg.), - <title level="a">Cross National Comparative Survey Research</title> - <date>1977</date> - ); - <editor>Vallier </editor> - (Hrsg.), - <title level="a">Comparative Methods in Sociology</title> - <date>1971</date> - ); - <author>Zweigert/Kötz</author> - . - <title level="a">Einführung in die Rechtsvergleichung</title> - <biblScope unit="vol">Bd. I</biblScope> - ( - <date>1971</date> - ). - </bibl> <note n="1" place="bottom"> <bibl> <note type="signal">Siehe näher</note> @@ -79,7 +78,6 @@ <author>Rabel</author> , <title level="a">Aufgabe und Notwendigkeit der Rechtsvergleichung</title> - ( <date>1925</date> ), </bibl> @@ -90,7 +88,6 @@ , <title level="a">Gesammelte Aufsätze</title> <biblScope unit="vol">III</biblScope> - (Hrsg. <editor> Leser</editor> , <date>1967</date> @@ -116,7 +113,6 @@ <title level="j">Stanford Law Rev</title> . <biblScope unit="vol">26</biblScope> - ( <date>1973</date> ) <biblScope unit="pp">174 ff</biblScope> @@ -127,7 +123,6 @@ , <title level="j">ZvglRW</title> <biblScope unit="vol">78</biblScope> - ( <date>1979</date> ) <biblScope unit="pp">51 ff</biblScope> @@ -139,8 +134,9 @@ <author>Carbonnier</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: <date>1969</date> ) <biblScope unit="pp">75 (83)</biblScope> @@ -150,7 +146,6 @@ <note n="6" place="bottom"> <bibl> <author>Carbonnier</author> - ( <ref>vorige N.) a.a.O</ref> . </bibl> @@ -160,15 +155,17 @@ <author>Nowak</author> , <title level="a">The Strategy of Cross-National Survey Research for the Development of Social Theory</title> - in: + , <editor> Szalai/Petrella</editor> + in: <biblScope unit="pp">3 (9 ff.)</biblScope> : <author>Rose</author> , <title level="a">Interkulturelle Forschung in der Rechtssoziologie</title> - in: + , <editor> Drobnig/Rehbinder</editor> + in: <biblScope unit="pp">171 ff</biblScope> . </bibl> @@ -182,7 +179,6 @@ , <title level="j">Sociologus</title> <biblScope unit="vol">25</biblScope> - ( <date>1975</date> ) 97 ff. - </bibl> @@ -195,7 +191,6 @@ <title level="j">Rev. int. Sc. Soc</title> . <biblScope unit="vol">22</biblScope> - ( <date>1970</date> ) <biblScope unit="pp">509 (526)</biblScope> @@ -211,7 +206,6 @@ <title level="j">Law & Soc. Rev</title> . <biblScope unit="vol">11</biblScope> - ( <date>1977</date> ) <biblScope unit="pp">507 ff</biblScope> @@ -221,7 +215,6 @@ <note n="10" place="bottom"> <bibl> <author>Rose</author> - ( <ref>oben N. 7</ref> ) <biblScope unit="pp">175</biblScope> @@ -231,19 +224,19 @@ <note n="11" place="bottom"> <bibl> <note type="signal">Dazu</note> - <author>Grimshau</author> , <title level="a">Comparative Sociology - In What Ways Different From Other Sociologies?</title> - in: + , <editor> Armer/Grimshaw</editor> + in: <biblScope unit="pp">3 (18)</biblScope> . <note>Auch der Oberbegriff „cross System comparison" wird vorgeschlagen,</note> <author>Tomasson</author> , <title level="a">Introduction; Comparative Sociology — The State of the Art</title> - in: + , <editor> Tomasson </editor> (Hrsg.), <title level="m">Comparative Studies in Sociology</title> @@ -260,7 +253,6 @@ <biblScope unit="pp">117 ff</biblScope> .; <author>Vallier</author> - <biblScope unit="pp">423 ff</biblScope> .; <author>Almasy/Balandier/Delatte</author> @@ -298,7 +290,7 @@ <author>Smelser</author> <biblScope unit="pp">2 f</biblScope> - ; + . <author>Payne</author> , <title level="a">Comparative Sociology — Some Problems of Theory and Method</title> @@ -306,7 +298,6 @@ <title level="j">Brit. J. Soc</title> . <biblScope unit="vol">24</biblScope> - ( <date>1973</date> ) <biblScope unit="pp">13 (15 ff.).</biblScope> @@ -317,8 +308,9 @@ <author>Eisenstadt</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> <date>1968</date> ) @@ -331,7 +323,7 @@ <author>Boesch/Eckensberger</author> , <title level="a">Methodische Probleme des interkulturellen Vergleichs</title> - in: + , <editor> Graumann </editor> (Hrsg.), <title level="m">Handbuch der Psychologie</title> @@ -356,13 +348,11 @@ <bibl> <note type="signal">sowie</note> <author>Smelser</author> - <biblScope unit="pp">168 f</biblScope> .; <author>Wirsing</author> - ( <ref>oben N. 8</ref> - + ) <biblScope unit="pp">115</biblScope> . </bibl> @@ -373,8 +363,9 @@ <author>Zelditch</author> , <title level="a">Intelligible Comparisons</title> - in: + , <editor> Vallier</editor> + in: <biblScope unit="pp">267 (270 ff.)</biblScope> . </bibl> @@ -382,7 +373,6 @@ <note n="16" place="bottom"> <bibl> <author>Carbonnier</author> - ( <ref>oben N. 5</ref> ) <biblScope unit="pp">80</biblScope> @@ -395,8 +385,9 @@ <author>Zweigert</author> , <title level="a">Die soziologische Dimension der Rechtsvergleichung</title> - in: + , <editor> Drobnig/Rebbinder</editor> + in: <biblScope unit="pp">151 (159)</biblScope> . </bibl> @@ -407,8 +398,9 @@ <author>Merryman</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: <date>1974</date> ) <biblScope unit="pp">81 (89 ff.)</biblScope> @@ -436,7 +428,6 @@ , <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> @@ -447,7 +438,6 @@ <bibl> <note type="signal">Insbesondere</note> <author>Zweigert</author> - ( <ref>oben N. 17</ref> ) <biblScope unit="pp">157 ff</biblScope> @@ -459,11 +449,10 @@ <author>Kaiser</author> , <title level="a">Strafrecht und vergleichende Kriminologie</title> - in: + , <editor> Kaiser/Vogler </editor> (Hrsg.), <title level="m">Strafrecht, Straf rechtsvergleichung</title> - ( <date>1975</date> ) <biblScope unit="pp">79 ff</biblScope> @@ -471,6 +460,7 @@ </bibl> <bibl> <note type="signal">Siehe auch</note> + — <author>Villmow/Albrecht</author> , <title level="a">Die Vergleichung als Methode der Strafrechtswissenschaft und der Kriminologie</title> @@ -478,7 +468,6 @@ <title level="j">MschrKrim</title> . <biblScope unit="vol">62</biblScope> - ( <date>1979</date> ) <biblScope unit="pp">163 ff</biblScope> @@ -491,9 +480,9 @@ <author>K. H. Neumayer</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> @@ -506,8 +495,9 @@ <author>Rehbinder</author> , <title level="a">Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und Rechtsvergleichung</title> - in: + , <editor> Drobnig/Rehbinder</editor> + in: <biblScope unit="pp">56 ff</biblScope> . </bibl> @@ -516,7 +506,6 @@ <bibl> <note type="signal">Näher dazu</note> <author>Merryman</author> - ( <ref>oben N. 18</ref> ) <biblScope unit="pp">101 ff</biblScope> @@ -528,8 +517,9 @@ <author>Heidrich</author> , <title level="a">Sozialwissenschaftliche Aspekte der Rechtsvergleichung</title> - in: + , <editor> Drobnig/Rehbinder</editor> + in: <biblScope unit="pp">178 (186 ff.)</biblScope> . </bibl> @@ -540,7 +530,7 @@ <author>Blankenburg</author> , <title level="a">Patterns of Legal Culture as a Variable for the Chances of Legal Innovation</title> - in: + , <editor> Blankenburg </editor> (Hrsg.), <title level="m">innovations in the Legal Services</title> @@ -552,7 +542,6 @@ <bibl> <note type="signal">So</note> <author>Rehbinder</author> - ( <ref>oben N. 24</ref> ) <biblScope unit="pp">60</biblScope> @@ -569,7 +558,6 @@ <title level="s">Am. J. Comp. L</title> . <biblScope unit="vol">26</biblScope> - ( <date>1978</date> ) <biblScope unit="pp">219 (224 ff.)</biblScope> @@ -585,8 +573,8 @@ </bibl> <bibl> <note type="signal">Für die Kriminologie siehe</note> + — <author>Kaiser</author> - ( <ref>oben N. 22</ref> ) <biblScope unit="pp">89</biblScope> @@ -599,7 +587,6 @@ , <title level="j">Int. J. Crim. Pen</title> <biblScope unit="vol">6</biblScope> - ( <date>1978</date> ) <biblScope unit="pp">233 (240)</biblScope> @@ -612,7 +599,7 @@ <title level="j">Am. J. Comp. L</title> . <biblScope unit="vol">25</biblScope> - ( + <date>1977</date> ) <biblScope unit="pp">457 (479)</biblScope> @@ -622,9 +609,8 @@ <note n="31" place="bottom"> <bibl> <author>Payne</author> - ( <ref>oben N. 13</ref> - + ) <biblScope unit="pp">15, 25 f</biblScope> . </bibl> @@ -637,9 +623,8 @@ , <title level="j">Demokratie und Recht</title> <date>1979</date> - / <biblScope unit="vol">1</biblScope> - S. + / <biblScope unit="pp">23 (31 ff.).</biblScope> - </bibl> @@ -648,11 +633,10 @@ <author>Zweigert/Puttfarken</author> , <title level="a">Zur Vergleichbarkeit analoger Rechtsinstitute in verschiede nen Gesellschaftsordnungen</title> - in: + , <editor> Zweigert/Puttfarken </editor> (Hrsg.), <title level="m">Rechtsvergleichung</title> - ( <date>1978</date> ) <biblScope unit="pp">395 (402 ff.)</biblScope> @@ -664,10 +648,9 @@ <author>Blankenburg</author> , <title level="a">Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration</title> - ( <title level="j">HM discussion papers</title> + ( <date>1978</date> - — <biblScope unit="vol">23</biblScope> ) <biblScope unit="pp">5 ff</biblScope> @@ -688,8 +671,9 @@ <author>Armer</author> , <title level="a">Methodology Problems and Possibilities in Comparative Research</title> - in: + , <editor> Armer/Grimsbaw</editor> + in: <biblScope unit="pp">49 (50 ff.)</biblScope> ; <author>Smelser</author> @@ -701,7 +685,6 @@ , <title level="j">KZfSS</title> <biblScope unit="vol">30</biblScope> - ( <date>1978</date> ) <biblScope unit="pp">361 (364 ff.)</biblScope> @@ -717,8 +700,9 @@ <author>Malewswka/Peyre</author> , <title level="a">Juvenile Deliquency and Development</title> - in: + , <editor> Szalai/Petrella</editor> + in: <biblScope unit="pp">131 (157 f.)</biblScope> . </bibl> @@ -729,20 +713,20 @@ <author>Scheuch</author> , <title level="a">The Cross-Cultural Use of Sample Surveys — Problems of Comparability</title> - in: + , <editor> Rokkan</editor> + in: <biblScope unit="pp">176 (185)</biblScope> ; <author>Biervert</author> , <title level="a">Der internationale Vergleich</title> - in: + , <editor> van Koolwiyk/Wieken-Mayser </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> @@ -754,8 +738,9 @@ <author>Verba</author> , <title level="a">The Uses of Survey Research in the Study of Comparative Politics — Issues and Strategies</title> - in: + , <editor> Rokkan/Verba/Viet/Almasy</editor> + in: <biblScope unit="pp">56 (80)</biblScope> . </bibl> @@ -765,8 +750,9 @@ <author>Gessner</author> , <title level="a">Soziologische Ãœberlegungen zu einer Theorie der angewandten Rechtsvergleichung</title> - in: + , <editor> Drobnig/Rehbinder</editor> + in: <biblScope unit="pp">123 (134 ff.)</biblScope> . </bibl> @@ -774,7 +760,6 @@ <note n="40" place="bottom"> <bibl> <author>Nowak</author> - ( <ref>oben N. 7</ref> ) <biblScope unit="pp">42</biblScope> @@ -786,11 +771,10 @@ <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> - ( <title level="a">Social Theory and Social Structure</title> , <date>1968</date> - S. + , <biblScope unit="pp">82 ff</biblScope> .): <note>Eine gemeinsame Religion erfüllt im allgemeinen data".</note> @@ -813,7 +797,6 @@ <note n="44" place="bottom"> <bibl> <author>Abel</author> - ( <ref>oben N. 4</ref> ) <biblScope unit="pp">194 ff., 221 f.</biblScope> @@ -832,8 +815,8 @@ </bibl> <bibl> <note type="signal">Zur Behandlung der „Kultur" in vergleichenden Untersuchungen näher</note> + - <author>Scheuch</author> - ( <ref>oben N. 37</ref> ) <biblScope unit="pp">197 ff</biblScope> @@ -843,7 +826,6 @@ <note n="45" place="bottom"> <bibl> <author>Abel</author> - ( <ref>oben N. 4</ref> ) <biblScope unit="pp">207 ff</biblScope> @@ -851,13 +833,13 @@ </bibl> <bibl> <note type="signal">Siehe auch</note> + — <author>Constantinesco</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> @@ -868,7 +850,6 @@ <bibl> <note type="signal">Siehe</note> <author>Blankenburg</author> - ( <ref>oben N. 33</ref> ) <biblScope unit="pp">3 ff</biblScope> @@ -878,7 +859,6 @@ <note n="47" place="bottom"> <bibl> <author>Rose</author> - ( <ref>oben N. 7</ref> ) <biblScope unit="pp">176</biblScope> @@ -889,7 +869,6 @@ <bibl> <note type="signal">Dazu etwa</note> <author>Benda-Beckmann</author> - ( <ref>oben N. 4</ref> ) <biblScope unit="pp">55 ff</biblScope> @@ -900,7 +879,6 @@ , <title level="j">ZvglRW</title> <biblScope unit="vol">78</biblScope> - ( <date>1979</date> ) <biblScope unit="pp">154 ff</biblScope> @@ -910,7 +888,6 @@ <bibl> <note type="signal">Siehe</note> <author>Payne</author> - ( <ref>oben N. 13</ref> ) <biblScope unit="pp">16 ff</biblScope> @@ -934,14 +911,12 @@ <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> - ( <ref>oben N. 32</ref> ) <biblScope unit="pp">33</biblScope> @@ -958,7 +933,6 @@ . <note>— Kritisch</note> <author>Benda-Beckmann</author> - ( <ref>oben N. 4</ref> ) <biblScope unit="pp">58 ff</biblScope> @@ -997,7 +971,6 @@ <bibl> <note type="signal">Dafür</note> <author>Däubler</author> - ( <ref>oben N. 32</ref> ) <biblScope unit="pp">33</biblScope> @@ -1013,7 +986,6 @@ , <title level="j">RabelsZ</title> <biblScope unit="vol">34</biblScope> - ( <date>1970</date> ) <biblScope unit="pp">1 ff</biblScope> @@ -1024,7 +996,6 @@ , <title level="j">RabelsZ</title> <biblScope unit="vol">34</biblScope> - ( <date>1970</date> ) <biblScope unit="pp">443 ff</biblScope> @@ -1037,18 +1008,17 @@ <author>Ruescbemeyer</author> , <title level="a">Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in Germany and the United States</title> - <date>1973</date> ); <author>ders</author> ., <title level="a">The Legal Profession in Comparative Perspective</title> - in: + , <editor> H. M. Johnson</editor> , <title level="m">Social System and Legal Process</title> <date>1978</date> - + ) <biblScope unit="pp">97 ff</biblScope> . </bibl> @@ -1061,7 +1031,6 @@ , <title level="j">ZfS</title> <biblScope unit="vol">8</biblScope> - ( <date>1979</date> ) <biblScope unit="pp">362 ff</biblScope> @@ -1071,15 +1040,13 @@ <note n="59" place="bottom"> <bibl> <note type="signal">Siehe</note> - <author>Nowak</author> - ( + <ref>oben N. 7</ref> ) <biblScope unit="pp">23 ff</biblScope> .; <author>Smelser</author> - <biblScope unit="pp">167 ff</biblScope> . </bibl> @@ -1090,8 +1057,9 @@ <author>Teune</author> , <title level="a">Analysis and Interpretation in Cross-National Survey Research</title> - in: + , <editor> Szalai/Petrella</editor> + in: <biblScope unit="pp">95 (101) ff</biblScope> . </bibl> @@ -1112,16 +1080,16 @@ <title level="a">Problem in der Kriminologie</title> <author>Kaiser</author> - ( + <ref>oben N. 22</ref> ) <biblScope unit="pp">88</biblScope> </bibl> <bibl> <note type="signal">mwNachw</note> - ; + . <author>Blazicek/Janeksela</author> - ( + ; <ref>oben N. 30</ref> ) <biblScope unit="pp">235 f., 242</biblScope> @@ -1137,7 +1105,6 @@ <title level="j">Int. J. Crim, and Pen</title> . <biblScope unit="vol">6</biblScope> - ( <date>1978</date> ) <biblScope unit="pp">221 ff</biblScope> @@ -1158,7 +1125,6 @@ , <title level="j">ZfS</title> <biblScope unit="vol">7</biblScope> - ( <date>1978</date> ) <biblScope unit="pp">228 ff</biblScope> @@ -1166,10 +1132,10 @@ <author>Schuyt/Groenendijk/Sloot</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> @@ -1186,7 +1152,6 @@ , <title level="j">Polish Sociological Bulletin</title> <biblScope unit="vol">21 No. 1</biblScope> - ( <date>1970</date> ) <biblScope unit="pp">83 (88 ff.)</biblScope> @@ -1198,7 +1163,6 @@ <author>Ziegen,</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> @@ -1222,9 +1186,9 @@ <note n="67" place="bottom"> <bibl> <author>Kutchinsky</author> - „ + , <title level="a">The Legal Consciousness“: A Survey of Research on Knowledge and Opinion about Law</title> - in: + , <editor> Podgdrecki/Kaupen/van Houtte/Vinke/Kutchinsky</editor> , <title level="m">Knowledge and Opinion about Law</title> @@ -1239,9 +1203,9 @@ <author>Podgdrecki</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> @@ -1253,7 +1217,7 @@ <author>Heintz</author> , <title level="a">Interkultureller Vergleich</title> - in: + , <editor> König </editor> (Hrsg.), <title level="m">Handbuch der empirischen Sozialfor schung</title> @@ -1274,11 +1238,10 @@ <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> @@ -1293,7 +1256,6 @@ <author>Gessner</author> , <title level="a">Recht und Konflikt — Eine soziologische Untersuchungprivatrechtlicher Konflikte in Mexiko</title> - ( <date>1976</date> ) <biblScope unit="pp">37 ff</biblScope> @@ -1305,7 +1267,6 @@ <note type="signal">Vgl</note> . <author>Heintz</author> - ( <ref>oben N. 69</ref> ) <biblScope unit="pp">407</biblScope> @@ -1325,7 +1286,6 @@ <title level="j">Int. J. Crim</title> . <biblScope unit="vol">1</biblScope> - ( <date>1973</date> ) <biblScope unit="pp">151 (152)</biblScope> @@ -1338,7 +1298,6 @@ <author>Rokkan</author> , <title level="a">Vergleichende Sozialwissenschaft</title> - ( <date>1972</date> ) <biblScope unit="pp">9 ff</biblScope> @@ -1346,14 +1305,14 @@ <author>Szalai</author> , <title level="a">The Organization and Execution of Cross-National Survey Research Projects</title> - in: + , <editor> Szalai/Petrella</editor> + in: <biblScope unit="pp">49 ff</biblScope> . </bibl> <bibl> <note type="signal">sowie</note> - ( <ref>oben N. 52</ref> ) <biblScope unit="pp">Chapter I</biblScope> @@ -1366,7 +1325,7 @@ <author>Blegvad</author> , <title level="a">Methodological Aspects of the Project „Local Legal Systems</title> - in: + “, <editor> Kulcsár </editor> (Hrsg.), <title level="m">Sociology of Law and Legal Sciences</title> @@ -1384,7 +1343,6 @@ <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> @@ -1413,7 +1371,6 @@ , <title level="j">Verfassung und Recht in Obersee</title> <biblScope unit="vol">12</biblScope> - ( <date>1979</date> ), <biblScope unit="pp">159 ff</biblScope> -- GitLab