From 11624ff3dc63f1bc1a20cb221d765ee4c0a4b3b0 Mon Sep 17 00:00:00 2001
From: cboulanger <info@bibliograph.org>
Date: Fri, 4 Oct 2024 12:14:05 +0200
Subject: [PATCH] Fix bibligraphy issues

---
 convert-anystyle-data/lib/gold_standard.py    |  172 +
 .../10.1111_1467-6478.00057.xml               | 3660 +++++++++--------
 .../10.1111_1467-6478.00080.xml               | 2213 +++++-----
 .../10.1515_zfrs-1980-0103.xml                | 2941 ++++++-------
 .../10.1515_zfrs-1980-0104.xml                |  116 +-
 .../10.1111_1467-6478.00057.xml               |  325 +-
 .../10.1111_1467-6478.00080.xml               |  230 +-
 .../10.1515_zfrs-1980-0103.xml                | 3496 +---------------
 .../10.1515_zfrs-1980-0104.xml                |  152 +-
 .../tei-to-biblstruct-gs.ipynb                |  223 +-
 10 files changed, 5226 insertions(+), 8302 deletions(-)
 create mode 100644 convert-anystyle-data/lib/gold_standard.py

diff --git a/convert-anystyle-data/lib/gold_standard.py b/convert-anystyle-data/lib/gold_standard.py
new file mode 100644
index 0000000..8628a0e
--- /dev/null
+++ b/convert-anystyle-data/lib/gold_standard.py
@@ -0,0 +1,172 @@
+from lxml import etree
+import os
+from glob import glob
+from copy import deepcopy
+from .string import remove_whitespace, prettify
+from IPython.display import display, Markdown
+from pathlib import Path
+from lxml import etree
+
+# TEI namespace
+tei_namespace = "http://www.tei-c.org/ns/1.0"
+ns = {"tei": tei_namespace }
+
+def add_number_to_bibl(dir_path):
+    """written by GPT-4"""
+    for file_path in glob(f'{dir_path}/*.xml'):
+        print(f' - Processing {file_path}')
+        n = 1
+        tree = etree.parse(file_path)
+        for element in tree.xpath('*//tei:bibl', namespaces=ns):
+            element.attrib['n'] = str(n)
+            n += 1
+        pretty_tree = etree.tostring(tree, pretty_print=True, encoding='utf-8')
+        with open(file_path, 'wb') as file:
+            file.write(pretty_tree)
+
+def remove_encoding_declaration(xml_string):
+    return xml_string.replace('<?xml version="1.0" encoding="UTF-8"?>', '')
+
+def create_gold_standard(bibl_content, biblstruct_content, verbose=False):
+    # TEI namespace
+    tei_namespace = "http://www.tei-c.org/ns/1.0"
+    ns = {"tei": tei_namespace }
+
+    # get source trees and elements
+    bibl_tree = etree.fromstring(remove_encoding_declaration(bibl_content))
+    bibl_struct_tree = etree.fromstring(remove_encoding_declaration(biblstruct_content))
+
+    # create output document
+    output_tree = etree.Element("TEI", {'xmlns':tei_namespace})
+    tei_header = bibl_struct_tree.xpath('./tei:teiHeader', namespaces=ns)[0]
+    output_tree.append(deepcopy(tei_header))
+    standoff = etree.SubElement(output_tree, "standOff")
+
+    # keep track of parent, which can be "note" or "listBibl"
+    current_source_parent = None
+    # keep track of target listBibl node
+    current_target_parent = None
+
+    process_log = []
+
+    # iterate over bibl elements
+    for bibl_element in bibl_tree.xpath('//tei:bibl', namespaces=ns):
+
+        # the number of the bibl element in the document is required
+        if 'n' not in bibl_element.attrib:
+            raise RuntimeError(f"Missing 'n' attribute for bibl element: {bibl_element}")
+        bibl_n = bibl_element.attrib['n']
+
+        # node parent
+        source_parent = bibl_element.getparent()
+        # if the parent changes, create a new target parent
+        if source_parent != current_source_parent:
+            current_source_parent = source_parent
+            parent_tag = etree.QName(current_source_parent).localname
+            parent_type = current_source_parent.attrib['type']
+
+            if parent_type == "footnote" or parent_type == "inText":
+                source_node = source_parent
+            else:
+                source_node = bibl_element
+                # invalidate the pointer to the current source parent to create a new listBibl the next time
+                current_source_parent = None
+
+            attrs = {
+                "type": parent_type,
+            }
+
+            footnote_number = None
+            if parent_type == "footnote":
+                footnote_number = attrs['n'] = source_node.attrib['n']
+
+                # create mew listBibl element for output element
+            current_target_parent = etree.SubElement(standoff, "listBibl", attrs)
+
+            # create <desc> child to store the full input string
+            input_full = etree.SubElement(current_target_parent, "desc", {'type': 'input-full'})
+
+            # get content for it
+            child_xml = etree.tostring(source_node, method="text", encoding='utf-8').decode()
+            xml_content_text = remove_whitespace(child_xml)
+            if footnote_number:
+                xml_content_text = f'{footnote_number} {xml_content_text}'
+            input_full.text = xml_content_text
+
+            # create <desc> child to store the segmented input string
+            input_segmented = etree.SubElement(current_target_parent, "desc", {'type': 'input-segmented'})
+
+            # Generate the high-level segments of the input string
+            # For footnotes and in-text references, these are usually one or more <bibl> elements;
+            # for bibliographies, there is one <bibl> element per <listBibl> element.
+            # As there aren't any suitable other legal children elements of <desc>, we use <desc> and <bibl> to
+            # segment the raw reference strings:
+            # - we create a child <desc> element as direct child of the target <desc> element for each
+            #   non-bibliographic element within the source <bibl> so that we don't have a nested structure
+            # - we create a <bibl> element with the raw string content of the source <bibl> without the <seg type="comment"> parts
+            for elem in source_node:
+
+                last_element = None
+                last_element_parts = None
+
+                for segment in elem:
+                    segment_text_content = etree.tostring(segment, method="text", encoding='utf-8').decode().strip()
+
+                    if 'type' in segment.attrib:
+                        if segment.attrib['type'] == 'comment' or segment.attrib['type'] == 'signal':
+                            comment_child = etree.SubElement(input_segmented, "desc")
+                            comment_child.text = segment_text_content
+                            last_element = None
+                    else:
+                        if last_element is None:
+                            last_element = etree.SubElement(input_segmented, "bibl")
+                            last_element_parts = [segment_text_content]
+                        else:
+                            last_element_parts.append(segment_text_content)
+                        last_element.text = remove_whitespace(" ".join(last_element_parts))
+
+            if footnote_number:
+                input_segmented[0].text = f'{footnote_number} {input_segmented[0].text}'
+
+            if verbose:
+                process_log.append(f' - Analyzing "{xml_content_text[:200]} [...]"')
+
+        # find correspondent biblStruct data
+        bibl_struct_matches = bibl_struct_tree.xpath(f"//tei:biblStruct[@n='{bibl_n}']", namespaces=ns)
+        if len(bibl_struct_matches) > 0:
+            # found it - make a copy and remove unneeded attributes
+            bibl_struct_copy = deepcopy(bibl_struct_matches[0])
+            if bibl_struct_copy.attrib['source']:
+                del bibl_struct_copy.attrib['source']
+            # add it to target listBibl
+            current_target_parent.append(bibl_struct_copy)
+        else:
+            display(Markdown("\n".join(process_log)))
+            raise RuntimeError(f"Could not find matching biblStruct element with id '{bibl_n}'.")
+
+    display(Markdown("\n".join(process_log)))
+    return (etree.tostring(output_tree)).decode()
+
+
+def create_all_gold_standards(bibl_dir, biblstruct_dir, biblstruct_gold_dir, verbose=False):
+    for file_path in glob(f'{bibl_dir}/*.xml'):
+        file_id = os.path.basename(file_path).replace(".xml", "")
+
+        bibl_path = file_path
+        biblstruct_path = f'{biblstruct_dir}/{file_id}.biblstruct.xml'
+        biblstruct_gs_path = f'{biblstruct_gold_dir}/{file_id}.xml'
+
+        # log
+        md_lines = [f'### Processing {file_id}']
+        md_lines.append(f'Files: [TEI/bibl]({Path(bibl_path).as_posix()}) | [TEI/biblStruct]({Path(biblstruct_path).as_posix()}) | [TEI/biblStruct Gold Standard]({Path(biblstruct_gs_path).as_posix()})')
+        display(Markdown("\n".join(md_lines)))
+
+        with (open(bibl_path, 'r', encoding='utf-8') as bibl_file,
+              open(biblstruct_path, 'r', encoding='utf-8') as biblStruct_file):
+            bibl_content = bibl_file.read()
+            biblStruct_content = biblStruct_file.read()
+
+        output_data = create_gold_standard(bibl_content, biblStruct_content, verbose=verbose)
+
+        with open(biblstruct_gs_path, 'w', encoding='utf-8') as output_file:
+            output_file.write(output_data)
\ No newline at end of file
diff --git a/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml b/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml
index d1ebd55..3703271 100644
--- a/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml
+++ b/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml
@@ -1,1803 +1,1861 @@
 <TEI xmlns="http://www.tei-c.org/ns/1.0">
-  <teiHeader>
-    <fileDesc>
-      <titleStmt>
-        <title>10.1111_1467-6478.00057</title>
-      </titleStmt>
-      <publicationStmt>
-        <publisher>mpilhlt</publisher>
-      </publicationStmt>
-      <sourceDesc>
-        <p>10.1111_1467-6478.00057</p>
-      </sourceDesc>
-    </fileDesc>
-  </teiHeader>
-  <text>
-    <body>
-      <p>The article text is not part of this document</p>
-      <note n="1" type="footnote" place="bottom">
-        <bibl n="1">
-          <author>
-            <persName>
-              <forename>A.</forename>
-              <surname>Phillips</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Citizenship and Feminist Politics</title>
-          ’ in
-          <title level="m">Citizenship</title>
-          , ed.
-          <editor>
-            <persName>
-              <forename>G.</forename>
-              <surname>Andrews</surname>
-            </persName>
-          </editor>
-          (
-          <date>1991</date>
-          )
-          <citedRange unit="page" from="77">77</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="2" type="footnote" place="bottom">
-        <bibl n="2">
-          <author>
-            <persName>
-              <forename>T.</forename>
-              <surname>Brennan</surname>
-            </persName>
-          </author>
-          and
-          <author>
-            <persName>
-              <forename>C.</forename>
-              <surname>Pateman</surname>
-            </persName>
-          </author>
-          , ‘“
-          <title level="a">Mere Auxiliaries to the Commonwealth”: Women and the Origins of Liberalism</title>
-          ’ (
-          <date>1979</date>
-          )
-          <biblScope unit="volume" from="27" to="27">27</biblScope>
-          <title level="j">Political Studies</title>
-          <biblScope unit="page" from="183">183</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="3" type="footnote" place="bottom">
-        <bibl n="3">
-          <author>
-            <persName>
-              <forename>M.</forename>
-              <surname>Sawer</surname>
-            </persName>
-          </author>
-          and
-          <author>
-            <persName>
-              <forename>M.</forename>
-              <surname>Simms</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">A Woman’s Place: Women and Politics in Australia</title>
-          (
-          <edition>2nd ed.</edition>
-          ,
-          <date>1993</date>
-          ).
-        </bibl>
-      </note>
-      <note n="4" type="footnote" place="bottom">
-        <bibl n="4">
-          <seg type="comment">I have explored the gendered nature of citizenship at greater length in two complementary papers</seg>
-          : ‘
-          <title level="a">Embodying the Citizen</title>
-          ’ in
-          <title level="m">Public and Private: Feminist Legal Debates</title>
-          , ed.
-          <editor>
-            <persName>
-              <forename>M.</forename>
-              <surname>Thornton</surname>
-            </persName>
-          </editor>
-          (
-          <date>1995</date>
-          )
-        </bibl>
-        <bibl n="5">
-          <seg type="signal">and</seg>
-          ‘
-          <title level="a">Historicising Citizenship: Remembering Broken Promises</title>
-          ’ (
-          <date>1996</date>
-          )
-          <biblScope unit="volume" from="20" to="20">20</biblScope>
-          <title level="j">Melbourne University Law Rev.</title>
-          <biblScope unit="page" from="1072">1072</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="5" type="footnote" place="bottom">
-        <bibl n="6">
-          <author>
-            <persName>
-              <forename>S.</forename>
-              <surname>Walby</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Is Citizenship Gendered?</title>
-          ’ (
-          <date>1994</date>
-          )
-          <biblScope unit="volume" from="28" to="28">28</biblScope>
-          <title level="j">Sociology</title>
-          <biblScope unit="page" from="379">379</biblScope>
-        </bibl>
-      </note>
-      <note n="6" type="footnote" place="bottom">
-        <bibl n="7">
-          <author>
-            <persName>
-              <forename>I.</forename>
-              <surname>Kant</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Metaphysical First Principles of the Doctrine of Right [1785]</title>
-          ’ in
-          <title level="m">The Metaphysics of Morals</title>
-          (
-          <respStmt>
-            <resp>trans.</resp>
-            <persName role="translator">
-              M. Gregor
-            </persName>
-          </respStmt>
-          ,
-          <date>1991</date>
-          )
-          <biblScope unit="page" from="125" to="6">125–6</biblScope>
-          <citedRange unit="page" from="146" to="146">s. 146</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="7" type="footnote" place="bottom">
-        <bibl n="8">
-          <author>
-            <persName>
-              <forename>U.</forename>
-              <surname>Vogel</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Marriage and the Boundaries of Citizenship</title>
-          ’ in
-          <title level="m">The Condition of Citizenship</title>
-          , ed.
-          <editor>
-            <persName>
-              <forename>B.</forename>
-              <surname>van Steenbergen</surname>
-            </persName>
-          </editor>
-          (
-          <date>1994</date>
-          )
-          <biblScope unit="page" from="75">75</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="8" type="footnote" place="bottom">
-        <bibl n="9">
-          <author>
-            <persName>
-              <forename>N.</forename>
-              <surname>Fraser</surname>
-            </persName>
-          </author>
-          and
-          <author>
-            <persName>
-              <forename>L.</forename>
-              <surname>Gordon</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Civil Citizenship against Social Citizenship?</title>
-          ’
-          <ref>in id.</ref>
-          ,
-          <citedRange unit="page" from="97">p. 97</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="9" type="footnote" place="bottom">
-        <bibl n="10">
-          <author>
-            <persName>
-              <surname>Vogel</surname>
-            </persName>
-          </author>
-          ,
-          <ref>id.</ref>
-          , p.
-          <citedRange unit="page" from="79">79</citedRange>
-          .
-        </bibl>
-        <bibl n="11">
-          <author>
-            <persName>
-              <forename>W.</forename>
-              <surname>Blackstone</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Commentaries</title>
-          (
-          <seg type="comment">Facsimile of 1st. ed. of 1765–69</seg>
-          ,
-          <date>1979</date>
-          )
-          <citedRange unit="page" from="442" to="442">442</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="11" type="footnote" place="bottom">
-        <bibl n="12">
-          <author>
-            <persName>
-              <surname>Vogel</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 7</ref>
-          , pp.
-          <citedRange unit="page" from="80" to="1">80–1</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="12" type="footnote" place="bottom">
-        <bibl n="13">
-          <editor>
-            <persName>
-              <forename>F.</forename>
-              <surname>Haug</surname>
-            </persName>
-          </editor>
-           (ed.),
-          <title level="m">Female Sexualization: A Collective Work of Memory</title>
-          (
-          <date>1987</date>
-          )
-          <citedRange unit="page" from="196">196</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="13" type="footnote" place="bottom">
-        <bibl n="14">
-          <author>
-            <persName>
-              <forename>A.</forename>
-              <surname>Bottomley</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Self and Subjectivities: Languages of Claim in Property Law</title>
-          ’ (
-          <date>1993</date>
-          )
-          <biblScope unit="volume" from="20" to="20">20</biblScope>
-          <title level="j">J. of Law and Society</title>
-          <biblScope unit="page" from="56">56</biblScope>
-          ,
-          <citedRange unit="page" from="61">61</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="14" type="footnote" place="bottom">
-        <bibl n="15">
-          <author>
-            <persName>
-              <forename>D.</forename>
-              <surname>West</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Power and Formation: New Foundations for a Radical Concept of Power</title>
-          ’ (
-          <date>1987</date>
-          )
-          <biblScope unit="volume">30</biblScope>
-          <title level="j">Inquiry</title>
-          <biblScope unit="page">137</biblScope>
-          ,
-          <citedRange unit="page" from="145">145</citedRange>
-          .
-        </bibl>
-        <bibl n="16">
-          <seg type="signal">Compare</seg>
-          <author>
-            <persName>
-              <forename>M.</forename>
-              <surname>Foucault</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Power/Knowledge: Selected Interviews and Other Writings 1972–1977</title>
-          , ed.
-          <editor>
-            <persName>
-              <forename>C.</forename>
-              <surname>Gordon</surname>
-            </persName>
-          </editor>
-          (
-          <date>1980</date>
-          )
-          <citedRange unit="page" from="98">98</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="15" type="footnote" place="bottom">
-        <bibl n="17">
-          <seg type="signal">For a detailed analysis of legal method and the political role it plays, see</seg>
-          <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="volume" from="3" to="3">3</biblScope>
-          <title level="j">Aust. J. of Law and Society</title>
-          <biblScope unit="page" from="30">30</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="16" type="footnote" place="bottom">
-        <bibl n="18">
-          <author>
-            <persName>
-              <forename>H.S.</forename>
-              <surname>Maine</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas</title>
-          (
-          <edition>10th ed.</edition>
-          ,
-          <date>1912</date>
-          )
-          <citedRange unit="page" from="174">174</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="17" type="footnote" place="bottom">
-        <bibl n="19">
-          <seg type="comment">This was particularly the case in the United States of America</seg>
-          .
-        </bibl>
-        <bibl n="20">
-          <seg type="signal">See</seg>
-          <author>
-            <persName>
-              <forename>M.J.</forename>
-              <surname>Horwitz</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">The Transformation of American Law, 1780–1860</title>
-          (
-          <date>1977</date>
-          )
-          <citedRange unit="page" from="160">160</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="18" type="footnote" place="bottom">
-        <bibl n="21">
-          <author>
-            <persName>
-              <forename>M.</forename>
-              <surname>Grossberg</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Governing the Hearth: Law and the Family in Nineteenth-Century America</title>
-          (
-          <date>1985</date>
-          )
-          <citedRange unit="page" from="ix">ix</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="19" type="footnote" place="bottom">
-        <bibl n="22">
-          <seg type="comment">Staves postulates that the position was somewhat more complicated in that marriage, as a status, crumbled
-            in response to contract ideology in the seventeenth century but, by the end of the eighteenth century,
-            deeper patriarchal structures were re-imposed.</seg>
-        </bibl>
-        <bibl n="23">
-          <seg type="signal">See</seg>
-          <author>
-            <persName>
-              <forename>S.</forename>
-              <surname>Staves</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Married Women’s Separate Property in England, 1660–1833</title>
-          (
-          <date>1990</date>
-          )
-          <citedRange unit="page" from="4" to="4">4</citedRange>
-          ,
-          <citedRange unit="page" from="220">220</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="20" type="footnote" place="bottom">
-        <bibl n="24">
-          <seg type="comment">Siegel presents a valuable study of the changing norms of marriage in the context of wife beating</seg>
-          .
-        </bibl>
-        <bibl n="25">
-          <seg type="signal">See</seg>
-          <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="volume" from="105" to="105">105</biblScope>
-          <title level="j">Yale Law J.</title>
-          <biblScope unit="page" from="2117">2117</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="21" type="footnote" place="bottom">
-        <bibl n="26">
-          <author>
-            <persName>
-              <forename>C.</forename>
-              <surname>Pateman</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">The Sexual Contract</title>
-          (
-          <date>1988</date>
-          ).
-        </bibl>
-        <bibl n="27">
-          <seg type="signal">For further analysis of the marriage contract, see</seg>
-          <author>
-            <persName>
-              <forename>K.</forename>
-              <surname>O’Donovan</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Family Matters</title>
-          (
-          <date>1993</date>
-          ),
-          <citedRange unit="page" from="43" to="59">especially 43–59</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="23" type="footnote" place="bottom">
-        <bibl n="28">
-          <title level="m">Crimes (Sexual Assault) Amendment Act</title>
-          <date>1981</date>
-          (
-          <pubPlace>N.S.W.</pubPlace>
-          );
-        </bibl>
-        <bibl n="29">
-          <title level="m">Criminal Law Consolidation Act Amendment Act</title>
-          <date>1976</date>
-          (
-          <pubPlace>S.A.</pubPlace>
-          );
-        </bibl>
-        <bibl n="30">
-          <title level="m">Criminal Code (Sexual Offences) Act</title>
-          <date>1987</date>
-          (
-          <pubPlace>Tas.</pubPlace>
-          );
-        </bibl>
-        <bibl n="31">
-          <title level="m">Crimes (Sexual Offences)</title>
-          <date>1991</date>
-          (
-          <pubPlace>Vic.</pubPlace>
-          );
-        </bibl>
-        <bibl n="32">
-          <title level="m">Acts Amendment (Sexual Assault) Act</title>
-          <date>1985</date>
-          (
-          <pubPlace>W.A.</pubPlace>
-          ).
-          <seg type="comment">The High Court upheld the validity of the South Australian law in 1991</seg>
-        </bibl>
-        <bibl n="33">
-          <seg type="signal">(see</seg>
-          <title level="m">R. v. L.</title>
-          (
-          <date>1991</date>
-          )
-          <idno type="caseNumber">103 A.L.R. 577</idno>
-          ),
-          <seg type="comment">the same year that the House of Lords abolished the immunity</seg>
-           (
-        </bibl>
-        <bibl n="35">
-          <seg type="signal">see</seg>
-          <title level="m">R. v. R.</title>
-          [
-          <date>1991</date>
-          ]
-          <biblScope unit="volume" from="2" to="2">2</biblScope>
-          <title level="j">All E.R.</title>
-          <biblScope unit="page" from="257">257</biblScope>
-          ).
-        </bibl>
-      </note>
-      <note n="24" type="footnote" place="bottom">
-        <bibl n="37">
-          <author>
-            <persName>
-              <forename>M.</forename>
-              <surname>Freeman</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Contracting in the Haven: Balfour v. Balfour Revisited</title>
-          ’ in
-          <title level="m">Exploring the Boundaries of Contract</title>
-          , ed.
-          <editor>
-            <persName>
-              <forename>R.</forename>
-              <surname>Halson</surname>
-            </persName>
-          </editor>
-          (
-          <date>1996</date>
-          )
-          <biblScope unit="page" from="74">74</biblScope>
-        </bibl>
-        <bibl n="38">
-          <author>
-            <persName>
-              <forename>R.</forename>
-              <surname>Collier</surname>
-            </persName>
-          </author>
-          ,
-          <title level="a">Masculinity, Law and the Family</title>
-          (
-          <date>1995</date>
-          )
-          <citedRange unit="page" from="127">127 and throughout</citedRange>
-          .
-        </bibl>
-        <bibl n="39">
-          <seg type="signal">See</seg>
-          <author>
-            <persName>
-              <surname>Collier</surname>
-            </persName>
-          </author>
-          <seg type="comment">further for a comprehensive study of sexuality in marriage</seg>
-          .
-        </bibl>
-      </note>
-      <note n="25" type="footnote" place="bottom">
-        <bibl n="40">
-          <author>
-            <persName>
-              <forename>P.S.</forename>
-              <surname>Atiyah</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">An Introduction to the Law of Contract</title>
-          (
-          <edition>5th ed.</edition>
-          ,
-          <date>1995</date>
-          )
-          <citedRange unit="page" from="3">3</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="26" type="footnote" place="bottom">
-        <bibl n="41">
-          <seg type="comment">The Australian Law Reform Commission has addressed the issue and recommended recognition of prenuptial
-            agreements.</seg>
-          <seg type="signal">See</seg>
-          <author>
-            <orgName>A.L.R.C.</orgName>
-          </author>
-          ,
-          <title level="m">Matrimonial Property, report no. 37</title>
-          (
-          <date>1987</date>
-          );
-        </bibl>
-        <bibl n="42">
-          <author>
-            <orgName>A.L.R.C.</orgName>
-          </author>
-          .,
-          <title level="m">Report of the Joint Select Committee on Certain Aspects of the Operation and Interpretation of the Family
-            Law Act</title>
-          (
-          <date>1992</date>
-          ).
-        </bibl>
-        <bibl n="43">
-          <seg type="signal">For critique, see</seg>
-          <author>
-            <persName>
-              <forename>M.</forename>
-              <surname>Neave</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Private Ordering in Family Law – Will Women Benefit?</title>
-          ’ in
-          <editor><persName><surname>Thornton</surname></persName></editor>
-          ,
-          <ref>op. cit., n. 4.</ref>
-        </bibl>
-        <bibl n="44">
-          <seg type="signal">For a feminist critique of contract in the American context, see</seg>
-          <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="volume" from="94" to="94">94</biblScope>
-          <title level="j">Yale Law J.</title>
-          <biblScope unit="page" from="997">997</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="27" type="footnote" place="bottom">
-        <bibl n="45">
-          <author>
-            <persName>
-              <forename>L.</forename>
-              <forename>J.</forename>
-              <surname>Weitzman</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">The Marriage Contract: Spouses, Lovers, and the Law</title>
-          (
-          <date>1981</date>
-          )
-          <citedRange unit="page" from="347">347 ff.</citedRange>
-        </bibl>
-      </note>
-      <note n="28" type="footnote" place="bottom">
-        <bibl n="46">
-          <author>
-            <persName>
-              <surname>Grossberg</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 18</ref>
-          , p.
-          <citedRange unit="page" from="52">52</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="29" type="footnote" place="bottom">
-        <bibl n="47">
-          <author>
-            <persName>
-              <forename>V.</forename>
-              <surname>Balfour</surname>
-            </persName>
-          </author>
-          [
-          <date>1919</date>
-          ]
-          <biblScope unit="volume" from="2">2</biblScope>
-          <title level="j">K.B.</title>
-          <biblScope unit="page" from="571">571</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="30" type="footnote" place="bottom">
-        <bibl n="48">
-          <author>
-            <persName>
-              <surname>Freeman</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 24.</ref>
-          <seg type="comment">While acknowledging the trends towards contractualism and private ordering, Regan cautions against it,
-            noting that greater freedom to contract invites greater scrutiny by the courts. More significantly, however,
-            he would rather reclaim the idea of status by injecting it with new notions of responsibility and
-            relationality, as well as divesting it of its sexist assumptions.</seg>
-        </bibl>
-        <bibl n="49">
-          <seg type="signal">See</seg>
-          <author>
-            <persName>
-              <forename>M.C.</forename>
-              <surname>Regan</surname>
-            </persName>
-          </author>
-          .,
-          <title level="m">Family Law and the Pursuit of Intimacy</title>
-          (
-          <date>1993</date>
-          ).
-        </bibl>
-      </note>
-      <note n="31" type="footnote" place="bottom">
-        <bibl n="50">
-          <seg type="signal">For example,</seg>
-          <title level="m">Law Reform (Miscellaneous Provisions) Act</title>
-          <date>1970</date>
-          (
-          <pubPlace>U.K.</pubPlace>
-          );
-        </bibl>
-        <bibl n="51">
-          <title level="m">Domestic Relations Act</title>
-          <date>1975</date>
-          (
-          <pubPlace>N.Z.</pubPlace>
-          );
-        </bibl>
-        <bibl n="52">
-          <title level="m">Marriage Act Amendment Act</title>
-          <date>1976</date>
-          (
-          <pubPlace>Cwth.</pubPlace>
-          )
-        </bibl>
-      </note>
-      <note n="32" type="footnote" place="bottom">
-        <bibl n="53">
-          <author>
-            <persName>
-              <forename>G.S.</forename>
-              <surname>Frost</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Promises Broken: Courtship, Class, and Gender in Victorian England</title>
-          (
-          <date>1995</date>
-          );
-        </bibl>
-        <bibl n="54">
-          <author>
-            <persName>
-              <surname>Thornton</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit.</ref>
-          (
-          <date>1996</date>
-          ),
-          <ref>n. 4.</ref>
-        </bibl>
-      </note>
-      <note n="33" type="footnote" place="bottom">
-        <bibl n="55">
-          <author>
-            <persName>
-              <surname>Grossberg</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 18</ref>
-          , p.
-          <citedRange unit="page" from="38">38</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="34" type="footnote" place="bottom">
-        <bibl n="56">
-          <seg type="signal">Compare</seg>
-          <author>
-            <persName>
-              <forename>U.</forename>
-              <surname>Vogel</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Is Citizenship Gender-Specific?</title>
-          ’ in
-          <title level="m">The Frontiers of Citizenship</title>
-          , eds.
-          <editor>
-            <persName>
-              <forename>U.</forename>
-              <surname>Vogel</surname>
-            </persName>
-          </editor>
-          and
-          <editor>
-            <persName>
-              <forename>M.</forename>
-              <surname>Moran</surname>
-            </persName>
-          </editor>
-          (
-          <date>1991</date>
-          )
-          <biblScope unit="page" from="59">59</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="35" type="footnote" place="bottom">
-        <bibl n="57">
-          <seg type="signal">See, for example,</seg>
-        </bibl>
-        <bibl n="58">
-          <title level="m">Bradwell v. Illinois 83 U.S. (16 Wall) 130</title>
-          (
-          <date>1873</date>
-          ).
-        </bibl>
-      </note>
-      <note n="36" type="footnote" place="bottom">
-        <bibl n="59">
-          <seg type="signal">Compare</seg>
-          <author>
-            <persName>
-              <forename>J.</forename>
-              <surname>Pahl</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Money and Marriage</title>
-          (
-          <date>1989</date>
-          )
-          <citedRange unit="page" from="5">5</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="37" type="footnote" place="bottom">
-        <bibl n="60">
-          <author>
-            <persName>
-              <surname>Although</surname>
-            </persName>
-          </author>
-          <seg type="comment">Australia, like the United Kingdom, has a separate property regime, the courts are endowed with broad
-            powers under the Family Law Act 1975 (Cwth.) to distribute property equitably.</seg>
-        </bibl>
-        <bibl n="61">
-          <seg type="signal">For detailed treatment, see</seg>
-          <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="m">Australian Family Law in Context: Commentary and Materials</title>
-          (
-          <date>1994</date>
-          ).
-          <seg type="comment">Most civil law countries and most American states have developed community property regimes which
-            recognize the joint ownership of property acquired during marriage, but the legal significance is similarly
-            directed to the time of divorce.</seg>
-        </bibl>
-        <bibl n="62">
-          <seg type="signal">For discussion of the position during marriage, see</seg>
-          <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="volume" from="56" to="56">56</biblScope>
-          <title level="j">Law and Contemporary Problems</title>
-          <biblScope unit="page" from="99">99</biblScope>
-          .
-        </bibl>
-        <bibl n="63">
-          <seg type="signal">For a discussion of the genesis of the two systems, see</seg>
-          <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="volume" from="78" to="78">78</biblScope>
-          <title level="j">Michigan Law Rev.</title>
-          <biblScope unit="page" from="59">59</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="38" type="footnote" place="bottom">
-        <bibl n="64">
-          <seg type="comment">The legal construction of masculinity and femininity in family law has been the subject of recent
-            scholarly interest.</seg>
-        </bibl>
-        <bibl n="65">
-          <seg type="signal">Notable examples are</seg>
-          <author>
-            <persName>
-              <surname>O’Donovan</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 21</ref>
-        </bibl>
-        <bibl n="66">
-          <seg type="signal">and</seg>
-          <author>
-            <persName>
-              <surname>Collier</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 24.</ref>
-        </bibl>
-      </note>
-      <note n="39" type="footnote" place="bottom">
-        <bibl n="67">
-          <seg type="signal">For discussion of sex and legal subjecthood, see</seg>
-          <author>
-            <persName>
-              <forename>N.</forename>
-              <surname>Naffine</surname>
-            </persName>
-          </author>
-          ‘
-          <title level="a">Sexing the Subject (of Law)</title>
-          ’ in
-          <editor>
-            <persName>
-              <surname>Thornton</surname>
-            </persName>
-          </editor>
-          ,
-          <ref>op. cit.</ref>
-          (
-          <date>1995</date>
-          ),
-          <ref>n. 4.</ref>
-        </bibl>
-      </note>
-      <note n="40" type="footnote" place="bottom">
-        <bibl n="68">
-          <title level="m">Contracts Review Act</title>
-          <date>1980</date>
-          (
-          <pubPlace>N.S.W.</pubPlace>
-          ).
-        </bibl>
-      </note>
-      <note n="41" type="footnote" place="bottom">
-        <bibl n="69">
-          <author>
-            <persName>
-              <forename>J.</forename>
-              <surname>Nedelsky</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy</title>
-          (
-          <date>1990</date>
-          ),
-          <citedRange unit="page" from="223">especially 223 ff</citedRange>
-        </bibl>
-      </note>
-      <note n="42" type="footnote" place="bottom">
-        <bibl n="70">
-          <author>
-            <persName>
-              <forename>C.B.</forename>
-              <surname>Macpherson</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Democratic Theory: Essays in Retrieval</title>
-          (
-          <date>1973</date>
-          )
-          <citedRange unit="page" from="120">120</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="43" type="footnote" place="bottom">
-        <bibl n="71">
-          <seg type="signal">For example,</seg>
-          <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="volume" from="4" to="4">4</biblScope>
-          <title level="j">Aust. Feminist Law J.</title>
-          <biblScope unit="page" from="93">93</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="44" type="footnote" place="bottom">
-        <bibl n="72">
-          <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="volume" from="13" to="13">13</biblScope>
-          <title level="j">Law in Context</title>
-          <biblScope unit="page" from="23">23</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="45" type="footnote" place="bottom">
-        <bibl n="73">
-          <ref>id.</ref>
-          , p.
-          <citedRange unit="page" from="24">24</citedRange>
-          <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="volume" from="57" to="57">57</biblScope>
-          <title level="j">Modern Law Rev.</title>
-          <biblScope unit="page" from="467">467,</biblScope>
-          <citedRange unit="page" from="468">468</citedRange>
-          .
-        </bibl>
-        <bibl n="74">
-          <seg type="signal">See, also,</seg>
-          <title level="m">Barclays Bank v. O’Brien</title>
-          [
-          <date>1994</date>
-          ]
-          <idno type="caseNumber">1 A.C. 180</idno>
-          ,
-          <citedRange unit="page" from="at">at 185</citedRange>
-          <seg type="comment">per Brown-Wilkinson L.</seg>
-        </bibl>
-      </note>
-      <note n="46" type="footnote" place="bottom">
-        <bibl n="75">
-          <author>
-            <persName>
-              <surname>Baron</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 44</ref>
-          , p.
-          <citedRange unit="page" from="34">34</citedRange>
-          .
-        </bibl>
-        <bibl n="76">
-          <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="volume" from="16" to="16">16</biblScope>
-          <title level="j">Legal Studies</title>
-          <biblScope unit="page" from="368">368</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="47" type="footnote" place="bottom">
-        <bibl n="77">
-          <seg type="signal">Examples are legion, and by no means confined to the more sensational criminal law cases picked up by
-            the media, such as
-        </seg>
-          <title level="m">R. v. Johns</title>
-          ,
-          <author>
-            <orgName>Supreme Court of South Australia</orgName>
-          </author>
-          ,
-          <date>26 August 1992</date>
-          <seg type="comment">(unreported) in which Bollen J. stated that it was acceptable for a husband to resort to ‘rougher than
-            usual handling’ to persuade his wife to have sex with him.</seg>
-        </bibl>
-        <bibl n="78">
-          <seg type="signal">For examples relating to STD, see</seg>
-          <author>
-            <persName>
-              <surname>Howell</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 43.</ref>
-        </bibl>
-      </note>
-      <note n="48" type="footnote" place="bottom">
-        <bibl n="79">
-          <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="volume" from="59" to="59">59</biblScope>
-          <title level="j">Modern Law Rev.</title>
-          <biblScope unit="page" from="675">675</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="49" type="footnote" place="bottom">
-        <bibl n="80">
-          <title level="m">National Australia Bank Ltd v. Garcia</title>
-          (
-          <date>1996</date>
-          )
-          <biblScope unit="volume" from="39" to="39">39</biblScope>
-          <title level="j">N.S.W.L.R.</title>
-          <biblScope unit="page" from="577">577</biblScope>
-          (
-          <pubPlace>N.S.W.C.A.</pubPlace>
-          ).
-        </bibl>
-      </note>
-      <note n="50" type="footnote" place="bottom">
-        <bibl n="81">
-          (
-          <date>1991</date>
-          )
-          <biblScope unit="volume">25</biblScope>
-          <title level="j">N.S.W.L.R.</title>
-          <biblScope unit="page" from="32">32</biblScope>
-          (
-          <pubPlace>C.A.</pubPlace>
-          ).
-        </bibl>
-      </note>
-      <note n="52" type="footnote" place="bottom">
-        <bibl n="82">
-          (
-          <date>1994</date>
-          )
-          <idno type="caseNumber">A.S.C. 56–268</idno>
-          (
-          <pubPlace>N.S.W.C.A.</pubPlace>
-          ).
-        </bibl>
-      </note>
-      <note n="53" type="footnote" place="bottom">
-        <bibl n="83">
-          <seg type="comment">Based on the</seg>
-          <title level="m">Trade Practices Act 1974</title>
-          (
-          <pubPlace>Cwth.</pubPlace>
-          ), s.
-          <citedRange unit="page" from="52">52</citedRange>
-        </bibl>
-        <bibl n="84">
-          <seg type="comment">and the</seg>
-          <title level="m">Contracts Review Act</title>
-          <date>1980</date>
-          (
-          <pubPlace>N.S.W.</pubPlace>
-          ).
-          <biblScope unit="volume" from="54" to="54">54</biblScope>
-          (
-          <date>1994</date>
-          )
-          <idno type="caseNumber">A.S.C. 56–270</idno>
-          (
-          <pubPlace>N.S.W.C.A.</pubPlace>
-          )
-        </bibl>
-      </note>
-      <note n="55" type="footnote" place="bottom">
-        <bibl n="85">
-          <seg type="comment">A number of recent English cases have also turned on the question of whether the wife received independent
-            legal advice. The House of Lords considered the issue in</seg>
-          <title level="m">Barclays Bank v. O’Brien</title>
-          [
-          <date>1994</date>
-          ]
-          <idno type="caseNumber">1 A.C. 180</idno>
-          .
-        </bibl>
-        <bibl n="86">
-          <seg type="signal">See, also,</seg>
-          <title level="m">Banco Exterior Internacional v. Mann</title>
-          [
-          <date>1995</date>
-          ]
-          <biblScope unit="volume">1</biblScope>
-          <title level="j">All E.R.</title>
-          <biblScope unit="page" from="936">936</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="56" type="footnote" place="bottom">
-        <bibl n="87">
-          <seg type="signal">See</seg>
-          <author>
-            <persName>
-              <forename>I.J.</forename>
-              <surname>Hardingham</surname>
-            </persName>
-          </author>
-          and
-          <author>
-            <persName>
-              <forename>M.A.</forename>
-              <surname>Neave</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Australian Family Property Law</title>
-          (
-          <date>1984</date>
-          )
-          <citedRange unit="page" from="94">94</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="57" type="footnote" place="bottom">
-        <bibl n="88">
-          <seg type="signal">Compare</seg>
-          <author>
-            <persName>
-              <forename>K.</forename>
-              <surname>O’Donovan</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Sexual Divisions in Law</title>
-          (
-          <date>1985</date>
-          ),
-          <citedRange unit="page" from="112" to="118">especially 112–18</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="58" type="footnote" place="bottom">
-        <bibl n="89">
-          <seg type="comment">Although Reich’s work on the conceptualization of non-traditional sources of wealth, such as employment
-            and professional qualifications, as forms of ‘new property’ has been influential, he did not broach the
-            subject of caring work.</seg>
-          <seg type="signal">See</seg>
-          <author>
-            <persName>
-              <forename>C.A.</forename>
-              <surname>Reich</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">The New Property</title>
-          ’ (
-          <date>1964</date>
-          )
-          <biblScope unit="volume" from="73" to="73">73</biblScope>
-          <title level="j">Yale Law J.</title>
-          <biblScope unit="page" from="733">733</biblScope>
-          .
-          <seg type="comment">Despite a greater sensitivity to the interests of women, as well as writing almost two decades later,
-            Glendon also fails to address the question of unpaid work as a form of property.</seg>
-          <seg type="signal">See</seg>
-          <author>
-            <persName>
-              <forename>M.A.</forename>
-              <surname>Glendon</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">The New Family and the New Property</title>
-          (
-          <date>1981</date>
-          ).
-        </bibl>
-      </note>
-      <note n="59" type="footnote" place="bottom">
-        <bibl n="90">
-          <date>1992</date>
-          )
-          <biblScope unit="volume" from="29">29</biblScope>
-          <title level="j">N.S.W.L.R.</title>
-          <biblScope unit="page" from="188">188</biblScope>
-          (
-          <pubPlace>C.A.</pubPlace>
-          )
-        </bibl>
-      </note>
-      <note n="60" type="footnote" place="bottom">
-        <bibl n="91">
-          <seg type="comment">Trusts of this kind have been judicially created in order to obviate injustice. Ironically, such devices
-            have been commonly utilized over the last twenty years or so in property disputes arising out of de facto
-            relationships, where divisibility has permitted separate interests to crystallize in ways not recognized
-            within marriage.</seg>
-        </bibl>
-        <bibl n="92">
-          <seg type="signal">For a discussion of recent trends in Australia, see</seg>
-          <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="volume" from="11" to="11">11</biblScope>
-          <title level="j">Australian J. Family Law</title>
-          <biblScope unit="page" from="100">100</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="61" type="footnote" place="bottom">
-        <bibl n="93">
-          <seg type="signal">For discussion, see</seg>
-          <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="volume" from="16" to="16">16</biblScope>
-          <title level="j">Sydney Law Rev.</title>
-          <biblScope unit="page" from="412">412</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="62" type="footnote" place="bottom">
-        <bibl n="94">
-          <seg type="signal">The</seg>
-          <author>
-            <persName>
-              <roleName type="honorific">Justice</roleName>
-              <forename>T. E.</forename>
-              <surname>Lindenmayer</surname>
-            </persName>
-          </author>
-          and
-          <author>
-            <persName>
-              <forename>P.A.</forename>
-              <surname>Doolan</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">When Bankruptcy and Family Law Collide</title>
-          ’ (
-          <date>1994</date>
-          )
-          <biblScope unit="volume" from="8" to="8">8</biblScope>
-          <title level="j">Aust. J. Family Law</title>
-          <biblScope unit="page" from="111">111</biblScope>
-          ,
-          <citedRange unit="page" from="133">133</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="63" type="footnote" place="bottom">
-        <bibl n="95">
-          <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="volume" from="18" to="18">18</biblScope>
-          <title level="j">J. of Law and Society</title>
-          <biblScope unit="page" from="206">206</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="64" type="footnote" place="bottom">
-        <bibl n="96">
-          <author>
-            <persName>
-              <surname>O’Donovan</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 57</ref>
-          ;
-        </bibl>
-        <bibl n="97">
-          <author>
-            <persName>
-              <surname>Thornton</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit. (1995), n. 4.</ref>
-        </bibl>
-      </note>
-      <note n="65" type="footnote" place="bottom">
-        <bibl n="98">
-          <author><orgName>N.S.W.C.A.</orgName></author>
-          ,
-          <seg type="publicationStatus">unreported</seg>
-          ,
-          <date when="1994-05-23">23 May 1994</date>
-          .
-        </bibl>
-      </note>
-      <note n="66" type="footnote" place="bottom">
-        <bibl n="99">
-          <seg type="signal">For detailed discussion of the ramifications, see</seg>
-          <author>
-            <persName>
-              <forename>L.J.</forename>
-              <surname>Weitzman</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in
-            America</title>
-          (
-          <date>1985</date>
-          ).
-        </bibl>
-      </note>
-      <note n="67" type="footnote" place="bottom">
-        <bibl n="100">
-          <author>
-            <persName>
-              <forename>M.L.</forename>
-              <surname>Shanley</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Feminism, Marriage, and the Law in Victorian England, 1850–1895</title>
-          (
-          <date>1989</date>
-          )
-          <citedRange unit="page" from="46">46</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="68" type="footnote" place="bottom">
-        <bibl n="101">
-          <seg type="comment">The move to contract as the governing principle of family law has been noted by commentators</seg>
-          .
-        </bibl>
-        <bibl n="102">
-          <seg type="signal">See, for example,</seg>
-          <author>
-            <persName>
-              <surname>Freeman</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 24</ref>
-          ;
-        </bibl>
-        <bibl n="103">
-          <author>
-            <persName>
-              <surname>Neave</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 26</ref>
-          ;
-        </bibl>
-        <bibl n="104">
-          <author>
-            <persName>
-              <surname>Regan</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 30.</ref>
-        </bibl>
-      </note>
-      <note n="69" type="footnote" place="bottom">
-        <bibl n="105">
-          <title level="m">Bryson v. Bryant</title>
-          <seg type="comment">in respect of which, it might be noted, the High Court refused leave to appeal. Marcia Neave notes the
-            ‘artificiality’ of the concept of intention in a discussion of the constructive trust in the context of de
-            facto spouses.</seg>
-        </bibl>
-        <bibl n="106">
-          <seg type="signal">See</seg>
-          <author>
-            <persName>
-              <forename>M.</forename>
-              <surname>Neave</surname>
-            </persName>
-          </author>
-           ‘
-          <title level="a">Three Approaches to Family Law Disputes – Intention/Belief, Unjust Enrichment and Unconscionability’</title>
-          in
-          <title level="m">Equity, Fiduciaries and Trusts</title>
-          , ed.
-          <editor>
-            <persName>
-              <forename>T.G.</forename>
-              <surname>Youdan</surname>
-            </persName>
-          </editor>
-          (
-          <date>1989</date>
-          )
-          <biblScope unit="page" from="262" to="264">262–4</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="70" type="footnote" place="bottom">
-        <bibl n="107">
-          <seg type="signal">For an interesting case study of this phenomenon, see</seg>
-          <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="volume" from="19" to="19">19</biblScope>
-          <title level="j">Melbourne University Law Rev</title>
-          .
-          <biblScope unit="page" from="701">701</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="71" type="footnote" place="bottom">
-        <bibl n="108">
-          <author>
-            <persName>
-              <forename>C.</forename>
-              <surname>Colebrook</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Feminist Ethics and Historicism</title>
-          ’ (
-          <date>1996</date>
-          )
-          <biblScope unit="volume" from="11" to="11">11</biblScope>
-          <title level="j">Aust. Feminist Studies</title>
-          <biblScope unit="page" from="295">295,</biblScope>
-          <citedRange unit="page" from="300">300</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="72" type="footnote" place="bottom">
-        <bibl n="109">
-          <author>
-            <persName>
-              <forename>M.</forename>
-              <forename>Albertson</forename>
-              <surname>Fineman</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies</title>
-          (
-          <date>1995</date>
-          )
-          <citedRange unit="page" from="7">7</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="73" type="footnote" place="bottom">
-        <bibl n="110">
-          <seg type="signal">Compare</seg>
-          <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="volume" from="45" to="45">45</biblScope>
-          <title level="j">Modern Law Rev.</title>
-          <biblScope unit="page" from="424">424,</biblScope>
-          <citedRange unit="page" from="431" to="3">431–3</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="74" type="footnote" place="bottom">
-        <bibl n="111">
-          <seg type="signal">For example,</seg>
-          <title level="m">De Facto Relationships Act</title>
-          <date>1984</date>
-          (
-          <pubPlace>N.S.W</pubPlace>
-          .).
-        </bibl>
-        <bibl n="112">
-          <seg type="signal">For detailed analysis of the policy considerations, see</seg>
-          <author>
-            <persName>
-              <forename>M.D.A.</forename>
-              <surname>Freeman</surname>
-            </persName>
-          </author>
-          and
-          <author>
-            <persName>
-              <forename>C.M.</forename>
-              <surname>Lyon</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Cohabitation without Marriage: An Essay in Law and Social Policy</title>
-          (
-          <date>1983</date>
-          );
-        </bibl>
-        <bibl n="113">
-          <author>
-            <orgName>New South Wales Law Reform Commission</orgName>
-          </author>
-          ,
-          <title level="m">De Facto Relationships: Issues Paper</title>
-          (
-          <date>1981</date>
-          ).
-        </bibl>
-      </note>
-      <note n="75" type="footnote" place="bottom">
-        <bibl n="114">
-          <author>Eds. of the Harvard Law Review</author>
-          ,
-          <title level="m">Sexual Orientation and the Law</title>
-          (
-          <date>1990</date>
-          );
-        </bibl>
-        <bibl n="115">
-          <title level="m">Dean v. District of Columbia</title>
-          <biblScope unit="volume">653</biblScope>
-          <title level="j">U.S. App. D.C.</title>
-          <citedRange unit="page" from="307">307</citedRange>
-          (
-          <date>1995</date>
-          );
-        </bibl>
-        <bibl n="116">
-          <author>
-            <persName>
-              <forename>C.</forename>
-              <surname>Overington</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Why can’t They Marry?</title>
-          ’
-          <title level="j">The Age</title>
-          ,
-          <biblScope unit="page" from="26">26</biblScope>
-          <date when="1997-04">April 1997</date>
-          .
-        </bibl>
-      </note>
-      <note n="76" type="footnote" place="bottom">
-        <bibl n="117">
-          <seg type="signal">For example,</seg>
-          <author><orgName>Lesbian and Gay Rights Service</orgName></author>
-          <title level="m">The Bride Wore Pink; Legal Recognition of Our Relationships</title>
-          (
-          <date>1994</date>
-          ).
-        </bibl>
-      </note>
-      <note n="77" type="footnote" place="bottom">
-        <bibl n="118">
-          <ref>id.</ref>
-          ,
-          <citedRange unit="page" from="3">p. 3</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="78" type="footnote" place="bottom">
-        <bibl n="119">
-          <ref>Above, n. 30.</ref>
-        </bibl>
-      </note>
-    </body>
-  </text>
+    <teiHeader>
+        <fileDesc>
+            <titleStmt>
+                <title>10.1111_1467-6478.00057</title>
+            </titleStmt>
+            <publicationStmt>
+                <publisher>mpilhlt</publisher>
+            </publicationStmt>
+            <sourceDesc>
+                <p>10.1111_1467-6478.00057</p>
+            </sourceDesc>
+        </fileDesc>
+    </teiHeader>
+    <text>
+        <body>
+            <p>The article text is not part of this document</p>
+            <note n="1" type="footnote" place="bottom">
+                <bibl n="1">
+                    <author>
+                        <persName>
+                            <forename>A.</forename>
+                            <surname>Phillips</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Citizenship and Feminist Politics</title>
+                    ’ in
+                    <title level="m">Citizenship</title>
+                    , ed.
+                    <editor>
+                        <persName>
+                            <forename>G.</forename>
+                            <surname>Andrews</surname>
+                        </persName>
+                    </editor>
+                    (
+                    <date>1991</date>
+                    )
+                    <citedRange unit="page" from="77">77</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="2" type="footnote" place="bottom">
+                <bibl n="2">
+                    <author>
+                        <persName>
+                            <forename>T.</forename>
+                            <surname>Brennan</surname>
+                        </persName>
+                    </author>
+                    and
+                    <author>
+                        <persName>
+                            <forename>C.</forename>
+                            <surname>Pateman</surname>
+                        </persName>
+                    </author>
+                    , ‘“
+                    <title level="a">Mere Auxiliaries to the Commonwealth”: Women and the Origins of Liberalism</title>
+                    ’ (
+                    <date>1979</date>
+                    )
+                    <biblScope unit="volume" from="27" to="27">27</biblScope>
+                    <title level="j">Political Studies</title>
+                    <biblScope unit="page" from="183">183</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="3" type="footnote" place="bottom">
+                <bibl n="3">
+                    <author>
+                        <persName>
+                            <forename>M.</forename>
+                            <surname>Sawer</surname>
+                        </persName>
+                    </author>
+                    and
+                    <author>
+                        <persName>
+                            <forename>M.</forename>
+                            <surname>Simms</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">A Woman’s Place: Women and Politics in Australia</title>
+                    (
+                    <edition>2nd ed.</edition>
+                    ,
+                    <date>1993</date>
+                    ).
+                </bibl>
+            </note>
+            <note n="4" type="footnote" place="bottom">
+                <bibl n="4">
+                    <seg type="comment">I have explored the gendered nature of citizenship at greater length in two
+                        complementary papers:
+                    </seg>
+                    ‘
+                    <title level="a">Embodying the Citizen</title>
+                    ’ in
+                    <title level="m">Public and Private: Feminist Legal Debates</title>
+                    , ed.
+                    <editor>
+                        <persName>
+                            <forename>M.</forename>
+                            <surname>Thornton</surname>
+                        </persName>
+                    </editor>
+                    (
+                    <date>1995</date>
+                    )
+                </bibl>
+                <bibl n="5">
+                    <seg type="signal">and</seg>
+                    ‘
+                    <title level="a">Historicising Citizenship: Remembering Broken Promises</title>
+                    ’ (
+                    <date>1996</date>
+                    )
+                    <biblScope unit="volume" from="20" to="20">20</biblScope>
+                    <title level="j">Melbourne University Law Rev.</title>
+                    <biblScope unit="page" from="1072">1072</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="5" type="footnote" place="bottom">
+                <bibl n="6">
+                    <author>
+                        <persName>
+                            <forename>S.</forename>
+                            <surname>Walby</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Is Citizenship Gendered?</title>
+                    ’ (
+                    <date>1994</date>
+                    )
+                    <biblScope unit="volume" from="28" to="28">28</biblScope>
+                    <title level="j">Sociology</title>
+                    <biblScope unit="page" from="379">379</biblScope>
+                </bibl>
+            </note>
+            <note n="6" type="footnote" place="bottom">
+                <bibl n="7">
+                    <author>
+                        <persName>
+                            <forename>I.</forename>
+                            <surname>Kant</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Metaphysical First Principles of the Doctrine of Right [1785]</title>
+                    ’ in
+                    <title level="m">The Metaphysics of Morals</title>
+                    (
+                    <respStmt>
+                        <resp>trans.</resp>
+                        <persName role="translator">
+                            M. Gregor
+                        </persName>
+                    </respStmt>
+                    ,
+                    <date>1991</date>
+                    )
+                    <biblScope unit="page" from="125" to="6">125–6</biblScope>
+                    <citedRange unit="page" from="146" to="146">s. 146</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="7" type="footnote" place="bottom">
+                <bibl n="8">
+                    <author>
+                        <persName>
+                            <forename>U.</forename>
+                            <surname>Vogel</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Marriage and the Boundaries of Citizenship</title>
+                    ’ in
+                    <title level="m">The Condition of Citizenship</title>
+                    , ed.
+                    <editor>
+                        <persName>
+                            <forename>B.</forename>
+                            <surname>van Steenbergen</surname>
+                        </persName>
+                    </editor>
+                    (
+                    <date>1994</date>
+                    )
+                    <biblScope unit="page" from="75">75</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="8" type="footnote" place="bottom">
+                <bibl n="9">
+                    <author>
+                        <persName>
+                            <forename>N.</forename>
+                            <surname>Fraser</surname>
+                        </persName>
+                    </author>
+                    and
+                    <author>
+                        <persName>
+                            <forename>L.</forename>
+                            <surname>Gordon</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Civil Citizenship against Social Citizenship?</title>
+                    ’
+                    <ref>in id.</ref>
+                    ,
+                    <citedRange unit="page" from="97">p. 97</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="9" type="footnote" place="bottom">
+                <bibl n="10">
+                    <author>
+                        <persName>
+                            <surname>Vogel</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>id.</ref>
+                    , p.
+                    <citedRange unit="page" from="79">79</citedRange>
+                    .
+                </bibl>
+                <bibl n="11">
+                    <author>
+                        <persName>
+                            <forename>W.</forename>
+                            <surname>Blackstone</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Commentaries</title>
+                    (
+                    <seg type="documentType">Facsimile of 1st. ed. of 1765–69</seg>
+                    ,
+                    <date>1979</date>
+                    )
+                    <citedRange unit="page" from="442" to="442">442</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="11" type="footnote" place="bottom">
+                <bibl n="12">
+                    <author>
+                        <persName>
+                            <surname>Vogel</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 7</ref>
+                    , pp.
+                    <citedRange unit="page" from="80" to="1">80–1</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="12" type="footnote" place="bottom">
+                <bibl n="13">
+                    <editor>
+                        <persName>
+                            <forename>F.</forename>
+                            <surname>Haug</surname>
+                        </persName>
+                    </editor>
+                    (ed.),
+                    <title level="m">Female Sexualization: A Collective Work of Memory</title>
+                    (
+                    <date>1987</date>
+                    )
+                    <citedRange unit="page" from="196">196</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="13" type="footnote" place="bottom">
+                <bibl n="14">
+                    <author>
+                        <persName>
+                            <forename>A.</forename>
+                            <surname>Bottomley</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Self and Subjectivities: Languages of Claim in Property Law</title>
+                    ’ (
+                    <date>1993</date>
+                    )
+                    <biblScope unit="volume" from="20" to="20">20</biblScope>
+                    <title level="j">J. of Law and Society</title>
+                    <biblScope unit="page" from="56">56</biblScope>
+                    ,
+                    <citedRange unit="page" from="61">61</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="14" type="footnote" place="bottom">
+                <bibl n="15">
+                    <author>
+                        <persName>
+                            <forename>D.</forename>
+                            <surname>West</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Power and Formation: New Foundations for a Radical Concept of Power</title>
+                    ’ (
+                    <date>1987</date>
+                    )
+                    <biblScope unit="volume">30</biblScope>
+                    <title level="j">Inquiry</title>
+                    <biblScope unit="page">137</biblScope>
+                    ,
+                    <citedRange unit="page" from="145">145</citedRange>
+                    .
+                </bibl>
+                <bibl n="16">
+                    <seg type="signal">Compare</seg>
+                    <author>
+                        <persName>
+                            <forename>M.</forename>
+                            <surname>Foucault</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Power/Knowledge: Selected Interviews and Other Writings 1972–1977</title>
+                    , ed.
+                    <editor>
+                        <persName>
+                            <forename>C.</forename>
+                            <surname>Gordon</surname>
+                        </persName>
+                    </editor>
+                    (
+                    <date>1980</date>
+                    )
+                    <citedRange unit="page" from="98">98</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="15" type="footnote" place="bottom">
+                <bibl n="17">
+                    <seg type="signal">For a detailed analysis of legal method and the political role it plays, see
+                    </seg>
+                    <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="volume" from="3" to="3">3</biblScope>
+                    <title level="j">Aust. J. of Law and Society</title>
+                    <biblScope unit="page" from="30">30</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="16" type="footnote" place="bottom">
+                <bibl n="18">
+                    <author>
+                        <persName>
+                            <forename>H.S.</forename>
+                            <surname>Maine</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Ancient Law: Its Connection with the Early History of Society and its Relation to
+                        Modern Ideas
+                    </title>
+                    (
+                    <edition>10th ed.</edition>
+                    ,
+                    <date>1912</date>
+                    )
+                    <citedRange unit="page" from="174">174</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="17" type="footnote" place="bottom">
+                <bibl n="19">
+                    <seg type="comment">This was particularly the case in the United States of America.</seg>
+                </bibl>
+                <bibl n="20">
+                    <seg type="signal">See</seg>
+                    <author>
+                        <persName>
+                            <forename>M.J.</forename>
+                            <surname>Horwitz</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">The Transformation of American Law, 1780–1860</title>
+                    (
+                    <date>1977</date>
+                    )
+                    <citedRange unit="page" from="160">160</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="18" type="footnote" place="bottom">
+                <bibl n="21">
+                    <author>
+                        <persName>
+                            <forename>M.</forename>
+                            <surname>Grossberg</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Governing the Hearth: Law and the Family in Nineteenth-Century America</title>
+                    (
+                    <date>1985</date>
+                    )
+                    <citedRange unit="page" from="ix">ix</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="19" type="footnote" place="bottom">
+                <bibl n="22">
+                    <seg type="comment">Staves postulates that the position was somewhat more complicated in that
+                        marriage, as a status, crumbled in response to contract ideology in the seventeenth century but,
+                        by the end of the eighteenth century, deeper patriarchal structures were re-imposed.
+                    </seg>
+                </bibl>
+                <bibl n="23">
+                    <seg type="signal">See</seg>
+                    <author>
+                        <persName>
+                            <forename>S.</forename>
+                            <surname>Staves</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Married Women’s Separate Property in England, 1660–1833</title>
+                    (
+                    <date>1990</date>
+                    )
+                    <citedRange unit="page" from="4" to="4">4</citedRange>
+                    ,
+                    <citedRange unit="page" from="220">220</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="20" type="footnote" place="bottom">
+                <bibl n="24">
+                    <seg type="comment">Siegel presents a valuable study of the changing norms of marriage in the
+                        context of wife beating.
+                    </seg>
+                </bibl>
+                <bibl n="25">
+                    <seg type="signal">See</seg>
+                    <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="volume" from="105" to="105">105</biblScope>
+                    <title level="j">Yale Law J.</title>
+                    <biblScope unit="page" from="2117">2117</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="21" type="footnote" place="bottom">
+                <bibl n="26">
+                    <author>
+                        <persName>
+                            <forename>C.</forename>
+                            <surname>Pateman</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">The Sexual Contract</title>
+                    (
+                    <date>1988</date>
+                    ).
+                </bibl>
+                <bibl n="27">
+                    <seg type="signal">For further analysis of the marriage contract, see</seg>
+                    <author>
+                        <persName>
+                            <forename>K.</forename>
+                            <surname>O’Donovan</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Family Matters</title>
+                    (
+                    <date>1993</date>
+                    ),
+                    <citedRange unit="page" from="43" to="59">especially 43–59</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="23" type="footnote" place="bottom">
+                <bibl n="28">
+                    <title level="m">Crimes (Sexual Assault) Amendment Act</title>
+                    <date>1981</date>
+                    (
+                    <pubPlace>N.S.W.</pubPlace>
+                    );
+                </bibl>
+                <bibl n="29">
+                    <title level="m">Criminal Law Consolidation Act Amendment Act</title>
+                    <date>1976</date>
+                    (
+                    <pubPlace>S.A.</pubPlace>
+                    );
+                </bibl>
+                <bibl n="30">
+                    <title level="m">Criminal Code (Sexual Offences) Act</title>
+                    <date>1987</date>
+                    (
+                    <pubPlace>Tas.</pubPlace>
+                    );
+                </bibl>
+                <bibl n="31">
+                    <title level="m">Crimes (Sexual Offences)</title>
+                    <date>1991</date>
+                    (
+                    <pubPlace>Vic.</pubPlace>
+                    );
+                </bibl>
+                <bibl n="32">
+                    <title level="m">Acts Amendment (Sexual Assault) Act</title>
+                    <date>1985</date>
+                    (
+                    <pubPlace>W.A.</pubPlace>
+                    ).
+                    <seg type="comment">The High Court upheld the validity of the South Australian law in 1991</seg>
+                </bibl>
+                <bibl n="33">
+                    <seg type="signal">(see</seg>
+                    <title level="m">R. v. L.</title>
+                    (
+                    <date>1991</date>
+                    )
+                    <idno type="caseNumber">103 A.L.R. 577</idno>
+                    ),
+                    <seg type="comment">the same year that the House of Lords abolished the immunity</seg>
+                </bibl>
+                <bibl n="34">
+                    (
+                    <seg type="signal">see</seg>
+                    <title level="m">R. v. R.</title>
+                    [
+                    <date>1991</date>
+                    ]
+                    <biblScope unit="volume" from="2" to="2">2</biblScope>
+                    <title level="j">All E.R.</title>
+                    <biblScope unit="page" from="257">257</biblScope>
+                    ).
+                </bibl>
+            </note>
+            <note n="24" type="footnote" place="bottom">
+                <bibl n="35">
+                    <author>
+                        <persName>
+                            <forename>M.</forename>
+                            <surname>Freeman</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Contracting in the Haven: Balfour v. Balfour Revisited</title>
+                    ’ in
+                    <title level="m">Exploring the Boundaries of Contract</title>
+                    , ed.
+                    <editor>
+                        <persName>
+                            <forename>R.</forename>
+                            <surname>Halson</surname>
+                        </persName>
+                    </editor>
+                    (
+                    <date>1996</date>
+                    )
+                    <biblScope unit="page" from="74">74</biblScope>
+                </bibl>
+                <bibl n="36">
+                    <author>
+                        <persName>
+                            <forename>R.</forename>
+                            <surname>Collier</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="a">Masculinity, Law and the Family</title>
+                    (
+                    <date>1995</date>
+                    )
+                    <citedRange unit="page" from="127">127 and throughout</citedRange>
+                    .
+                </bibl>
+                <bibl n="37">
+                    <seg type="signal">See</seg>
+                    <author>
+                        <persName>
+                            <surname>Collier</surname>
+                        </persName>
+                    </author>
+                    <seg type="comment">further for a comprehensive study of sexuality in marriage.</seg>
+                </bibl>
+            </note>
+            <note n="25" type="footnote" place="bottom">
+                <bibl n="38">
+                    <author>
+                        <persName>
+                            <forename>P.S.</forename>
+                            <surname>Atiyah</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">An Introduction to the Law of Contract</title>
+                    (
+                    <edition>5th ed.</edition>
+                    ,
+                    <date>1995</date>
+                    )
+                    <citedRange unit="page" from="3">3</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="26" type="footnote" place="bottom">
+                <bibl n="39">
+                    <seg type="comment">The Australian Law Reform Commission has addressed the issue and recommended
+                        recognition of prenuptial agreements.
+                    </seg>
+                </bibl>
+                <bibl n="40">
+                    <seg type="signal">See</seg>
+                    <author>
+                        <orgName>A.L.R.C.</orgName>
+                    </author>
+                    ,
+                    <title level="m">Matrimonial Property, report no. 37</title>
+                    (
+                    <date>1987</date>
+                    );
+                </bibl>
+                <bibl n="41">
+                    <author>
+                        <orgName>A.L.R.C.</orgName>
+                    </author>
+                    .,
+                    <title level="m">Report of the Joint Select Committee on Certain Aspects of the Operation and
+                        Interpretation of the Family
+                        Law Act
+                    </title>
+                    (
+                    <date>1992</date>
+                    ).
+                </bibl>
+                <bibl n="42">
+                    <seg type="signal">For critique, see</seg>
+                    <author>
+                        <persName>
+                            <forename>M.</forename>
+                            <surname>Neave</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Private Ordering in Family Law – Will Women Benefit?</title>
+                    ’ in
+                    <editor>
+                        <persName>
+                            <surname>Thornton</surname>
+                        </persName>
+                    </editor>
+                    ,
+                    <ref>op. cit., n. 4.</ref>
+                </bibl>
+                <bibl n="43">
+                    <seg type="signal">For a feminist critique of contract in the American context, see</seg>
+                    <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="volume" from="94" to="94">94</biblScope>
+                    <title level="j">Yale Law J.</title>
+                    <biblScope unit="page" from="997">997</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="27" type="footnote" place="bottom">
+                <bibl n="44">
+                    <author>
+                        <persName>
+                            <forename>L.</forename>
+                            <forename>J.</forename>
+                            <surname>Weitzman</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">The Marriage Contract: Spouses, Lovers, and the Law</title>
+                    (
+                    <date>1981</date>
+                    )
+                    <citedRange unit="page" from="347">347 ff.</citedRange>
+                </bibl>
+            </note>
+            <note n="28" type="footnote" place="bottom">
+                <bibl n="45">
+                    <author>
+                        <persName>
+                            <surname>Grossberg</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 18</ref>
+                    , p.
+                    <citedRange unit="page" from="52">52</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="29" type="footnote" place="bottom">
+                <bibl n="46">
+                    <author>
+                        <persName>
+                            <forename>V.</forename>
+                            <surname>Balfour</surname>
+                        </persName>
+                    </author>
+                    [
+                    <date>1919</date>
+                    ]
+                    <biblScope unit="volume" from="2">2</biblScope>
+                    <title level="j">K.B.</title>
+                    <biblScope unit="page" from="571">571</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="30" type="footnote" place="bottom">
+                <bibl n="47">
+                    <author>
+                        <persName>
+                            <surname>Freeman</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 24.</ref>
+                </bibl>
+                <bibl n="48">
+                    <seg type="comment">While acknowledging the trends towards contractualism and private ordering,
+                        Regan cautions against it, noting that greater freedom to contract invites greater scrutiny by
+                        the courts. More significantly, however, he would rather reclaim the idea of status by injecting
+                        it with new notions of responsibility andrelationality, as well as divesting it of its sexist
+                        assumptions.
+                    </seg>
+                </bibl>
+                <bibl n="49">
+                    <seg type="signal">See</seg>
+                    <author>
+                        <persName>
+                            <forename>M.C.</forename>
+                            <surname>Regan</surname>
+                        </persName>
+                    </author>
+                    .,
+                    <title level="m">Family Law and the Pursuit of Intimacy</title>
+                    (
+                    <date>1993</date>
+                    ).
+                </bibl>
+            </note>
+            <note n="31" type="footnote" place="bottom">
+                <bibl n="50">
+                    <seg type="signal">For example,</seg>
+                    <title level="m">Law Reform (Miscellaneous Provisions) Act</title>
+                    <date>1970</date>
+                    (
+                    <pubPlace>U.K.</pubPlace>
+                    );
+                </bibl>
+                <bibl n="51">
+                    <title level="m">Domestic Relations Act</title>
+                    <date>1975</date>
+                    (
+                    <pubPlace>N.Z.</pubPlace>
+                    );
+                </bibl>
+                <bibl n="52">
+                    <title level="m">Marriage Act Amendment Act</title>
+                    <date>1976</date>
+                    (
+                    <pubPlace>Cwth.</pubPlace>
+                    )
+                </bibl>
+            </note>
+            <note n="32" type="footnote" place="bottom">
+                <bibl n="53">
+                    <author>
+                        <persName>
+                            <forename>G.S.</forename>
+                            <surname>Frost</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Promises Broken: Courtship, Class, and Gender in Victorian England</title>
+                    (
+                    <date>1995</date>
+                    );
+                </bibl>
+                <bibl n="54">
+                    <author>
+                        <persName>
+                            <surname>Thornton</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit.</ref>
+                    (
+                    <date>1996</date>
+                    ),
+                    <ref>n. 4.</ref>
+                </bibl>
+            </note>
+            <note n="33" type="footnote" place="bottom">
+                <bibl n="55">
+                    <author>
+                        <persName>
+                            <surname>Grossberg</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 18</ref>
+                    , p.
+                    <citedRange unit="page" from="38">38</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="34" type="footnote" place="bottom">
+                <bibl n="56">
+                    <seg type="signal">Compare</seg>
+                    <author>
+                        <persName>
+                            <forename>U.</forename>
+                            <surname>Vogel</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Is Citizenship Gender-Specific?</title>
+                    ’ in
+                    <title level="m">The Frontiers of Citizenship</title>
+                    , eds.
+                    <editor>
+                        <persName>
+                            <forename>U.</forename>
+                            <surname>Vogel</surname>
+                        </persName>
+                    </editor>
+                    and
+                    <editor>
+                        <persName>
+                            <forename>M.</forename>
+                            <surname>Moran</surname>
+                        </persName>
+                    </editor>
+                    (
+                    <date>1991</date>
+                    )
+                    <biblScope unit="page" from="59">59</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="35" type="footnote" place="bottom">
+                <bibl n="57">
+                    <seg type="signal">See, for example,</seg>
+                </bibl>
+                <bibl n="58">
+                    <title level="m">Bradwell v. Illinois 83 U.S. (16 Wall) 130</title>
+                    (
+                    <date>1873</date>
+                    ).
+                </bibl>
+            </note>
+            <note n="36" type="footnote" place="bottom">
+                <bibl n="59">
+                    <seg type="signal">Compare</seg>
+                    <author>
+                        <persName>
+                            <forename>J.</forename>
+                            <surname>Pahl</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Money and Marriage</title>
+                    (
+                    <date>1989</date>
+                    )
+                    <citedRange unit="page" from="5">5</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="37" type="footnote" place="bottom">
+                <bibl n="60">
+                    <author>
+                        <persName>
+                            <surname>Although</surname>
+                        </persName>
+                    </author>
+                </bibl>
+                <bibl n="61">
+                    <seg type="comment">Australia, like the United Kingdom, has a separate property regime, the courts
+                        are endowed with broad
+                        powers under the Family Law Act 1975 (Cwth.) to distribute property equitably.
+                    </seg>
+                </bibl>
+                <bibl n="62">
+                    <seg type="signal">For detailed treatment, see</seg>
+                    <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="m">Australian Family Law in Context: Commentary and Materials</title>
+                    (
+                    <date>1994</date>
+                    ).
+                </bibl>
+                <bibl n="63">
+                    <seg type="comment">Most civil law countries and most American states have developed community
+                        property regimes which recognize the joint ownership of property acquired during marriage,
+                        but the legal significance is similarly directed to the time of divorce.
+                    </seg>
+                </bibl>
+                <bibl n="64">
+                    <seg type="signal">For discussion of the position during marriage, see</seg>
+                    <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="volume" from="56" to="56">56</biblScope>
+                    <title level="j">Law and Contemporary Problems</title>
+                    <biblScope unit="page" from="99">99</biblScope>
+                    .
+                </bibl>
+                <bibl n="65">
+                    <seg type="signal">For a discussion of the genesis of the two systems, see</seg>
+                    <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="volume" from="78" to="78">78</biblScope>
+                    <title level="j">Michigan Law Rev.</title>
+                    <biblScope unit="page" from="59">59</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="38" type="footnote" place="bottom">
+                <bibl n="66">
+                    <seg type="comment">The legal construction of masculinity and femininity in family law has been the
+                        subject of recent scholarly interest.
+                    </seg>
+                </bibl>
+                <bibl n="67">
+                    <seg type="signal">Notable examples are</seg>
+                    <author>
+                        <persName>
+                            <surname>O’Donovan</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 21</ref>
+                </bibl>
+                <bibl n="68">
+                    <seg type="signal">and</seg>
+                    <author>
+                        <persName>
+                            <surname>Collier</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 24.</ref>
+                </bibl>
+            </note>
+            <note n="39" type="footnote" place="bottom">
+                <bibl n="69">
+                    <seg type="signal">For discussion of sex and legal subjecthood, see</seg>
+                    <author>
+                        <persName>
+                            <forename>N.</forename>
+                            <surname>Naffine</surname>
+                        </persName>
+                    </author>
+                    ‘
+                    <title level="a">Sexing the Subject (of Law)</title>
+                    ’ in
+                    <editor>
+                        <persName>
+                            <surname>Thornton</surname>
+                        </persName>
+                    </editor>
+                    ,
+                    <ref>op. cit.</ref>
+                    (
+                    <date>1995</date>
+                    ),
+                    <ref>n. 4.</ref>
+                </bibl>
+            </note>
+            <note n="40" type="footnote" place="bottom">
+                <bibl n="70">
+                    <title level="m">Contracts Review Act</title>
+                    <date>1980</date>
+                    (
+                    <pubPlace>N.S.W.</pubPlace>
+                    ).
+                </bibl>
+            </note>
+            <note n="41" type="footnote" place="bottom">
+                <bibl n="71">
+                    <author>
+                        <persName>
+                            <forename>J.</forename>
+                            <surname>Nedelsky</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Private Property and the Limits of American Constitutionalism: The Madisonian
+                        Framework and its Legacy
+                    </title>
+                    (
+                    <date>1990</date>
+                    ),
+                    <citedRange unit="page" from="223">especially 223 ff</citedRange>
+                </bibl>
+            </note>
+            <note n="42" type="footnote" place="bottom">
+                <bibl n="72">
+                    <author>
+                        <persName>
+                            <forename>C.B.</forename>
+                            <surname>Macpherson</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Democratic Theory: Essays in Retrieval</title>
+                    (
+                    <date>1973</date>
+                    )
+                    <citedRange unit="page" from="120">120</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="43" type="footnote" place="bottom">
+                <bibl n="73">
+                    <seg type="signal">For example,</seg>
+                    <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="volume" from="4" to="4">4</biblScope>
+                    <title level="j">Aust. Feminist Law J.</title>
+                    <biblScope unit="page" from="93">93</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="44" type="footnote" place="bottom">
+                <bibl n="74">
+                    <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="volume" from="13" to="13">13</biblScope>
+                    <title level="j">Law in Context</title>
+                    <biblScope unit="page" from="23">23</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="45" type="footnote" place="bottom">
+                <bibl n="75">
+                    <ref>id.</ref>
+                    , p.
+                    <citedRange unit="page" from="24">24</citedRange>
+                    <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="volume" from="57" to="57">57</biblScope>
+                    <title level="j">Modern Law Rev.</title>
+                    <biblScope unit="page" from="467">467,</biblScope>
+                    <citedRange unit="page" from="468">468</citedRange>
+                    .
+                </bibl>
+                <bibl n="76">
+                    <seg type="signal">See, also,</seg>
+                    <title level="m">Barclays Bank v. O’Brien</title>
+                    [
+                    <date>1994</date>
+                    ]
+                    <idno type="caseNumber">1 A.C. 180</idno>
+                    ,
+                    <citedRange unit="page" from="at">at 185</citedRange>
+                    <seg type="comment">per Brown-Wilkinson L.</seg>
+                </bibl>
+            </note>
+            <note n="46" type="footnote" place="bottom">
+                <bibl n="77">
+                    <author>
+                        <persName>
+                            <surname>Baron</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 44</ref>
+                    , p.
+                    <citedRange unit="page" from="34">34</citedRange>
+                    .
+                </bibl>
+                <bibl n="78">
+                    <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="volume" from="16" to="16">16</biblScope>
+                    <title level="j">Legal Studies</title>
+                    <biblScope unit="page" from="368">368</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="47" type="footnote" place="bottom">
+                <bibl n="79">
+                    <seg type="signal">Examples are legion, and by no means confined to the more sensational criminal
+                        law cases picked up by
+                        the media, such as
+                    </seg>
+                    <title level="m">R. v. Johns</title>
+                    ,
+                    <author>
+                        <orgName>Supreme Court of South Australia</orgName>
+                    </author>
+                    ,
+                    <date>26 August 1992</date>
+                    <seg type="comment">(unreported) in which Bollen J. stated that it was acceptable for a husband to
+                        resort to ‘rougher than usual handling’ to persuade his wife to have sex with him.
+                    </seg>
+                </bibl>
+                <bibl n="80">
+                    <seg type="signal">For examples relating to STD, see</seg>
+                    <author>
+                        <persName>
+                            <surname>Howell</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 43.</ref>
+                </bibl>
+            </note>
+            <note n="48" type="footnote" place="bottom">
+                <bibl n="81">
+                    <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="volume" from="59" to="59">59</biblScope>
+                    <title level="j">Modern Law Rev.</title>
+                    <biblScope unit="page" from="675">675</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="49" type="footnote" place="bottom">
+                <bibl n="82">
+                    <title level="m">National Australia Bank Ltd v. Garcia</title>
+                    (
+                    <date>1996</date>
+                    )
+                    <biblScope unit="volume" from="39" to="39">39</biblScope>
+                    <title level="j">N.S.W.L.R.</title>
+                    <biblScope unit="page" from="577">577</biblScope>
+                    (
+                    <pubPlace>N.S.W.C.A.</pubPlace>
+                    ).
+                </bibl>
+            </note>
+            <note n="50" type="footnote" place="bottom">
+                <bibl n="83">
+                    (
+                    <date>1991</date>
+                    )
+                    <biblScope unit="volume">25</biblScope>
+                    <title level="j">N.S.W.L.R.</title>
+                    <biblScope unit="page" from="32">32</biblScope>
+                    (
+                    <pubPlace>C.A.</pubPlace>
+                    ).
+                </bibl>
+            </note>
+            <note n="52" type="footnote" place="bottom">
+                <bibl n="84">
+                    (
+                    <date>1994</date>
+                    )
+                    <idno type="caseNumber">A.S.C. 56–268</idno>
+                    (
+                    <pubPlace>N.S.W.C.A.</pubPlace>
+                    ).
+                </bibl>
+            </note>
+            <note n="53" type="footnote" place="bottom">
+                <bibl n="85">
+                    <seg type="ignore">Based on the</seg>
+                    <title level="m">Trade Practices Act 1974</title>
+                    (
+                    <pubPlace>Cwth.</pubPlace>
+                    ), s.
+                    <citedRange unit="page" from="52">52</citedRange>
+                </bibl>
+                <bibl n="86">
+                    <seg type="ignore">and the</seg>
+                    <title level="m">Contracts Review Act</title>
+                    <date>1980</date>
+                    (
+                    <pubPlace>N.S.W.</pubPlace>
+                    ).
+                    <biblScope unit="volume" from="54" to="54">54</biblScope>
+                    (
+                    <date>1994</date>
+                    )
+                    <idno type="caseNumber">A.S.C. 56–270</idno>
+                    (
+                    <pubPlace>N.S.W.C.A.</pubPlace>
+                    )
+                </bibl>
+            </note>
+            <note n="55" type="footnote" place="bottom">
+                <bibl n="87">
+                    <seg type="comment">A number of recent English cases have also turned on the question of whether the
+                        wife received independent legal advice. The House of Lords considered the issue in
+                    </seg>
+                    <title level="m">Barclays Bank v. O’Brien</title>
+                    [
+                    <date>1994</date>
+                    ]
+                    <idno type="caseNumber">1 A.C. 180</idno>
+                    .
+                </bibl>
+                <bibl n="88">
+                    <seg type="signal">See, also,</seg>
+                    <title level="m">Banco Exterior Internacional v. Mann</title>
+                    [
+                    <date>1995</date>
+                    ]
+                    <biblScope unit="volume">1</biblScope>
+                    <title level="j">All E.R.</title>
+                    <biblScope unit="page" from="936">936</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="56" type="footnote" place="bottom">
+                <bibl n="89">
+                    <seg type="signal">See</seg>
+                    <author>
+                        <persName>
+                            <forename>I.J.</forename>
+                            <surname>Hardingham</surname>
+                        </persName>
+                    </author>
+                    and
+                    <author>
+                        <persName>
+                            <forename>M.A.</forename>
+                            <surname>Neave</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Australian Family Property Law</title>
+                    (
+                    <date>1984</date>
+                    )
+                    <citedRange unit="page" from="94">94</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="57" type="footnote" place="bottom">
+                <bibl n="90">
+                    <seg type="signal">Compare</seg>
+                    <author>
+                        <persName>
+                            <forename>K.</forename>
+                            <surname>O’Donovan</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Sexual Divisions in Law</title>
+                    (
+                    <date>1985</date>
+                    ),
+                    <citedRange unit="page" from="112" to="118">especially 112–18</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="58" type="footnote" place="bottom">
+                <bibl n="91">
+                    <seg type="comment">Although Reich’s work on the conceptualization of non-traditional sources of
+                        wealth, such as employment and professional qualifications, as forms of ‘new property’ has been
+                        influential, he did not broach the subject of caring work.
+                    </seg>
+                    <seg type="signal">See</seg>
+                    <author>
+                        <persName>
+                            <forename>C.A.</forename>
+                            <surname>Reich</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">The New Property</title>
+                    ’ (
+                    <date>1964</date>
+                    )
+                    <biblScope unit="volume" from="73" to="73">73</biblScope>
+                    <title level="j">Yale Law J.</title>
+                    <biblScope unit="page" from="733">733</biblScope>
+                    .
+                </bibl>
+                <bibl n="92">
+                    <seg type="comment">Despite a greater sensitivity to the interests of women, as well as writing
+                        almost two decades later, Glendon also fails to address the question of unpaid work as a form of
+                        property.
+                    </seg>
+                </bibl>
+                <bibl n="93">
+                    <seg type="signal">See</seg>
+                    <author>
+                        <persName>
+                            <forename>M.A.</forename>
+                            <surname>Glendon</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">The New Family and the New Property</title>
+                    (
+                    <date>1981</date>
+                    ).
+                </bibl>
+            </note>
+            <note n="59" type="footnote" place="bottom">
+                <bibl n="94">
+                    <date>1992</date>
+                    )
+                    <biblScope unit="volume" from="29">29</biblScope>
+                    <title level="j">N.S.W.L.R.</title>
+                    <biblScope unit="page" from="188">188</biblScope>
+                    (
+                    <pubPlace>C.A.</pubPlace>
+                    )
+                </bibl>
+            </note>
+            <note n="60" type="footnote" place="bottom">
+                <bibl n="95">
+                    <seg type="comment">Trusts of this kind have been judicially created in order to obviate injustice.
+                        Ironically, such devices have been commonly utilized over the last twenty years or so in
+                        property disputes arising out of de facto relationships, where divisibility has permitted
+                        separate interests to crystallize in ways not recognized within marriage.
+                    </seg>
+                </bibl>
+                <bibl n="96">
+                    <seg type="signal">For a discussion of recent trends in Australia, see</seg>
+                    <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="volume" from="11" to="11">11</biblScope>
+                    <title level="j">Australian J. Family Law</title>
+                    <biblScope unit="page" from="100">100</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="61" type="footnote" place="bottom">
+                <bibl n="97">
+                    <seg type="signal">For discussion, see</seg>
+                    <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="volume" from="16" to="16">16</biblScope>
+                    <title level="j">Sydney Law Rev.</title>
+                    <biblScope unit="page" from="412">412</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="62" type="footnote" place="bottom">
+                <bibl n="98">
+                    <seg type="signal">The</seg>
+                    <author>
+                        <persName>
+                            <roleName type="honorific">Justice</roleName>
+                            <forename>T. E.</forename>
+                            <surname>Lindenmayer</surname>
+                        </persName>
+                    </author>
+                    and
+                    <author>
+                        <persName>
+                            <forename>P.A.</forename>
+                            <surname>Doolan</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">When Bankruptcy and Family Law Collide</title>
+                    ’ (
+                    <date>1994</date>
+                    )
+                    <biblScope unit="volume" from="8" to="8">8</biblScope>
+                    <title level="j">Aust. J. Family Law</title>
+                    <biblScope unit="page" from="111">111</biblScope>
+                    ,
+                    <citedRange unit="page" from="133">133</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="63" type="footnote" place="bottom">
+                <bibl n="99">
+                    <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="volume" from="18" to="18">18</biblScope>
+                    <title level="j">J. of Law and Society</title>
+                    <biblScope unit="page" from="206">206</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="64" type="footnote" place="bottom">
+                <bibl n="100">
+                    <author>
+                        <persName>
+                            <surname>O’Donovan</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 57</ref>
+                    ;
+                </bibl>
+                <bibl n="101">
+                    <author>
+                        <persName>
+                            <surname>Thornton</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit. (1995), n. 4.</ref>
+                </bibl>
+            </note>
+            <note n="65" type="footnote" place="bottom">
+                <bibl n="102">
+                    <author>
+                        <orgName>N.S.W.C.A.</orgName>
+                    </author>
+                    ,
+                    <seg type="publicationStatus">unreported</seg>
+                    ,
+                    <date when="1994-05-23">23 May 1994</date>
+                    .
+                </bibl>
+            </note>
+            <note n="66" type="footnote" place="bottom">
+                <bibl n="103">
+                    <seg type="signal">For detailed discussion of the ramifications, see</seg>
+                    <author>
+                        <persName>
+                            <forename>L.J.</forename>
+                            <surname>Weitzman</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">The Divorce Revolution: The Unexpected Social and Economic Consequences for Women
+                        and Children in
+                        America
+                    </title>
+                    (
+                    <date>1985</date>
+                    ).
+                </bibl>
+            </note>
+            <note n="67" type="footnote" place="bottom">
+                <bibl n="104">
+                    <author>
+                        <persName>
+                            <forename>M.L.</forename>
+                            <surname>Shanley</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Feminism, Marriage, and the Law in Victorian England, 1850–1895</title>
+                    (
+                    <date>1989</date>
+                    )
+                    <citedRange unit="page" from="46">46</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="68" type="footnote" place="bottom">
+                <bibl n="105">
+                    <seg type="comment">The move to contract as the governing principle of family law has been noted by
+                        commentators.
+                    </seg>
+                </bibl>
+                <bibl n="106">
+                    <seg type="signal">See, for example,</seg>
+                    <author>
+                        <persName>
+                            <surname>Freeman</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 24</ref>
+                    ;
+                </bibl>
+                <bibl n="107">
+                    <author>
+                        <persName>
+                            <surname>Neave</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 26</ref>
+                    ;
+                </bibl>
+                <bibl n="108">
+                    <author>
+                        <persName>
+                            <surname>Regan</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 30.</ref>
+                </bibl>
+            </note>
+            <note n="69" type="footnote" place="bottom">
+                <bibl n="109">
+                    <title level="m">Bryson v. Bryant</title>
+                    <seg type="comment">in respect of which, it might be noted, the High Court refused leave to appeal.
+                        Marcia Neave notes the ‘artificiality’ of the concept of intention in a discussion of the
+                        constructive trust in the context of de facto spouses.
+                    </seg>
+                </bibl>
+                <bibl n="110">
+                    <seg type="signal">See</seg>
+                    <author>
+                        <persName>
+                            <forename>M.</forename>
+                            <surname>Neave</surname>
+                        </persName>
+                    </author>
+                    ‘
+                    <title level="a">Three Approaches to Family Law Disputes – Intention/Belief, Unjust Enrichment and
+                        Unconscionability’
+                    </title>
+                    in
+                    <title level="m">Equity, Fiduciaries and Trusts</title>
+                    , ed.
+                    <editor>
+                        <persName>
+                            <forename>T.G.</forename>
+                            <surname>Youdan</surname>
+                        </persName>
+                    </editor>
+                    (
+                    <date>1989</date>
+                    )
+                    <biblScope unit="page" from="262" to="264">262–4</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="70" type="footnote" place="bottom">
+                <bibl n="111">
+                    <seg type="signal">For an interesting case study of this phenomenon, see</seg>
+                    <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="volume" from="19" to="19">19</biblScope>
+                    <title level="j">Melbourne University Law Rev</title>
+                    .
+                    <biblScope unit="page" from="701">701</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="71" type="footnote" place="bottom">
+                <bibl n="112">
+                    <author>
+                        <persName>
+                            <forename>C.</forename>
+                            <surname>Colebrook</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Feminist Ethics and Historicism</title>
+                    ’ (
+                    <date>1996</date>
+                    )
+                    <biblScope unit="volume" from="11" to="11">11</biblScope>
+                    <title level="j">Aust. Feminist Studies</title>
+                    <biblScope unit="page" from="295">295,</biblScope>
+                    <citedRange unit="page" from="300">300</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="72" type="footnote" place="bottom">
+                <bibl n="113">
+                    <author>
+                        <persName>
+                            <forename>M.</forename>
+                            <forename>Albertson</forename>
+                            <surname>Fineman</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies
+                    </title>
+                    (
+                    <date>1995</date>
+                    )
+                    <citedRange unit="page" from="7">7</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="73" type="footnote" place="bottom">
+                <bibl n="114">
+                    <seg type="signal">Compare</seg>
+                    <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="volume" from="45" to="45">45</biblScope>
+                    <title level="j">Modern Law Rev.</title>
+                    <biblScope unit="page" from="424">424,</biblScope>
+                    <citedRange unit="page" from="431" to="3">431–3</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="74" type="footnote" place="bottom">
+                <bibl n="115">
+                    <seg type="signal">For example,</seg>
+                    <title level="m">De Facto Relationships Act</title>
+                    <date>1984</date>
+                    (
+                    <pubPlace>N.S.W</pubPlace>
+                    .).
+                </bibl>
+                <bibl n="116">
+                    <seg type="signal">For detailed analysis of the policy considerations, see</seg>
+                    <author>
+                        <persName>
+                            <forename>M.D.A.</forename>
+                            <surname>Freeman</surname>
+                        </persName>
+                    </author>
+                    and
+                    <author>
+                        <persName>
+                            <forename>C.M.</forename>
+                            <surname>Lyon</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Cohabitation without Marriage: An Essay in Law and Social Policy</title>
+                    (
+                    <date>1983</date>
+                    );
+                </bibl>
+                <bibl n="117">
+                    <author>
+                        <orgName>New South Wales Law Reform Commission</orgName>
+                    </author>
+                    ,
+                    <title level="m">De Facto Relationships: Issues Paper</title>
+                    (
+                    <date>1981</date>
+                    ).
+                </bibl>
+            </note>
+            <note n="75" type="footnote" place="bottom">
+                <bibl n="118">
+                    <author>Eds. of the Harvard Law Review</author>
+                    ,
+                    <title level="m">Sexual Orientation and the Law</title>
+                    (
+                    <date>1990</date>
+                    );
+                </bibl>
+                <bibl n="119">
+                    <title level="m">Dean v. District of Columbia</title>
+                    <biblScope unit="volume">653</biblScope>
+                    <title level="j">U.S. App. D.C.</title>
+                    <citedRange unit="page" from="307">307</citedRange>
+                    (
+                    <date>1995</date>
+                    );
+                </bibl>
+                <bibl n="120">
+                    <author>
+                        <persName>
+                            <forename>C.</forename>
+                            <surname>Overington</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Why can’t They Marry?</title>
+                    ’
+                    <title level="j">The Age</title>
+                    ,
+                    <biblScope unit="page" from="26">26</biblScope>
+                    <date when="1997-04">April 1997</date>
+                    .
+                </bibl>
+            </note>
+            <note n="76" type="footnote" place="bottom">
+                <bibl n="121">
+                    <seg type="signal">For example,</seg>
+                    <author>
+                        <orgName>Lesbian and Gay Rights Service</orgName>
+                    </author>
+                    <title level="m">The Bride Wore Pink; Legal Recognition of Our Relationships</title>
+                    (
+                    <date>1994</date>
+                    ).
+                </bibl>
+            </note>
+            <note n="77" type="footnote" place="bottom">
+                <bibl n="122">
+                    <ref>id.</ref>
+                    ,
+                    <citedRange unit="page" from="3">p. 3</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="78" type="footnote" place="bottom">
+                <bibl n="123">
+                    <ref>Above, n. 30.</ref>
+                </bibl>
+            </note>
+        </body>
+    </text>
 </TEI>
diff --git a/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml b/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml
index bf44265..3b8a0b6 100644
--- a/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml
+++ b/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml
@@ -1,1087 +1,1130 @@
 <TEI xmlns="http://www.tei-c.org/ns/1.0">
-  <teiHeader>
-    <fileDesc>
-      <titleStmt>
-        <title>10.1111_1467-6478.00080</title>
-      </titleStmt>
-      <publicationStmt>
-        <publisher>mpilhlt</publisher>
-      </publicationStmt>
-      <sourceDesc>
-        <p>10.1111_1467-6478.00080</p>
-      </sourceDesc>
-    </fileDesc>
-  </teiHeader>
-  <text>
-    <body>
-      <p>The article text is not part of this document</p>
-      <note n="1" type="footnote" place="bottom">
-        <bibl n="1">
-          <seg type="signal">For a contrary view, see</seg>
-          <author>
-            <persName>
-              <forename>G.</forename>
-              <surname>Jones</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">“Traditional” Legal Scholarship: a Personal View</title>
-          ’ in
-          <title level="m">What Are Law Schools For?</title>
-          , ed.
-          <editor>
-            <persName>
-              <forename>P.</forename>
-              <surname>Birks</surname>
-            </persName>
-          </editor>
-          (
-          <date>1996</date>
-          )
-          <biblScope unit="page" from="14">14</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="3" type="footnote" place="bottom">
-        <bibl n="2">
-          <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>
-          <biblScope unit="volume" from="169" to="169">169</biblScope>
-          ,
-          <biblScope unit="page" from="at">at 171</biblScope>
-          .
-          <seg type="comment">This is an amplification of Dicey’s remark that ‘[b]y adequate study and careful thought whole departments of law can . . . be reduced to order and exhibited under the form of a few principles which sum up the effect of a hundred cases . .</seg>
-           .’.
-        </bibl>
-        <bibl n="3">
-          <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="page" from="20">20</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="4" type="footnote" place="bottom">
-        <bibl n="4">
-          <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" type="footnote" place="bottom">
-        <bibl n="5">
-          <seg type="signal">See, for example,</seg>
-          <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="volume" from="89" to="89">89</biblScope>
-          <title level="j">Harvard Law Rev.</title>
-          <biblScope unit="page" from="1685">1685</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="7" type="footnote" place="bottom">
-        <bibl n="6">
-          <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>
-          .
-          <biblScope unit="page" from="470">470</biblScope>
-          <citedRange unit="page" from="at">at 485 and 481</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="8" type="footnote" place="bottom">
-        <bibl n="7">
-          <author>
-            <persName>
-              <forename>P.A.</forename>
-              <surname>Thomas</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Introduction</title>
-          ’ in
-          <title level="m">Socio-Legal Studies</title>
-          , ed.
-          <editor>
-            <persName>
-              <forename>P.A.</forename>
-              <surname>Thomas</surname>
-            </persName>
-          </editor>
-          (
-          <date>1997</date>
-          )
-          <biblScope unit="page" from="19">19</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="9" type="footnote" place="bottom">
-        <bibl n="8">
-          <author>
-            <persName>
-              <forename>R.</forename>
-              <surname>Cotterrell</surname>
-            </persName>
-          </author>
-          ,
-          <title level="a">Law’s Community</title>
-          (
-          <date>1995</date>
-          )
-          <biblScope unit="page" from="296">296</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="10" type="footnote" place="bottom">
-        <bibl n="9">
-          <seg type="comment">Socio-legal studies has been defined in many different ways. In this essay the term is taken to indicate the use of ideas ‘from other disciplines primarily but not exclusively from within the social science and humanities fields</seg>
-          ’.
-          <publisher>
-            <persName>
-              <forename>S.</forename>
-              <surname>Wheeler</surname>
-            </persName>
-          </publisher>
-          , ‘
-          <title level="a">Company Law</title>
-          ’  in
-          <editor>
-            <persName>
-              <surname>Thomas</surname>
-            </persName>
-          </editor>
-          ,
-          <ref>op. cit., n. 8</ref>
-          ,
-          <citedRange unit="page" from="at">at p. 285</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="11" type="footnote" place="bottom">
-        <bibl n="10">
-          <seg type="comment">Some fail wholly. It is difficult to see any effect on academic legal education that resulted from</seg>
-          <author>
-            <persName>
-              <roleName type="honorific">Lady</roleName>
-              <surname>Marre’s</surname>
-            </persName>
-          </author>
-          report
-          <title level="a">A Time for Change</title>
-          (
-          <date>1988</date>
-          ).
-          <seg type="comment">The Jarratt report on universities produced for the Committee of Vice-Chancellors and Principals (CVCP),</seg>
-          <title level="m">Report of the Steering Committee for Efficiency studies in Universities</title>
-          (
-          <date>1988</date>
-          ),
-          <seg type="comment">produced much comment but little action. Even those that are thought of as being a success are not wholly implemented. Despite Ormrod’s recommendations no Institute of Profesional Legal Studies was set up and the universities and colleges of higher education did not take sole responsibility for vocational legal training</seg>
-          (
-          <title level="a">Report of the Committee on Legal Education</title>
-          (
-          <date>1971</date>
-          ;
-          <title level="s">Cmnd</title>
-          <biblScope unit="volume">4595</biblScope>
-          )
-          <citedRange unit="chapter" from="9">ch. 9</citedRange>
-          <citedRange unit="entry" from="40">recs. 40</citedRange>
-          and
-          <citedRange unit="entry" from="23">23</citedRange>
-          ).
-          <seg type="comment">There were also other recommendations that were not implemented</seg>
-          .
-          <title level="a">The Robbins report on higher education, Higher Education</title>
-          (
-          <date>1963</date>
-          ;
-          <title level="s">Cmnd</title>
-          <biblScope unit="volume">2154</biblScope>
-          )
-          <seg type="comment">took it is axiomatic that ‘courses of higher education should be available for all those who are qualified by ability and attainment to pursue them and wish to do so</seg>
-          ’
-          (
-          <citedRange unit="para" from="31">para. 31</citedRange>
-          ).
-          <seg type="comment">This has yet to happen.</seg>
-        </bibl>
-      </note>
-      <note n="12" type="footnote" place="bottom">
-        <bibl n="11">
-          <author>
-            <orgName>Committee of Inquiry into Higher Education</orgName>
-          </author>
-          ,
-          <title level="m">Higher Education in the learning society</title>
-          (
-          <date>1997</date>
-          ) (
-          <seg type="comment">the Dearing report</seg>
-          );
-        </bibl>
-        <bibl n="12">
-          <author>
-              <orgName>ACLEC</orgName>
-          </author>
-          ,
-          <title level="m">First Report on Legal Education and Training</title>
-          (
-          <date>1996</date>
-          ).
-          <seg type="comment">The Government’s White Paper on further and higher education had not been published at the time of writing this essay</seg>
-          .
-        </bibl>
-        <bibl n="13">
-          <author>
-            <orgName>ACLEC</orgName>
-          </author>
-          ,
-          <ref>id.</ref>
-          ,
-          <citedRange unit="para" from="4.6">para 4.6</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="14" type="footnote" place="bottom">
-        <bibl n="14">
-          <seg type="comment">ACLEC’s proposal is part of an historical process which has gradually seen English university law schools distance themselves from the legal professions and the legal professions propose decreasing degrees of control over the content of law degrees</seg>
-          .
-        </bibl>
-        <bibl n="15">
-          <seg type="signal">(See</seg>
-          <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="volume" from="2" to="2">2</biblScope>
-          <title level="j">Contemporary Issues in Law</title>
-          <biblScope unit="page" from="15">15</biblScope>
-          <citedRange unit="page" from="24" to="26">at 24–6</citedRange>
-          ).
-        </bibl>
-      </note>
-      <note n="15" type="footnote" place="bottom">
-        <bibl n="16">
-          <author>
-            <persName>
-              <forename>M.</forename>
-              <forename>Jeeves</forename>
-            </persName>
-          </author>
-          ,
-          <author>
-            <persName>
-              <forename>J. </forename>
-              <surname>MacFarlane</surname>
-            </persName>
-          </author>
-          and
-          <author>
-            <persName>
-              <forename>A.</forename>
-              <surname>Boon</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Education for Life or for Work?</title>
-          ’ (
-          <date>1987</date>
-          )
-          <biblScope unit="volume" from="137" to="137">137</biblScope>
-          <title level="j">New Law J.</title>
-          <biblScope unit="page" from="835">835</biblScope>
-          <citedRange unit="page" from="836">at 836</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="16" type="footnote" place="bottom">
-        <bibl n="17">
-          <author>
-            <persName>
-              <forename>T.H.</forename>
-              <surname>Huxley</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Universities: Actual and Ideal</title>
-          ’ in
-          <title level="m">T.H. Huxley, Collected Essays</title>
-          :
-          <biblScope unit="volume" from="III" to="III">Volume III</biblScope>
-          (
-          <date>1905</date>
-          )
-          <biblScope unit="page" from="215">215</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="17" type="footnote" place="bottom">
-        <bibl n="18">
-          <author>
-            <persName>
-              <forename>J.S.</forename>
-              <surname>Mill</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Inaugural address to the University of St Andrews</title>
-          ’ in
-          <title level="m">Collected Work of John Stuart Mill: Volume</title>
-          <biblScope unit="volume" from="XXI" to="XXI">XXI</biblScope>
-          , ed.
-          <editor>
-            <persName>
-              <forename>J.M.</forename>
-              <surname>Robson</surname>
-            </persName>
-          </editor>
-          (
-          <date>1984</date>
-          )
-          <biblScope unit="page" from="218">218</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="18" type="footnote" place="bottom">
-        <bibl n="19">
-          <author>
-            <persName>
-              <surname>Dearing</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 12</ref>
-          ,
-          <citedRange unit="para" from="9.32">para. 9.32</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="19" type="footnote" place="bottom">
-        <bibl n="20">
-          <ref>id.</ref>
-          ,
-          <citedRange unit="para" from="5.11">para. 5.11</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="20" type="footnote" place="bottom">
-        <bibl n="21">
-          <author>
-            <persName>
-              <forename>F.R.</forename>
-              <surname>Leavis</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Education and the University</title>
-          (
-          <date>1948</date>
-          )
-          <citedRange unit="volume" from="28" to="28">28</citedRange>
-          .
-          <seg type="comment">Leavis’s view was narrowly nationalistic. For ‘centre’ it would be better to substitute ‘centres’</seg>
-          .
-        </bibl>
-      </note>
-      <note n="21" type="footnote" place="bottom">
-        <bibl n="22">
-          <seg type="signal">See, further,</seg>
-          <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>
-          ,
-          <seg type="comment">ed. F. Cownie (forthcoming)</seg>
-          .
-        </bibl>
-      </note>
-      <note n="22" type="footnote" place="bottom">
-        <bibl n="23">
-          <author>
-            <persName>
-              <forename>P.</forename>
-              <surname>Goodrich</surname>
-            </persName>
-          </author>
-          ‘
-          <title level="a">Of Blackstone’s Tower: Metephors of Distance and Histories of the English Law School</title>
-          ’
-          in
-          <editor>
-            <persName>
-              <surname>Birks</surname>
-            </persName>
-          </editor>
-          <ref>op. cit., n. 1</ref>
-          ,
-          <biblScope unit="page" from="59">p. 59</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="23" type="footnote">
-        <bibl n="24">
-          <author>
-            <persName>
-              <forename>S.</forename>
-              <surname>Turow</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">One L</title>
-          (
-          <date>1977</date>
-          )
-          <biblScope unit="page" from="106">106</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="24" type="footnote" place="bottom">
-        <bibl n="25">
-          <author>
-            <persName>
-              <forename>O.</forename>
-              <surname>Kahn-Freund</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="m">Reflections on Legal Education</title>
-          ’ (
-          <date>1966</date>
-          )
-          <biblScope unit="volume" from="29" to="29">29</biblScope>
-          <title level="j">Modern Law Rev.</title>
-          <biblScope unit="page" from="121">121</biblScope>
-          <citedRange unit="page" from="129">at 129</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="25" type="footnote" place="bottom">
-        <bibl n="26">
-          <seg type="comment">Kahn-Freund believed that both doctrinal and non-doctrinal learning were possible
-            together though he did concede that in the doctrinal method there was ‘the danger that
-            the discussion gets stuck in the perhaps intellectually very fascinating game of legal
-            argument . . .’ </seg>
-          (
-          <author>
-            <persName>
-              <surname>Kahn-Freund</surname>
-            </persName>
-          </author>
-          ,
-          <ref>id.).</ref>
-        </bibl>
-      </note>
-      <note n="26" type="footnote" place="bottom">
-        <bibl n="27">
-          <author>
-            <persName>
-              <surname>Leavis</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 20</ref>
-          ,
-          <citedRange unit="page" from="120">p. 120</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="29" type="footnote" place="bottom">
-        <bibl n="28">
-          <seg type="comment">Leavis has, of course, been widely criticized for the cultural and gender assumptions that lie behind his selection of material to be studied</seg>
-          .
-        </bibl>
-        <bibl n="29">
-          <seg type="signal">(See, for example,</seg>
-          <author>
-            <persName>
-              <forename>M.</forename>
-              <surname>King</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">The New English Literatures</title>
-          (
-          <date>1980</date>
-          )
-          <citedRange unit="page" from="216" to="217">at 216–17</citedRange>
-          .)
-          <seg type="comment">Whatever the accuracy of these criticisms, they are criticisms of the application of the method rather than the method itself</seg>
-          .
-        </bibl>
-      </note>
-      <note n="30" type="footnote" place="bottom">
-        <bibl n="30">
-          <title level="m">Jurisprudence by Sir John Salmond</title>
-          , ed.
-          <editor>
-            <persName>
-              <forename>G.</forename>
-              <forename>Willliams</forename>
-              <surname>(10th</surname>
-            </persName>
-          </editor>
-          .,
-          <date>1947</date>
-          )
-          <citedRange unit="page" from="256" to="257">at 256 and 257</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="31" type="footnote" place="bottom">
-        <bibl n="31">
-          <seg type="comment">So much so that when other disciplines engage with law they must develop their own concepts to analyse law rather than rely on the concepts already developed in law</seg>
-          .
-        </bibl>
-        <bibl n="32">
-          <seg type="signal">See, for example,</seg>
-          <author>
-            <persName>
-              <forename>E.</forename>
-              <surname>Durkheim</surname>
-            </persName>
-          </author>
-          <title level="m">The Division of Labour in Society</title>
-          (
-          <date>1933</date>
-          )
-          <citedRange unit="page" from="68">68</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="32" type="footnote" place="bottom">
-        <bibl n="33">
-          <author>
-            <persName>
-              <forename>M.</forename>
-              <surname>Le Brun</surname>
-            </persName>
-          </author>
-          and
-          <author>
-            <persName>
-              <forename>R.</forename>
-              <surname>Johnstone</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">The Quiet Revolution: Improving Student Learning in Law</title>
-          (
-          <date>1994</date>
-          )
-          <citedRange unit="page" from="65" to="65">65</citedRange>
-          .
-        </bibl>
-        <bibl n="34">
-          <seg type="signal">On the effect on women students, see</seg>
-          ‘
-          <title level="a">Define and Empower: Women Students Consider Feminist Learning</title>
-          ’ (
-          <date>1990</date>
-          )
-          <biblScope unit="volume" from="I" to="I">I</biblScope>
-          <title level="j">Law and Critique</title>
-          <biblScope unit="page" from="47">47</biblScope>
-          <citedRange unit="page" from="54" to="55">at pp. 54–55</citedRange>
-          .
-        </bibl>
-        <bibl n="35">
-          <seg type="signal">For a survey of CLS and feminist literature on this general point, see</seg>
-          <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="volume" from="VII" to="VII">VII</biblScope>
-          <title level="j">Law and Critique</title>
-          <biblScope unit="page" from="173">173</biblScope>
-          <citedRange unit="page" from="173" to="176">at pp. 173–6</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="33" type="footnote" place="bottom">
-        <bibl n="36">
-          <author>
-            <persName>
-              <forename>R.</forename>
-              <surname>Collier</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Masculinism, Law and Law Teaching</title>
-          ’ (
-          <date>1991</date>
-          )
-          <biblScope unit="volume" from="19" to="19">19</biblScope>
-          <title level="j">International J. of the Sociology of Law</title>
-          <biblScope unit="page" from="427">427</biblScope>
-          <biblScope unit="page" from="429">at 429</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="34" type="footnote" place="bottom">
-        <bibl n="37">
-          <author>
-            <persName>
-              <forename>P.</forename>
-              <surname>McAuslan</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="m">Administrative Law, Collective Consumption and Judicial Policy</title>
-          ’ (
-          <date>1983</date>
-          )
-          <biblScope unit="volume" from="46" to="46">46</biblScope>
-          <title level="j">Modern Law Rev.</title>
-          <biblScope unit="page" from="1">1</biblScope>
-          <citedRange unit="page" from="8" to="8">at 8</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="35" type="footnote" place="bottom">
-        <bibl n="38">
-          <author>
-            <persName>
-              <surname>Le Brun</surname>
-            </persName>
-          </author>
-          and
-          <author>
-            <persName>
-              <surname>Johnstone</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit, n. 32</ref>
-          ,
-          <citedRange unit="page" from="71" to="75">pp. 71–5</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="38" type="footnote" place="bottom">
-        <bibl n="39">
-          <author>
-            <persName>
-              <surname>Goodrich</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 22.</ref>
-        </bibl>
-      </note>
-      <note n="39" type="footnote" place="bottom">
-        <bibl n="40">
-          <author>
-            <persName>
-              <forename>P.</forename>
-              <surname>Samuelson</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="m">The Convergence of the Law School and the University</title>
-          ’ (
-          <date>1975</date>
-          )
-          <biblScope unit="volume" from="44" to="44">44</biblScope>
-          <title level="j">The Am. Scholar</title>
-          <biblScope unit="page" from="256">256</biblScope>
-          <biblScope unit="page" from="at">at 258</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="40" type="footnote" place="bottom">
-        <bibl n="41">
-          <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="volume" from="31" to="31">31</biblScope>
-          <title level="j">The Law Teacher</title>
-          <biblScope unit="page" from="38">38</biblScope>
-          <citedRange unit="page" from="46">at 46</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="41" type="footnote" place="bottom">
-        <bibl n="42">
-          <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="volume" from="13" to="13">13</biblScope>
-          <title level="j">Legal Studies</title>
-          <biblScope unit="page" from="143">143</biblScope>
-          <citedRange unit="page" from="152">at 152</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="42" type="footnote" place="bottom">
-        <bibl n="43">
-          <seg type="comment">Thus, for example, Harris and Jones reported that 59.2 per cent of all particpating institutions offered foriegn language tuition as part of their standard LLB programme</seg>
-          .
-        </bibl>
-        <bibl n="44">
-          <seg type="signal">(Harris and</seg>
-          <author>
-            <persName>
-              <surname>Jones</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 40</ref>
-          ,
-          <citedRange unit="page" from="54">at p. 54</citedRange>
-          ).
-        </bibl>
-      </note>
-      <note n="43" type="footnote" place="bottom">
-        <bibl n="45">
-          <author>
-            <persName>
-              <forename>T.</forename>
-              <surname>Mortimer</surname>
-            </persName>
-          </author>
-          ,
-          <author>
-            <persName>
-              <forename>P.</forename>
-              <surname>Leighton</surname>
-            </persName>
-          </author>
-          and
-          <author>
-            <persName>
-              <forename>N.</forename>
-              <surname>Whatley</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Law Teachers: Lawyers or Academics?</title>
-          (
-          <date>1995</date>
-          ).
-        </bibl>
-        <seg type="comment">This would include teaching both non-law degree students and sub-degree students.</seg>
-      </note>
-      <note n="44" type="footnote" place="bottom">
-        <bibl n="46">
-          <ref>id.</ref>
-          ,
-          <citedRange unit="page" from="35">p 35</citedRange>
-        </bibl>
-      </note>
-      <note n="45" type="footnote" place="bottom">
-        <bibl n="47">
-          <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="volume" from="29" to="29">29</biblScope>
-          <title level="j">The Law Teacher</title>
-          <biblScope unit="page" from="189">189</biblScope>
-          <citedRange unit="page" from="189">at 189</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="46" type="footnote" place="bottom">
-        <bibl n="48">
-          <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="volume" from="19" to="19">19</biblScope>
-          <title level="j">The Law Teacher</title>
-          <biblScope unit="page" from="12">12</biblScope>
-          <citedRange unit="page" from="13">at 13</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="47" type="footnote" place="bottom">
-        <bibl n="49">
-          <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="volume" from="28" to="28">28</biblScope>
-          <title level="j">The Law Teacher</title>
-          <biblScope unit="page" from="281">281</biblScope>
-          <citedRange unit="page" from="282">at 282</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="48" type="footnote" place="bottom">
-        <bibl n="50">
-          <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="volume" from="24" to="24">24</biblScope>
-          <title level="j">The Law Teacher</title>
-          <biblScope unit="page" from="246">246</biblScope>
-          <citedRange unit="page" from="248">at 248</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="49" type="footnote" place="bottom">
-        <bibl n="51">
-          <author>
-            <persName>
-              <surname>Ridley</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 47</ref>
-          ,
-          <citedRange unit="page" from="284">at p. 284</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="50" type="footnote" place="bottom">
-        <bibl n="52">
-          <seg type="comment">This, of course, is not always the case. For example, the BA Economics and Law degree at Leicester has a special course in each year given over to the consideration of the relationship between economics and law</seg>
-          .
-        </bibl>
-      </note>
-      <note n="51" type="footnote" place="bottom">
-        <bibl n="53">
-          <author>
-            <persName>
-              <forename>P.</forename>
-              <surname>Birks</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Short Cuts</title>
-          ’ in
-          <title level="m">Pressing Problems in the Law</title>
-          , ed.
-          <editor>
-            <persName>
-              <forename>P.</forename>
-              <surname>Birks</surname>
-            </persName>
-          </editor>
-          (
-          <date>1994</date>
-          )
-          <biblScope unit="page" from="10" to="24">10–24</biblScope>
-          .
-        </bibl>
-      </note>
-      <note n="52" type="footnote" place="bottom">
-        <bibl n="54">
-          <author>
-            <persName>
-              <surname>Ridley</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 47</ref>
-          , p.
-          <citedRange unit="page" from="283">283</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="53" type="footnote" place="bottom">
-        <bibl n="55">
-          <author>
-            <persName>
-              <surname>Cartan</surname>
-            </persName>
-          </author>
-          and
-          <author>
-            <persName>
-              <surname>Vilkinas</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 48</ref>
-          , p.
-          <citedRange unit="page" from="248" to="248">248</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="54" type="footnote" place="bottom">
-        <bibl n="56">
-          <author>
-            <persName>
-              <forename>P.</forename>
-              <surname>Harris</surname>
-            </persName>
-          </author>
-          , ‘
-          <title level="a">Curriculum Development in Legal Studies</title>
-          ’ (
-          <date>1986</date>
-          )
-          <biblScope unit="volume" from="20" to="20">20</biblScope>
-          <title level="j">The Law Teacher</title>
-          <biblScope unit="page" from="110">110</biblScope>
-          <citedRange unit="page" from="112" to="112">at 112</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="55" type="footnote" place="bottom">
-        <bibl n="57">
-          <author>
-            <persName>
-              <surname>Dearing</surname>
-            </persName>
-          </author>
-          ,
-          <ref>op. cit., n. 12</ref>
-          ,
-          <citedRange unit="para" from="9.3" to="9.3">para 9.3</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="57" type="footnote" place="bottom">
-        <bibl n="58">
-          <author>
-            <persName>
-              <forename>G.</forename>
-              <surname>Steiner</surname>
-            </persName>
-          </author>
-          ,
-          <title level="m">Errata: An Examined Life</title>
-          (
-          <date>1997</date>
-          )
-          <citedRange unit="page" from="20" to="20">20</citedRange>
-          .
-        </bibl>
-      </note>
-    </body>
-  </text>
+    <teiHeader>
+        <fileDesc>
+            <titleStmt>
+                <title>10.1111_1467-6478.00080</title>
+            </titleStmt>
+            <publicationStmt>
+                <publisher>mpilhlt</publisher>
+            </publicationStmt>
+            <sourceDesc>
+                <p>10.1111_1467-6478.00080</p>
+            </sourceDesc>
+        </fileDesc>
+    </teiHeader>
+    <text>
+        <body>
+            <p>The article text is not part of this document</p>
+            <note n="1" type="footnote" place="bottom">
+                <bibl n="1">
+                    <seg type="signal">For a contrary view, see</seg>
+                    <author>
+                        <persName>
+                            <forename>G.</forename>
+                            <surname>Jones</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">“Traditional” Legal Scholarship: a Personal View</title>
+                    ’ in
+                    <title level="m">What Are Law Schools For?</title>
+                    , ed.
+                    <editor>
+                        <persName>
+                            <forename>P.</forename>
+                            <surname>Birks</surname>
+                        </persName>
+                    </editor>
+                    (
+                    <date>1996</date>
+                    )
+                    <biblScope unit="page" from="14">14</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="3" type="footnote" place="bottom">
+                <bibl n="2">
+                    <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>
+                    <biblScope unit="volume" from="169" to="169">169</biblScope>
+                    ,
+                    <biblScope unit="page" from="at">at 171</biblScope>
+                    .
+                    <seg type="comment">This is an amplification of Dicey’s remark that ‘[b]y adequate study and careful
+                        thought whole departments of law can . . . be reduced to order and exhibited under the form of a
+                        few principles which sum up the effect of a hundred cases . . .’.
+                    </seg>
+                </bibl>
+                <bibl n="3">
+                    <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="page" from="20">20</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="4" type="footnote" place="bottom">
+                <bibl n="4">
+                    <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" type="footnote" place="bottom">
+                <bibl n="5">
+                    <seg type="signal">See, for example,</seg>
+                    <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="volume" from="89" to="89">89</biblScope>
+                    <title level="j">Harvard Law Rev.</title>
+                    <biblScope unit="page" from="1685">1685</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="7" type="footnote" place="bottom">
+                <bibl n="6">
+                    <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>
+                    .
+                    <biblScope unit="page" from="470">470</biblScope>
+                    <citedRange unit="page" from="at">at 485 and 481</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="8" type="footnote" place="bottom">
+                <bibl n="7">
+                    <author>
+                        <persName>
+                            <forename>P.A.</forename>
+                            <surname>Thomas</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Introduction</title>
+                    ’ in
+                    <title level="m">Socio-Legal Studies</title>
+                    , ed.
+                    <editor>
+                        <persName>
+                            <forename>P.A.</forename>
+                            <surname>Thomas</surname>
+                        </persName>
+                    </editor>
+                    (
+                    <date>1997</date>
+                    )
+                    <biblScope unit="page" from="19">19</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="9" type="footnote" place="bottom">
+                <bibl n="8">
+                    <author>
+                        <persName>
+                            <forename>R.</forename>
+                            <surname>Cotterrell</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="a">Law’s Community</title>
+                    (
+                    <date>1995</date>
+                    )
+                    <biblScope unit="page" from="296">296</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="10" type="footnote" place="bottom">
+                <bibl n="9">
+                    <seg type="comment">Socio-legal studies has been defined in many different ways. In this essay the
+                        term is taken to indicate the use of ideas ‘from other disciplines primarily but not exclusively
+                        from within the social science and humanities fields’.
+                    </seg>
+                    <publisher>
+                        <persName>
+                            <forename>S.</forename>
+                            <surname>Wheeler</surname>
+                        </persName>
+                    </publisher>
+                    , ‘
+                    <title level="a">Company Law</title>
+                    ’ in
+                    <editor>
+                        <persName>
+                            <surname>Thomas</surname>
+                        </persName>
+                    </editor>
+                    ,
+                    <ref>op. cit., n. 8</ref>
+                    ,
+                    <citedRange unit="page" from="at">at p. 285</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="11" type="footnote" place="bottom">
+                <bibl n="10">
+                    <seg type="comment">Some fail wholly. It is difficult to see any effect on academic legal education
+                        that resulted from
+                    </seg>
+                    <author>
+                        <persName>
+                            <roleName type="honorific">Lady</roleName>
+                            <surname>Marre’s</surname>
+                        </persName>
+                    </author>
+                    <seg type="documentType">report</seg>
+                    <title level="a">A Time for Change</title>
+                    (
+                    <date>1988</date>
+                    ).
+                </bibl>
+                <bibl n="11">
+                    <seg type="comment">The Jarratt report on universities produced for the Committee of
+                        Vice-Chancellors and Principals (CVCP),
+                    </seg>
+                    <title level="m">Report of the Steering Committee for Efficiency studies in Universities</title>
+                    (
+                    <date>1988</date>
+                    ),
+                    <seg type="comment">produced much comment but little action.</seg>
+                </bibl>
+                <bibl n="12">
+                    <seg type="comment">
+                        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
+                    </seg>
+                    (
+                    <title level="a">Report of the Committee on Legal Education</title>
+                    (
+                    <date>1971</date>
+                    ;
+                    <title level="s">Cmnd</title>
+                    <biblScope unit="volume">4595</biblScope>
+                    )
+                    <citedRange unit="chapter" from="9">ch. 9</citedRange>
+                    <citedRange unit="entry" from="40">recs. 40</citedRange>
+                    and
+                    <citedRange unit="entry" from="23">23</citedRange>
+                    ).
+                </bibl>
+                <bibl n="13">
+                    <seg type="comment">There were also other recommendations that were not implemented.</seg>
+                    <title level="a">The Robbins report on higher education, Higher Education</title>
+                    (
+                    <date>1963</date>
+                    ;
+                    <title level="s">Cmnd</title>
+                    <biblScope unit="volume">2154</biblScope>
+                    )
+                    <seg type="ignore">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
+                    </seg>
+                    ’
+                    (
+                    <citedRange unit="para" from="31">para. 31</citedRange>
+                    ).
+                    <seg type="comment">This has yet to happen.</seg>
+                </bibl>
+            </note>
+            <note n="12" type="footnote" place="bottom">
+                <bibl n="14">
+                    <author>
+                        <orgName>Committee of Inquiry into Higher Education</orgName>
+                    </author>
+                    ,
+                    <title level="m">Higher Education in the learning society</title>
+                    (
+                    <date>1997</date>
+                    ) (
+                    <seg type="comment">the Dearing report</seg>
+                    );
+                </bibl>
+                <bibl n="15">
+                    <author>
+                        <orgName>ACLEC</orgName>
+                    </author>
+                    ,
+                    <title level="m">First Report on Legal Education and Training</title>
+                    (
+                    <date>1996</date>
+                    ).
+                    <seg type="comment">The Government’s White Paper on further and higher education had not been
+                        published at the time of writing this essay.
+                    </seg>
+                </bibl>
+                <bibl n="16">
+                    <author>
+                        <orgName>ACLEC</orgName>
+                    </author>
+                    ,
+                    <ref>id.</ref>
+                    ,
+                    <citedRange unit="para" from="4.6">para 4.6</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="14" type="footnote" place="bottom">
+                <bibl n="17">
+                    <seg type="comment">ACLEC’s proposal is part of an historical process which has gradually seen
+                        English university law schools distance themselves from the legal professions and the legal
+                        professions propose decreasing degrees of control over the content of law degrees.
+                    </seg>
+                </bibl>
+                <bibl n="18">
+                    <seg type="signal">(See</seg>
+                    <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="volume" from="2" to="2">2</biblScope>
+                    <title level="j">Contemporary Issues in Law</title>
+                    <biblScope unit="page" from="15">15</biblScope>
+                    <citedRange unit="page" from="24" to="26">at 24–6</citedRange>
+                    ).
+                </bibl>
+            </note>
+            <note n="15" type="footnote" place="bottom">
+                <bibl n="19">
+                    <author>
+                        <persName>
+                            <forename>M.</forename>
+                            <forename>Jeeves</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <author>
+                        <persName>
+                            <forename>J.</forename>
+                            <surname>MacFarlane</surname>
+                        </persName>
+                    </author>
+                    and
+                    <author>
+                        <persName>
+                            <forename>A.</forename>
+                            <surname>Boon</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Education for Life or for Work?</title>
+                    ’ (
+                    <date>1987</date>
+                    )
+                    <biblScope unit="volume" from="137" to="137">137</biblScope>
+                    <title level="j">New Law J.</title>
+                    <biblScope unit="page" from="835">835</biblScope>
+                    <citedRange unit="page" from="836">at 836</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="16" type="footnote" place="bottom">
+                <bibl n="20">
+                    <author>
+                        <persName>
+                            <forename>T.H.</forename>
+                            <surname>Huxley</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Universities: Actual and Ideal</title>
+                    ’ in
+                    <title level="m">T.H. Huxley, Collected Essays</title>
+                    :
+                    <biblScope unit="volume" from="III" to="III">Volume III</biblScope>
+                    (
+                    <date>1905</date>
+                    )
+                    <biblScope unit="page" from="215">215</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="17" type="footnote" place="bottom">
+                <bibl n="21">
+                    <author>
+                        <persName>
+                            <forename>J.S.</forename>
+                            <surname>Mill</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Inaugural address to the University of St Andrews</title>
+                    ’ in
+                    <title level="m">Collected Work of John Stuart Mill: Volume</title>
+                    <biblScope unit="volume" from="XXI" to="XXI">XXI</biblScope>
+                    , ed.
+                    <editor>
+                        <persName>
+                            <forename>J.M.</forename>
+                            <surname>Robson</surname>
+                        </persName>
+                    </editor>
+                    (
+                    <date>1984</date>
+                    )
+                    <biblScope unit="page" from="218">218</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="18" type="footnote" place="bottom">
+                <bibl n="22">
+                    <author>
+                        <persName>
+                            <surname>Dearing</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 12</ref>
+                    ,
+                    <citedRange unit="para" from="9.32">para. 9.32</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="19" type="footnote" place="bottom">
+                <bibl n="23">
+                    <ref>id.</ref>
+                    ,
+                    <citedRange unit="para" from="5.11">para. 5.11</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="20" type="footnote" place="bottom">
+                <bibl n="24">
+                    <author>
+                        <persName>
+                            <forename>F.R.</forename>
+                            <surname>Leavis</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Education and the University</title>
+                    (
+                    <date>1948</date>
+                    )
+                    <citedRange unit="volume" from="28" to="28">28</citedRange>
+                    .
+                    <seg type="comment">Leavis’s view was narrowly nationalistic. For ‘centre’ it would be better to
+                        substitute ‘centres’.
+                    </seg>
+                </bibl>
+            </note>
+            <note n="21" type="footnote" place="bottom">
+                <bibl n="25">
+                    <seg type="signal">See, further,</seg>
+                    <author>
+                        <persName>
+                            <forename>A.</forename>
+                            <surname>Bradney</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Liberalising Legal Education</title>
+                    ’ in
+                    <title level="m">The Law School: Global Issues, Local Questions</title>
+                    , ed.
+                    <editor>
+                        <forename type="first" full="init">F.</forename>
+                        <surname>Cownie</surname>
+                    </editor>
+                    <seg type="publicationStatus">(forthcoming)</seg>
+                    .
+                </bibl>
+            </note>
+            <note n="22" type="footnote" place="bottom">
+                <bibl n="26">
+                    <author>
+                        <persName>
+                            <forename>P.</forename>
+                            <surname>Goodrich</surname>
+                        </persName>
+                    </author>
+                    ‘
+                    <title level="a">Of Blackstone’s Tower: Metephors of Distance and Histories of the English Law
+                        School
+                    </title>
+                    ’
+                    in
+                    <editor>
+                        <persName>
+                            <surname>Birks</surname>
+                        </persName>
+                    </editor>
+                    <ref>op. cit., n. 1</ref>
+                    ,
+                    <biblScope unit="page" from="59">p. 59</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="23" type="footnote">
+                <bibl n="27">
+                    <author>
+                        <persName>
+                            <forename>S.</forename>
+                            <surname>Turow</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">One L</title>
+                    (
+                    <date>1977</date>
+                    )
+                    <biblScope unit="page" from="106">106</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="24" type="footnote" place="bottom">
+                <bibl n="28">
+                    <author>
+                        <persName>
+                            <forename>O.</forename>
+                            <surname>Kahn-Freund</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="m">Reflections on Legal Education</title>
+                    ’ (
+                    <date>1966</date>
+                    )
+                    <biblScope unit="volume" from="29" to="29">29</biblScope>
+                    <title level="j">Modern Law Rev.</title>
+                    <biblScope unit="page" from="121">121</biblScope>
+                    <citedRange unit="page" from="129">at 129</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="25" type="footnote" place="bottom">
+                <bibl n="29">
+                    <seg type="comment">Kahn-Freund believed that both doctrinal and non-doctrinal learning were
+                        possible
+                        together though he did concede that in the doctrinal method there was ‘the danger that
+                        the discussion gets stuck in the perhaps intellectually very fascinating game of legal
+                        argument . . .’
+                    </seg>
+                    (
+                    <author>
+                        <persName>
+                            <surname>Kahn-Freund</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>id.</ref>
+                    ).
+                </bibl>
+            </note>
+            <note n="26" type="footnote" place="bottom">
+                <bibl n="30">
+                    <author>
+                        <persName>
+                            <surname>Leavis</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 20</ref>
+                    ,
+                    <citedRange unit="page" from="120">p. 120</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="29" type="footnote" place="bottom">
+                <bibl n="31">
+                    <seg type="comment">Leavis has, of course, been widely criticized for the cultural and gender
+                        assumptions that lie behind his selection of material to be studied.
+                    </seg>
+                </bibl>
+                <bibl n="32">
+                    <seg type="signal">(See, for example,</seg>
+                    <author>
+                        <persName>
+                            <forename>M.</forename>
+                            <surname>King</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">The New English Literatures</title>
+                    (
+                    <date>1980</date>
+                    )
+                    <citedRange unit="page" from="216" to="217">at 216–17</citedRange>
+                    .)
+                    <seg type="comment">Whatever the accuracy of these criticisms, they are criticisms of the
+                        application of the method rather than the method itself.
+                    </seg>
+                </bibl>
+            </note>
+            <note n="30" type="footnote" place="bottom">
+                <bibl n="33">
+                    <title level="m">Jurisprudence by Sir John Salmond</title>
+                    , ed.
+                    <editor>
+                        <persName>
+                            <forename>G.</forename>
+                            <forename>Willliams</forename>
+                            <surname>(10th</surname>
+                        </persName>
+                    </editor>
+                    .,
+                    <date>1947</date>
+                    )
+                    <citedRange unit="page" from="256" to="257">at 256 and 257</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="31" type="footnote" place="bottom">
+                <bibl n="34">
+                    <seg type="comment">So much so that when other disciplines engage with law they must develop their
+                        own concepts to analyse law rather than rely on the concepts already developed in law.
+                    </seg>
+                </bibl>
+                <bibl n="35">
+                    <seg type="signal">See, for example,</seg>
+                    <author>
+                        <persName>
+                            <forename>E.</forename>
+                            <surname>Durkheim</surname>
+                        </persName>
+                    </author>
+                    <title level="m">The Division of Labour in Society</title>
+                    (
+                    <date>1933</date>
+                    )
+                    <citedRange unit="page" from="68">68</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="32" type="footnote" place="bottom">
+                <bibl n="36">
+                    <author>
+                        <persName>
+                            <forename>M.</forename>
+                            <surname>Le Brun</surname>
+                        </persName>
+                    </author>
+                    and
+                    <author>
+                        <persName>
+                            <forename>R.</forename>
+                            <surname>Johnstone</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">The Quiet Revolution: Improving Student Learning in Law</title>
+                    (
+                    <date>1994</date>
+                    )
+                    <citedRange unit="page" from="65" to="65">65</citedRange>
+                    .
+                </bibl>
+                <bibl n="37">
+                    <seg type="signal">On the effect on women students, see</seg>
+                    ‘
+                    <title level="a">Define and Empower: Women Students Consider Feminist Learning</title>
+                    ’ (
+                    <date>1990</date>
+                    )
+                    <biblScope unit="volume" from="I" to="I">I</biblScope>
+                    <title level="j">Law and Critique</title>
+                    <biblScope unit="page" from="47">47</biblScope>
+                    <citedRange unit="page" from="54" to="55">at pp. 54–55</citedRange>
+                    .
+                </bibl>
+                <bibl n="38">
+                    <seg type="signal">For a survey of CLS and feminist literature on this general point, see</seg>
+                    <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="volume" from="VII" to="VII">VII</biblScope>
+                    <title level="j">Law and Critique</title>
+                    <biblScope unit="page" from="173">173</biblScope>
+                    <citedRange unit="page" from="173" to="176">at pp. 173–6</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="33" type="footnote" place="bottom">
+                <bibl n="39">
+                    <author>
+                        <persName>
+                            <forename>R.</forename>
+                            <surname>Collier</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Masculinism, Law and Law Teaching</title>
+                    ’ (
+                    <date>1991</date>
+                    )
+                    <biblScope unit="volume" from="19" to="19">19</biblScope>
+                    <title level="j">International J. of the Sociology of Law</title>
+                    <biblScope unit="page" from="427">427</biblScope>
+                    <biblScope unit="page" from="429">at 429</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="34" type="footnote" place="bottom">
+                <bibl n="40">
+                    <author>
+                        <persName>
+                            <forename>P.</forename>
+                            <surname>McAuslan</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="m">Administrative Law, Collective Consumption and Judicial Policy</title>
+                    ’ (
+                    <date>1983</date>
+                    )
+                    <biblScope unit="volume" from="46" to="46">46</biblScope>
+                    <title level="j">Modern Law Rev.</title>
+                    <biblScope unit="page" from="1">1</biblScope>
+                    <citedRange unit="page" from="8" to="8">at 8</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="35" type="footnote" place="bottom">
+                <bibl n="41">
+                    <author>
+                        <persName>
+                            <surname>Le Brun</surname>
+                        </persName>
+                    </author>
+                    and
+                    <author>
+                        <persName>
+                            <surname>Johnstone</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit, n. 32</ref>
+                    ,
+                    <citedRange unit="page" from="71" to="75">pp. 71–5</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="38" type="footnote" place="bottom">
+                <bibl n="42">
+                    <author>
+                        <persName>
+                            <surname>Goodrich</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 22.</ref>
+                </bibl>
+            </note>
+            <note n="39" type="footnote" place="bottom">
+                <bibl n="43">
+                    <author>
+                        <persName>
+                            <forename>P.</forename>
+                            <surname>Samuelson</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="m">The Convergence of the Law School and the University</title>
+                    ’ (
+                    <date>1975</date>
+                    )
+                    <biblScope unit="volume" from="44" to="44">44</biblScope>
+                    <title level="j">The Am. Scholar</title>
+                    <biblScope unit="page" from="256">256</biblScope>
+                    <biblScope unit="page" from="at">at 258</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="40" type="footnote" place="bottom">
+                <bibl n="44">
+                    <author>
+                        <persName>
+                            <forename>P.</forename>
+                            <surname>Harris</surname>
+                        </persName>
+                    </author>
+                    and
+                    <author>
+                        <persName>
+                            <forename>M.</forename>
+                            <surname>Jones</surname>
+                        </persName>
+                    </author>
+                    ‘
+                    <title level="a">A Survey of Law Schools in the United Kingdom, 1996</title>
+                    ’ (
+                    <date>1997</date>
+                    )
+                    <biblScope unit="volume" from="31" to="31">31</biblScope>
+                    <title level="j">The Law Teacher</title>
+                    <biblScope unit="page" from="38">38</biblScope>
+                    <citedRange unit="page" from="46">at 46</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="41" type="footnote" place="bottom">
+                <bibl n="45">
+                    <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="volume" from="13" to="13">13</biblScope>
+                    <title level="j">Legal Studies</title>
+                    <biblScope unit="page" from="143">143</biblScope>
+                    <citedRange unit="page" from="152">at 152</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="42" type="footnote" place="bottom">
+                <bibl n="46">
+                    <seg type="comment">Thus, for example, Harris and Jones reported that 59.2 per cent of all
+                        particpating institutions offered foriegn language tuition as part of their standard LLB
+                        programme.
+                    </seg>
+                </bibl>
+                <bibl n="47">
+                    <seg type="signal">(Harris and</seg>
+                    <author>
+                        <persName>
+                            <surname>Jones</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 40</ref>
+                    ,
+                    <citedRange unit="page" from="54">at p. 54</citedRange>
+                    ).
+                </bibl>
+            </note>
+            <note n="43" type="footnote" place="bottom">
+                <bibl n="48">
+                    <author>
+                        <persName>
+                            <forename>T.</forename>
+                            <surname>Mortimer</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <author>
+                        <persName>
+                            <forename>P.</forename>
+                            <surname>Leighton</surname>
+                        </persName>
+                    </author>
+                    and
+                    <author>
+                        <persName>
+                            <forename>N.</forename>
+                            <surname>Whatley</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Law Teachers: Lawyers or Academics?</title>
+                    (
+                    <date>1995</date>
+                    ).
+                </bibl>
+                <seg type="comment">This would include teaching both non-law degree students and sub-degree students.
+                </seg>
+            </note>
+            <note n="44" type="footnote" place="bottom">
+                <bibl n="49">
+                    <ref>id.</ref>
+                    ,
+                    <citedRange unit="page" from="35">p 35</citedRange>
+                </bibl>
+            </note>
+            <note n="45" type="footnote" place="bottom">
+                <bibl n="50">
+                    <author>
+                        <persName>
+                            <forename>L.</forename>
+                            <surname>Skwarok</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and
+                        Assessment at Hong Kong Polytechnic University
+                    </title>
+                    ’ (
+                    <date>1995</date>
+                    )
+                    <biblScope unit="volume" from="29" to="29">29</biblScope>
+                    <title level="j">The Law Teacher</title>
+                    <biblScope unit="page" from="189">189</biblScope>
+                    <citedRange unit="page" from="189">at 189</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="46" type="footnote" place="bottom">
+                <bibl n="51">
+                    <author>
+                        <persName>
+                            <forename>N.</forename>
+                            <surname>Bastin</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Law, Law Staff and CNAA Business Studies Degree Courses</title>
+                    ’ (
+                    <date>1985</date>
+                    )
+                    <biblScope unit="volume" from="19" to="19">19</biblScope>
+                    <title level="j">The Law Teacher</title>
+                    <biblScope unit="page" from="12">12</biblScope>
+                    <citedRange unit="page" from="13">at 13</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="47" type="footnote" place="bottom">
+                <bibl n="52">
+                    <author>
+                        <persName>
+                            <forename>A.</forename>
+                            <surname>Ridley</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?</title>
+                    ’ (
+                    <date>1994</date>
+                    )
+                    <biblScope unit="volume" from="28" to="28">28</biblScope>
+                    <title level="j">The Law Teacher</title>
+                    <biblScope unit="page" from="281">281</biblScope>
+                    <citedRange unit="page" from="282">at 282</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="48" type="footnote" place="bottom">
+                <bibl n="53">
+                    <author>
+                        <persName>
+                            <forename>G.</forename>
+                            <surname>Cartan</surname>
+                        </persName>
+                    </author>
+                    and
+                    <author>
+                        <persName>
+                            <forename>T.</forename>
+                            <surname>Vilkinas</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Legal Literacy for Managers: The Role of the Educator</title>
+                    ’ (
+                    <date>1990</date>
+                    )
+                    <biblScope unit="volume" from="24" to="24">24</biblScope>
+                    <title level="j">The Law Teacher</title>
+                    <biblScope unit="page" from="246">246</biblScope>
+                    <citedRange unit="page" from="248">at 248</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="49" type="footnote" place="bottom">
+                <bibl n="54">
+                    <author>
+                        <persName>
+                            <surname>Ridley</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 47</ref>
+                    ,
+                    <citedRange unit="page" from="284">at p. 284</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="50" type="footnote" place="bottom">
+                <bibl n="55">
+                    <seg type="comment">This, of course, is not always the case. For example, the BA Economics and Law
+                        degree at Leicester has a special course in each year given over to the consideration of the
+                        relationship between economics and law.
+                    </seg>
+                </bibl>
+            </note>
+            <note n="51" type="footnote" place="bottom">
+                <bibl n="56">
+                    <author>
+                        <persName>
+                            <forename>P.</forename>
+                            <surname>Birks</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Short Cuts</title>
+                    ’ in
+                    <title level="m">Pressing Problems in the Law</title>
+                    , ed.
+                    <editor>
+                        <persName>
+                            <forename>P.</forename>
+                            <surname>Birks</surname>
+                        </persName>
+                    </editor>
+                    (
+                    <date>1994</date>
+                    )
+                    <biblScope unit="page" from="10" to="24">10–24</biblScope>
+                    .
+                </bibl>
+            </note>
+            <note n="52" type="footnote" place="bottom">
+                <bibl n="57">
+                    <author>
+                        <persName>
+                            <surname>Ridley</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 47</ref>
+                    , p.
+                    <citedRange unit="page" from="283">283</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="53" type="footnote" place="bottom">
+                <bibl n="58">
+                    <author>
+                        <persName>
+                            <surname>Cartan</surname>
+                        </persName>
+                    </author>
+                    and
+                    <author>
+                        <persName>
+                            <surname>Vilkinas</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 48</ref>
+                    , p.
+                    <citedRange unit="page" from="248" to="248">248</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="54" type="footnote" place="bottom">
+                <bibl n="59">
+                    <author>
+                        <persName>
+                            <forename>P.</forename>
+                            <surname>Harris</surname>
+                        </persName>
+                    </author>
+                    , ‘
+                    <title level="a">Curriculum Development in Legal Studies</title>
+                    ’ (
+                    <date>1986</date>
+                    )
+                    <biblScope unit="volume" from="20" to="20">20</biblScope>
+                    <title level="j">The Law Teacher</title>
+                    <biblScope unit="page" from="110">110</biblScope>
+                    <citedRange unit="page" from="112" to="112">at 112</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="55" type="footnote" place="bottom">
+                <bibl n="60">
+                    <author>
+                        <persName>
+                            <surname>Dearing</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <ref>op. cit., n. 12</ref>
+                    ,
+                    <citedRange unit="para" from="9.3" to="9.3">para 9.3</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="57" type="footnote" place="bottom">
+                <bibl n="61">
+                    <author>
+                        <persName>
+                            <forename>G.</forename>
+                            <surname>Steiner</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <title level="m">Errata: An Examined Life</title>
+                    (
+                    <date>1997</date>
+                    )
+                    <citedRange unit="page" from="20" to="20">20</citedRange>
+                    .
+                </bibl>
+            </note>
+        </body>
+    </text>
 </TEI>
diff --git a/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml b/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml
index b3ffbba..daa7c48 100644
--- a/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml
+++ b/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml
@@ -1,1477 +1,1498 @@
 <TEI xmlns="http://www.tei-c.org/ns/1.0">
-  <teiHeader>
-    <fileDesc>
-      <titleStmt>
-        <title>10.1515_zfrs-1980-0103</title>
-      </titleStmt>
-      <publicationStmt>
-        <publisher>mpilhlt</publisher>
-      </publicationStmt>
-      <sourceDesc>
-        <p>10.1515_zfrs-1980-0103</p>
-      </sourceDesc>
-    </fileDesc>
-  </teiHeader>
-  <text>
-    <body>
-      <p>The article text is not part of this document</p>
-      <note n="1" type="footnote" place="bottom">
-        <bibl n="1">
-          <author>
-            <persName>
-              <surname>Geiger</surname>
-            </persName>
-          </author>
-          <date>1964</date>
-          ,
-          <citedRange unit="page" from="65" to="83">insbesondere S. 65—83</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="2" type="footnote" place="bottom">
-        <bibl n="2">
-          <seg type="signal">Vgl.</seg>
-          <author>
-            <persName>
-              <surname>Feest</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-            </persName>
-          </author>
-          ,
-          <date>1972</date>
-          .
-        </bibl>
-        <bibl n="3">
-          <seg type="signal">Die Konsequenz einer größeren Dunkelziffer bei den von der Polizei selbst entdeckten Straftaten entwickle</seg>
-          <author>
-            <persName>
-              <surname>ich</surname>
-            </persName>
-          </author>
-          <seg type="comment">ausführlicher in meinem Beitrag über</seg>
-          ,
-          <title level="m">Nichtkriminalisierung als Struktur und Routine</title>
-          ',
-          <date>1976</date>
-          .
-        </bibl>
-      </note>
-      <note n="3" type="footnote" place="bottom">
-        <bibl n="4">
-          <seg type="signal">Angaben aus einer Befragung von </seg>
-          <author>
-            <persName>
-              <forename>Peter</forename>
-              <surname>MacNaughton-Smith</surname>
-            </persName>
-          </author>
-          und
-          <author>
-            <persName>
-              <forename>Richard</forename>
-              <surname>Rosellen</surname>
-            </persName>
-          </author>
-          <seg type="comment">zur</seg>
-          '
-          <title level="m">Bereitschaft zur Anzeigeerstattung</title>
-          '
-          <seg type="comment">Manuskript</seg>
-          <publisher>Max-Planck-Institut für Strafrecht</publisher>
-          ,
-          <pubPlace>Freiburg</pubPlace>
-          <date>1978</date>
-          .
-        </bibl>
-        <bibl n="5">
-          <seg type="signal">Der ausführliche Forschungsbericht von </seg>
-          <author>
-            <persName>
-              <forename>Richard</forename>
-              <surname>Rosellen</surname>
-            </persName>
-          </author>
-          <seg type="comment">erscheint in Kürze unter dem Titel</seg>
-          '
-          <title level="m">Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung</title>
-          ',
-          <pubPlace>Berlin</pubPlace>
-          ,
-          <date when="1980">voraussichtlich 1980</date>
-          .
-        </bibl>
-      </note>
-      <note n="4" type="footnote" place="bottom">
-        <bibl n="6">
-          <seg type="signal">Vgl.</seg>
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Sessar</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Steffen</surname>
-            </persName>
-          </author>
-          ,
-          <date>1978</date>
-          ,
-          <citedRange unit="page" from="66" to="85">S. 66-85</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="5" type="footnote" place="bottom">
-        <bibl n="7">
-          <author>
-            <persName>
-              <surname>Black</surname>
-            </persName>
-          ,
-          </author>
-          <date>1973</date>
-          <citedRange unit="page" from="125">S. 125 ff</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="6" type="footnote" place="bottom">
-        <bibl n="8">
-          <seg type="signal">Zur höheren Wahrscheinlichkeit der Normierung von Verhalten in weniger komplexen Beziehungen vgl. die Konflikttheorie von</seg>
-          <author>
-            <persName>
-              <surname>Gessner</surname>
-            </persName>
-          </author>
-          <date>1976</date>
-          ,
-          <citedRange unit="page" from="insbesondere">insbesondere S. 170—183</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="7" type="footnote" place="bottom">
-        <bibl n="9">
-          <seg type="signal">Zum Konzept der 'Thematisierung von Recht' vgl.</seg>
-          <author>
-            <persName>
-              <surname>Luhmann</surname>
-            </persName>
-          </author>
-          <date>1980</date>
-          ,
-          <citedRange unit="page" from="99" to="112">S. 99—112</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="8" type="footnote" place="bottom">
-        <bibl n="10">
-          <seg type="signal">Ausführlicher bei</seg>
-          <author>
-            <persName>
-              <surname>Gessner</surname>
-            </persName>
-          </author>
-          <date>1976</date>
-        </bibl>
-      </note>
-      <note n="9" type="footnote" place="bottom">
-        <bibl n="11">
-          <seg type="signal">Vgl.</seg>
-          <author>
-            <persName>
-              <surname>Schönholz</surname>
-            </persName>
-          </author>
-          <date>1980</date>
-          .
-        </bibl>
-      </note>
-      <note n="10" type="footnote" place="bottom">
-        <bibl n="12">
-          <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>
-          ,
-          <citedRange unit="page" from="64">S. 64 ff</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="11" type="footnote" place="bottom">
-        <bibl n="13">
-          <author>
-            <persName>
-              <surname>Hilden</surname>
-            </persName>
-          </author>
-          <date>1976</date>
-          ,
-          <citedRange unit="page" from="64">S. 64 ff</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="12" type="footnote" place="bottom">
-        <bibl n="14">
-          <author>
-            <persName>
-              <surname>Koch</surname>
-            </persName>
-          </author>
-          <date>1975</date>
-          ,
-          <citedRange unit="page" from="75">S. 75</citedRange>
-          <seg type="comment">der allerdings nur streitige Urteile und Vergleiche untersucht hat.</seg>
-        </bibl>
-      </note>
-      <note n="13" type="footnote" place="bottom">
-        <bibl n="15">
-          <seg type="signal">Für Angaben der Zählkartenstatistik für die Familiengerichte siehe:</seg>
-          <author>
-            <orgName>Statistisches Bundesamt Wiesbaden</orgName>
-          </author>
-          ,
-          <title level="m">Fachserie 10 (Rechtspflege) Reihe 2.1</title>
-          ,
-          <citedRange unit="part">Tabelle 10</citedRange>
-          ,
-          <pubPlace>Wiesbaden</pubPlace>
-          <date>1978</date>
-          .
-        </bibl>
-      </note>
-      <note n="14" type="footnote" place="bottom">
-        <bibl n="16">
-          <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>
-          ,
-          <citedRange unit="page" from="78">S. 78 ff</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="15" type="footnote" place="bottom">
-        <bibl n="17">
-          <seg type="comment"><ref>Steinbach 1979</ref> hat in einer Erhebung von 1144 Amtsgerichtsprozessen in der Bundesrepublik ohne Berlin in den Jahren 1974—1976 ein Verhältnis von 1 Räumungsklage je 1,2 Forderungsklagen, in Berlin allerdings von 1 Räumungsklage je 0,12 Forderungsklagen ermittelt. Im folgenden auch als GMD-Erhebung zitiert</seg>
-          .
-        </bibl>
-      </note>
-      <note n="16" type="footnote" place="bottom">
-        <bibl n="18">
-          <author>
-            <persName>
-              <surname>Johnson</surname>
-            </persName>
-          </author>
-          <date>1979</date>
-          <seg type="comment">berichtet von dem erfolgreichen Versuch einer Unfall-Schadensregulierung ohne Berücksichtigung einer Schuldzuschreibung in Neuseeland (no fault accident compensation)</seg>
-          ,
-          <citedRange unit="page" from="90">S. 90 ff.</citedRange>
-        </bibl>
-      </note>
-      <note n="17" type="footnote" place="bottom">
-        <bibl n="19">
-          <author>
-            <persName>
-              <surname>Steinbach</surname>
-            </persName>
-          </author>
-          <date>1979</date>
-          ,
-          <citedRange unit="page" from="66">S. 66 ff</citedRange>
-           .
-        </bibl>
-        <bibl n="20">
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Morasch</surname>
-            </persName>
-          </author>
-          <date>1972</date>
-          ,
-          <citedRange unit="page" from="82"> S.82 ff</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="18" type="footnote" place="bottom">
-        <bibl n="21">
-          <title level="a">Projektbericht ‚Rechtshilfebedürfnisse sozial Schwacher‘</title>
-          , (
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Gorges</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Reifner</surname>
-            </persName>
-          </author>
-          <author>
-            <persName>
-              <surname>Ticmann</surname>
-            </persName>
-          </author>
-          ).
-          <seg type="comment">Befragt wurden im Januar bis März 1979 je eine Person in 835 Haushalten Westberlins. Veröffentlichung ist vorgesehen für</seg>
-          <date when="1980">Ende 1980</date>
-          . 
-          <seg type="comment">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</seg>
-          .
-        </bibl>
-      </note>
-      <note n="19" type="footnote" place="bottom">
-        <bibl n="22">
-          <seg type="signal">Explizit bei</seg>
-          <author>
-            <persName>
-              <surname>Baumgärtel</surname>
-            </persName>
-          </author>
-          <date>1976</date>
-          ,
-          <citedRange unit="page" from="113" to="128">S. 113-128</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="20" type="footnote" place="bottom">
-        <seg type="comment">Laut einer GMD-Erhebung aus der Zählkartenstatistik wurde in Baden-Württemberg 1978 in
-          25,6 % aller Scheidungssachen vor dem Familiengericht Armenrecht beantragt, 35,6 % bei Unterhaltsklagen.
-          1976 (nach alten Familien recht) sind die Anteile 14,2 % bei den Scheidungsprozessen und 42,79 % bei den
-          Unterhaltsklagen. Zum Vergleich: Bei Mietsachen wird in etwa 2 % das Armenrecht beantragt (GMD-Erhebung),
-          bei Zivilprozessen vor dem Amtsgericht insgesamt (laut Zählkartenstatistik) 0,4 % (mündliche Mitteilung von
-          Jörg Dotterweich).</seg>
-      </note>
-      <note n="21" type="footnote" place="bottom">
-        <bibl n="23">
-          <title level="a">Projektbericht ‚Rechtsschutzversicherung‘.</title>
-          (
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Fiedler</surname>
-            </persName>
-          </author>
-          ),
-          <seg type="comment">Veröffentlichung voraussichtlich</seg>
-          Mitte
-          <date>1980</date>
-          .
-        </bibl>
-      </note>
-      <note n="22" type="footnote" place="bottom">
-        <bibl n="24">
-          <seg type="signal">Vgl. auch</seg>
-          <author>
-            <persName>
-              <surname>Reifner</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Gorges</surname>
-            </persName>
-          </author>
-          <date>1980</date>
-          .
-        </bibl>
-      </note>
-      <note n="23" type="footnote" place="bottom">
-        <bibl n="25">
-          <author>
-            <persName>
-              <surname>Reifner</surname>
-            </persName>
-          </author>
-          <date>1979</date>
-          .
-        </bibl>
-      </note>
-      <note n="24" type="footnote" place="bottom">
-        <bibl n="26">
-          <seg type="signal">Klassisch bei</seg>
-          <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" type="footnote" place="bottom">
-        <bibl n="27">
-          <seg type="signal">Grundsätzlich vgl. hierzu den klassischen Beitrag von</seg>
-          <author>
-            <persName>
-              <surname>Galanter</surname>
-            </persName>
-          </author>
-          <date>1974</date>
-          ,
-          <citedRange unit="page" from="95" to="160">S. 95—160</citedRange>
-          .
-          <seg type="comment">Die grösseren Chancen von Firmen, insbesondere bei der großen Zahl von vorstreitigen Erledigungen zeigt</seg>
-        </bibl>
-        <bibl n="28">
-          <author>
-            <persName>
-              <surname>Sarat</surname>
-            </persName>
-          </author>
-          <date>1976</date>
-          ,
-          <citedRange unit="page" from="339" to="375">S. 339-375</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="26" type="footnote" place="bottom">
-        <bibl n="29">
-          <author>
-            <persName>
-              <surname>Bender</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Schumacher</surname>
-            </persName>
-          </author>
-          <date>1980</date>
-          ,
-          <citedRange unit="page" from="138">S. 138</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="27" type="footnote" place="bottom">
-        <bibl n="30">
-          <author>
-            <persName>
-              <surname>Steinbach</surname>
-            </persName>
-          </author>
-          <date>1979</date>
-          ,
-          <citedRange unit="page" from="96">S. 96 ff</citedRange>
-        </bibl>
-        <bibl n="31">
-          <seg type="signal">vgl. auch</seg>
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Morasch</surname>
-            </persName>
-          </author>
-          <date>1972</date>
-          ,
-          <citedRange unit="page" from="89" to="89">S. 89</citedRange>
-          <citedRange unit="footnote" from="17">Fn. 17</citedRange>
-        </bibl>
-      </note>
-      <note n="28" type="footnote" place="bottom">
-        <bibl n="32">
-          <author>
-            <persName>
-              <surname>Reifner</surname>
-            </persName>
-          </author>
-          <date>1978</date>
-          .
-        </bibl>
-      </note>
-      <note n="29" type="footnote" place="bottom">
-        <bibl n="33">
-          <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>
-          ,
-          <citedRange unit="page" from="102">S. 102 ff</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="30" type="footnote" place="bottom">
-        <bibl n="34">
-          <seg type="signal">Vgl. zum Verrechtlichungsbegriff meinen Beitrag über: </seg>
-          <title level="a">Recht als gradualisiertes Konzept</title>
-          <date>1980</date>
-          ,
-          <citedRange unit="page" from="83" to="98">S. 83—98</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="31" type="footnote" place="bottom">
-        <bibl n="35">
-          <author>
-            <persName>
-              <surname>Steinbach</surname>
-            </persName>
-          </author>
-          <date>1979</date>
-          ,
-          <citedRange unit="page" from="35" to="35">S. 35</citedRange>
-        </bibl>
-        <bibl n="36">
-          <author>
-            <persName>
-              <surname>Bender</surname>
-            </persName>
-          </author>
-          <author>
-            <persName>
-              <surname>Schumacher</surname>
-            </persName>
-          </author>
-          <date>1980</date>
-          ,
-          <citedRange unit="page" from="24" to="24">S. 24</citedRange>
-          und
-          <citedRange unit="page" from="49" to="49">S. 49</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="32" type="footnote" place="bottom">
-        <bibl n="37">
-          <author>
-            <persName>
-              <surname>Wanner</surname>
-            </persName>
-          </author>
-          <date>1975</date>
-          ,
-          <citedRange unit="page" from="293" to="306">S. 293—306</citedRange>
-          <seg type="comment">hebt dies deutlich hervor</seg>
-          ,
-        </bibl>
-        <bibl n="38">
-          <seg type="signal">ebenso</seg>
-          <author>
-            <persName>
-              <surname>Bender</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Schumacher</surname>
-            </persName>
-          </author>
-          <date>1980</date>
-          ,
-          <citedRange unit="page" from="72">S. 72 ff</citedRange>
-          .
-        </bibl>
-        <bibl n="39">
-          <seg type="signal">sowie</seg>
-          <author>
-            <persName>
-              <surname>Galanter</surname>
-            </persName>
-          </author>
-          <date>1974</date>
-          ; 
-        </bibl>
-        <bibl n="40">
-          <author>
-            <persName>
-              <surname>Sarat</surname>
-            </persName>
-          </author>
-          <date>1976</date>
-          .
-        </bibl>
-      </note>
-      <note n="33" type="footnote" place="bottom">
-        <bibl n="41">
-          <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>
-          ,
-          <citedRange unit="page" from="78">S. 78 ff</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="34" type="footnote" place="bottom">
-        <bibl n="42">
-          <ref>Ebenda</ref>
-          ,
-          <citedRange unit="page" from="138" to="186">S. 138-186</citedRange>
-          .
-        </bibl>
-      </note>
-      <note n="35" type="footnote" place="bottom">
-        <bibl n="43">
-          <author>
-            <persName>
-              <surname>Luhmann</surname>
-            </persName>
-          </author>
-          <date>1969</date>
-          .
-        </bibl>
-      </note>
-      <note n="36" type="footnote" place="bottom">
-        <bibl n="44">
-          <seg type="signal">Für eine überaus positive Bewertung des ‚Vermeidens‘ vgl.</seg>
-          <author>
-            <persName>
-              <surname>Felstiner</surname>
-            </persName>
-          </author>
-          und
-          <author>
-            <persName>
-              <surname>Danzig</surname>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Lowy</surname>
-            </persName>
-          </author>
-          in
-          <title level="j">Law and Society Review</title>
-          ,
-          <citedRange unit="volume" from="9" to="9">vol. 9</citedRange>
-          ,
-          <date when="1974">1974/75</date>
-          .
-        </bibl>
-      </note>
-      <listBibl type="bibliography">
-        <bibl n="45">
-          <author>
-            <persName>
-              <surname>Baumgärtel</surname>
-              ,
-              <forename>Gottfried</forename>
+    <teiHeader>
+        <fileDesc>
+            <titleStmt>
+                <title>10.1515_zfrs-1980-0103</title>
+            </titleStmt>
+            <publicationStmt>
+                <publisher>mpilhlt</publisher>
+            </publicationStmt>
+            <sourceDesc>
+                <p>10.1515_zfrs-1980-0103</p>
+            </sourceDesc>
+        </fileDesc>
+    </teiHeader>
+    <text>
+        <body>
+            <p>The article text is not part of this document</p>
+            <note n="1" type="footnote" place="bottom">
+                <bibl n="1">
+                    <author>
+                        <persName>
+                            <surname>Geiger</surname>
+                        </persName>
+                    </author>
+                    <date>1964</date>
+                    ,
+                    <citedRange unit="page" from="65" to="83">insbesondere S. 65—83</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="2" type="footnote" place="bottom">
+                <bibl n="2">
+                    <seg type="signal">Vgl.</seg>
+                    <author>
+                        <persName>
+                            <surname>Feest</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1972</date>
+                    .
+                </bibl>
+                <bibl n="3">
+                    <seg type="signal">Die Konsequenz einer größeren Dunkelziffer bei den von der Polizei selbst
+                        entdeckten Straftaten entwickle ich ausführlicher in meinem Beitrag über
+                    </seg>
+                    <title level="m">Nichtkriminalisierung als Struktur und Routine</title>
+                    ',
+                    <date>1976</date>
+                    .
+                </bibl>
+            </note>
+            <note n="3" type="footnote" place="bottom">
+                <bibl n="4">
+                    <seg type="signal">Angaben aus einer Befragung von</seg>
+                    <author>
+                        <persName>
+                            <forename>Peter</forename>
+                            <surname>MacNaughton-Smith</surname>
+                        </persName>
+                    </author>
+                    und
+                    <author>
+                        <persName>
+                            <forename>Richard</forename>
+                            <surname>Rosellen</surname>
+                        </persName>
+                    </author>
+                    zur '
+                    <title level="m">Bereitschaft zur Anzeigeerstattung</title>
+                    '
+                    <seg type="documentType">Manuskript</seg>
+                    <publisher>Max-Planck-Institut für Strafrecht</publisher>
+                    ,
+                    <pubPlace>Freiburg</pubPlace>
+                    <date>1978</date>
+                    .
+                </bibl>
+                <bibl n="5">
+                    <seg type="signal">Der ausführliche Forschungsbericht von</seg>
+                    <author>
+                        <persName>
+                            <forename>Richard</forename>
+                            <surname>Rosellen</surname>
+                        </persName>
+                    </author>
+                    <seg type="ignore">erscheint in Kürze unter dem Titel</seg>
+                    '
+                    <title level="m">Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung
+                    </title>
+                    ',
+                    <pubPlace>Berlin</pubPlace>
+                    ,
+                    <date when="1980">voraussichtlich 1980</date>
+                    .
+                </bibl>
+            </note>
+            <note n="4" type="footnote" place="bottom">
+                <bibl n="6">
+                    <seg type="signal">Vgl.</seg>
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Sessar</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Steffen</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1978</date>
+                    ,
+                    <citedRange unit="page" from="66" to="85">S. 66-85</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="5" type="footnote" place="bottom">
+                <bibl n="7">
+                    <author>
+                        <persName>
+                            <surname>Black</surname>
+                        </persName>
+                        ,
+                    </author>
+                    <date>1973</date>
+                    <citedRange unit="page" from="125">S. 125 ff</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="6" type="footnote" place="bottom">
+                <bibl n="8">
+                    <seg type="signal">Zur höheren Wahrscheinlichkeit der Normierung von Verhalten in weniger komplexen
+                        Beziehungen vgl. die Konflikttheorie von
+                    </seg>
+                    <author>
+                        <persName>
+                            <surname>Gessner</surname>
+                        </persName>
+                    </author>
+                    <date>1976</date>
+                    ,
+                    <citedRange unit="page" from="insbesondere">insbesondere S. 170—183</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="7" type="footnote" place="bottom">
+                <bibl n="9">
+                    <seg type="signal">Zum Konzept der 'Thematisierung von Recht' vgl.</seg>
+                    <author>
+                        <persName>
+                            <surname>Luhmann</surname>
+                        </persName>
+                    </author>
+                    <date>1980</date>
+                    ,
+                    <citedRange unit="page" from="99" to="112">S. 99—112</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="8" type="footnote" place="bottom">
+                <bibl n="10">
+                    <seg type="signal">Ausführlicher bei</seg>
+                    <author>
+                        <persName>
+                            <surname>Gessner</surname>
+                        </persName>
+                    </author>
+                    <date>1976</date>
+                </bibl>
+            </note>
+            <note n="9" type="footnote" place="bottom">
+                <bibl n="11">
+                    <seg type="signal">Vgl.</seg>
+                    <author>
+                        <persName>
+                            <surname>Schönholz</surname>
+                        </persName>
+                    </author>
+                    <date>1980</date>
+                    .
+                </bibl>
+            </note>
+            <note n="10" type="footnote" place="bottom">
+                <bibl n="12">
+                    <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>
+                    ,
+                    <citedRange unit="page" from="64">S. 64 ff</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="11" type="footnote" place="bottom">
+                <bibl n="13">
+                    <author>
+                        <persName>
+                            <surname>Hilden</surname>
+                        </persName>
+                    </author>
+                    <date>1976</date>
+                    ,
+                    <citedRange unit="page" from="64">S. 64 ff</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="12" type="footnote" place="bottom">
+                <bibl n="14">
+                    <author>
+                        <persName>
+                            <surname>Koch</surname>
+                        </persName>
+                    </author>
+                    <date>1975</date>
+                    ,
+                    <citedRange unit="page" from="75">S. 75</citedRange>
+                    <seg type="comment">der allerdings nur streitige Urteile und Vergleiche untersucht hat.</seg>
+                </bibl>
+            </note>
+            <note n="13" type="footnote" place="bottom">
+                <bibl n="15">
+                    <seg type="signal">Für Angaben der Zählkartenstatistik für die Familiengerichte siehe:</seg>
+                    <author>
+                        <orgName>Statistisches Bundesamt Wiesbaden</orgName>
+                    </author>
+                    ,
+                    <title level="m">Fachserie 10 (Rechtspflege) Reihe 2.1</title>
+                    ,
+                    <citedRange unit="part">Tabelle 10</citedRange>
+                    ,
+                    <pubPlace>Wiesbaden</pubPlace>
+                    <date>1978</date>
+                    .
+                </bibl>
+            </note>
+            <note n="14" type="footnote" place="bottom">
+                <bibl n="16">
+                    <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>
+                    ,
+                    <citedRange unit="page" from="78">S. 78 ff</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="15" type="footnote" place="bottom">
+                <bibl n="17">
+                    <seg type="comment">Steinbach 1979 hat in einer Erhebung von 1144 Amtsgerichtsprozessen in der
+                        Bundesrepublik ohne Berlin in den Jahren 1974—1976 ein Verhältnis von 1 Räumungsklage je 1,2
+                        Forderungsklagen, in Berlin allerdings von 1 Räumungsklage je 0,12 Forderungsklagen ermittelt.
+                        Im folgenden auch als GMD-Erhebung zitiert.
+                    </seg>
+                </bibl>
+            </note>
+            <note n="16" type="footnote" place="bottom">
+                <bibl n="18">
+                    <author>
+                        <persName>
+                            <surname>Johnson</surname>
+                        </persName>
+                    </author>
+                    <date>1979</date>
+                    <seg type="ignore">berichtet von dem erfolgreichen Versuch einer Unfall-Schadensregulierung ohne
+                        Berücksichtigung einer Schuldzuschreibung in Neuseeland (no fault accident compensation)
+                    </seg>
+                    ,
+                    <citedRange unit="page" from="90">S. 90 ff.</citedRange>
+                </bibl>
+            </note>
+            <note n="17" type="footnote" place="bottom">
+                <bibl n="19">
+                    <author>
+                        <persName>
+                            <surname>Steinbach</surname>
+                        </persName>
+                    </author>
+                    <date>1979</date>
+                    ,
+                    <citedRange unit="page" from="66">S. 66 ff</citedRange>
+                    .
+                </bibl>
+                <bibl n="20">
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Morasch</surname>
+                        </persName>
+                    </author>
+                    <date>1972</date>
+                    ,
+                    <citedRange unit="page" from="82">S.82 ff</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="18" type="footnote" place="bottom">
+                <bibl n="21">
+                    <title level="a">Projektbericht ‚Rechtshilfebedürfnisse sozial Schwacher‘</title>
+                    , (
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Gorges</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Reifner</surname>
+                        </persName>
+                    </author>
+                    <author>
+                        <persName>
+                            <surname>Ticmann</surname>
+                        </persName>
+                    </author>
+                    ).
+                    <seg type="ignore">Befragt wurden im Januar bis März 1979 je eine Person in 835 Haushalten
+                        Westberlins. Veröffentlichung ist vorgesehen für
+                    </seg>
+                    <date when="1980">Ende 1980</date>
+                    .
+                    <seg type="comment">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.
+                    </seg>
+                </bibl>
+            </note>
+            <note n="19" type="footnote" place="bottom">
+                <bibl n="22">
+                    <seg type="signal">Explizit bei</seg>
+                    <author>
+                        <persName>
+                            <surname>Baumgärtel</surname>
+                        </persName>
+                    </author>
+                    <date>1976</date>
+                    ,
+                    <citedRange unit="page" from="113" to="128">S. 113-128</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="20" type="footnote" place="bottom">
+                <seg type="comment">Laut einer GMD-Erhebung aus der Zählkartenstatistik wurde in Baden-Württemberg 1978
+                    in 25,6 % aller Scheidungssachen vor dem Familiengericht Armenrecht beantragt, 35,6 % bei
+                    Unterhaltsklagen. 1976 (nach alten Familien recht) sind die Anteile 14,2 % bei den
+                    Scheidungsprozessen und 42,79 % bei den Unterhaltsklagen. Zum Vergleich: Bei Mietsachen wird in etwa
+                    2 % das Armenrecht beantragt (GMD-Erhebung), bei Zivilprozessen vor dem Amtsgericht insgesamt (laut
+                    Zählkartenstatistik) 0,4 % (mündliche Mitteilung von Jörg Dotterweich).
+                </seg>
+            </note>
+            <note n="21" type="footnote" place="bottom">
+                <bibl n="23">
+                    <title level="a">Projektbericht ‚Rechtsschutzversicherung‘.</title>
+                    (
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Fiedler</surname>
+                        </persName>
+                    </author>
+                    ),
+                    <seg type="ignore">Veröffentlichung voraussichtlich</seg>
+                    Mitte
+                    <date>1980</date>
+                    .
+                </bibl>
+            </note>
+            <note n="22" type="footnote" place="bottom">
+                <bibl n="24">
+                    <seg type="signal">Vgl. auch</seg>
+                    <author>
+                        <persName>
+                            <surname>Reifner</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Gorges</surname>
+                        </persName>
+                    </author>
+                    <date>1980</date>
+                    .
+                </bibl>
+            </note>
+            <note n="23" type="footnote" place="bottom">
+                <bibl n="25">
+                    <author>
+                        <persName>
+                            <surname>Reifner</surname>
+                        </persName>
+                    </author>
+                    <date>1979</date>
+                    .
+                </bibl>
+            </note>
+            <note n="24" type="footnote" place="bottom">
+                <bibl n="26">
+                    <seg type="signal">Klassisch bei</seg>
+                    <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" type="footnote" place="bottom">
+                <bibl n="27">
+                    <seg type="signal">Grundsätzlich vgl. hierzu den klassischen Beitrag von</seg>
+                    <author>
+                        <persName>
+                            <surname>Galanter</surname>
+                        </persName>
+                    </author>
+                    <date>1974</date>
+                    ,
+                    <citedRange unit="page" from="95" to="160">S. 95—160</citedRange>
+                    .
+                </bibl>
+                <bibl n="28">
+                    <seg type="comment">Die grösseren Chancen von Firmen, insbesondere bei der großen Zahl von
+                        vorstreitigen Erledigungen zeigt
+                    </seg>
+                    <author>
+                        <persName>
+                            <surname>Sarat</surname>
+                        </persName>
+                    </author>
+                    <date>1976</date>
+                    ,
+                    <citedRange unit="page" from="339" to="375">S. 339-375</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="26" type="footnote" place="bottom">
+                <bibl n="29">
+                    <author>
+                        <persName>
+                            <surname>Bender</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Schumacher</surname>
+                        </persName>
+                    </author>
+                    <date>1980</date>
+                    ,
+                    <citedRange unit="page" from="138">S. 138</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="27" type="footnote" place="bottom">
+                <bibl n="30">
+                    <author>
+                        <persName>
+                            <surname>Steinbach</surname>
+                        </persName>
+                    </author>
+                    <date>1979</date>
+                    ,
+                    <citedRange unit="page" from="96">S. 96 ff</citedRange>
+                </bibl>
+                <bibl n="31">
+                    <seg type="signal">vgl. auch</seg>
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Morasch</surname>
+                        </persName>
+                    </author>
+                    <date>1972</date>
+                    ,
+                    <citedRange unit="page" from="89" to="89">S. 89</citedRange>
+                    <citedRange unit="footnote" from="17">Fn. 17</citedRange>
+                </bibl>
+            </note>
+            <note n="28" type="footnote" place="bottom">
+                <bibl n="32">
+                    <author>
+                        <persName>
+                            <surname>Reifner</surname>
+                        </persName>
+                    </author>
+                    <date>1978</date>
+                    .
+                </bibl>
+            </note>
+            <note n="29" type="footnote" place="bottom">
+                <bibl n="33">
+                    <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>
+                    ,
+                    <citedRange unit="page" from="102">S. 102 ff</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="30" type="footnote" place="bottom">
+                <bibl n="34">
+                    <seg type="signal">Vgl. zum Verrechtlichungsbegriff meinen Beitrag über:</seg>
+                    <title level="a">Recht als gradualisiertes Konzept</title>
+                    <date>1980</date>
+                    ,
+                    <citedRange unit="page" from="83" to="98">S. 83—98</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="31" type="footnote" place="bottom">
+                <bibl n="35">
+                    <author>
+                        <persName>
+                            <surname>Steinbach</surname>
+                        </persName>
+                    </author>
+                    <date>1979</date>
+                    ,
+                    <citedRange unit="page" from="35" to="35">S. 35</citedRange>
+                </bibl>
+                <bibl n="36">
+                    <author>
+                        <persName>
+                            <surname>Bender</surname>
+                        </persName>
+                    </author>
+                    <author>
+                        <persName>
+                            <surname>Schumacher</surname>
+                        </persName>
+                    </author>
+                    <date>1980</date>
+                    ,
+                    <citedRange unit="page" from="24" to="24">S. 24</citedRange>
+                    und
+                    <citedRange unit="page" from="49" to="49">S. 49</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="32" type="footnote" place="bottom">
+                <bibl n="37">
+                    <author>
+                        <persName>
+                            <surname>Wanner</surname>
+                        </persName>
+                    </author>
+                    <date>1975</date>
+                    ,
+                    <citedRange unit="page" from="293" to="306">S. 293—306</citedRange>
+                    <seg type="comment">hebt dies deutlich hervor</seg>
+                    ,
+                </bibl>
+                <bibl n="38">
+                    <seg type="signal">ebenso</seg>
+                    <author>
+                        <persName>
+                            <surname>Bender</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Schumacher</surname>
+                        </persName>
+                    </author>
+                    <date>1980</date>
+                    ,
+                    <citedRange unit="page" from="72">S. 72 ff</citedRange>
+                    .
+                </bibl>
+                <bibl n="39">
+                    <seg type="signal">sowie</seg>
+                    <author>
+                        <persName>
+                            <surname>Galanter</surname>
+                        </persName>
+                    </author>
+                    <date>1974</date>
+                    ;
+                </bibl>
+                <bibl n="40">
+                    <author>
+                        <persName>
+                            <surname>Sarat</surname>
+                        </persName>
+                    </author>
+                    <date>1976</date>
+                    .
+                </bibl>
+            </note>
+            <note n="33" type="footnote" place="bottom">
+                <bibl n="41">
+                    <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>
+                    ,
+                    <citedRange unit="page" from="78">S. 78 ff</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="34" type="footnote" place="bottom">
+                <bibl n="42">
+                    <ref>Ebenda</ref>
+                    ,
+                    <citedRange unit="page" from="138" to="186">S. 138-186</citedRange>
+                    .
+                </bibl>
+            </note>
+            <note n="35" type="footnote" place="bottom">
+                <bibl n="43">
+                    <author>
+                        <persName>
+                            <surname>Luhmann</surname>
+                        </persName>
+                    </author>
+                    <date>1969</date>
+                    .
+                </bibl>
+            </note>
+            <note n="36" type="footnote" place="bottom">
+                <bibl n="44">
+                    <seg type="signal">Für eine überaus positive Bewertung des ‚Vermeidens‘ vgl.</seg>
+                    <author>
+                        <persName>
+                            <surname>Felstiner</surname>
+                        </persName>
+                    </author>
+                    und
+                    <author>
+                        <persName>
+                            <surname>Danzig</surname>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Lowy</surname>
+                        </persName>
+                    </author>
+                    in
+                    <title level="j">Law and Society Review</title>
+                    ,
+                    <citedRange unit="volume" from="9" to="9">vol. 9</citedRange>
+                    ,
+                    <date when="1974">1974/75</date>
+                    .
+                </bibl>
+            </note>
+            <listBibl type="bibliography">
+                <bibl n="45">
+                    <author>
+                        <persName>
+                            <surname>Baumgärtel</surname>
+                            ,
+                            <forename>Gottfried</forename>
 
-            </persName>
-          </author>
-          ,
-          <date>1976</date>
-          :
-          <title level="m">Gleicher Zugang zum Recht für alle</title>
-          .
-          <pubPlace>Köln</pubPlace>
-          .
-        </bibl>
-        <bibl n="46">
-          <author>
-            <persName>
-              <surname>Bender</surname>
-              ,
-              <forename>Rolf</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1976</date>
+                    :
+                    <title level="m">Gleicher Zugang zum Recht für alle</title>
+                    .
+                    <pubPlace>Köln</pubPlace>
+                    .
+                </bibl>
+                <bibl n="46">
+                    <author>
+                        <persName>
+                            <surname>Bender</surname>
+                            ,
+                            <forename>Rolf</forename>
 
-            </persName>
-          </author>
-          und
-          <author>
-            <persName>
-              <forename>Rolf</forename>
-              <surname>Schumacher</surname>
-            </persName>
-          </author>
-          ,
-          <date>1980</date>
-          :
-          <title level="m">Erfolgsbarrieren vor Gericht</title>
-          .
-          <pubPlace>Tübingen</pubPlace>
-          .
-        </bibl>
-        <bibl n="47">
-          <author>
-            <persName>
-              <surname>Black</surname>
-              ,
-              <forename>Donald</forename>
+                        </persName>
+                    </author>
+                    und
+                    <author>
+                        <persName>
+                            <forename>Rolf</forename>
+                            <surname>Schumacher</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1980</date>
+                    :
+                    <title level="m">Erfolgsbarrieren vor Gericht</title>
+                    .
+                    <pubPlace>Tübingen</pubPlace>
+                    .
+                </bibl>
+                <bibl n="47">
+                    <author>
+                        <persName>
+                            <surname>Black</surname>
+                            ,
+                            <forename>Donald</forename>
 
-            </persName>
-          </author>
-          ,
-          <date>1973</date>
-          :
-          <title level="a">The Mobilization of Law</title>
-          , in:
-          <title level="j">Journal of Legal Studies</title>
-          <biblScope unit="volume" from="2" to="2">2</biblScope>
-          .
-        </bibl>
-        <bibl n="48">
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-              ,
-              <forename>Erhard</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1973</date>
+                    :
+                    <title level="a">The Mobilization of Law</title>
+                    , in:
+                    <title level="j">Journal of Legal Studies</title>
+                    <biblScope unit="volume" from="2" to="2">2</biblScope>
+                    .
+                </bibl>
+                <bibl n="48">
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                            ,
+                            <forename>Erhard</forename>
 
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-              ,
-              <forename>Viola</forename>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                            ,
+                            <forename>Viola</forename>
 
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Morasch</surname>
-              ,
-              <forename>Helmut</forename>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Morasch</surname>
+                            ,
+                            <forename>Helmut</forename>
 
-            </persName>
-          </author>
-          ,
-          <date>1972</date>
-          :
-          <title level="a">Der lange Weg in die Berufung</title>
-          , in:
-          <editor>
-            <persName>
-              <surname>Bender</surname>
-              ,
-              <forename>Rolf</forename>
-            </persName>
-          </editor>
-          (Hrsg.):
-          <title level="m">Tatsachenforschung in der Justiz</title>
-          .
-          <pubPlace>Tübingen</pubPlace>
-          .
-        </bibl>
-        <bibl n="49">
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-              ,
-              <forename>Erhard</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1972</date>
+                    :
+                    <title level="a">Der lange Weg in die Berufung</title>
+                    , in:
+                    <editor>
+                        <persName>
+                            <surname>Bender</surname>
+                            ,
+                            <forename>Rolf</forename>
+                        </persName>
+                    </editor>
+                    (Hrsg.):
+                    <title level="m">Tatsachenforschung in der Justiz</title>
+                    .
+                    <pubPlace>Tübingen</pubPlace>
+                    .
+                </bibl>
+                <bibl n="49">
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                            ,
+                            <forename>Erhard</forename>
 
-            </persName>
-          </author>
-          ,
-          <date>1976</date>
-          :
-          <title level="a">Nichtkriminalisierung als Struktur und Routine</title>
-          , in:
-          <editor>
-            <persName>
-              <surname>Göppinger</surname>
-            </persName>
-          </editor>
-          ,
-          <title level="m">Hans und Günter Kaiser: Kriminologie und Strafverfahren</title>
-          .
-          <pubPlace>Stuttgart</pubPlace>
-          .
-        </bibl>
-        <bibl n="50">
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-              ,
-              <forename>Erhard</forename>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Sessar</surname>
-              ,
-              <forename>Klaus</forename>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Steffen</surname>
-              ,
-              <forename>Wiebke</forename>
-            </persName>
-          </author>
-          ,
-          <date>1978</date>
-          :
-          <title level="m">Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle</title>
-          .
-          <pubPlace>Berlin</pubPlace>
-          .
-        </bibl>
-        <bibl n="51">
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-              ,
-              <forename>Erhard</forename>
-            </persName>
-          </author>
-          ;
-          <author>
-            <persName>
-              <surname>Schönholz</surname>
-              ,
-              <forename>Siegfried</forename>
-            </persName>
-          </author>
-          ,
-          <seg type="comment">unter Mitarbeit von</seg> Ralf ,
-          <author>
-            <persName>
-              <forename>Ralf</forename>
-              <surname>Rogowski</surname>
-            </persName>
-          </author>
-          ,
-          <date>1979</date>
-          :
-          <title level="m">Zur Soziologie des Arbeitsgerichtsverfahrens</title>
-          .
-          <pubPlace>Neuwied und Darmstadt</pubPlace>
-          .
-        </bibl>
-        <bibl n="52">
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-              ,
-              <forename>Erhard</forename>
-            </persName>
-          </author>
-          ,
-          <date>1980</date>
-          :
-          <title level="a">Recht als gradualisiertes Konzept</title>
-          , in:
-          <editor>
-            <persName>
-              <surname>Blankenburg</surname>
-              ,
-              <forename>Erhard</forename>
-            </persName>
-          </editor>
-          ;
-          <editor>
-            <persName>
-              <surname>Klausa</surname>
-              ,
-              <forename>Ekkehard</forename>
-            </persName>
-          </editor>
-          und
-          <editor>
-            <persName>
-              <forename>Hubert</forename>
-              <surname>Rottleuthner</surname>
-            </persName>
-          </editor>
-          (Hrsg.):
-          <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title>
-          ,
-          <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
-          Bd.
-          <biblScope unit="volume" from="6" to="6">6</biblScope>
-          .
-          <pubPlace>Opladen</pubPlace>
-          .
-        </bibl>
-        <bibl n="53">
-          <author>
-            <persName>
-              <surname>Carlin</surname>
-              ,
-              <forename>Jerome-</forename>
-            </persName>
-          </author>
-          ;
-          <author>
-            <persName>
-              <surname>Jan</surname>
-              <forename>Howard-</forename>
-            </persName>
-          </author>
-          und
-          <author>
-            <persName>
-              <forename>Sheldon</forename>
-              <surname>Messinger</surname>
-            </persName>
-          </author>
-          ,
-          <date>1967</date>
-          :
-          <title level="m">Civil Justice and the Poor</title>
-          .
-          <pubPlace>New York</pubPlace>
-          .
-        </bibl>
-        <bibl n="54">
-          <author>
-            <persName>
-              <surname>Danzig</surname>
-              ,
-              <forename>Richard</forename>
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Lowy</surname>
-              ,
-              <forename>Michael</forename>
-            </persName>
-          </author>
-          ,
-          <date when="1975">1974/1975</date>
-          :
-          <title level="a">Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner</title>
-          ,
-          <title level="j">Law and Society Review</title>
-          ,
-          <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>
-          ,
-          <biblScope unit="page" from="675" to="694">pp. 675—694</biblScope>
-          .
-        </bibl>
-        <bibl n="55">
-          <author>
-            <persName>
-              <surname>Feest</surname>
-              ,
-              <forename>Johannes</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1976</date>
+                    :
+                    <title level="a">Nichtkriminalisierung als Struktur und Routine</title>
+                    , in:
+                    <editor>
+                        <persName>
+                            <surname>Göppinger</surname>
+                        </persName>
+                    </editor>
+                    ,
+                    <title level="m">Hans und Günter Kaiser: Kriminologie und Strafverfahren</title>
+                    .
+                    <pubPlace>Stuttgart</pubPlace>
+                    .
+                </bibl>
+                <bibl n="50">
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                            ,
+                            <forename>Erhard</forename>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Sessar</surname>
+                            ,
+                            <forename>Klaus</forename>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Steffen</surname>
+                            ,
+                            <forename>Wiebke</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1978</date>
+                    :
+                    <title level="m">Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle</title>
+                    .
+                    <pubPlace>Berlin</pubPlace>
+                    .
+                </bibl>
+                <bibl n="51">
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                            ,
+                            <forename>Erhard</forename>
+                        </persName>
+                    </author>
+                    ;
+                    <author>
+                        <persName>
+                            <surname>Schönholz</surname>
+                            ,
+                            <forename>Siegfried</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <author>
+                        <persName>
+                            <roleName type="contributor">unter Mitarbeit von</roleName>
+                            <forename>Ralf</forename>
+                            <surname>Rogowski</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1979</date>
+                    :
+                    <title level="m">Zur Soziologie des Arbeitsgerichtsverfahrens</title>
+                    .
+                    <pubPlace>Neuwied und Darmstadt</pubPlace>
+                    .
+                </bibl>
+                <bibl n="52">
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                            ,
+                            <forename>Erhard</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1980</date>
+                    :
+                    <title level="a">Recht als gradualisiertes Konzept</title>
+                    , in:
+                    <editor>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                            ,
+                            <forename>Erhard</forename>
+                        </persName>
+                    </editor>
+                    ;
+                    <editor>
+                        <persName>
+                            <surname>Klausa</surname>
+                            ,
+                            <forename>Ekkehard</forename>
+                        </persName>
+                    </editor>
+                    und
+                    <editor>
+                        <persName>
+                            <forename>Hubert</forename>
+                            <surname>Rottleuthner</surname>
+                        </persName>
+                    </editor>
+                    (Hrsg.):
+                    <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title>
+                    ,
+                    <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
+                    Bd.
+                    <biblScope unit="volume" from="6" to="6">6</biblScope>
+                    .
+                    <pubPlace>Opladen</pubPlace>
+                    .
+                </bibl>
+                <bibl n="53">
+                    <author>
+                        <persName>
+                            <surname>Carlin</surname>
+                            ,
+                            <forename>Jerome-</forename>
+                        </persName>
+                    </author>
+                    ;
+                    <author>
+                        <persName>
+                            <surname>Jan</surname>
+                            <forename>Howard-</forename>
+                        </persName>
+                    </author>
+                    und
+                    <author>
+                        <persName>
+                            <forename>Sheldon</forename>
+                            <surname>Messinger</surname>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1967</date>
+                    :
+                    <title level="m">Civil Justice and the Poor</title>
+                    .
+                    <pubPlace>New York</pubPlace>
+                    .
+                </bibl>
+                <bibl n="54">
+                    <author>
+                        <persName>
+                            <surname>Danzig</surname>
+                            ,
+                            <forename>Richard</forename>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Lowy</surname>
+                            ,
+                            <forename>Michael</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date when="1975">1974/1975</date>
+                    :
+                    <title level="a">Everyday Disputes and Mediation in the United States: A Reply to Professor
+                        Felstiner
+                    </title>
+                    ,
+                    <title level="j">Law and Society Review</title>
+                    ,
+                    <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>
+                    ,
+                    <biblScope unit="page" from="675" to="694">pp. 675—694</biblScope>
+                    .
+                </bibl>
+                <bibl n="55">
+                    <author>
+                        <persName>
+                            <surname>Feest</surname>
+                            ,
+                            <forename>Johannes</forename>
 
-            </persName>
-          </author>
-          /
-          <author>
-            <persName>
-              <surname>Blankenburg</surname>
-              ,
-              <forename>Erhard</forename>
+                        </persName>
+                    </author>
+                    /
+                    <author>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                            ,
+                            <forename>Erhard</forename>
 
-            </persName>
-          </author>
-          ,
-          <date>1972</date>
-          :
-          <title level="a">Die Definitionsmacht der Polizei.</title>
-          <pubPlace>Düsseldorf</pubPlace>
-          .
-        </bibl>
-        <bibl n="56">
-          <author>
-            <persName>
-              <surname>Felstiner</surname>
-              ,
-              <forename type="first">William</forename>
-              <forename type="middle">L. F.</forename>
-            </persName>
-          </author>
-          .,
-          <date when="1974">1974/75</date>
-          :
-          <title level="a">Influences of Social Organization on Dispute processing</title>
-          , in:
-          <title level="j">Law and Society Review</title>
-          ,
-          <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>
-          ,
-          <biblScope unit="page" from="63" to="94">pp. 63—94</biblScope>
-          .
-        </bibl>
-        <bibl n="57">
-          <author>
-            <persName>
-              <surname>Felstiner</surname>
-              ,
-              <forename type="first">William</forename>
-              <forename type="middle" full="init">L. F.</forename>
-            </persName>
-          </author>
-          ,
-          <date when="1974">1974/75</date>
-          :
-          <title level="a">Avoidance as Dispute Processing: An Elaboration</title>
-          , in:
-          <title level="j">Law and Society Review</title>
-          ,
-          <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>
-          ,
-          <biblScope unit="page" from="695" to="706">pp. 695-706</biblScope>
-          .
-        </bibl>
-        <bibl n="58">
-          <author>
-            <persName>
-              <surname>Galanter</surname>
-              ,
-              <forename>Marc</forename>
-            </persName>
-          </author>
-          ,
-          <date when="1974">1974</date>
-          :
-          <title level="a">Why the ‚Haves‘ Come out Ahead: Speculations on the Limits of Legal Change</title>
-          , in:
-          <title level="j">Law and Society Review</title>
-          ,
-          <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>
-          ,
-          <biblScope unit="page" from="95" to="160">pp. 95—160</biblScope>
-          .
-        </bibl>
-        <bibl n="59">
-          <author>
-            <persName>
-              <surname>Geiger</surname>
-              ,
-              <forename>Theodor</forename>
-            </persName>
-          </author>
-          ,
-          <date>1964</date>
-          :
-          <title level="m">Vorstudien zu einer Soziologie des Rechts.</title>
-          <pubPlace>Neuwied</pubPlace>
-          .
-        </bibl>
-        <bibl n="60">
-          <author>
-            <persName>
-              <surname>Gessner</surname>
-              ,
-              <forename>Volkmar</forename>
-            </persName>
-          </author>
-          ,
-          <date>1976</date>
-          :
-          <title level="m">Recht und Konflikt</title>
-          .
-          <pubPlace>Tübingen</pubPlace>
-          .
-        </bibl>
-        <bibl n="61">
-          <author>
-            <persName>
-              <surname>Hilden</surname>
-              ,
-              <forename>Hartmut</forename>
-            </persName>
-          </author>
-          ,
-          <date>1976</date>
-          :
-          <title level="m">Rechtstatsachen im Räumungsstreit. Frankfurt/Main.</title>
-        </bibl>
-        <bibl n="62">
-          <author>
-            <persName>
-              <surname>Johnson</surname>
-              ,
-              <forename>Earl</forename>
-            </persName>
-          </author>
-          ,
-          <date>1979</date>
-          ;
-          <title level="a">Thinking about Access: A Preliminary Typology of Possible Strategies</title>
-          . In:
-          <editor>
-            <persName>
-              <surname>Cappelletti</surname>
-              ,
-              <forename>Mauro</forename>
-            </persName>
-          </editor>
-          und
-          <editor>
-            <persName>
-              <forename>Bryant</forename>
-              <surname>Garth</surname>
-            </persName>
-          </editor>
-          (Hrsg.):
-          <title level="m">Access to Justice</title>
-          , Bd.
-          <biblScope unit="volume" from="III" to="III">III</biblScope>
-          .
-          <pubPlace>Milan und Alphen/Rijn</pubPlace>
-          .
-        </bibl>
-        <bibl n="63">
-          <author>
-            <persName>
-              <surname>Koch</surname>
-              ,
-              <forename>Hartmut</forename>
-            </persName>
-          </author>
-          ,
-          <date>1975</date>
-          :
-          <title level="m">Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen.</title>
-          <seg type="comment">Diss.</seg>
-          <pubPlace>Hamburg</pubPlace>
-          .
-        </bibl>
-        <bibl n="64">
-          <author>
-            <persName>
-              <surname>Luhmann</surname>
-              ,
-              <forename>Niklas</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1972</date>
+                    :
+                    <title level="a">Die Definitionsmacht der Polizei.</title>
+                    <pubPlace>Düsseldorf</pubPlace>
+                    .
+                </bibl>
+                <bibl n="56">
+                    <author>
+                        <persName>
+                            <surname>Felstiner</surname>
+                            ,
+                            <forename type="first">William</forename>
+                            <forename type="middle">L. F.</forename>
+                        </persName>
+                    </author>
+                    .,
+                    <date when="1974">1974/75</date>
+                    :
+                    <title level="a">Influences of Social Organization on Dispute processing</title>
+                    , in:
+                    <title level="j">Law and Society Review</title>
+                    ,
+                    <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>
+                    ,
+                    <biblScope unit="page" from="63" to="94">pp. 63—94</biblScope>
+                    .
+                </bibl>
+                <bibl n="57">
+                    <author>
+                        <persName>
+                            <surname>Felstiner</surname>
+                            ,
+                            <forename type="first">William</forename>
+                            <forename type="middle" full="init">L. F.</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date when="1974">1974/75</date>
+                    :
+                    <title level="a">Avoidance as Dispute Processing: An Elaboration</title>
+                    , in:
+                    <title level="j">Law and Society Review</title>
+                    ,
+                    <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>
+                    ,
+                    <biblScope unit="page" from="695" to="706">pp. 695-706</biblScope>
+                    .
+                </bibl>
+                <bibl n="58">
+                    <author>
+                        <persName>
+                            <surname>Galanter</surname>
+                            ,
+                            <forename>Marc</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date when="1974">1974</date>
+                    :
+                    <title level="a">Why the ‚Haves‘ Come out Ahead: Speculations on the Limits of Legal Change</title>
+                    , in:
+                    <title level="j">Law and Society Review</title>
+                    ,
+                    <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>
+                    ,
+                    <biblScope unit="page" from="95" to="160">pp. 95—160</biblScope>
+                    .
+                </bibl>
+                <bibl n="59">
+                    <author>
+                        <persName>
+                            <surname>Geiger</surname>
+                            ,
+                            <forename>Theodor</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1964</date>
+                    :
+                    <title level="m">Vorstudien zu einer Soziologie des Rechts.</title>
+                    <pubPlace>Neuwied</pubPlace>
+                    .
+                </bibl>
+                <bibl n="60">
+                    <author>
+                        <persName>
+                            <surname>Gessner</surname>
+                            ,
+                            <forename>Volkmar</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1976</date>
+                    :
+                    <title level="m">Recht und Konflikt</title>
+                    .
+                    <pubPlace>Tübingen</pubPlace>
+                    .
+                </bibl>
+                <bibl n="61">
+                    <author>
+                        <persName>
+                            <surname>Hilden</surname>
+                            ,
+                            <forename>Hartmut</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1976</date>
+                    :
+                    <title level="m">Rechtstatsachen im Räumungsstreit. Frankfurt/Main.</title>
+                </bibl>
+                <bibl n="62">
+                    <author>
+                        <persName>
+                            <surname>Johnson</surname>
+                            ,
+                            <forename>Earl</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1979</date>
+                    ;
+                    <title level="a">Thinking about Access: A Preliminary Typology of Possible Strategies</title>
+                    . In:
+                    <editor>
+                        <persName>
+                            <surname>Cappelletti</surname>
+                            ,
+                            <forename>Mauro</forename>
+                        </persName>
+                    </editor>
+                    und
+                    <editor>
+                        <persName>
+                            <forename>Bryant</forename>
+                            <surname>Garth</surname>
+                        </persName>
+                    </editor>
+                    (Hrsg.):
+                    <title level="m">Access to Justice</title>
+                    , Bd.
+                    <biblScope unit="volume" from="III" to="III">III</biblScope>
+                    .
+                    <pubPlace>Milan und Alphen/Rijn</pubPlace>
+                    .
+                </bibl>
+                <bibl n="63">
+                    <author>
+                        <persName>
+                            <surname>Koch</surname>
+                            ,
+                            <forename>Hartmut</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1975</date>
+                    :
+                    <title level="m">Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und
+                        Beklagten zu Mietprozessen.
+                    </title>
+                    <seg type="documentType">Diss.</seg>
+                    <pubPlace>Hamburg</pubPlace>
+                    .
+                </bibl>
+                <bibl n="64">
+                    <author>
+                        <persName>
+                            <surname>Luhmann</surname>
+                            ,
+                            <forename>Niklas</forename>
 
-            </persName>
-          </author>
-          ,
-          <date>1969</date>
-          :
-          <title level="m">Legitimation durch Verfahren.</title>
-          <pubPlace>Neuwied und Darmstadt</pubPlace>
-          .
-        </bibl>
-        <bibl n="65">
-          <author>
-            <persName>
-              <surname>Luhmann</surname>
-              ,
-              <forename>Niklas</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1969</date>
+                    :
+                    <title level="m">Legitimation durch Verfahren.</title>
+                    <pubPlace>Neuwied und Darmstadt</pubPlace>
+                    .
+                </bibl>
+                <bibl n="65">
+                    <author>
+                        <persName>
+                            <surname>Luhmann</surname>
+                            ,
+                            <forename>Niklas</forename>
 
-            </persName>
-          </author>
-          ,
-          <date>1980</date>
-          :
-          <title level="a">Kommunikation über Recht in Interaktionssystemen</title>
-          , in:
-          <editor>
-            <persName>
-              <surname>Blankenburg</surname>
-              ,
-              <forename>Erhard</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1980</date>
+                    :
+                    <title level="a">Kommunikation über Recht in Interaktionssystemen</title>
+                    , in:
+                    <editor>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                            ,
+                            <forename>Erhard</forename>
 
-            </persName>
-          </editor>
-          ;
-          <editor>
-            <persName>
-              <surname>Klausa</surname>
-              ,
-              <forename>Ekkehard</forename>
-            </persName>
-          </editor>
-          und
-          <editor>
-            <persName>
-              <forename>Hubert</forename>
-              <surname>Rottleuthner</surname>
-            </persName>
-          </editor>
-          (Hrsg.):
-          <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title>
-          ,
-          <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
-          Bd.
-          <biblScope unit="volume" from="6" to="6">Bd. 6</biblScope>
-          .
-          <pubPlace>Opladen</pubPlace>
-          .
-        </bibl>
-        <bibl n="66">
-          <author>
-            <persName>
-              <surname>Reifner</surname>
-              ,
-              <forename>Udo</forename>
-            </persName>
-          </author>
-          ,
-          <date>1978</date>
-          :
-          <title level="a">Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative</title>
-          ,
-          <publisher>Wissenschaftszentrum Berlin,</publisher>
-          <idno type="document">IIM-dp/78—70</idno>
-          .
-        </bibl>
-        <bibl n="67">
-          <author>
-            <persName>
-              <surname>Reifner</surname>
-              ,
-              <forename>Udo</forename>
-            </persName>
-          </author>
-          ,
-          <date>1979</date>
-          :
-          <title level="m">Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945.</title>
-          <editor>
-            <orgName>Wissenschaftszentrum Berlin</orgName>
-          </editor>
-          <idno type="document">IIM-dp/79—104</idno>
-          .
-        </bibl>
-        <bibl n="68">
-          <author>
-            <persName>
-              <surname>Reifner</surname>
-              ,
-              <forename>Udo</forename>
-            </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>
-          , in:
-          <editor>
-            <persName>
-              <surname>Blankenburg</surname>
-              ,
-              <forename>Erhard</forename>
-            </persName>
-          </editor>
-          ;
-          <editor>
-            <persName>
-              <surname>Klausa</surname>
-              ,
-              <forename>Ekkehard</forename>
+                        </persName>
+                    </editor>
+                    ;
+                    <editor>
+                        <persName>
+                            <surname>Klausa</surname>
+                            ,
+                            <forename>Ekkehard</forename>
+                        </persName>
+                    </editor>
+                    und
+                    <editor>
+                        <persName>
+                            <forename>Hubert</forename>
+                            <surname>Rottleuthner</surname>
+                        </persName>
+                    </editor>
+                    (Hrsg.):
+                    <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title>
+                    ,
+                    <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
+                    Bd.
+                    <biblScope unit="volume" from="6" to="6">Bd. 6</biblScope>
+                    .
+                    <pubPlace>Opladen</pubPlace>
+                    .
+                </bibl>
+                <bibl n="66">
+                    <author>
+                        <persName>
+                            <surname>Reifner</surname>
+                            ,
+                            <forename>Udo</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1978</date>
+                    :
+                    <title level="a">Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner
+                        Mieterinitiative
+                    </title>
+                    ,
+                    <publisher>Wissenschaftszentrum Berlin,</publisher>
+                    <idno type="document">IIM-dp/78—70</idno>
+                    .
+                </bibl>
+                <bibl n="67">
+                    <author>
+                        <persName>
+                            <surname>Reifner</surname>
+                            ,
+                            <forename>Udo</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1979</date>
+                    :
+                    <title level="m">Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen
+                        Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945.
+                    </title>
+                    <editor>
+                        <orgName>Wissenschaftszentrum Berlin</orgName>
+                    </editor>
+                    <idno type="document">IIM-dp/79—104</idno>
+                    .
+                </bibl>
+                <bibl n="68">
+                    <author>
+                        <persName>
+                            <surname>Reifner</surname>
+                            ,
+                            <forename>Udo</forename>
+                        </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>
+                    , in:
+                    <editor>
+                        <persName>
+                            <surname>Blankenburg</surname>
+                            ,
+                            <forename>Erhard</forename>
+                        </persName>
+                    </editor>
+                    ;
+                    <editor>
+                        <persName>
+                            <surname>Klausa</surname>
+                            ,
+                            <forename>Ekkehard</forename>
 
-            </persName>
-          </editor>
-          und
-          <editor>
-            <persName>
-              <forename>Hubert</forename>
-              <surname>Rottleuthner</surname>
-            </persName>
-          </editor>
-          (Hrsg.):
-          <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title>
-          ,
-          <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
-          <biblScope unit="volume" from="6" to="6">Bd. 6</biblScope>
-          .
-          <pubPlace>Opladen</pubPlace>
-          .
-        </bibl>
-        <bibl n="69">
-          <author>
-            <persName>
-              <surname>Sarat</surname>
-              ,
-              <forename>Austin</forename>
+                        </persName>
+                    </editor>
+                    und
+                    <editor>
+                        <persName>
+                            <forename>Hubert</forename>
+                            <surname>Rottleuthner</surname>
+                        </persName>
+                    </editor>
+                    (Hrsg.):
+                    <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title>
+                    ,
+                    <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
+                    <biblScope unit="volume" from="6" to="6">Bd. 6</biblScope>
+                    .
+                    <pubPlace>Opladen</pubPlace>
+                    .
+                </bibl>
+                <bibl n="69">
+                    <author>
+                        <persName>
+                            <surname>Sarat</surname>
+                            ,
+                            <forename>Austin</forename>
 
-            </persName>
-          </author>
-          ,
-          <date>1976</date>
-          :
-          <title level="a">Alternatives in Dispute Processing in a Small Claim Court</title>
-          , in:
-          <title level="j">Law and Society Review</title>
-          ,
-          <biblScope unit="volume" from="10" to="10">vol. 10</biblScope>
-          ,
-          <biblScope unit="page" from="339" to="375">pp. 339—375</biblScope>
-          .
-        </bibl>
-        <bibl n="70">
-          <author>
-            <persName>
-              <surname>Schönholz</surname>
-              ,
-              <forename>Siegfried</forename>
-            </persName>
-          </author>
-          ,
-          <date>1980</date>
-          :
-          <title level="a">Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich</title>
-          in:
-          <editor>
-            <persName>
-              <orgName>Vereinigung für Rechtssoziologie</orgName>
-            </persName>
-          </editor>
-          (Hrsg.):
-          <title level="m">Arbeitslosigkeit und Recht</title>
-          .
-          <pubPlace>Baden-Baden</pubPlace>
-          .
-        </bibl>
-        <bibl n="71">
-          <author>
-            <persName>
-              <surname>Steinbach</surname>
-              ,
-              <forename full="init">E.</forename>
-            </persName>
-          </author>
-          ,
-          <date>1979</date>
-          :
-          <title level="u">GMD-Bericht, Manuskript</title>
-          .
-          <editor role="seriesEditor">
-            <orgName>Gesellschaft für Mathematik und Datenverarbeitung</orgName>
-          </editor>
-          .
-          <pubPlace>Birlinghoven bei Bonn</pubPlace>
-          .
-        </bibl>
-        <bibl n="72">
-          <author>
-            <persName>
-              <surname>Wanner</surname>
-              ,
-              <forename>Craig</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1976</date>
+                    :
+                    <title level="a">Alternatives in Dispute Processing in a Small Claim Court</title>
+                    , in:
+                    <title level="j">Law and Society Review</title>
+                    ,
+                    <biblScope unit="volume" from="10" to="10">vol. 10</biblScope>
+                    ,
+                    <biblScope unit="page" from="339" to="375">pp. 339—375</biblScope>
+                    .
+                </bibl>
+                <bibl n="70">
+                    <author>
+                        <persName>
+                            <surname>Schönholz</surname>
+                            ,
+                            <forename>Siegfried</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1980</date>
+                    :
+                    <title level="a">Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im
+                        Vergleich
+                    </title>
+                    in:
+                    <editor>
+                        <persName>
+                            <orgName>Vereinigung für Rechtssoziologie</orgName>
+                        </persName>
+                    </editor>
+                    (Hrsg.):
+                    <title level="m">Arbeitslosigkeit und Recht</title>
+                    .
+                    <pubPlace>Baden-Baden</pubPlace>
+                    .
+                </bibl>
+                <bibl n="71">
+                    <author>
+                        <persName>
+                            <surname>Steinbach</surname>
+                            ,
+                            <forename full="init">E.</forename>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1979</date>
+                    :
+                    <title level="u">GMD-Bericht, Manuskript</title>
+                    .
+                    <editor role="seriesEditor">
+                        <orgName>Gesellschaft für Mathematik und Datenverarbeitung</orgName>
+                    </editor>
+                    .
+                    <pubPlace>Birlinghoven bei Bonn</pubPlace>
+                    .
+                </bibl>
+                <bibl n="72">
+                    <author>
+                        <persName>
+                            <surname>Wanner</surname>
+                            ,
+                            <forename>Craig</forename>
 
-            </persName>
-          </author>
-          ,
-          <date>1975</date>
-          :
-          <title level="a">The Public Ordering of Private Cases; Winning Civil Court Cases</title>
-          , in:
-          <title level="j">Law and Society Review</title>
-          ,
-          <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>
-          ,
-          <biblScope unit="page" from="293" to="306">pp. 293-306</biblScope>
-          .
-        </bibl>
-      </listBibl>
-    </body>
-  </text>
+                        </persName>
+                    </author>
+                    ,
+                    <date>1975</date>
+                    :
+                    <title level="a">The Public Ordering of Private Cases; Winning Civil Court Cases</title>
+                    , in:
+                    <title level="j">Law and Society Review</title>
+                    ,
+                    <biblScope unit="volume" from="9" to="9">vol. 9</biblScope>
+                    ,
+                    <biblScope unit="page" from="293" to="306">pp. 293-306</biblScope>
+                    .
+                </bibl>
+            </listBibl>
+        </body>
+    </text>
 </TEI>
diff --git a/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml b/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml
index 922f0c4..7174179 100644
--- a/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml
+++ b/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml
@@ -489,9 +489,8 @@
                     <seg type="comment">Über die Methoden interkultureller und internationaler Vergleiche ist inzwischen
                         so viel geschrieben worden, daß nicht nur die Fülle des Materials schon wieder abschreckend
                         wirkt, sondern daß es auch genügt, im Rahmen dieses Aufsatzes nur einige wichtige Aspekte
-                        anzusprechen
+                        anzusprechen.
                     </seg>
-                    .
                 </bibl>
                 <bibl n="24">
                     <seg type="signal">Bibliographien finden sich etwa bei</seg>
@@ -1511,7 +1510,7 @@
                         </persName>
                     </author>
                     ,
-                    <seg type="comment">der sie am Beispiel der Religion näher erläutert hat</seg>
+                    <seg type="ignore">der sie am Beispiel der Religion näher erläutert hat</seg>
                     (
                     <title level="m">Social Theory and Social Structure</title>
                     ,
@@ -1522,6 +1521,8 @@
                     ,
                     <citedRange unit="page" from="82">S. 82 ff.</citedRange>
                     ):
+                </bibl>
+                <bibl n="72">
                     <seg type="comment">Eine gemeinsame Religion erfüllt im allgemeinen data</seg>
                     ".
                     <publisher>
@@ -1542,7 +1543,7 @@
                 </bibl>
             </note>
             <note n="43" type="footnote" place="bottom">
-                <bibl n="72">
+                <bibl n="73">
                     <author>
                         <persName>
                             <surname>Rheinstein</surname>
@@ -1557,7 +1558,7 @@
                 </bibl>
             </note>
             <note n="44" type="footnote" place="bottom">
-                <bibl n="73">
+                <bibl n="74">
                     <author>
                         <persName>
                             <surname>Abel</surname>
@@ -1571,7 +1572,7 @@
                     <citedRange unit="page" from="221">221 f.</citedRange>
                     -
                 </bibl>
-                <bibl n="74">
+                <bibl n="75">
                     <seg type="signal">Siehe auch</seg>
                     <author>
                         <persName>
@@ -1592,7 +1593,7 @@
                     —
                     <citedRange unit="page" from="13">13) 2 ff.</citedRange>
                 </bibl>
-                <bibl n="75">
+                <bibl n="76">
                     <seg type="signal">- Zur Behandlung der „Kultur" in vergleichenden Untersuchungen näher</seg>
                     <author>
                         <persName>
@@ -1607,7 +1608,7 @@
                 </bibl>
             </note>
             <note n="45" type="footnote" place="bottom">
-                <bibl n="76">
+                <bibl n="77">
                     <author>
                         <persName>
                             <surname>Abel</surname>
@@ -1618,7 +1619,7 @@
                     )
                     <citedRange unit="page" from="207">207 ff.</citedRange>
                 </bibl>
-                <bibl n="77">
+                <bibl n="78">
                     <seg type="signal">— Siehe auch</seg>
                     <author>
                         <persName>
@@ -1638,7 +1639,7 @@
                 </bibl>
             </note>
             <note n="46" type="footnote" place="bottom">
-                <bibl n="78">
+                <bibl n="79">
                     <seg type="signal">Siehe</seg>
                     <author>
                         <persName>
@@ -1653,7 +1654,7 @@
                 </bibl>
             </note>
             <note n="47" type="footnote" place="bottom">
-                <bibl n="79">
+                <bibl n="80">
                     <author>
                         <persName>
                             <surname>Rose</surname>
@@ -1667,7 +1668,7 @@
                 </bibl>
             </note>
             <note n="48" type="footnote" place="bottom">
-                <bibl n="80">
+                <bibl n="81">
                     <seg type="signal">Dazu etwa</seg>
                     <author>
                         <persName>
@@ -1680,7 +1681,7 @@
                     <citedRange unit="page" from="55">55 ff.</citedRange>
                     ;
                 </bibl>
-                <bibl n="81">
+                <bibl n="82">
                     <author>
                         <persName>
                             <surname>Constantinesco</surname>
@@ -1696,11 +1697,10 @@
                     )
                     <citedRange unit="page" from="154">154 ff.</citedRange>
                     <seg type="comment">mwNachw. — Eine vergleichbare Debatte über „ähnliche“ und „unähnliche
-                        Gesellschaften“ wird seit Dürkheim auch in der Soziologie geführt
+                        Gesellschaften“ wird seit Dürkheim auch in der Soziologie geführt.
                     </seg>
-                    .
                 </bibl>
-                <bibl n="82">
+                <bibl n="83">
                     <seg type="signal">Siehe</seg>
                     <author>
                         <persName>
@@ -1714,7 +1714,7 @@
                 </bibl>
             </note>
             <note n="49" type="footnote" place="bottom">
-                <bibl n="83">
+                <bibl n="84">
                     <seg type="signal">Siehe</seg>
                     <author>
                         <persName>
@@ -1733,7 +1733,7 @@
                 </bibl>
             </note>
             <note n="50" type="footnote" place="bottom">
-                <bibl n="84">
+                <bibl n="85">
                     <author>
                         <persName>
                             <surname>Hofstede</surname>
@@ -1742,7 +1742,7 @@
                     ,
                     <title level="m">Cultural Determinants of the Exercise of Power in a Hierarchy</title>
                     (
-                    <seg type="comment">Mimeographed</seg>
+                    <seg type="documentType">Mimeographed</seg>
                     ,
                     <title level="m">European Institute for Advanced Studies in Management Working Paper</title>
                     <date>1977</date>
@@ -1750,7 +1750,7 @@
                     <idno type="document">8</idno>
                     ).
                 </bibl>
-                <bibl n="85">
+                <bibl n="86">
                     <seg type="signal">Ebenso für das Arbeitsrecht</seg>
                     <author>
                         <persName>
@@ -1762,12 +1762,11 @@
                     )
                     <citedRange unit="page" from="33">33</citedRange>
                     ,
-                    <seg type="comment">der auch die skandinavischen Länder in diese Gruppe aufnimmt</seg>
-                    .
+                    <seg type="comment">der auch die skandinavischen Länder in diese Gruppe aufnimmt.</seg>
                 </bibl>
             </note>
             <note n="51" type="footnote" place="bottom">
-                <bibl n="86">
+                <bibl n="87">
                     <seg type="signal">Dazu</seg>
                     <author>
                         <persName>
@@ -1783,9 +1782,9 @@
                     <biblScope unit="volume" from="1" to="1">1</biblScope>
                     <citedRange unit="page" from="110">110 f.</citedRange>
                     —
-                    <seg type="comment">Kritisch</seg>
                 </bibl>
-                <bibl n="87">
+                <bibl n="88">
+                    <seg type="signal">Kritisch</seg>
                     <author>
                         <persName>
                             <surname>Benda-Beckmann</surname>
@@ -1798,7 +1797,7 @@
                 </bibl>
             </note>
             <note n="52" type="footnote" place="bottom">
-                <bibl n="88">
+                <bibl n="89">
                     <author>
                         <persName>
                             <forename type="first">IDE-International</forename>
@@ -1809,7 +1808,7 @@
                     ,
                     <title level="m">Industrial Democracy in Europe</title>
                     (
-                    <seg type="comment">erscheint bei</seg>
+                    <seg type="ignore">erscheint bei</seg>
                     <publisher>Oxford University Press,</publisher>
                     <pubPlace>London</pubPlace>
                     <date>1980</date>
@@ -1819,7 +1818,7 @@
                 </bibl>
             </note>
             <note n="53" type="footnote" place="bottom">
-                <bibl n="89">
+                <bibl n="90">
                     <author>
                         <persName>
                             <surname>Zweigert</surname>
@@ -1837,7 +1836,7 @@
                 </bibl>
             </note>
             <note n="54" type="footnote" place="bottom">
-                <bibl n="90">
+                <bibl n="91">
                     <publisher>
                         <persName>
                             <forename type="first">IDE-International</forename>
@@ -1853,7 +1852,7 @@
                 </bibl>
             </note>
             <note n="55" type="footnote" place="bottom">
-                <bibl n="91">
+                <bibl n="92">
                     <seg type="signal">Dafür</seg>
                     <author>
                         <persName>
@@ -1868,7 +1867,7 @@
                 </bibl>
             </note>
             <note n="56" type="footnote" place="bottom">
-                <bibl n="92">
+                <bibl n="93">
                     <seg type="signal">Siehe dazu</seg>
                     <author>
                         <persName>
@@ -1888,7 +1887,7 @@
                     <citedRange unit="page" from="1">1 ff.</citedRange>
                     ;
                 </bibl>
-                <bibl n="93">
+                <bibl n="94">
                     <author>
                         <persName>
                             <surname>Bernstein</surname>
@@ -1908,7 +1907,7 @@
                 </bibl>
             </note>
             <note n="57" type="footnote" place="bottom">
-                <bibl n="94">
+                <bibl n="95">
                     <seg type="signal">Dazu etwa</seg>
                     <author>
                         <persName>
@@ -1925,7 +1924,7 @@
                     <date>1973</date>
                     );
                 </bibl>
-                <bibl n="95">
+                <bibl n="96">
                     <author>
                         <persName>
                             <surname>ders</surname>
@@ -1952,7 +1951,7 @@
                 </bibl>
             </note>
             <note n="58" type="footnote" place="bottom">
-                <bibl n="96">
+                <bibl n="97">
                     <author>
                         <persName>
                             <surname>Klausa</surname>
@@ -1970,7 +1969,7 @@
                 </bibl>
             </note>
             <note n="59" type="footnote" place="bottom">
-                <bibl n="97">
+                <bibl n="98">
                     <seg type="signal">Siehe</seg>
                     <author>
                         <persName>
@@ -1983,7 +1982,7 @@
                     <citedRange unit="page" from="23">23 ff.</citedRange>
                     ;
                 </bibl>
-                <bibl n="98">
+                <bibl n="99">
                     <author>
                         <persName>
                             <surname>Smelser</surname>
@@ -1993,7 +1992,7 @@
                 </bibl>
             </note>
             <note n="60" type="footnote" place="bottom">
-                <bibl n="99">
+                <bibl n="100">
                     <seg type="signal">Dazu näher</seg>
                     <author>
                         <persName>
@@ -2021,7 +2020,7 @@
                 </bibl>
             </note>
             <note n="61" type="footnote" place="bottom">
-                <bibl n="100">
+                <bibl n="101">
                     <seg type="signal">Siehe dazu</seg>
                     <author>
                         <persName>
@@ -2043,7 +2042,7 @@
                 </bibl>
             </note>
             <note n="62" type="footnote" place="bottom">
-                <bibl n="101">
+                <bibl n="102">
                     <seg type="signal">Siehe zum entsprechenden</seg>
                     <title level="m">Problem in der Kriminologie</title>
                     <author>
@@ -2056,7 +2055,7 @@
                     )
                     <citedRange unit="page" from="88">88</citedRange>
                 </bibl>
-                <bibl n="102">
+                <bibl n="103">
                     <seg type="signal">mwNachw.</seg>
                     <author/>
                     ;
@@ -2081,7 +2080,7 @@
                 </bibl>
             </note>
             <note n="63" type="footnote" place="bottom">
-                <bibl n="103">
+                <bibl n="104">
                     <author>
                         <persName>
                             <surname>Clinard</surname>
@@ -2100,7 +2099,7 @@
                 </bibl>
             </note>
             <note n="64" type="footnote" place="bottom">
-                <bibl n="104">
+                <bibl n="105">
                     <seg type="signal">Siehe</seg>
                     <author>
                         <persName>
@@ -2126,7 +2125,7 @@
                     <date>1973</date>
                     );
                 </bibl>
-                <bibl n="105">
+                <bibl n="106">
                     <author>
                         <persName>
                             <surname>Rokumoto</surname>
@@ -2145,7 +2144,7 @@
                     <citedRange unit="page" from="228">228 ff.</citedRange>
                     ;
                 </bibl>
-                <bibl n="106">
+                <bibl n="107">
                     <author>
                         <persName>
                             <surname>Schuyt</surname>
@@ -2177,7 +2176,7 @@
                 </bibl>
             </note>
             <note n="65" type="footnote" place="bottom">
-                <bibl n="107">
+                <bibl n="108">
                     <seg type="signal">Dazu</seg>
                     <author>
                         <persName>
@@ -2198,7 +2197,7 @@
                     <citedRange unit="page">88 ff.</citedRange>
                     )
                 </bibl>
-                <bibl n="108">
+                <bibl n="109">
                     <seg type="signal">— Siehe auch</seg>
                     <author>
                         <persName>
@@ -2215,7 +2214,7 @@
                 </bibl>
             </note>
             <note n="66" type="footnote" place="bottom">
-                <bibl n="109">
+                <bibl n="110">
                     <seg type="signal">Siehe</seg>
                     <author>
                         <persName>
@@ -2237,7 +2236,7 @@
                 </bibl>
             </note>
             <note n="67" type="footnote" place="bottom">
-                <bibl n="110">
+                <bibl n="111">
                     <author>
                         <persName>
                             <surname>Kutchinsky</surname>
@@ -2290,7 +2289,7 @@
                 </bibl>
             </note>
             <note n="68" type="footnote" place="bottom">
-                <bibl n="111">
+                <bibl n="112">
                     <author>
                         <persName>
                             <surname>Podgdrecki</surname>
@@ -2308,7 +2307,7 @@
                 </bibl>
             </note>
             <note n="69" type="footnote" place="bottom">
-                <bibl n="112">
+                <bibl n="113">
                     <author>
                         <persName>
                             <surname>Heintz</surname>
@@ -2337,7 +2336,7 @@
                 </bibl>
             </note>
             <note n="70" type="footnote" place="bottom">
-                <bibl n="113">
+                <bibl n="114">
                     <seg type="signal">Siehe</seg>
                     <author>
                         <persName>
@@ -2353,7 +2352,7 @@
                     April
                     <date>1979</date>
                     ,
-                    <seg type="comment">Sonderheft 2</seg>
+                    <biblScope unit="issue" from="2" to="2">Sonderheft 2</biblScope>
                     ,
                     <citedRange unit="page" from="5">S. 5 ff.</citedRange>
                     <seg type="comment">mwNachw</seg>
@@ -2361,7 +2360,7 @@
                 </bibl>
             </note>
             <note n="71" type="footnote" place="bottom">
-                <bibl n="114">
+                <bibl n="115">
                     <seg type="signal">Siehe etwa</seg>
                     <author>
                         <persName>
@@ -2380,7 +2379,7 @@
                 </bibl>
             </note>
             <note n="72" type="footnote" place="bottom">
-                <bibl n="115">
+                <bibl n="116">
                     <seg type="signal">Vgl.</seg>
                     <author>
                         <persName>
@@ -2395,14 +2394,11 @@
                 </bibl>
             </note>
             <note n="73" type="footnote" place="bottom">
-                <bibl n="116">
+                <bibl n="117">
                     <seg type="comment">Da die theoretischen und technischen Erfordernisse solcher Vergleiche in der Tat
                         komplex sind, bestand in der Kriminologie noch Mitte der sechziger Jahre internationale Überein
-                        stimmung, daß vergleichenden Studien kein Vorrang zu geben sei
+                        stimmung, daß vergleichenden Studien kein Vorrang zu geben sei.
                     </seg>
-                    .
-                </bibl>
-                <bibl n="117">
                     <seg type="signal">Dazu</seg>
                     <author>
                         <persName>
diff --git a/convert-anystyle-data/tei-biblStruct-gold/10.1111_1467-6478.00057.xml b/convert-anystyle-data/tei-biblStruct-gold/10.1111_1467-6478.00057.xml
index a182db8..0fa6648 100644
--- a/convert-anystyle-data/tei-biblStruct-gold/10.1111_1467-6478.00057.xml
+++ b/convert-anystyle-data/tei-biblStruct-gold/10.1111_1467-6478.00057.xml
@@ -120,8 +120,10 @@
                 20 Melbourne University Law Rev. 1072.
             </desc>
             <desc type="input-segmented">
-                <desc>4 I have explored the gendered nature of citizenship at greater length in two complementary papers
-                    : &#8216;
+                <desc>4 I have explored the gendered nature of citizenship at greater length in two
+                    complementary papers:
+
+                    &#8216;
                 </desc>
                 <bibl>Embodying the Citizen&#8217; in Public and Private: Feminist Legal Debates, ed. M. Thornton
                     (1995)
@@ -287,11 +289,7 @@
             </desc>
             <desc type="input-segmented">
                 <bibl>9 Vogel, id., p. 79.</bibl>
-                <bibl>W. Blackstone, Commentaries (</bibl>
-                <desc>Facsimile of 1st. ed. of 1765&#8211;69
-                    ,
-                </desc>
-                <bibl>1979) 442.</bibl>
+                <bibl>W. Blackstone, Commentaries (1979) 442.</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="10">
                 <monogr>
@@ -500,9 +498,7 @@
                 The Transformation of American Law, 1780&#8211;1860 (1977) 160.
             </desc>
             <desc type="input-segmented">
-                <desc>17 This was particularly the case in the United States of America
-                    .
-                </desc>
+                <desc>17 This was particularly the case in the United States of America.</desc>
                 <desc>See</desc>
                 <bibl>M.J. Horwitz, The Transformation of American Law, 1780&#8211;1860 (1977) 160.</bibl>
             </desc>
@@ -557,11 +553,9 @@
                 Women&#8217;s Separate Property in England, 1660&#8211;1833 (1990) 4, 220.
             </desc>
             <desc type="input-segmented">
-                <desc>19 Staves postulates that the position was somewhat more complicated in that marriage, as a
-                    status, crumbled
-                    in response to contract ideology in the seventeenth century but, by the end of the eighteenth
-                    century,
-                    deeper patriarchal structures were re-imposed.
+                <desc>19 Staves postulates that the position was somewhat more complicated in that
+                    marriage, as a status, crumbled in response to contract ideology in the seventeenth century but,
+                    by the end of the eighteenth century, deeper patriarchal structures were re-imposed.
                 </desc>
                 <desc>See</desc>
                 <bibl>S. Staves, Married Women&#8217;s Separate Property in England, 1660&#8211;1833 (1990) 4, 220.
@@ -593,9 +587,8 @@
                 Privacy&#8217; (1996) 105 Yale Law J. 2117.
             </desc>
             <desc type="input-segmented">
-                <desc>20 Siegel presents a valuable study of the changing norms of marriage in the context of wife
-                    beating
-                    .
+                <desc>20 Siegel presents a valuable study of the changing norms of marriage in the
+                    context of wife beating.
                 </desc>
                 <desc>See</desc>
                 <bibl>R.B. Siegel, &#8216;"The Rule of Love&#8221;: Wife Beating as Prerogative and Privacy&#8217;
@@ -681,9 +674,7 @@
                 <desc>The High Court upheld the validity of the South Australian law in 1991</desc>
                 <desc>(see</desc>
                 <bibl>R. v. L. (1991)</bibl>
-                <desc>the same year that the House of Lords abolished the immunity
-                    (
-                </desc>
+                <desc>the same year that the House of Lords abolished the immunity</desc>
                 <desc>see</desc>
                 <bibl>R. v. R. [1991] 2 All E.R. 257).</bibl>
             </desc>
@@ -741,7 +732,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="35">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="34">
                 <monogr>
                     <title level="m">R. v. R.</title>
                     <title level="j">All E.R.</title>
@@ -766,11 +757,9 @@
                 <bibl>R. Collier, Masculinity, Law and the Family (1995) 127 and throughout.</bibl>
                 <desc>See</desc>
                 <bibl>Collier</bibl>
-                <desc>further for a comprehensive study of sexuality in marriage
-                    .
-                </desc>
+                <desc>further for a comprehensive study of sexuality in marriage.</desc>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="37">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="35">
                 <analytic>
                     <title level="a">Contracting in the Haven: Balfour v. Balfour Revisited</title>
                     <author>
@@ -794,7 +783,7 @@
                     <biblScope unit="page" from="74">74</biblScope>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="38">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="36">
                 <analytic>
                     <title level="a">Masculinity, Law and the Family</title>
                     <author>
@@ -810,7 +799,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="39">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="37">
                 <monogr>
                     <author>
                         <persName>
@@ -826,7 +815,7 @@
             <desc type="input-segmented">
                 <bibl>25 P.S. Atiyah, An Introduction to the Law of Contract (5th ed., 1995) 3.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="40">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="38">
                 <monogr>
                     <title level="m">An Introduction to the Law of Contract</title>
                     <author>
@@ -851,9 +840,8 @@
                 (1985) 94 Yale Law J. 997.
             </desc>
             <desc type="input-segmented">
-                <desc>26 The Australian Law Reform Commission has addressed the issue and recommended recognition of
-                    prenuptial
-                    agreements.
+                <desc>26 The Australian Law Reform Commission has addressed the issue and recommended
+                    recognition of prenuptial agreements.
                 </desc>
                 <desc>See</desc>
                 <bibl>A.L.R.C., Matrimonial Property, report no. 37 (1987);</bibl>
@@ -869,7 +857,12 @@
                     997.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="41">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="39">
+                <monogr>
+                    <imprint/>
+                </monogr>
+            </biblStruct>
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="40">
                 <monogr>
                     <title level="m">Matrimonial Property, report no. 37</title>
                     <author>
@@ -880,7 +873,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="42">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="41">
                 <monogr>
                     <title level="m">Report of the Joint Select Committee on Certain Aspects of the Operation and
                         Interpretation of the Family
@@ -894,7 +887,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="43">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="42">
                 <analytic>
                     <title level="a">Private Ordering in Family Law &#8211; Will Women Benefit?</title>
                     <author>
@@ -913,7 +906,7 @@
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="44">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="43">
                 <analytic>
                     <title level="a">An Essay in the Deconstruction of Contract Doctrine</title>
                     <author>
@@ -940,7 +933,7 @@
             <desc type="input-segmented">
                 <bibl>27 L. J. Weitzman, The Marriage Contract: Spouses, Lovers, and the Law (1981) 347 ff.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="45">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="44">
                 <monogr>
                     <title level="m">The Marriage Contract: Spouses, Lovers, and the Law</title>
                     <author>
@@ -961,7 +954,7 @@
             <desc type="input-segmented">
                 <bibl>28 Grossberg, op. cit., n. 18, p. 52.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="46">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="45">
                 <monogr>
                     <author>
                         <persName>
@@ -977,7 +970,7 @@
             <desc type="input-segmented">
                 <bibl>29 V. Balfour [1919] 2 K.B. 571.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="47">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="46">
                 <monogr>
                     <title level="j">K.B.</title>
                     <author>
@@ -998,22 +991,21 @@
             <desc type="input-full">30 Freeman, op. cit., n. 24. While acknowledging the trends towards contractualism
                 and private ordering, Regan cautions against it, noting that greater freedom to contract invites greater
                 scrutiny by the courts. More significantly, however, he would rather reclaim the idea of status by
-                injecting it with new notions of responsibility and relationality, as well as divesting it of its sexist
+                injecting it with new notions of responsibility andrelationality, as well as divesting it of its sexist
                 assumptions. See M.C. Regan ., Family Law and the Pursuit of Intimacy (1993).
             </desc>
             <desc type="input-segmented">
                 <bibl>30 Freeman, op. cit., n. 24.</bibl>
-                <desc>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.
+                <desc>While acknowledging the trends towards contractualism and private ordering,
+                    Regan cautions against it, noting that greater freedom to contract invites greater scrutiny by
+                    the courts. More significantly, however, he would rather reclaim the idea of status by injecting
+                    it with new notions of responsibility andrelationality, as well as divesting it of its sexist
+                    assumptions.
                 </desc>
                 <desc>See</desc>
                 <bibl>M.C. Regan ., Family Law and the Pursuit of Intimacy (1993).</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="48">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="47">
                 <monogr>
                     <author>
                         <persName>
@@ -1023,6 +1015,11 @@
                     <imprint/>
                 </monogr>
             </biblStruct>
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="48">
+                <monogr>
+                    <imprint/>
+                </monogr>
+            </biblStruct>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="49">
                 <monogr>
                     <title level="m">Family Law and the Pursuit of Intimacy</title>
@@ -1223,18 +1220,17 @@
             </desc>
             <desc type="input-segmented">
                 <bibl>37 Although</bibl>
-                <desc>Australia, like the United Kingdom, has a separate property regime, the courts are endowed with
-                    broad
+                <desc>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.
                 </desc>
                 <desc>For detailed treatment, see</desc>
                 <bibl>P. Parkinson S. Parker and J. Behrens, Australian Family Law in Context: Commentary and Materials
                     (1994).
                 </bibl>
-                <desc>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.
+                <desc>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.
                 </desc>
                 <desc>For discussion of the position during marriage, see</desc>
                 <bibl>J.T. Oldham, &#8216;Management of the Community Estate during an Intact Marriage&#8217; (1993) 56
@@ -1256,6 +1252,11 @@
                 </monogr>
             </biblStruct>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="61">
+                <monogr>
+                    <imprint/>
+                </monogr>
+            </biblStruct>
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="62">
                 <monogr>
                     <title level="m">Australian Family Law in Context: Commentary and Materials</title>
                     <author>
@@ -1276,7 +1277,12 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="62">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="63">
+                <monogr>
+                    <imprint/>
+                </monogr>
+            </biblStruct>
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="64">
                 <analytic>
                     <title level="a">Management of the Community Estate during an Intact Marriage</title>
                     <author>
@@ -1295,7 +1301,7 @@
                     <biblScope unit="page" from="99">99</biblScope>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="63">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="65">
                 <analytic>
                     <title level="a">What Causes Fundamental Legal Ideas? Marital Property in England and France in the
                         Thirteenth Century&#8217;
@@ -1323,21 +1329,20 @@
                 op. cit., n. 24.
             </desc>
             <desc type="input-segmented">
-                <desc>38 The legal construction of masculinity and femininity in family law has been the subject of
-                    recent
-                    scholarly interest.
+                <desc>38 The legal construction of masculinity and femininity in family law has been the
+                    subject of recent scholarly interest.
                 </desc>
                 <desc>Notable examples are</desc>
                 <bibl>O&#8217;Donovan, op. cit., n. 21</bibl>
                 <desc>and</desc>
                 <bibl>Collier, op. cit., n. 24.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="64">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="66">
                 <monogr>
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="65">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="67">
                 <monogr>
                     <author>
                         <persName>
@@ -1347,7 +1352,7 @@
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="66">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="68">
                 <monogr>
                     <author>
                         <persName>
@@ -1366,7 +1371,7 @@
                 <desc>39 For discussion of sex and legal subjecthood, see</desc>
                 <bibl>N. Naffine &#8216;Sexing the Subject (of Law)&#8217; in Thornton, op. cit. (1995), n. 4.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="67">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="69">
                 <analytic>
                     <title level="a">Sexing the Subject (of Law)</title>
                     <author>
@@ -1393,7 +1398,7 @@
             <desc type="input-segmented">
                 <bibl>40 Contracts Review Act 1980 (N.S.W.).</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="68">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="70">
                 <monogr>
                     <title level="m">Contracts Review Act</title>
                     <imprint>
@@ -1412,7 +1417,7 @@
                     Framework and its Legacy (1990), especially 223 ff
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="69">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="71">
                 <monogr>
                     <title level="m">Private Property and the Limits of American Constitutionalism: The Madisonian
                         Framework and its Legacy
@@ -1434,7 +1439,7 @@
             <desc type="input-segmented">
                 <bibl>42 C.B. Macpherson, Democratic Theory: Essays in Retrieval (1973) 120.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="70">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="72">
                 <monogr>
                     <title level="m">Democratic Theory: Essays in Retrieval</title>
                     <author>
@@ -1460,10 +1465,11 @@
                     Guarantors and Co-Borrowers&#8217; (1995) 4 Aust. Feminist Law J. 93.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="71">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="73">
                 <analytic>
                     <title level="a">&#8220;Sexually Transmitted Debt&#8221;: A Feminist Analysis of Laws Regulating
-                        Guarantors and Co-Borrowers
+                        Guarantors and
+                        Co-Borrowers
                     </title>
                     <author>
                         <persName>
@@ -1491,7 +1497,7 @@
                     (1995) 13 Law in Context 23.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="72">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="74">
                 <analytic>
                     <title level="a">The Free Exercise of Her Will: Women and Emotionally Transmitted Debt</title>
                     <author>
@@ -1524,7 +1530,7 @@
                 <bibl>Barclays Bank v. O&#8217;Brien [1994] at 185</bibl>
                 <desc>per Brown-Wilkinson L.</desc>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="73">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="75">
                 <analytic>
                     <title level="a">The Husband, the Bank, the Wife and Her Signature</title>
                     <author>
@@ -1543,7 +1549,7 @@
                     <biblScope unit="page" from="467">467,</biblScope>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="74">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="76">
                 <monogr>
                     <title level="m">Barclays Bank v. O&#8217;Brien</title>
                     <idno type="caseNumber">1 A.C. 180</idno>
@@ -1565,7 +1571,7 @@
                     Studies 368.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="75">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="77">
                 <monogr>
                     <author>
                         <persName>
@@ -1575,10 +1581,11 @@
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="76">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="78">
                 <analytic>
                     <title level="a">Protecting Women who provide Security for a Husband&#8217;s, Partner&#8217;s or
-                        Child&#8217;s Debts. The Value and Limits
+                        Child&#8217;s Debts.
+                        The Value and Limits
                         of an Economic Perspective&#8217;
                     </title>
                     <author>
@@ -1606,19 +1613,18 @@
                 Howell, op. cit., n. 43.
             </desc>
             <desc type="input-segmented">
-                <desc>47 Examples are legion, and by no means confined to the more sensational criminal law cases picked
-                    up by
+                <desc>47 Examples are legion, and by no means confined to the more sensational criminal
+                    law cases picked up by
                     the media, such as
                 </desc>
                 <bibl>R. v. Johns, Supreme Court of South Australia, 26 August 1992</bibl>
-                <desc>(unreported) in which Bollen J. stated that it was acceptable for a husband to resort to &#8216;rougher
-                    than
-                    usual handling&#8217; to persuade his wife to have sex with him.
+                <desc>(unreported) in which Bollen J. stated that it was acceptable for a husband to
+                    resort to &#8216;rougher than usual handling&#8217; to persuade his wife to have sex with him.
                 </desc>
                 <desc>For examples relating to STD, see</desc>
                 <bibl>Howell, op. cit., n. 43.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="77">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="79">
                 <monogr>
                     <title level="m">R. v. Johns</title>
                     <author>
@@ -1629,7 +1635,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="78">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="80">
                 <monogr>
                     <author>
                         <persName>
@@ -1649,7 +1655,7 @@
                     (1996) 59 Modern Law Rev. 675.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="79">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="81">
                 <analytic>
                     <title level="a">The Husband, the Bank, the Wife and Her Signature &#8211; the Sequel</title>
                     <author>
@@ -1675,7 +1681,7 @@
             <desc type="input-segmented">
                 <bibl>49 National Australia Bank Ltd v. Garcia (1996) 39 N.S.W.L.R. 577 (N.S.W.C.A.).</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="80">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="82">
                 <monogr>
                     <title level="m">National Australia Bank Ltd v. Garcia</title>
                     <title level="j">N.S.W.L.R.</title>
@@ -1693,7 +1699,7 @@
             <desc type="input-segmented">
                 <bibl>50 1991) 25 N.S.W.L.R. 32 (C.A.).</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="81">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="83">
                 <monogr>
                     <title level="j">N.S.W.L.R.</title>
                     <imprint>
@@ -1710,7 +1716,7 @@
             <desc type="input-segmented">
                 <bibl>52 1994) N.S.W.C.A.).</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="82">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="84">
                 <monogr>
                     <idno type="caseNumber">A.S.C. 56&#8211;268</idno>
                     <imprint>
@@ -1725,12 +1731,10 @@
                 1980 (N.S.W.). 54 (1994) A.S.C. 56&#8211;270 (N.S.W.C.A.)
             </desc>
             <desc type="input-segmented">
-                <desc>53 Based on the</desc>
-                <bibl>Trade Practices Act 1974 (Cwth.), s. 52</bibl>
-                <desc>and the</desc>
+                <bibl>53 Trade Practices Act 1974 (Cwth.), s. 52</bibl>
                 <bibl>Contracts Review Act 1980 (N.S.W.). 54 (1994) N.S.W.C.A.)</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="83">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="85">
                 <monogr>
                     <title level="m">Trade Practices Act 1974</title>
                     <imprint>
@@ -1738,7 +1742,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="84">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="86">
                 <monogr>
                     <title level="m">Contracts Review Act</title>
                     <idno type="caseNumber">A.S.C. 56&#8211;270</idno>
@@ -1758,15 +1762,14 @@
                 [1994] 1 A.C. 180. See, also, Banco Exterior Internacional v. Mann [1995] 1 All E.R. 936.
             </desc>
             <desc type="input-segmented">
-                <desc>55 A number of recent English cases have also turned on the question of whether the wife received
-                    independent
-                    legal advice. The House of Lords considered the issue in
+                <desc>55 A number of recent English cases have also turned on the question of whether the
+                    wife received independent legal advice. The House of Lords considered the issue in
                 </desc>
                 <bibl>Barclays Bank v. O&#8217;Brien [1994]</bibl>
                 <desc>See, also,</desc>
                 <bibl>Banco Exterior Internacional v. Mann [1995] 1 All E.R. 936.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="85">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="87">
                 <monogr>
                     <title level="m">Barclays Bank v. O&#8217;Brien</title>
                     <idno type="caseNumber">1 A.C. 180</idno>
@@ -1775,7 +1778,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="86">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="88">
                 <monogr>
                     <title level="m">Banco Exterior Internacional v. Mann</title>
                     <title level="j">All E.R.</title>
@@ -1794,7 +1797,7 @@
                 <desc>56 See</desc>
                 <bibl>I.J. Hardingham and M.A. Neave, Australian Family Property Law (1984) 94.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="87">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="89">
                 <monogr>
                     <title level="m">Australian Family Property Law</title>
                     <author>
@@ -1821,7 +1824,7 @@
                 <desc>57 Compare</desc>
                 <bibl>K. O&#8217;Donovan, Sexual Divisions in Law (1985), especially 112&#8211;18.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="88">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="90">
                 <monogr>
                     <title level="m">Sexual Divisions in Law</title>
                     <author>
@@ -1845,22 +1848,21 @@
                 form of property. See M.A. Glendon, The New Family and the New Property (1981).
             </desc>
             <desc type="input-segmented">
-                <desc>58 Although Reich&#8217;s work on the conceptualization of non-traditional sources of wealth, such
-                    as employment
-                    and professional qualifications, as forms of &#8216;new property&#8217; has been influential, he did
-                    not broach the
-                    subject of caring work.
+                <desc>58 Although Reich&#8217;s work on the conceptualization of non-traditional sources of
+                    wealth, such as employment and professional qualifications, as forms of &#8216;new property&#8217;
+                    has been
+                    influential, he did not broach the subject of caring work.
                 </desc>
                 <desc>See</desc>
                 <bibl>C.A. Reich, &#8216;The New Property&#8217; (1964) 73 Yale Law J. 733.</bibl>
-                <desc>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.
+                <desc>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.
                 </desc>
                 <desc>See</desc>
                 <bibl>M.A. Glendon, The New Family and the New Property (1981).</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="89">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="91">
                 <analytic>
                     <title level="a">The New Property</title>
                     <author>
@@ -1869,22 +1871,33 @@
                             <surname>Reich</surname>
                         </persName>
                     </author>
+                </analytic>
+                <monogr>
+                    <title level="j">Yale Law J.</title>
+                    <imprint>
+                        <date>1964</date>
+                    </imprint>
+                    <biblScope unit="volume" from="73" to="73">73</biblScope>
+                    <biblScope unit="page" from="733">733</biblScope>
+                </monogr>
+            </biblStruct>
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="92">
+                <monogr>
+                    <imprint/>
+                </monogr>
+            </biblStruct>
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="93">
+                <monogr>
+                    <title level="m">The New Family and the New Property</title>
                     <author>
                         <persName>
                             <forename>M.A.</forename>
                             <surname>Glendon</surname>
                         </persName>
                     </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Yale Law J.</title>
-                    <title level="m">The New Family and the New Property</title>
                     <imprint>
-                        <date>1964</date>
                         <date>1981</date>
                     </imprint>
-                    <biblScope unit="volume" from="73" to="73">73</biblScope>
-                    <biblScope unit="page" from="733">733</biblScope>
                 </monogr>
             </biblStruct>
         </listBibl>
@@ -1893,7 +1906,7 @@
             <desc type="input-segmented">
                 <bibl>59 1992) 29 N.S.W.L.R. 188 (C.A.)</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="90">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="94">
                 <monogr>
                     <title level="j">N.S.W.L.R.</title>
                     <imprint>
@@ -1914,28 +1927,26 @@
                 Equitable Doctrines&#8217; (1997) 11 Australian J. Family Law 100.
             </desc>
             <desc type="input-segmented">
-                <desc>60 Trusts of this kind have been judicially created in order to obviate injustice. Ironically,
-                    such devices
-                    have been commonly utilized over the last twenty years or so in property disputes arising out of de
-                    facto
-                    relationships, where divisibility has permitted separate interests to crystallize in ways not
-                    recognized
-                    within marriage.
+                <desc>60 Trusts of this kind have been judicially created in order to obviate injustice.
+                    Ironically, such devices have been commonly utilized over the last twenty years or so in
+                    property disputes arising out of de facto relationships, where divisibility has permitted
+                    separate interests to crystallize in ways not recognized within marriage.
                 </desc>
                 <desc>For a discussion of recent trends in Australia, see</desc>
                 <bibl>P. Parkinson, &#8216;Property Rights and Third Party Creditors &#8211; the Scope and Limitations
                     of Equitable Doctrines&#8217; (1997) 11 Australian J. Family Law 100.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="91">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="95">
                 <monogr>
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="92">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="96">
                 <analytic>
                     <title level="a">Property Rights and Third Party Creditors &#8211; the Scope and Limitations of
-                        Equitable Doctrines
+                        Equitable
+                        Doctrines
                     </title>
                     <author>
                         <persName>
@@ -1964,7 +1975,7 @@
                     (1994) 16 Sydney Law Rev. 412.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="93">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="97">
                 <analytic>
                     <title level="a">The Property Rights of Home-Makers under General Law: Bryson v. Bryant</title>
                     <author>
@@ -1994,7 +2005,7 @@
                     (1994) 8 Aust. J. Family Law 111, 133.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="94">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="98">
                 <analytic>
                     <title level="a">When Bankruptcy and Family Law Collide</title>
                     <author>
@@ -2030,7 +2041,7 @@
                     (1991) 18 J. of Law and Society 206.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="95">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="99">
                 <analytic>
                     <title level="a">The Economics of Wifing Services: Law and Economics on the Family</title>
                     <author>
@@ -2056,7 +2067,7 @@
                 <bibl>64 O&#8217;Donovan, op. cit., n. 57;</bibl>
                 <bibl>Thornton, op. cit. (1995), n. 4.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="96">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="100">
                 <monogr>
                     <author>
                         <persName>
@@ -2066,7 +2077,7 @@
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="97">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="101">
                 <monogr>
                     <author>
                         <persName>
@@ -2082,7 +2093,7 @@
             <desc type="input-segmented">
                 <bibl>65 N.S.W.C.A., 23 May 1994.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="98">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="102">
                 <monogr>
                     <author>
                         <orgName>N.S.W.C.A.</orgName>
@@ -2103,7 +2114,7 @@
                     and Children in America (1985).
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="99">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="103">
                 <monogr>
                     <title level="m">The Divorce Revolution: The Unexpected Social and Economic Consequences for Women
                         and Children in
@@ -2130,7 +2141,7 @@
                     46.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="100">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="104">
                 <monogr>
                     <title level="m">Feminism, Marriage, and the Law in Victorian England, 1850&#8211;1895</title>
                     <author>
@@ -2151,20 +2162,20 @@
                 30.
             </desc>
             <desc type="input-segmented">
-                <desc>68 The move to contract as the governing principle of family law has been noted by commentators
-                    .
+                <desc>68 The move to contract as the governing principle of family law has been noted by
+                    commentators.
                 </desc>
                 <desc>See, for example,</desc>
                 <bibl>Freeman, op. cit., n. 24;</bibl>
                 <bibl>Neave, op. cit., n. 26;</bibl>
                 <bibl>Regan, op. cit., n. 30.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="101">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="105">
                 <monogr>
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="102">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="106">
                 <monogr>
                     <author>
                         <persName>
@@ -2174,7 +2185,7 @@
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="103">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="107">
                 <monogr>
                     <author>
                         <persName>
@@ -2184,7 +2195,7 @@
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="104">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="108">
                 <monogr>
                     <author>
                         <persName>
@@ -2204,11 +2215,10 @@
             </desc>
             <desc type="input-segmented">
                 <bibl>69 Bryson v. Bryant</bibl>
-                <desc>in respect of which, it might be noted, the High Court refused leave to appeal. Marcia Neave notes
+                <desc>in respect of which, it might be noted, the High Court refused leave to appeal.
+                    Marcia Neave notes the &#8216;artificiality&#8217; of the concept of intention in a discussion of
                     the
-                    &#8216;artificiality&#8217; of the concept of intention in a discussion of the constructive trust in
-                    the context of de
-                    facto spouses.
+                    constructive trust in the context of de facto spouses.
                 </desc>
                 <desc>See</desc>
                 <bibl>M. Neave &#8216;Three Approaches to Family Law Disputes &#8211; Intention/Belief, Unjust
@@ -2216,16 +2226,17 @@
                     262&#8211;4.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="105">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="109">
                 <monogr>
                     <title level="m">Bryson v. Bryant</title>
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="106">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="110">
                 <analytic>
                     <title level="a">Three Approaches to Family Law Disputes &#8211; Intention/Belief, Unjust Enrichment
-                        and Unconscionability&#8217;
+                        and
+                        Unconscionability&#8217;
                     </title>
                     <author>
                         <persName>
@@ -2259,7 +2270,7 @@
                     Melbourne University Law Rev. 701.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="107">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="111">
                 <analytic>
                     <title level="a">Storytelling and the Law: A Case Study of Louth v. Diprose</title>
                     <author>
@@ -2288,7 +2299,7 @@
                     295, 300.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="108">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="112">
                 <analytic>
                     <title level="a">Feminist Ethics and Historicism</title>
                     <author>
@@ -2317,7 +2328,7 @@
                     Tragedies (1995) 7.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="109">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="113">
                 <monogr>
                     <title level="m">The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies
                     </title>
@@ -2344,7 +2355,7 @@
                     Law Rev. 424, 431&#8211;3.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="110">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="114">
                 <analytic>
                     <title level="a">Should all Maintenance of Spouses be abolished?</title>
                     <author>
@@ -2379,7 +2390,7 @@
                 </bibl>
                 <bibl>New South Wales Law Reform Commission, De Facto Relationships: Issues Paper (1981).</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="111">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="115">
                 <monogr>
                     <title level="m">De Facto Relationships Act</title>
                     <imprint>
@@ -2388,7 +2399,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="112">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="116">
                 <monogr>
                     <title level="m">Cohabitation without Marriage: An Essay in Law and Social Policy</title>
                     <author>
@@ -2408,7 +2419,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="113">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="117">
                 <monogr>
                     <title level="m">De Facto Relationships: Issues Paper</title>
                     <author>
@@ -2430,7 +2441,7 @@
                 <bibl>Dean v. District of Columbia 653 U.S. App. D.C. 307 (1995);</bibl>
                 <bibl>C. Overington, &#8216;Why can&#8217;t They Marry?&#8217; The Age, 26 April 1997.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="114">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="118">
                 <monogr>
                     <title level="m">Sexual Orientation and the Law</title>
                     <author>Eds. of the Harvard Law Review</author>
@@ -2439,7 +2450,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="115">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="119">
                 <monogr>
                     <title level="m">Dean v. District of Columbia</title>
                     <title level="j">U.S. App. D.C.</title>
@@ -2449,7 +2460,7 @@
                     <biblScope unit="volume">653</biblScope>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="116">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="120">
                 <analytic>
                     <title level="a">Why can&#8217;t They Marry?</title>
                     <author>
@@ -2478,7 +2489,7 @@
                     (1994).
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="117">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="121">
                 <monogr>
                     <title level="m">The Bride Wore Pink; Legal Recognition of Our Relationships</title>
                     <author>
@@ -2495,7 +2506,7 @@
             <desc type="input-segmented">
                 <bibl>77 id., p. 3.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="118">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="122">
                 <monogr>
                     <imprint/>
                 </monogr>
@@ -2506,7 +2517,7 @@
             <desc type="input-segmented">
                 <bibl>78 Above, n. 30.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="119">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="123">
                 <monogr>
                     <imprint/>
                 </monogr>
diff --git a/convert-anystyle-data/tei-biblStruct-gold/10.1111_1467-6478.00080.xml b/convert-anystyle-data/tei-biblStruct-gold/10.1111_1467-6478.00080.xml
index c201cf2..43a9be3 100644
--- a/convert-anystyle-data/tei-biblStruct-gold/10.1111_1467-6478.00080.xml
+++ b/convert-anystyle-data/tei-biblStruct-gold/10.1111_1467-6478.00080.xml
@@ -62,9 +62,8 @@
                     at 171.
                 </bibl>
                 <desc>This is an amplification of Dicey&#8217;s remark that &#8216;[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 . .
-                    .&#8217;.
+                    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 . . .&#8217;.
                 </desc>
                 <bibl>A. Dicey, Can English Law be taught at the Universities? (1883) 20.</bibl>
             </desc>
@@ -248,10 +247,10 @@
                 Thomas, op. cit., n. 8, at p. 285.
             </desc>
             <desc type="input-segmented">
-                <desc>10 Socio-legal studies has been defined in many different ways. In this essay the term is taken to
-                    indicate the use of ideas &#8216;from other disciplines primarily but not exclusively from within
-                    the social science and humanities fields
-                    &#8217;.
+                <desc>10 Socio-legal studies has been defined in many different ways. In this essay the
+                    term is taken to indicate the use of ideas &#8216;from other disciplines primarily but not
+                    exclusively
+                    from within the social science and humanities fields&#8217;.
                 </desc>
                 <bibl>S. Wheeler, &#8216;Company Law&#8217; in Thomas, op. cit., n. 8, at p. 285.</bibl>
             </desc>
@@ -291,38 +290,29 @@
                 31). This has yet to happen.
             </desc>
             <desc type="input-segmented">
-                <desc>11 Some fail wholly. It is difficult to see any effect on academic legal education that resulted
-                    from
+                <desc>11 Some fail wholly. It is difficult to see any effect on academic legal education
+                    that resulted from
                 </desc>
-                <bibl>Lady Marre&#8217;s report A Time for Change (1988).</bibl>
-                <desc>The Jarratt report on universities produced for the Committee of Vice-Chancellors and Principals
-                    (CVCP),
+                <bibl>Lady Marre&#8217;s A Time for Change (1988).</bibl>
+                <desc>The Jarratt report on universities produced for the Committee of
+                    Vice-Chancellors and Principals (CVCP),
                 </desc>
                 <bibl>Report of the Steering Committee for Efficiency studies in Universities (1988),</bibl>
-                <desc>produced much comment but little action. Even those that are thought of as being a success are not
-                    wholly implemented. Despite Ormrod&#8217;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
+                <desc>produced much comment but little action.</desc>
+                <desc>Even those that are thought of as being a success are not wholly implemented. Despite Ormrod&#8217;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
+
                     (
                 </desc>
                 <bibl>Report of the Committee on Legal Education (1971; Cmnd 4595) ch. 9 recs. 40 and 23).</bibl>
-                <desc>There were also other recommendations that were not implemented
-                    .
-                </desc>
-                <bibl>The Robbins report on higher education, Higher Education (1963; Cmnd 2154)</bibl>
-                <desc>took it is axiomatic that &#8216;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
-                    &#8217;
-                    (
-                </desc>
-                <bibl>para. 31).</bibl>
+                <desc>There were also other recommendations that were not implemented.</desc>
+                <bibl>The Robbins report on higher education, Higher Education (1963; Cmnd 2154) para. 31).</bibl>
                 <desc>This has yet to happen.</desc>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="10">
                 <analytic>
                     <title level="a">A Time for Change</title>
-                    <title level="a">Report of the Committee on Legal Education</title>
-                    <title level="a">The Robbins report on higher education, Higher Education</title>
                     <author>
                         <persName>
                             <roleName type="honorific">Lady</roleName>
@@ -331,16 +321,40 @@
                     </author>
                 </analytic>
                 <monogr>
-                    <title level="m">Report of the Steering Committee for Efficiency studies in Universities</title>
-                    <title level="s">Cmnd</title>
-                    <title level="s">Cmnd</title>
                     <imprint>
                         <date>1988</date>
+                    </imprint>
+                </monogr>
+            </biblStruct>
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="11">
+                <monogr>
+                    <title level="m">Report of the Steering Committee for Efficiency studies in Universities</title>
+                    <imprint>
                         <date>1988</date>
+                    </imprint>
+                </monogr>
+            </biblStruct>
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="12">
+                <analytic>
+                    <title level="a">Report of the Committee on Legal Education</title>
+                </analytic>
+                <monogr>
+                    <title level="s">Cmnd</title>
+                    <imprint>
                         <date>1971</date>
-                        <date>1963</date>
                     </imprint>
                     <biblScope unit="volume">4595</biblScope>
+                </monogr>
+            </biblStruct>
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="13">
+                <analytic>
+                    <title level="a">The Robbins report on higher education, Higher Education</title>
+                </analytic>
+                <monogr>
+                    <title level="s">Cmnd</title>
+                    <imprint>
+                        <date>1963</date>
+                    </imprint>
                     <biblScope unit="volume">2154</biblScope>
                 </monogr>
             </biblStruct>
@@ -358,13 +372,12 @@
                     );
                 </desc>
                 <bibl>ACLEC, First Report on Legal Education and Training (1996).</bibl>
-                <desc>The Government&#8217;s White Paper on further and higher education had not been published at the
-                    time of writing this essay
-                    .
+                <desc>The Government&#8217;s White Paper on further and higher education had not been
+                    published at the time of writing this essay.
                 </desc>
                 <bibl>ACLEC, id., para 4.6.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="11">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="14">
                 <monogr>
                     <title level="m">Higher Education in the learning society</title>
                     <author>
@@ -375,7 +388,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="12">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="15">
                 <monogr>
                     <title level="m">First Report on Legal Education and Training</title>
                     <author>
@@ -386,7 +399,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="13">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="16">
                 <monogr>
                     <author>
                         <orgName>ACLEC</orgName>
@@ -402,22 +415,21 @@
                 &#8216;Working on the Chain Gang?&#8217; (1996) 2 Contemporary Issues in Law 15 at 24&#8211;6).
             </desc>
             <desc type="input-segmented">
-                <desc>14 ACLEC&#8217;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
-                    .
+                <desc>14 ACLEC&#8217;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.
                 </desc>
                 <desc>(See</desc>
                 <bibl>A. Bradney and F. Cownie, &#8216;Working on the Chain Gang?&#8217; (1996) 2 Contemporary Issues in
                     Law 15 at 24&#8211;6).
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="14">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="17">
                 <monogr>
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="15">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="18">
                 <analytic>
                     <title level="a">Working on the Chain Gang?</title>
                     <author>
@@ -452,7 +464,7 @@
                     New Law J. 835 at 836.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="16">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="19">
                 <analytic>
                     <title level="a">Education for Life or for Work?</title>
                     <author>
@@ -493,7 +505,7 @@
                     Volume III (1905) 215.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="17">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="20">
                 <analytic>
                     <title level="a">Universities: Actual and Ideal</title>
                     <author>
@@ -522,7 +534,7 @@
                     John Stuart Mill: Volume XXI, ed. J.M. Robson (1984) 218.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="18">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="21">
                 <analytic>
                     <title level="a">Inaugural address to the University of St Andrews</title>
                     <author>
@@ -553,7 +565,7 @@
             <desc type="input-segmented">
                 <bibl>18 Dearing, op. cit., n. 12, para. 9.32.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="19">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="22">
                 <monogr>
                     <author>
                         <persName>
@@ -569,7 +581,7 @@
             <desc type="input-segmented">
                 <bibl>19 id., para. 5.11.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="20">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="23">
                 <monogr>
                     <imprint/>
                 </monogr>
@@ -582,11 +594,10 @@
             <desc type="input-segmented">
                 <bibl>20 F.R. Leavis, Education and the University (1948) 28.</bibl>
                 <desc>Leavis&#8217;s view was narrowly nationalistic. For &#8216;centre&#8217; it would be better to
-                    substitute &#8216;centres&#8217;
-                    .
+                    substitute &#8216;centres&#8217;.
                 </desc>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="21">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="24">
                 <monogr>
                     <title level="m">Education and the University</title>
                     <author>
@@ -608,13 +619,10 @@
             <desc type="input-segmented">
                 <desc>21 See, further,</desc>
                 <bibl>A. Bradney, &#8216;Liberalising Legal Education&#8217; in The Law School: Global Issues, Local
-                    Questions,
+                    Questions, ed. F. Cownie
                 </bibl>
-                <desc>ed. F. Cownie (forthcoming)
-                    .
-                </desc>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="22">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="25">
                 <analytic>
                     <title level="a">Liberalising Legal Education</title>
                     <author>
@@ -626,6 +634,10 @@
                 </analytic>
                 <monogr>
                     <title level="m">The Law School: Global Issues, Local Questions</title>
+                    <editor>
+                        <forename type="first" full="init">F.</forename>
+                        <surname>Cownie</surname>
+                    </editor>
                     <imprint/>
                 </monogr>
             </biblStruct>
@@ -639,7 +651,7 @@
                     English Law School&#8217; in Birks op. cit., n. 1, p. 59.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="23">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="26">
                 <analytic>
                     <title level="a">Of Blackstone&#8217;s Tower: Metephors of Distance and Histories of the English Law
                         School
@@ -667,7 +679,7 @@
             <desc type="input-segmented">
                 <bibl>23 S. Turow, One L (1977) 106.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="24">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="27">
                 <monogr>
                     <title level="m">One L</title>
                     <author>
@@ -692,7 +704,7 @@
                     129.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="25">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="28">
                 <monogr>
                     <title level="m">Reflections on Legal Education</title>
                     <title level="j">Modern Law Rev.</title>
@@ -717,15 +729,17 @@
                 (Kahn-Freund, id.).
             </desc>
             <desc type="input-segmented">
-                <desc>25 Kahn-Freund believed that both doctrinal and non-doctrinal learning were possible
+                <desc>25 Kahn-Freund believed that both doctrinal and non-doctrinal learning were
+                    possible
                     together though he did concede that in the doctrinal method there was &#8216;the danger that
                     the discussion gets stuck in the perhaps intellectually very fascinating game of legal
                     argument . . .&#8217;
+
                     (
                 </desc>
                 <bibl>Kahn-Freund, id.).</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="26">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="29">
                 <monogr>
                     <author>
                         <persName>
@@ -741,7 +755,7 @@
             <desc type="input-segmented">
                 <bibl>26 Leavis, op. cit., n. 20, p. 120.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="27">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="30">
                 <monogr>
                     <author>
                         <persName>
@@ -759,23 +773,21 @@
                 criticisms of the application of the method rather than the method itself.
             </desc>
             <desc type="input-segmented">
-                <desc>29 Leavis has, of course, been widely criticized for the cultural and gender assumptions that lie
-                    behind his selection of material to be studied
-                    .
+                <desc>29 Leavis has, of course, been widely criticized for the cultural and gender
+                    assumptions that lie behind his selection of material to be studied.
                 </desc>
                 <desc>(See, for example,</desc>
                 <bibl>M. King, The New English Literatures (1980) at 216&#8211;17 .)</bibl>
-                <desc>Whatever the accuracy of these criticisms, they are criticisms of the application of the method
-                    rather than the method itself
-                    .
+                <desc>Whatever the accuracy of these criticisms, they are criticisms of the
+                    application of the method rather than the method itself.
                 </desc>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="28">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="31">
                 <monogr>
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="29">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="32">
                 <monogr>
                     <title level="m">The New English Literatures</title>
                     <author>
@@ -797,7 +809,7 @@
             <desc type="input-segmented">
                 <bibl>30 Jurisprudence by Sir John Salmond, ed. G. Willliams (10th ., 1947) at 256 and 257.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="30">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="33">
                 <monogr>
                     <title level="m">Jurisprudence by Sir John Salmond</title>
                     <editor>
@@ -819,19 +831,18 @@
                 E. Durkheim The Division of Labour in Society (1933) 68.
             </desc>
             <desc type="input-segmented">
-                <desc>31 So much so that when other disciplines engage with law they must develop their own concepts to
-                    analyse law rather than rely on the concepts already developed in law
-                    .
+                <desc>31 So much so that when other disciplines engage with law they must develop their
+                    own concepts to analyse law rather than rely on the concepts already developed in law.
                 </desc>
                 <desc>See, for example,</desc>
                 <bibl>E. Durkheim The Division of Labour in Society (1933) 68.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="31">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="34">
                 <monogr>
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="32">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="35">
                 <monogr>
                     <title level="m">The Division of Labour in Society</title>
                     <author>
@@ -868,7 +879,7 @@
                     at pp. 173&#8211;6.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="33">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="36">
                 <monogr>
                     <title level="m">The Quiet Revolution: Improving Student Learning in Law</title>
                     <author>
@@ -888,7 +899,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="34">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="37">
                 <analytic>
                     <title level="a">Define and Empower: Women Students Consider Feminist Learning</title>
                 </analytic>
@@ -901,7 +912,7 @@
                     <biblScope unit="page" from="47">47</biblScope>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="35">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="38">
                 <analytic>
                     <title level="a">The Invisible Author of Legal Authority</title>
                     <author>
@@ -930,7 +941,7 @@
                     Sociology of Law 427 at 429.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="36">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="39">
                 <analytic>
                     <title level="a">Masculinism, Law and Law Teaching</title>
                     <author>
@@ -960,7 +971,7 @@
                     (1983) 46 Modern Law Rev. 1 at 8.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="37">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="40">
                 <monogr>
                     <title level="m">Administrative Law, Collective Consumption and Judicial Policy</title>
                     <title level="j">Modern Law Rev.</title>
@@ -983,7 +994,7 @@
             <desc type="input-segmented">
                 <bibl>35 Le Brun and Johnstone, op. cit, n. 32, pp. 71&#8211;5.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="38">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="41">
                 <monogr>
                     <author>
                         <persName>
@@ -1004,7 +1015,7 @@
             <desc type="input-segmented">
                 <bibl>38 Goodrich, op. cit., n. 22.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="39">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="42">
                 <monogr>
                     <author>
                         <persName>
@@ -1024,7 +1035,7 @@
                     Am. Scholar 256 at 258.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="40">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="43">
                 <monogr>
                     <title level="m">The Convergence of the Law School and the University</title>
                     <title level="j">The Am. Scholar</title>
@@ -1052,7 +1063,7 @@
                     31 The Law Teacher 38 at 46.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="41">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="44">
                 <analytic>
                     <title level="a">A Survey of Law Schools in the United Kingdom, 1996</title>
                     <author>
@@ -1087,7 +1098,7 @@
                     143 at 152.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="42">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="45">
                 <analytic>
                     <title level="a">A third survey of university legal education</title>
                     <author>
@@ -1113,19 +1124,19 @@
                 (Harris and Jones, op. cit., n. 40, at p. 54).
             </desc>
             <desc type="input-segmented">
-                <desc>42 Thus, for example, Harris and Jones reported that 59.2 per cent of all particpating
-                    institutions offered foriegn language tuition as part of their standard LLB programme
-                    .
+                <desc>42 Thus, for example, Harris and Jones reported that 59.2 per cent of all
+                    particpating institutions offered foriegn language tuition as part of their standard LLB
+                    programme.
                 </desc>
                 <desc>(Harris and</desc>
                 <bibl>Jones, op. cit., n. 40, at p. 54).</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="43">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="46">
                 <monogr>
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="44">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="47">
                 <monogr>
                     <author>
                         <persName>
@@ -1143,7 +1154,7 @@
             <desc type="input-segmented">
                 <bibl>43 T. Mortimer, P. Leighton and N. Whatley, Law Teachers: Lawyers or Academics? (1995).</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="45">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="48">
                 <monogr>
                     <title level="m">Law Teachers: Lawyers or Academics?</title>
                     <author>
@@ -1175,7 +1186,7 @@
             <desc type="input-segmented">
                 <bibl>44 id., p 35</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="46">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="49">
                 <monogr>
                     <imprint/>
                 </monogr>
@@ -1190,7 +1201,7 @@
                     Assessment at Hong Kong Polytechnic University&#8217; (1995) 29 The Law Teacher 189 at 189.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="47">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="50">
                 <analytic>
                     <title level="a">Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and
                         Assessment at Hong Kong Polytechnic University
@@ -1221,7 +1232,7 @@
                     Law Teacher 12 at 13.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="48">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="51">
                 <analytic>
                     <title level="a">Law, Law Staff and CNAA Business Studies Degree Courses</title>
                     <author>
@@ -1250,7 +1261,7 @@
                     (1994) 28 The Law Teacher 281 at 282.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="49">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="52">
                 <analytic>
                     <title level="a">Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?</title>
                     <author>
@@ -1279,7 +1290,7 @@
                     (1990) 24 The Law Teacher 246 at 248.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="50">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="53">
                 <analytic>
                     <title level="a">Legal Literacy for Managers: The Role of the Educator</title>
                     <author>
@@ -1310,7 +1321,7 @@
             <desc type="input-segmented">
                 <bibl>49 Ridley, op. cit., n. 47, at p. 284.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="51">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="54">
                 <monogr>
                     <author>
                         <persName>
@@ -1327,13 +1338,12 @@
                 relationship between economics and law.
             </desc>
             <desc type="input-segmented">
-                <desc>50 This, of course, is not always the case. For example, the BA Economics and Law degree at
-                    Leicester has a special course in each year given over to the consideration of the relationship
-                    between economics and law
-                    .
+                <desc>50 This, of course, is not always the case. For example, the BA Economics and Law
+                    degree at Leicester has a special course in each year given over to the consideration of the
+                    relationship between economics and law.
                 </desc>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="52">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="55">
                 <monogr>
                     <imprint/>
                 </monogr>
@@ -1346,7 +1356,7 @@
             <desc type="input-segmented">
                 <bibl>51 P. Birks, &#8216;Short Cuts&#8217; in Pressing Problems in the Law, ed. P. Birks (1994) 10&#8211;24.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="53">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="56">
                 <analytic>
                     <title level="a">Short Cuts</title>
                     <author>
@@ -1376,7 +1386,7 @@
             <desc type="input-segmented">
                 <bibl>52 Ridley, op. cit., n. 47, p. 283.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="54">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="57">
                 <monogr>
                     <author>
                         <persName>
@@ -1392,7 +1402,7 @@
             <desc type="input-segmented">
                 <bibl>53 Cartan and Vilkinas, op. cit., n. 48, p. 248.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="55">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="58">
                 <monogr>
                     <author>
                         <persName>
@@ -1417,7 +1427,7 @@
                     at 112.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="56">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="59">
                 <analytic>
                     <title level="a">Curriculum Development in Legal Studies</title>
                     <author>
@@ -1442,7 +1452,7 @@
             <desc type="input-segmented">
                 <bibl>55 Dearing, op. cit., n. 12, para 9.3.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="57">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="60">
                 <monogr>
                     <author>
                         <persName>
@@ -1458,7 +1468,7 @@
             <desc type="input-segmented">
                 <bibl>57 G. Steiner, Errata: An Examined Life (1997) 20.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="58">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="61">
                 <monogr>
                     <title level="m">Errata: An Examined Life</title>
                     <author>
diff --git a/convert-anystyle-data/tei-biblStruct-gold/10.1515_zfrs-1980-0103.xml b/convert-anystyle-data/tei-biblStruct-gold/10.1515_zfrs-1980-0103.xml
index e85f803..cf86358 100644
--- a/convert-anystyle-data/tei-biblStruct-gold/10.1515_zfrs-1980-0103.xml
+++ b/convert-anystyle-data/tei-biblStruct-gold/10.1515_zfrs-1980-0103.xml
@@ -36,17 +36,13 @@
         <listBibl type="footnote" n="2">
             <desc type="input-full">2 Vgl. Feest/Blankenburg, 1972. Die Konsequenz einer gr&#246;&#223;eren Dunkelziffer
                 bei den von der Polizei selbst entdeckten Straftaten entwickle ich ausf&#252;hrlicher in meinem Beitrag
-                &#252;ber, Nichtkriminalisierung als Struktur und Routine ', 1976.
+                &#252;ber Nichtkriminalisierung als Struktur und Routine ', 1976.
             </desc>
             <desc type="input-segmented">
                 <desc>2 Vgl.</desc>
                 <bibl>Feest/Blankenburg, 1972.</bibl>
-                <desc>Die Konsequenz einer gr&#246;&#223;eren Dunkelziffer bei den von der Polizei selbst entdeckten
-                    Straftaten entwickle
-                </desc>
-                <bibl>ich</bibl>
-                <desc>ausf&#252;hrlicher in meinem Beitrag &#252;ber
-                    ,
+                <desc>Die Konsequenz einer gr&#246;&#223;eren Dunkelziffer bei den von der Polizei selbst
+                    entdeckten Straftaten entwickle ich ausf&#252;hrlicher in meinem Beitrag &#252;ber
                 </desc>
                 <bibl>Nichtkriminalisierung als Struktur und Routine ', 1976.</bibl>
             </desc>
@@ -70,11 +66,6 @@
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="3">
                 <monogr>
                     <title level="m">Nichtkriminalisierung als Struktur und Routine</title>
-                    <author>
-                        <persName>
-                            <surname>ich</surname>
-                        </persName>
-                    </author>
                     <imprint>
                         <date>1976</date>
                     </imprint>
@@ -90,20 +81,12 @@
             </desc>
             <desc type="input-segmented">
                 <desc>3 Angaben aus einer Befragung von</desc>
-                <bibl>Peter MacNaughton-Smith und Richard Rosellen</bibl>
-                <desc>zur
-                    '
-                </desc>
-                <bibl>Bereitschaft zur Anzeigeerstattung '</bibl>
-                <desc>Manuskript</desc>
-                <bibl>Max-Planck-Institut f&#252;r Strafrecht, Freiburg 1978.</bibl>
+                <bibl>Peter MacNaughton-Smith und Richard Rosellen zur ' Bereitschaft zur Anzeigeerstattung '
+                    Max-Planck-Institut f&#252;r Strafrecht, Freiburg 1978.
+                </bibl>
                 <desc>Der ausf&#252;hrliche Forschungsbericht von</desc>
-                <bibl>Richard Rosellen</bibl>
-                <desc>erscheint in K&#252;rze unter dem Titel
-                    '
-                </desc>
-                <bibl>Private Verbrechenskontrolle &#8212; eine empirische Untersuchung zur Anzeigeerstattung ', Berlin,
-                    voraussichtlich 1980.
+                <bibl>Richard Rosellen Private Verbrechenskontrolle &#8212; eine empirische Untersuchung zur
+                    Anzeigeerstattung ', Berlin, voraussichtlich 1980.
                 </bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="4">
@@ -401,11 +384,11 @@
                 Im folgenden auch als GMD-Erhebung zitiert.
             </desc>
             <desc type="input-segmented">
-                <desc>15 Steinbach 1979 hat in einer Erhebung von 1144 Amtsgerichtsprozessen in der Bundesrepublik ohne
-                    Berlin in den Jahren 1974&#8212;1976 ein Verh&#228;ltnis von 1 R&#228;umungsklage je 1,2
+                <desc>15 Steinbach 1979 hat in einer Erhebung von 1144 Amtsgerichtsprozessen in der
+                    Bundesrepublik ohne Berlin in den Jahren 1974&#8212;1976 ein Verh&#228;ltnis von 1 R&#228;umungsklage
+                    je 1,2
                     Forderungsklagen, in Berlin allerdings von 1 R&#228;umungsklage je 0,12 Forderungsklagen ermittelt.
-                    Im folgenden auch als GMD-Erhebung zitiert
-                    .
+                    Im folgenden auch als GMD-Erhebung zitiert.
                 </desc>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="17">
@@ -420,12 +403,7 @@
                 accident compensation), S. 90 ff.
             </desc>
             <desc type="input-segmented">
-                <bibl>16 Johnson 1979</bibl>
-                <desc>berichtet von dem erfolgreichen Versuch einer Unfall-Schadensregulierung ohne Ber&#252;cksichtigung
-                    einer Schuldzuschreibung in Neuseeland (no fault accident compensation)
-                    ,
-                </desc>
-                <bibl>S. 90 ff.</bibl>
+                <bibl>16 Johnson 1979 S. 90 ff.</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="18">
                 <monogr>
@@ -490,15 +468,11 @@
             </desc>
             <desc type="input-segmented">
                 <bibl>18 Projektbericht &#8218;Rechtshilfebed&#252;rfnisse sozial Schwacher&#8216;,
-                    (Blankenburg/Gorges/Reifner Ticmann).
+                    (Blankenburg/Gorges/Reifner Ticmann). Ende 1980.
                 </bibl>
-                <desc>Befragt wurden im Januar bis M&#228;rz 1979 je eine Person in 835 Haushalten Westberlins. Ver&#246;ffentlichung
-                    ist vorgesehen f&#252;r
-                </desc>
-                <bibl>Ende 1980.</bibl>
-                <desc>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
-                    .
+                <desc>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.
                 </desc>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="21">
@@ -556,11 +530,7 @@
                 voraussichtlich Mitte 1980.
             </desc>
             <desc type="input-segmented">
-                <bibl>21 Projektbericht &#8218;Rechtsschutzversicherung&#8216;. (Blankenburg/Fiedler),</bibl>
-                <desc>Ver&#246;ffentlichung voraussichtlich
-                    Mitte
-                </desc>
-                <bibl>1980.</bibl>
+                <bibl>21 Projektbericht &#8218;Rechtsschutzversicherung&#8216;. (Blankenburg/Fiedler), 1980.</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="23">
                 <analytic>
@@ -662,8 +632,8 @@
             <desc type="input-segmented">
                 <desc>25 Grunds&#228;tzlich vgl. hierzu den klassischen Beitrag von</desc>
                 <bibl>Galanter 1974, S. 95&#8212;160.</bibl>
-                <desc>Die gr&#246;sseren Chancen von Firmen, insbesondere bei der gro&#223;en Zahl von vorstreitigen
-                    Erledigungen zeigt
+                <desc>Die gr&#246;sseren Chancen von Firmen, insbesondere bei der gro&#223;en Zahl von
+                    vorstreitigen Erledigungen zeigt
                 </desc>
                 <bibl>Sarat 1976, S. 339-375.</bibl>
             </desc>
@@ -1019,126 +989,9 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
-            </desc>
+            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Baumg&#228;rtel, Gottfried</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="45">
                 <monogr>
@@ -1158,126 +1011,12 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht.
+                T&#252;bingen.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Bender, Rolf</bibl>
+                <bibl>Rolf Schumacher</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="46">
                 <monogr>
@@ -1303,126 +1042,9 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
-            </desc>
+            <desc type="input-full">Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Black, Donald</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="47">
                 <analytic>
@@ -1445,126 +1067,14 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die
+                Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Blankenburg, Erhard</bibl>
+                <bibl>Blankenburg, Viola</bibl>
+                <bibl>Morasch, Helmut</bibl>
+                <bibl>Bender, Rolf</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="48">
                 <analytic>
@@ -1608,126 +1118,12 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
+                Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Blankenburg, Erhard</bibl>
+                <bibl>G&#246;ppinger</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="49">
                 <analytic>
@@ -1755,126 +1151,13 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im
+                Proze&#223; strafrechtlicher Sozialkontrolle. Berlin.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Blankenburg, Erhard</bibl>
+                <bibl>Sessar, Klaus</bibl>
+                <bibl>Steffen, Wiebke</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="50">
                 <monogr>
@@ -1908,126 +1191,13 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter Mitarbeit von Ralf Rogowski,
+                1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Blankenburg, Erhard</bibl>
+                <bibl>Sch&#246;nholz, Siegfried</bibl>
+                <bibl>unter Mitarbeit von Ralf Rogowski</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="51">
                 <monogr>
@@ -2048,6 +1218,7 @@
                     </author>
                     <author>
                         <persName>
+                            <roleName type="contributor">unter Mitarbeit von</roleName>
                             <forename>Ralf</forename>
                             <surname>Rogowski</surname>
                         </persName>
@@ -2060,126 +1231,15 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg,
+                Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum
+                Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Blankenburg, Erhard</bibl>
+                <bibl>Blankenburg, Erhard</bibl>
+                <bibl>Klausa, Ekkehard</bibl>
+                <bibl>Hubert Rottleuthner</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="52">
                 <analytic>
@@ -2224,126 +1284,13 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the
+                Poor. New York.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Carlin, Jerome-</bibl>
+                <bibl>Jan Howard-</bibl>
+                <bibl>Sheldon Messinger</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="53">
                 <monogr>
@@ -2375,126 +1322,12 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the
+                United States: A Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Danzig, Richard</bibl>
+                <bibl>Lowy, Michael</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="54">
                 <analytic>
@@ -2527,126 +1360,10 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
-            </desc>
+            <desc type="input-full">Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.</desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Feest, Johannes</bibl>
+                <bibl>Blankenburg, Erhard</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="55">
                 <analytic>
@@ -2675,126 +1392,11 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute
+                processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Felstiner, William L. F.</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="56">
                 <analytic>
@@ -2819,126 +1421,11 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration,
+                in: Law and Society Review, vol. 9, pp. 695-706.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Felstiner, William L. F.</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="57">
                 <analytic>
@@ -2963,126 +1450,11 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the
+                Limits of Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Galanter, Marc</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="58">
                 <analytic>
@@ -3108,126 +1480,9 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
-            </desc>
+            <desc type="input-full">Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Geiger, Theodor</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="59">
                 <monogr>
@@ -3247,126 +1502,9 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
-            </desc>
+            <desc type="input-full">Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Gessner, Volkmar</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="60">
                 <monogr>
@@ -3386,126 +1524,10 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Hilden, Hartmut</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="61">
                 <monogr>
@@ -3524,126 +1546,14 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible
+                Strategies. In: Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und
+                Alphen/Rijn.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Johnson, Earl</bibl>
+                <bibl>Cappelletti, Mauro</bibl>
+                <bibl>Bryant Garth</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="62">
                 <analytic>
@@ -3680,131 +1590,17 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223;
+                &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen. Diss. Hamburg.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Koch, Hartmut</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="63">
                 <monogr>
                     <title level="m">Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von
-                        Kl&#228;gern und Beklagten zu Mietprozessen.
+                        Kl&#228;gern und
+                        Beklagten zu Mietprozessen.
                     </title>
                     <author>
                         <persName>
@@ -3821,126 +1617,9 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
-            </desc>
+            <desc type="input-full">Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Luhmann, Niklas</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="64">
                 <monogr>
@@ -3960,126 +1639,15 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in:
+                Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und
+                Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Luhmann, Niklas</bibl>
+                <bibl>Blankenburg, Erhard</bibl>
+                <bibl>Klausa, Ekkehard</bibl>
+                <bibl>Hubert Rottleuthner</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="65">
                 <analytic>
@@ -4124,126 +1692,11 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer
+                Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Reifner, Udo</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="66">
                 <analytic>
@@ -4268,126 +1721,13 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des
+                freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
+                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Reifner, Udo</bibl>
+                <bibl>Wissenschaftszentrum Berlin</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="67">
                 <monogr>
@@ -4412,126 +1752,17 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung:
+                Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und
+                Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r
+                Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Reifner, Udo</bibl>
+                <bibl>Irmela Gorges</bibl>
+                <bibl>Blankenburg, Erhard</bibl>
+                <bibl>Klausa, Ekkehard</bibl>
+                <bibl>Hubert Rottleuthner</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="68">
                 <analytic>
@@ -4584,126 +1815,11 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in:
+                Law and Society Review, vol. 10, pp. 339&#8212;375.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Sarat, Austin</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="69">
                 <analytic>
@@ -4727,126 +1843,13 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation -
+                Rechtliche Formen des Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.):
+                Arbeitslosigkeit und Recht. Baden-Baden.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Sch&#246;nholz, Siegfried</bibl>
+                <bibl>Vereinigung f&#252;r Rechtssoziologie</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="70">
                 <analytic>
@@ -4876,126 +1879,12 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
+                Datenverarbeitung. Birlinghoven bei Bonn.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Steinbach, E.</bibl>
+                <bibl>Gesellschaft f&#252;r Mathematik und Datenverarbeitung</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="71">
                 <monogr>
@@ -5018,126 +1907,11 @@
             </biblStruct>
         </listBibl>
         <listBibl type="bibliography">
-            <desc type="input-full">Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.
-                Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen. Black, Donald,
-                1973: The Mobilization of Law, in: Journal of Legal Studies 2. Blankenburg, Erhard/Blankenburg,
-                Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in: Bender, Rolf (Hrsg.): Tatsachenforschung
-                in der Justiz. T&#252;bingen. Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine,
-                in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                strafrechtlicher Sozialkontrolle. Berlin. Blankenburg, Erhard; Sch&#246;nholz, Siegfried, unter
-                Mitarbeit von Ralf, Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und
-                Darmstadt. Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Carlin, Jerome-; Jan Howard- und
-                Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig, Richard/Lowy, Michael, 1974/1975:
-                Everyday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society
-                Review, vol. 9, pp. 675&#8212;694. Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der
-                Polizei. D&#252;sseldorf. Felstiner, William L. F., 1974/75: Influences of Social Organization on
-                Dispute processing, in: Law and Society Review, vol. 9, pp. 63&#8212;94. Felstiner, William L. F.,
-                1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp.
-                695-706. Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160. Geiger, Theodor, 1964: Vorstudien zu
-                einer Soziologie des Rechts. Neuwied. Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen. Hilden,
-                Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main. Johnson, Earl, 1979; Thinking
-                about Access: A Preliminary Typology of Possible Strategies. In: Cappelletti, Mauro und Bryant Garth
-                (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn. Koch, Hartmut, 1975: Das Gerichtsverfahren
-                als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.
-                Diss. Hamburg. Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt. Luhmann,
-                Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg, Erhard; Klausa,
-                Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch
-                f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen. Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis
-                und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, Wissenschaftszentrum Berlin, IIM-dp/78&#8212;70.
-                Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                Wissenschaftszentrum Berlin IIM-dp/79&#8212;104. Reifner, Udo und Irmela Gorges, 1980; Alternativen der
-                Rechtsberatung: Dienstleistung, F&#252;rsorge und kollektive Selbsthilfe, in: Blankenburg, Erhard;
-                Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen. Sarat, Austin, 1976: Alternatives
-                in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.
-                Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und
-                Recht. Baden-Baden. Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                Datenverarbeitung. Birlinghoven bei Bonn. Wanner, Craig, 1975: The Public Ordering of Private Cases;
-                Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.
+            <desc type="input-full">Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court
+                Cases, in: Law and Society Review, vol. 9, pp. 293-306.
             </desc>
             <desc type="input-segmented">
-                <bibl>Baumg&#228;rtel, Gottfried, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</bibl>
-                <bibl>Bender, Rolf und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</bibl>
-                <bibl>Black, Donald, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</bibl>
-                <bibl>Blankenburg, Erhard/Blankenburg, Viola/Morasch, Helmut, 1972: Der lange Weg in die Berufung, in:
-                    Bender, Rolf (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.
-                </bibl>
-                <bibl>Blankenburg, Erhard, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger,
-                    Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.
-                </bibl>
-                <bibl>Blankenburg, Erhard/Sessar, Klaus/Steffen, Wiebke, 1978: Die Staatsanwaltschaft im Proze&#223;
-                    strafrechtlicher Sozialkontrolle. Berlin.
-                </bibl>
-                <bibl>Blankenburg, Erhard; Sch&#246;nholz, Siegfried,</bibl>
-                <desc>unter Mitarbeit von Ralf ,</desc>
-                <bibl>Ralf Rogowski, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</bibl>
-                <bibl>Blankenburg, Erhard, 1980: Recht als gradualisiertes Konzept, in: Blankenburg, Erhard; Klausa,
-                    Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht,
-                    Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Carlin, Jerome-; Jan Howard- und Sheldon Messinger, 1967: Civil Justice and the Poor. New York.
-                </bibl>
-                <bibl>Danzig, Richard/Lowy, Michael, 1974/1975: Everyday Disputes and Mediation in the United States: A
-                    Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675&#8212;694.
-                </bibl>
-                <bibl>Feest, Johannes/Blankenburg, Erhard, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Influences of Social Organization on Dispute processing, in:
-                    Law and Society Review, vol. 9, pp. 63&#8212;94.
-                </bibl>
-                <bibl>Felstiner, William L. F., 1974/75: Avoidance as Dispute Processing: An Elaboration, in: Law and
-                    Society Review, vol. 9, pp. 695-706.
-                </bibl>
-                <bibl>Galanter, Marc, 1974: Why the &#8218;Haves&#8216;Come out Ahead: Speculations on the Limits of
-                    Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.
-                </bibl>
-                <bibl>Geiger, Theodor, 1964: Vorstudien zu einer Soziologie des Rechts. Neuwied.</bibl>
-                <bibl>Gessner, Volkmar, 1976: Recht und Konflikt. T&#252;bingen.</bibl>
-                <bibl>Hilden, Hartmut, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</bibl>
-                <bibl>Johnson, Earl, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In:
-                    Cappelletti, Mauro und Bryant Garth (Hrsg.): Access to Justice, Bd. III. Milan und Alphen/Rijn.
-                </bibl>
-                <bibl>Koch, Hartmut, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung
-                    von Kl&#228;gern und Beklagten zu Mietprozessen.
-                </bibl>
-                <desc>Diss.</desc>
-                <bibl>Hamburg.</bibl>
-                <bibl>Luhmann, Niklas, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</bibl>
-                <bibl>Luhmann, Niklas, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Blankenburg,
-                    Erhard; Klausa, Ekkehard und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen
-                    zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. Bd. 6. Opladen.
-                </bibl>
-                <bibl>Reifner, Udo, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner
-                    Mieterinitiative, Wissenschaftszentrum Berlin,
-                </bibl>
-                <bibl>Reifner, Udo, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen
-                    Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.
-                    Wissenschaftszentrum Berlin
-                </bibl>
-                <bibl>Reifner, Udo und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, F&#252;rsorge
-                    und kollektive Selbsthilfe, in: Blankenburg, Erhard; Klausa, Ekkehard und Hubert Rottleuthner
-                    (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und
-                    Rechtstheorie Bd. 6. Opladen.
-                </bibl>
-                <bibl>Sarat, Austin, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and
-                    Society Review, vol. 10, pp. 339&#8212;375.
-                </bibl>
-                <bibl>Sch&#246;nholz, Siegfried, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des
-                    Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit
-                    und Recht. Baden-Baden.
-                </bibl>
-                <bibl>Steinbach, E., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und
-                    Datenverarbeitung. Birlinghoven bei Bonn.
-                </bibl>
-                <bibl>Wanner, Craig, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and
-                    Society Review, vol. 9, pp. 293-306.
-                </bibl>
+                <bibl>Wanner, Craig</bibl>
             </desc>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="72">
                 <analytic>
diff --git a/convert-anystyle-data/tei-biblStruct-gold/10.1515_zfrs-1980-0104.xml b/convert-anystyle-data/tei-biblStruct-gold/10.1515_zfrs-1980-0104.xml
index 03f38c1..15e2cc8 100644
--- a/convert-anystyle-data/tei-biblStruct-gold/10.1515_zfrs-1980-0104.xml
+++ b/convert-anystyle-data/tei-biblStruct-gold/10.1515_zfrs-1980-0104.xml
@@ -527,9 +527,7 @@
                     so viel geschrieben worden, da&#223; nicht nur die F&#252;lle des Materials schon wieder
                     abschreckend
                     wirkt, sondern da&#223; es auch gen&#252;gt, im Rahmen dieses Aufsatzes nur einige wichtige Aspekte
-                    anzusprechen
-
-                    .
+                    anzusprechen.
                 </desc>
                 <desc>Bibliographien finden sich etwa bei</desc>
                 <bibl>Rokkan/Verba/Viet/Almasy 117 ff.;</bibl>
@@ -1736,11 +1734,8 @@
             </desc>
             <desc type="input-segmented">
                 <desc>41 F&#252;r die Bedeutung der funktionalen &#196;quivalenz beruft man sich h&#228;ufig auf</desc>
-                <bibl>Merton,</bibl>
-                <desc>der sie am Beispiel der Religion n&#228;her erl&#228;utert hat
-                    (
-                </desc>
-                <bibl>Social Theory and Social Structure, New York, London, erweiterte Aufl. 1968, S. 82 ff.):</bibl>
+                <bibl>Merton, Social Theory and Social Structure, New York, London, erweiterte Aufl. 1968, S. 82 ff.):
+                </bibl>
                 <desc>Eine gemeinsame Religion erf&#252;llt im allgemeinen data
                     ".
                 </desc>
@@ -1751,9 +1746,6 @@
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="71">
                 <monogr>
                     <title level="m">Social Theory and Social Structure</title>
-                    <title level="m">The OECD Social Indicator Development Programme - 1976 Progress Report on Phase
-                        II
-                    </title>
                     <author>
                         <persName>
                             <surname>Merton</surname>
@@ -1761,8 +1753,17 @@
                     </author>
                     <imprint>
                         <date>1968</date>
-                        <date>1977</date>
                         <pubPlace>New York, London</pubPlace>
+                    </imprint>
+                </monogr>
+            </biblStruct>
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="72">
+                <monogr>
+                    <title level="m">The OECD Social Indicator Development Programme - 1976 Progress Report on Phase
+                        II
+                    </title>
+                    <imprint>
+                        <date>1977</date>
                         <pubPlace>Paris</pubPlace>
                         <publisher>
                             <persName>
@@ -1778,7 +1779,7 @@
             <desc type="input-segmented">
                 <bibl>43 Rheinstein, Marriage Stability, Divorce, and the Law (Chicago 1972).</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="72">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="73">
                 <monogr>
                     <title level="m">Marriage Stability, Divorce, and the Law</title>
                     <author>
@@ -1808,7 +1809,7 @@
                 <desc>- Zur Behandlung der &#8222;Kultur" in vergleichenden Untersuchungen n&#228;her</desc>
                 <bibl>Scheuch (oben N. 37) 197 ff.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="73">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="74">
                 <monogr>
                     <author>
                         <persName>
@@ -1818,7 +1819,7 @@
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="74">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="75">
                 <monogr>
                     <title level="m">Die Messung von Mitbestimmungsnormen &#8212; Darstellung eines international
                         vergleichenden Forschungsansatzes
@@ -1838,7 +1839,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="75">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="76">
                 <monogr>
                     <author>
                         <persName>
@@ -1861,7 +1862,7 @@
                     f&#252;r Rechtsvergleichung 19 (1978) 161 ff.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="76">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="77">
                 <monogr>
                     <author>
                         <persName>
@@ -1871,7 +1872,7 @@
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="77">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="78">
                 <monogr>
                     <title level="m">Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise</title>
                     <title level="j">Zeitschrift f&#252;r Rechtsvergleichung</title>
@@ -1893,7 +1894,7 @@
                 <desc>46 Siehe</desc>
                 <bibl>Blankenburg (oben N. 33) 3 ff.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="78">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="79">
                 <monogr>
                     <author>
                         <persName>
@@ -1909,7 +1910,7 @@
             <desc type="input-segmented">
                 <bibl>47 Rose (oben N. 7) 176.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="79">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="80">
                 <monogr>
                     <author>
                         <persName>
@@ -1933,14 +1934,12 @@
                     (1979) 154 ff.
                 </bibl>
                 <desc>mwNachw. &#8212; Eine vergleichbare Debatte &#252;ber &#8222;&#228;hnliche&#8220; und &#8222;un&#228;hnliche
-                    Gesellschaften&#8220; wird seit D&#252;rkheim auch in der Soziologie gef&#252;hrt
-
-                    .
+                    Gesellschaften&#8220; wird seit D&#252;rkheim auch in der Soziologie gef&#252;hrt.
                 </desc>
                 <desc>Siehe</desc>
                 <bibl>Payne (oben N. 13) 16 ff.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="80">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="81">
                 <monogr>
                     <author>
                         <persName>
@@ -1950,7 +1949,7 @@
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="81">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="82">
                 <monogr>
                     <title level="m">&#220;ber den Stil der &#8222;Stilthe orie" in der Rechtsvergleichung</title>
                     <title level="j">ZvglRW</title>
@@ -1965,7 +1964,7 @@
                     <biblScope unit="volume" from="78" to="78">78</biblScope>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="82">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="83">
                 <monogr>
                     <author>
                         <persName>
@@ -1982,7 +1981,7 @@
                 <desc>49 Siehe</desc>
                 <bibl>Zweigert/K&#246;tz I 70.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="83">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="84">
                 <monogr>
                     <author>
                         <persName>
@@ -2006,18 +2005,14 @@
                 aufnimmt.
             </desc>
             <desc type="input-segmented">
-                <bibl>50 Hofstede, Cultural Determinants of the Exercise of Power in a Hierarchy (</bibl>
-                <desc>Mimeographed
-                    ,
-                </desc>
-                <bibl>European Institute for Advanced Studies in Management Working Paper 1977 -</bibl>
+                <bibl>50 Hofstede, Cultural Determinants of the Exercise of Power in a Hierarchy (European Institute for
+                    Advanced Studies in Management Working Paper 1977 -
+                </bibl>
                 <desc>Ebenso f&#252;r das Arbeitsrecht</desc>
                 <bibl>D&#228;ubler (oben N. 32) 33,</bibl>
-                <desc>der auch die skandinavischen L&#228;nder in diese Gruppe aufnimmt
-                    .
-                </desc>
+                <desc>der auch die skandinavischen L&#228;nder in diese Gruppe aufnimmt.</desc>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="84">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="85">
                 <monogr>
                     <title level="m">Cultural Determinants of the Exercise of Power in a Hierarchy</title>
                     <title level="m">European Institute for Advanced Studies in Management Working Paper</title>
@@ -2032,7 +2027,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="85">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="86">
                 <monogr>
                     <author>
                         <persName>
@@ -2053,7 +2048,7 @@
                 <desc>Kritisch</desc>
                 <bibl>Benda-Beckmann (oben N. 4) 58 ff.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="86">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="87">
                 <monogr>
                     <author>
                         <persName>
@@ -2069,7 +2064,7 @@
                     <biblScope unit="volume" from="1" to="1">1</biblScope>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="87">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="88">
                 <monogr>
                     <author>
                         <persName>
@@ -2085,11 +2080,11 @@
                 Oxford University Press, London 1980) Chapter VIII.
             </desc>
             <desc type="input-segmented">
-                <bibl>52 IDE-International Research Group, Industrial Democracy in Europe (</bibl>
-                <desc>erscheint bei</desc>
-                <bibl>Oxford University Press, London 1980) Chapter VIII.</bibl>
+                <bibl>52 IDE-International Research Group, Industrial Democracy in Europe (Oxford University Press,
+                    London 1980) Chapter VIII.
+                </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="88">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="89">
                 <monogr>
                     <title level="m">Industrial Democracy in Europe</title>
                     <author>
@@ -2112,7 +2107,7 @@
             <desc type="input-segmented">
                 <bibl>53 Zweigert/K&#246;tz I 78.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="89">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="90">
                 <monogr>
                     <author>
                         <persName>
@@ -2134,7 +2129,7 @@
             <desc type="input-segmented">
                 <bibl>54 IDE-International Research Group (oben N. 52) Chapter VIII.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="90">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="91">
                 <monogr>
                     <imprint>
                         <publisher>
@@ -2154,7 +2149,7 @@
                 <desc>55 Daf&#252;r</desc>
                 <bibl>D&#228;ubler (oben N. 32) 33.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="91">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="92">
                 <monogr>
                     <author>
                         <persName>
@@ -2179,7 +2174,7 @@
                     RabelsZ 34 (1970) 443 ff.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="92">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="93">
                 <monogr>
                     <title level="m">Die Rechtshonoratioren und ihr Einflu&#223; auf Charakter und Funk tion der
                         Rechtsordnungen
@@ -2196,7 +2191,7 @@
                     <biblScope unit="volume" from="34" to="34">34</biblScope>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="93">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="94">
                 <monogr>
                     <title level="m">Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der
                         Rechtsvergleichung
@@ -2229,7 +2224,7 @@
                     Legal Process (San Francisco, Washington, London 1978) 97 ff.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="94">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="95">
                 <monogr>
                     <title level="m">Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in
                         Germany and the United States
@@ -2245,7 +2240,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="95">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="96">
                 <monogr>
                     <title level="m">The Legal Profession in Comparative Perspective</title>
                     <title level="m">Social System and Legal Process</title>
@@ -2274,7 +2269,7 @@
             <desc type="input-segmented">
                 <bibl>58 Klausa, Politische Inhaltsanalyse von Rechtslehrertexten, ZfS 8 (1979) 362 ff.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="96">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="97">
                 <monogr>
                     <title level="m">Politische Inhaltsanalyse von Rechtslehrertexten</title>
                     <title level="j">ZfS</title>
@@ -2297,7 +2292,7 @@
                 <bibl>Nowak (oben N. 7) 23 ff.;</bibl>
                 <bibl>Smelser 167 ff.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="97">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="98">
                 <monogr>
                     <author>
                         <persName>
@@ -2307,7 +2302,7 @@
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="98">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="99">
                 <monogr>
                     <author>
                         <persName>
@@ -2328,7 +2323,7 @@
                     (101).
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="99">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="100">
                 <monogr>
                     <title level="m">Analysis and Interpretation in Cross-National Survey Research</title>
                     <author>
@@ -2359,7 +2354,7 @@
                 <desc>61 Siehe dazu</desc>
                 <bibl>Nader/Todd, The Disputing Process &#8212; Law in Ten Societies (New York 1978).</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="100">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="101">
                 <monogr>
                     <title level="m">The Disputing Process &#8212; Law in Ten Societies</title>
                     <author>
@@ -2389,7 +2384,7 @@
                 <desc>mwNachw.</desc>
                 <bibl>; Blazicek/Janeksela (oben N. 30) 235 f., 242.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="101">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="102">
                 <monogr>
                     <title level="m">Problem in der Kriminologie</title>
                     <author>
@@ -2400,7 +2395,7 @@
                     <imprint/>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="102">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="103">
                 <monogr>
                     <author/>
                     <author>
@@ -2426,7 +2421,7 @@
                     Crim, and Pen. 6 (1978) 221 ff.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="103">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="104">
                 <monogr>
                     <title level="m">Comparative Crime Victimization Surveys &#8212; Some Problems and Results</title>
                     <title level="j">Int. J. Crim, and Pen</title>
@@ -2460,7 +2455,7 @@
                     (1978) 109 ff.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="104">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="105">
                 <monogr>
                     <title level="m">Legal Problems and the Citizen</title>
                     <author>
@@ -2484,7 +2479,7 @@
                     </imprint>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="105">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="106">
                 <monogr>
                     <title level="m">Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in
                         International Comparison
@@ -2501,7 +2496,7 @@
                     <biblScope unit="volume" from="7" to="7">7</biblScope>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="106">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="107">
                 <monogr>
                     <title level="m">Rechtspro bleme oder private Schwierigkeiten &#8212; Die Inanspruchnahme von
                         Rechtshilfe
@@ -2545,7 +2540,7 @@
                     Recht (1975) 196 ff.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="107">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="108">
                 <monogr>
                     <title level="m">Comparative Studies on the Attitudes Towards Various Legal Systems</title>
                     <title level="j">Polish Sociological Bulletin</title>
@@ -2562,7 +2557,7 @@
                     <biblScope unit="page" from="83">83</biblScope>
                 </monogr>
             </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="108">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="109">
                 <monogr>
                     <title level="m">Zur Effek tivit&#228;t der Rechtssoziologie: die Rekonstruktion der Gesellschaft
                         durch
@@ -2589,7 +2584,7 @@
                     (Den Haag 1977) 85 (88 ff.).
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="109">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="110">
                 <monogr>
                     <title level="m">Legal Consciousness as a Research Problem</title>
                     <title level="j">European Yearbook in Law and Sociology 1977</title>
@@ -2617,7 +2612,7 @@
                     Law (Bristol 1973) 101 (126).
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="110">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="111">
                 <monogr>
                     <title level="m">The Legal Consciousness&#8220;: A Survey of Research on Knowledge and Opinion about
                         Law
@@ -2661,7 +2656,7 @@
                     ff.).
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="111">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="112">
                 <monogr>
                     <title level="m">Public Opinion on Law</title>
                     <title level="m">Knowledge and Opinion about Law</title>
@@ -2683,7 +2678,7 @@
                     schung, Bd. 4 (3. Aufl. 1974) 405 (414 f.).
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="112">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="113">
                 <monogr>
                     <title level="m">Interkultureller Vergleich</title>
                     <title level="m">Handbuch der empirischen Sozialfor schung</title>
@@ -2713,17 +2708,14 @@
             <desc type="input-segmented">
                 <desc>70 Siehe</desc>
                 <bibl>Hegenbarth, &#220;ber methodische und organisatorische Grenzen der empirischen Rechtsforschung in
-                    Entwicklungsl&#228;ndern, Informationsbrief f&#252;r Rechtssoziologie April 1979,
+                    Entwicklungsl&#228;ndern, Informationsbrief f&#252;r Rechtssoziologie April 1979, Sonderheft 2, S. 5
+                    ff.
                 </bibl>
-                <desc>Sonderheft 2
-                    ,
-                </desc>
-                <bibl>S. 5 ff.</bibl>
                 <desc>mwNachw
                     .
                 </desc>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="113">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="114">
                 <monogr>
                     <title level="m">&#220;ber methodische und organisatorische Grenzen der empirischen Rechtsforschung
                         in
@@ -2738,6 +2730,7 @@
                     <imprint>
                         <date>1979</date>
                     </imprint>
+                    <biblScope unit="issue" from="2" to="2">Sonderheft 2</biblScope>
                 </monogr>
             </biblStruct>
         </listBibl>
@@ -2751,7 +2744,7 @@
                     Mexiko (1976) 37 ff.
                 </bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="114">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="115">
                 <monogr>
                     <title level="m">Recht und Konflikt &#8212; Eine soziologische Untersuchung privatrechtlicher
                         Konflikte in
@@ -2774,7 +2767,7 @@
                 <desc>72 Vgl.</desc>
                 <bibl>Heintz (oben N. 69) 407.</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="115">
+            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="116">
                 <monogr>
                     <author>
                         <persName>
@@ -2794,18 +2787,11 @@
             <desc type="input-segmented">
                 <desc>73 Da die theoretischen und technischen Erfordernisse solcher Vergleiche in der Tat
                     komplex sind, bestand in der Kriminologie noch Mitte der sechziger Jahre internationale &#220;berein
-                    stimmung, da&#223; vergleichenden Studien kein Vorrang zu geben sei
-
-                    .
+                    stimmung, da&#223; vergleichenden Studien kein Vorrang zu geben sei.
                 </desc>
                 <desc>Dazu</desc>
                 <bibl>Friday, Problems in Comparative Criminology, Int. J. Crim. 1 (1973) 151 (152).</bibl>
             </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="116">
-                <monogr>
-                    <imprint/>
-                </monogr>
-            </biblStruct>
             <biblStruct xmlns="http://www.tei-c.org/ns/1.0" n="117">
                 <monogr>
                     <title level="m">Problems in Comparative Criminology</title>
diff --git a/convert-anystyle-data/tei-to-biblstruct-gs.ipynb b/convert-anystyle-data/tei-to-biblstruct-gs.ipynb
index 37bc874..f8b7381 100644
--- a/convert-anystyle-data/tei-to-biblstruct-gs.ipynb
+++ b/convert-anystyle-data/tei-to-biblstruct-gs.ipynb
@@ -7,24 +7,43 @@
     "\n",
     "We need gold standard data which has a reliable way of being able, given a specific input data, to compare the output data of different processors against this gold standard.\n",
     "\n",
-    "The issue here is that we need to deal with individual footnotes and the multiple references that they contain, as well as bibliographies at the end of articles. More specifically, the annotated TEI source contains both `<note>` elements for the footnotes and/or `<listBibl>` elements for bibliographies. The XSLT-based `bibl` to `biblStruct` contains only `biblStruct` elements with no information about their origin. \n",
+    "The issue here is that we need to deal with individual footnotes and the multiple references that they contain, as well as bibliographies at the end of articles. More specifically, the annotated TEI source contains both `<note>` elements for the footnotes and/or `<listBibl>` elements for bibliographies and in-text reference strings. The XSLT-based `bibl` to `biblStruct` contains only `biblStruct` elements with no information about their origin. \n",
     "\n",
     "We therefore need an output with the following TEI schema: \n",
     "```xml\n",
     "<TEI>\n",
     "    <teiHeader />\n",
     "   <standOff>\n",
-    "        <!-- each contained footnote as listBibl -->\n",
-    "        <listBibl n=\"footnote number\">\n",
-    "            <desc>raw footnote string, containing one or more references and other commentary</desc>\n",
+    "        <!-- footnotes -->\n",
+    "        <listBibl type=\"footnote\" n=\"footnote number\">\n",
+    "            <desc type=\"input-full\">raw reference strings, containing one or more references and other commentary</desc>\n",
+    "            <desc type=\"input-segmented\">\n",
+    "                <!-- the raw reference string segemented into bibliographic (<bibl>) and non-bibliographic (<desc>) components\n",
+    "                    this allows to submit the bibliographic components to processors which do not know how to deal with mixed content -->\n",
+    "            </desc>\n",
     "            <!-- each contained reference as biblStruct, including empty ones, e.g. when there is simply internal references such as \"Op. cit, p. 23\" or \"see Doe (n.5), p. 2\" -->\n",
     "            <biblStruct />\n",
     "            <biblStruct />\n",
     "        </listBibl>\n",
-    "        <!--  in addition to footnotes containing refs, there might be a full bibliography or out-of-band reference-->\n",
-    "        <!--  in this case, each reference string is contained in a single <listBibl><biblStruct/></listBibl> -->\n",
+    "\n",
+    "        <!--  in-text reference list -->\n",
+    "        <listBibl>\n",
+    "            <desc type=\"input-full\">raw reference string, containing one or more references and other commentary</desc>\n",
+    "            <desc type=\"input-segmented\">\n",
+    "                <!-- the raw reference string segemented into bibliographic (<bibl>) and non-bibliographic (<desc>) components-->\n",
+    "            </desc>\n",
+    "            <!-- each contained reference as biblStruct, including empty ones -->\n",
+    "            <biblStruct />\n",
+    "            <biblStruct />\n",
+    "        </listBibl>\n",
+    "\n",
+    "        <!--  full bibliography: each reference string in the bibliography is contained in a single <listBibl> -->\n",
     "        <listBibl>\n",
-    "            <desc>full raw reference string of bibliography entry or out-of-band reference in the text</desc>\n",
+    "            <desc type=\"input-full\">raw reference strings, containing exactly one reference</desc>\n",
+    "            <desc type=\"input-segmented\">\n",
+    "                <!-- the raw reference string in one <bibl> -->\n",
+    "            </desc>\n",
+    "            <!-- each contained reference as biblStruct -->\n",
     "            <biblStruct />\n",
     "        </listBibl>\n",
     "    </standOff>\n",
@@ -46,33 +65,13 @@
   {
    "metadata": {
     "ExecuteTime": {
-     "end_time": "2024-10-03T21:37:25.513732Z",
-     "start_time": "2024-10-03T21:37:25.499835Z"
+     "end_time": "2024-10-04T10:12:51.729209Z",
+     "start_time": "2024-10-04T10:12:51.693708Z"
     }
    },
    "cell_type": "code",
    "source": [
-    "import os\n",
-    "from glob import glob\n",
-    "from lxml import etree\n",
-    "\n",
-    "# TEI namespace\n",
-    "tei_namespace = \"http://www.tei-c.org/ns/1.0\"\n",
-    "ns = {\"tei\": tei_namespace }\n",
-    "\n",
-    "def add_number_to_bibl(dir_path):\n",
-    "    \"\"\"written by GPT-4\"\"\"\n",
-    "    for file_path in glob(f'{dir_path}/*.xml'):\n",
-    "        print(f' - Processing {file_path}')\n",
-    "        n = 1\n",
-    "        tree = etree.parse(file_path)\n",
-    "        for element in tree.xpath('*//tei:bibl', namespaces=ns):\n",
-    "            element.attrib['n'] = str(n)\n",
-    "            n += 1\n",
-    "        pretty_tree = etree.tostring(tree, pretty_print=True, encoding='utf-8')\n",
-    "        with open(file_path, 'wb') as file:\n",
-    "            file.write(pretty_tree)\n",
-    "\n",
+    "from lib.gold_standard import add_number_to_bibl\n",
     "add_number_to_bibl('tei-bibl-corrected')\n"
    ],
    "id": "3ed0e53243fed904",
@@ -88,7 +87,7 @@
      ]
     }
    ],
-   "execution_count": 28
+   "execution_count": 1
   },
   {
    "cell_type": "markdown",
@@ -112,8 +111,8 @@
    "metadata": {
     "collapsed": false,
     "ExecuteTime": {
-     "end_time": "2024-10-03T22:02:35.515520Z",
-     "start_time": "2024-10-03T22:02:34.576017Z"
+     "end_time": "2024-10-04T10:12:56.588816Z",
+     "start_time": "2024-10-04T10:12:55.565372Z"
     }
    },
    "id": "ec39149134021704",
@@ -131,12 +130,12 @@
        "''"
       ]
      },
-     "execution_count": 36,
+     "execution_count": 2,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
-   "execution_count": 36
+   "execution_count": 2
   },
   {
    "cell_type": "markdown",
@@ -151,153 +150,7 @@
   {
    "cell_type": "code",
    "source": [
-    "from lxml import etree\n",
-    "import os\n",
-    "from glob import glob\n",
-    "from copy import deepcopy\n",
-    "from lib.string import remove_whitespace, prettify\n",
-    "from IPython.display import display, Markdown\n",
-    "from pathlib import Path\n",
-    "\n",
-    "def remove_encoding_declaration(xml_string):\n",
-    "    return xml_string.replace('<?xml version=\"1.0\" encoding=\"UTF-8\"?>', '')\n",
-    "\n",
-    "def create_gold_standard(bibl_content, biblstruct_content, verbose=False):\n",
-    "    # TEI namespace\n",
-    "    tei_namespace = \"http://www.tei-c.org/ns/1.0\"\n",
-    "    ns = {\"tei\": tei_namespace }\n",
-    "    \n",
-    "    # get source trees and elements\n",
-    "    bibl_tree = etree.fromstring(remove_encoding_declaration(bibl_content))\n",
-    "    bibl_struct_tree = etree.fromstring(remove_encoding_declaration(biblstruct_content))\n",
-    "\n",
-    "    # create output document\n",
-    "    output_tree = etree.Element(\"TEI\", {'xmlns':tei_namespace})\n",
-    "    tei_header = bibl_struct_tree.xpath('./tei:teiHeader', namespaces=ns)[0]\n",
-    "    output_tree.append(deepcopy(tei_header))\n",
-    "    standoff = etree.SubElement(output_tree, \"standOff\")\n",
-    "    \n",
-    "    # keep track of parent, which can be \"note\" or \"listBibl\"\n",
-    "    current_source_parent = None\n",
-    "    # keep track of target listBibl node\n",
-    "    current_target_parent = None\n",
-    "    \n",
-    "    process_log = []\n",
-    "    \n",
-    "    # iterate over bibl elements\n",
-    "    for bibl_element in bibl_tree.xpath('//tei:bibl', namespaces=ns):\n",
-    "        # node parent\n",
-    "        source_parent = bibl_element.getparent()\n",
-    "        # if the parent changes, create a new target parent \n",
-    "        if source_parent != current_source_parent:\n",
-    "            current_source_parent = source_parent\n",
-    "            parent_tag = etree.QName(current_source_parent).localname\n",
-    "            parent_type = current_source_parent.attrib['type']\n",
-    "            \n",
-    "            if parent_type == \"footnote\" or parent_type == \"inText\":\n",
-    "                source_node = source_parent\n",
-    "            else:\n",
-    "                source_node = bibl_element\n",
-    "                # invalidate the pointer to the current source parent to create a new listBibl the next time\n",
-    "                current_source_parent = None\n",
-    "\n",
-    "            attrs = {\n",
-    "                \"type\": parent_type,\n",
-    "            }\n",
-    "\n",
-    "            footnote_number = None\n",
-    "            if parent_type == \"footnote\":\n",
-    "                footnote_number = attrs['n'] = source_node.attrib['n'] \n",
-    "            \n",
-    "            # create mew listBibl element for output element\n",
-    "            current_target_parent = etree.SubElement(standoff, \"listBibl\", attrs)\n",
-    "\n",
-    "            # create <desc> child to store the full input string \n",
-    "            input_full = etree.SubElement(current_target_parent, \"desc\", {'type': 'input-full'})\n",
-    "            child_xml = etree.tostring(source_parent, method=\"text\", encoding='utf-8').decode()\n",
-    "            xml_content_text = remove_whitespace(child_xml)\n",
-    "            if footnote_number:\n",
-    "                xml_content_text = f'{footnote_number} {xml_content_text}'\n",
-    "            input_full.text = xml_content_text\n",
-    "\n",
-    "            # create <desc> child to store the segmented input string \n",
-    "            input_segmented = etree.SubElement(current_target_parent, \"desc\", {'type': 'input-segmented'})\n",
-    "            \n",
-    "            # Generate the high-level segments of the input string\n",
-    "            # For footnotes and in-text references, these are usually one or more <bibl> elements;\n",
-    "            # for bibliographies, there is one <bibl> element per <listBibl> element. \n",
-    "            # As there aren't any suitable other legal children elements of <desc>, we use <desc> and <bibl> to\n",
-    "            # segment the raw reference strings:\n",
-    "            # - we create a child <desc> element as direct child of the target <desc> element for each \n",
-    "            #   non-bibliographic element within the source <bibl> so that we don't have a nested structure\n",
-    "            # - we create a <bibl> element with the raw string content of the source <bibl> without the <seg type=\"comment\"> parts\n",
-    "            for idx, elem in enumerate(source_parent):\n",
-    "                last_element = None\n",
-    "                last_element_parts = None\n",
-    "                for segment in elem:\n",
-    "                    segment_text_content = etree.tostring(segment, method=\"text\", encoding='utf-8').decode().strip()\n",
-    "                    if 'type' in segment.attrib:\n",
-    "                        if segment.attrib['type'] == 'comment' or segment.attrib['type'] == 'signal':\n",
-    "                            comment_child = etree.SubElement(input_segmented, \"desc\")\n",
-    "                            comment_child.text = segment_text_content\n",
-    "                            last_element = None\n",
-    "                    else:\n",
-    "                        if last_element is None:\n",
-    "                            last_element = etree.SubElement(input_segmented, \"bibl\")\n",
-    "                            last_element_parts = [segment_text_content]\n",
-    "                        else:\n",
-    "                            last_element_parts.append(segment_text_content)\n",
-    "                        last_element.text = remove_whitespace(\" \".join(last_element_parts))\n",
-    "                    \n",
-    "            if footnote_number:\n",
-    "                input_segmented[0].text = f'{footnote_number} {input_segmented[0].text}'\n",
-    "            \n",
-    "            if verbose:\n",
-    "                process_log.append(f' - Analyzing \"{xml_content_text[:200]} [...]\"')\n",
-    "            \n",
-    "        # find correspondent biblStruct data \n",
-    "        if 'n' not in bibl_element.attrib:\n",
-    "            raise RuntimeError(f\"Missing 'n' attribute for bibl element: {bibl_element}\")\n",
-    "        bibl_n = bibl_element.attrib['n']\n",
-    "        \n",
-    "        bibl_struct_matches = bibl_struct_tree.xpath(f\"//tei:biblStruct[@n='{bibl_n}']\", namespaces=ns)\n",
-    "        if len(bibl_struct_matches) > 0:\n",
-    "            # found it - make a copy and remove unneeded attributes\n",
-    "            bibl_struct_copy = deepcopy(bibl_struct_matches[0])\n",
-    "            if bibl_struct_copy.attrib['source']:\n",
-    "                del bibl_struct_copy.attrib['source']\n",
-    "            # add it to target listBibl\n",
-    "            current_target_parent.append(bibl_struct_copy)\n",
-    "        else:\n",
-    "            display(Markdown(\"\\n\".join(process_log)))\n",
-    "            raise RuntimeError(f\"Could not find matching biblStruct element with id '{bibl_n}'.\")\n",
-    "    \n",
-    "    display(Markdown(\"\\n\".join(process_log)))\n",
-    "    return (etree.tostring(output_tree)).decode()\n",
-    "\n",
-    "\n",
-    "def create_all_gold_standards(bibl_dir, biblstruct_dir, biblstruct_gold_dir, verbose=False):\n",
-    "    for file_path in glob(f'{bibl_dir}/*.xml'):\n",
-    "        file_id = os.path.basename(file_path).replace(\".xml\", \"\")\n",
-    "        \n",
-    "        bibl_path = file_path\n",
-    "        biblstruct_path = f'{biblstruct_dir}/{file_id}.biblstruct.xml'\n",
-    "        biblstruct_gs_path = f'{biblstruct_gold_dir}/{file_id}.xml'\n",
-    "\n",
-    "        # log\n",
-    "        md_lines = [f'### Processing {file_id}']\n",
-    "        md_lines.append(f'Files: [TEI/bibl]({Path(bibl_path).as_posix()}) | [TEI/biblStruct]({Path(biblstruct_path).as_posix()}) | [TEI/biblStruct Gold Standard]({Path(biblstruct_gs_path).as_posix()})')\n",
-    "        display(Markdown(\"\\n\".join(md_lines)))\n",
-    "\n",
-    "        with (open(bibl_path, 'r', encoding='utf-8') as bibl_file, \n",
-    "              open(biblstruct_path, 'r', encoding='utf-8') as biblStruct_file):\n",
-    "            bibl_content = bibl_file.read()\n",
-    "            biblStruct_content = biblStruct_file.read()\n",
-    "\n",
-    "        output_data = create_gold_standard(bibl_content, biblStruct_content, verbose=verbose)\n",
-    "        \n",
-    "        with open(biblstruct_gs_path, 'w', encoding='utf-8') as output_file:\n",
-    "            output_file.write(output_data)\n",
+    "from lib.gold_standard import create_all_gold_standards\n",
     "\n",
     "create_all_gold_standards('tei-bibl-corrected', 'tei-biblStruct', 'tei-biblStruct-gold', verbose=False)\n",
     "\n"
@@ -305,8 +158,8 @@
    "metadata": {
     "collapsed": false,
     "ExecuteTime": {
-     "end_time": "2024-10-04T08:10:16.789108Z",
-     "start_time": "2024-10-04T08:10:16.478504Z"
+     "end_time": "2024-10-04T10:12:57.936639Z",
+     "start_time": "2024-10-04T10:12:57.819545Z"
     }
    },
    "id": "b658a0ceebfc73d9",
@@ -392,7 +245,7 @@
      "output_type": "display_data"
     }
    ],
-   "execution_count": 1
+   "execution_count": 3
   },
   {
    "cell_type": "code",
-- 
GitLab