diff --git a/convert-anystyle-data/anystyle-to-tei.ipynb b/convert-anystyle-data/anystyle-to-tei.ipynb
index d4d41618b0401cd62f1ebf708d80c9413ecdc28a..bc825fc1c54f3bc5f515a781b0324c4888ee8aee 100644
--- a/convert-anystyle-data/anystyle-to-tei.ipynb
+++ b/convert-anystyle-data/anystyle-to-tei.ipynb
@@ -777,886 +777,6 @@
     }
    ],
    "execution_count": 6
-  },
-  {
-   "metadata": {},
-   "cell_type": "markdown",
-   "source": [
-    "## Create `biblStruct` that works as a Gold Standard\n",
-    "\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",
-    "\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",
-    "            <!-- 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",
-    "        <listBibl>\n",
-    "            <desc>full raw reference string of bibliography entry or out-of-band reference in the text</desc>\n",
-    "            <biblStruct />\n",
-    "        </listBibl>\n",
-    "    </standOff>\n",
-    "</TEI>\n",
-    "```\n",
-    "The full input string is enclosed in a `<desc>` node as the first child of `<listBibl>`."
-   ],
-   "id": "3b4192e5e772efda"
-  },
-  {
-   "metadata": {},
-   "cell_type": "markdown",
-   "source": "We first need to create `biblStruct` from the corrected `bibl` annoations:",
-   "id": "313079cbe2efa93a"
-  },
-  {
-   "metadata": {
-    "ExecuteTime": {
-     "end_time": "2024-09-29T19:42:16.385588Z",
-     "start_time": "2024-09-29T19:42:14.416184Z"
-    }
-   },
-   "cell_type": "code",
-   "source": [
-    "from lib.xslt import transform\n",
-    "transform(xslt_path='lib/xslt/convert_tei-to-biblstruct_bibl.xsl',\n",
-    "          input_path='tei-bibl-corrected',\n",
-    "          output_path='tei-biblStruct',\n",
-    "          rename_extension=('-bibl_biblStruct.TEIP5.xml','.biblStruct.xml')).stderr"
-   ],
-   "id": "cb8e34536ae13125",
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Applied lib\\xslt\\convert_tei-to-biblstruct_bibl.xsl to files in tei-bibl-corrected and saved result in tei-biblStruct.\n"
-     ]
-    },
-    {
-     "data": {
-      "text/plain": [
-       "''"
-      ]
-     },
-     "execution_count": 1,
-     "metadata": {},
-     "output_type": "execute_result"
-    }
-   ],
-   "execution_count": 1
-  },
-  {
-   "metadata": {},
-   "cell_type": "markdown",
-   "source": "Now combine the `bibl` and `biblStruct` to create the gold standard `biblStruct`.",
-   "id": "a1fccc88ce0793af"
-  },
-  {
-   "metadata": {
-    "ExecuteTime": {
-     "end_time": "2024-09-29T19:44:45.779456Z",
-     "start_time": "2024-09-29T19:44:45.480403Z"
-    }
-   },
-   "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\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):\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",
-    "    # 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",
-    "            if parent_tag == \"note\":\n",
-    "                source_node = source_parent\n",
-    "            elif parent_tag == \"listBibl\":\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",
-    "            else:\n",
-    "                raise RuntimeError(\"Invalid parent node:\" + parent_tag)\n",
-    "            \n",
-    "            # reconstruct the unparsed input text for the \n",
-    "            gs_input = remove_whitespace(etree.tostring(source_node, method=\"text\", encoding='utf-8').decode()) \n",
-    "            print (f' - Analyzing \"{gs_input[:200]}...\"')\n",
-    "            attrs = {}\n",
-    "            if parent_tag == \"note\":\n",
-    "                footnote_number = attrs['n'] = source_node.attrib['n']\n",
-    "                gs_input = f'{footnote_number} {gs_input}'\n",
-    "            \n",
-    "            # create mew listBibl element for output element\n",
-    "            current_target_parent = etree.SubElement(standoff, \"listBibl\", attrs)\n",
-    "            \n",
-    "            # add raw reference string as <desc> \n",
-    "            etree.SubElement(current_target_parent, \"desc\").text = gs_input\n",
-    "        \n",
-    "        # find correspondent biblStruct data by matching the title\n",
-    "        # todo: there could be edge cases where a title is not unique!\n",
-    "        title = bibl_element.xpath('.//tei:title/text()', namespaces=ns)\n",
-    "        if len(title) > 0:\n",
-    "            title = title[0]\n",
-    "            print(f'     - Reference: {title}...')\n",
-    "            bibl_struct_matches = bibl_struct_tree.xpath(f\"//tei:biblStruct[descendant::tei:title[text()='{title}']]\", 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",
-    "                raise RuntimeError(\"Could not find matching biblStruct element.\")\n",
-    "        else:\n",
-    "            print(f'     - Reference with no title element - adding empty biblStruct')\n",
-    "            etree.SubElement(current_target_parent, \"biblStruct\")\n",
-    "            \n",
-    "    return etree.tostring(output_tree, pretty_print=True)\n",
-    "\n",
-    "\n",
-    "def create_all_gold_standards(bibl_dir, biblstruct_dir, biblstruct_gold_dir):\n",
-    "    for file_path in glob(f'{bibl_dir}/*.xml'):\n",
-    "        file_id = os.path.basename(file_path).replace(\".xml\", \"\")\n",
-    "        print(f'Processing {file_id}')\n",
-    "        bibl_path = file_path\n",
-    "        biblstruct_path = f'{biblstruct_dir}/{file_id}.biblstruct.xml'\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)\n",
-    "        \n",
-    "        with open(f'{biblstruct_gold_dir}/{file_id}.xml', 'w', encoding='utf-8') as output_file:\n",
-    "            output_file.write(output_data.decode())\n",
-    "\n",
-    "create_all_gold_standards('tei-bibl-corrected', 'tei-biblStruct', 'tei-biblStruct-gold')\n",
-    "\n"
-   ],
-   "id": "ec1ac88441d6b9e5",
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Processing 10.1111_1467-6478.00057\n",
-      " - Analyzing \"A. Phillips, ‘Citizenship and Feminist Politics’ in Citizenship, ed. G. Andrews (1991) 77....\"\n",
-      "     - Reference: Citizenship and Feminist Politics...\n",
-      " - Analyzing \"T. Brennan and C. Pateman, ‘“Mere Auxiliaries to the Commonwealth”: Women and the Origins of Liberalism’ (1979) 27 Political Studies 183....\"\n",
-      "     - Reference: Mere Auxiliaries to the Commonwealth”: Women and the Origins of Liberalism...\n",
-      " - Analyzing \"M. Sawer and M. Simms, A Woman’s Place: Women and Politics in Australia (2nd ed., 1993)....\"\n",
-      "     - Reference: A Woman’s Place: Women and Politics in Australia...\n",
-      " - Analyzing \"I have explored the gendered nature of citizenship at greater length in two complementary papers : ‘Embodying the Citizen’ in Public and Private: Feminist Legal Debates, ed. M. Thornton (1995) and ‘Hi...\"\n",
-      "     - Reference: Embodying the Citizen...\n",
-      "     - Reference: Historicising Citizenship: Remembering Broken Promises...\n",
-      " - Analyzing \"S. Walby, ‘Is Citizenship Gendered?’ (1994) 28 Sociology 379...\"\n",
-      "     - Reference: Is Citizenship Gendered?...\n",
-      " - Analyzing \"I. Kant, ‘Metaphysical First Principles of the Doctrine of Right’ in The Metaphysics of Morals (trans. M. Gregor, 1991) 125–6 s. 146....\"\n",
-      "     - Reference: Metaphysical First Principles of the Doctrine of Right...\n",
-      " - Analyzing \"U. Vogel, ‘Marriage and the Boundaries of Citizenship’ in The Condition of Citizenship, ed. B. van Steenbergen (1994) 75....\"\n",
-      "     - Reference: Marriage and the Boundaries of Citizenship...\n",
-      " - Analyzing \"N. Fraser and L. Gordon, ‘Civil Citizenship against Social Citizenship?’ in id., p. 97....\"\n",
-      "     - Reference: Civil Citizenship against Social Citizenship?...\n",
-      " - Analyzing \"Vogel, id., p. 79. W. Blackstone, Commentaries (Facsimile of 1st. ed. of 1765–69, 1979) 442....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Commentaries...\n",
-      " - Analyzing \"Vogel, op. cit., n. 7, pp. 80–1....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"F. Haug (ed.), Female Sexualization: A Collective Work of Memory (1987) 196....\"\n",
-      "     - Reference: Female Sexualization: A Collective Work of Memory...\n",
-      " - Analyzing \"A. Bottomley, ‘Self and Subjectivities: Languages of Claim in Property Law’ (1993) 20 J. of Law and Society 56 61....\"\n",
-      "     - Reference: Self and Subjectivities: Languages of Claim in Property Law...\n",
-      " - Analyzing \"D. West, ‘Power and Formation: New Foundations for a Radical Concept of Power’ (1987)...\"\n",
-      "     - Reference: Power and Formation: New Foundations for a Radical Concept of Power...\n",
-      " - Analyzing \"Inquiry 137, 145. Compare M. Foucault, Power/Knowledge: Selected Interviews and Other Writings 1972–1977, ed. C. Gordon (1980) 98....\"\n",
-      "     - Reference: Inquiry 137...\n",
-      "     - Reference: Power/Knowledge: Selected Interviews and Other Writings 1972–1977...\n",
-      " - Analyzing \"For a detailed analysis of legal method and the political role it plays, see M.J. Mossman, ‘Feminism, and Legal Method: The Difference it Makes’ (1986) 3 Aust. J. of Law and Society 30....\"\n",
-      "     - Reference: Feminism, and Legal Method: The Difference it Makes...\n",
-      " - Analyzing \"H.S. Maine, Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas (10th ed., 1912) 174....\"\n",
-      "     - Reference: Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas...\n",
-      " - Analyzing \"This was particularly the case in the United States of America. See M.J. Horwitz, The Transformation of American Law, 1780–1860 (1977) 160....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: The Transformation of American Law, 1780–1860...\n",
-      " - Analyzing \"M. Grossberg, Governing the Hearth: Law and the Family in Nineteenth-Century America (1985) ix....\"\n",
-      "     - Reference: Governing the Hearth: Law and the Family in Nineteenth-Century America...\n",
-      " - Analyzing \"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 ...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Married Women’s Separate Property in England, 1660–1833...\n",
-      " - Analyzing \"Siegel presents a valuable study of the changing norms of marriage in the context of wife beating. See R.B. Siegel, ‘“The Rule of Love”: Wife Beating as Prerogative and Privacy’ (1996) 105 Yale Law J....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: The Rule of Love”: Wife Beating as Prerogative and Privacy...\n",
-      " - Analyzing \"C. Pateman, The Sexual Contract (1988). For further analysis of the marriage contract, see K. O’Donovan, Family Matters (1993), especially 43–59....\"\n",
-      "     - Reference: The Sexual Contract...\n",
-      "     - Reference: Family Matters...\n",
-      " - Analyzing \"Crimes (Sexual Assault) Amendment Act 1981 (N.S.W .); Criminal Law Consolidation Act Amendment Act 1976 (S.A .); Criminal Code (Sexual Offences) Act 1987 (Tas .); Crimes (Sexual Offences) 1991 (Vic .)...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: All E.R...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"M. Freeman, ‘Contracting in the Haven: Balfour v. Balfour Revisited’ in Exploring the Boundaries of Contract, ed. R. Halson (1996) 74 R. Collier, Masculinity, Law and the Family (1995) 127 and through...\"\n",
-      "     - Reference: Contracting in the Haven: Balfour v. Balfour Revisited...\n",
-      "     - Reference: Masculinity, Law and the Family...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"P.S. Atiyah, An Introduction to the Law of Contract (5th ed., 1995) 3....\"\n",
-      "     - Reference: An Introduction to the Law of Contract...\n",
-      " - Analyzing \"The Australian Law Reform Commission has addressed the issue and recommended recognition of prenuptial agreements. See A.L.R.C., Matrimonial Property, report no. 37 (1987); A.L.R.C. ., Report of the J...\"\n",
-      "     - Reference: Matrimonial Property...\n",
-      "     - Reference: Private Ordering in Family Law – Will Women Benefit?...\n",
-      "     - Reference: An Essay in the Deconstruction of Contract Doctrine...\n",
-      " - Analyzing \"L. J. Weitzman, The Marriage Contract: Spouses, Lovers, and the Law (1981) 347 ff....\"\n",
-      "     - Reference: The Marriage Contract: Spouses, Lovers, and the Law...\n",
-      " - Analyzing \"Grossberg, op. cit., n. 18, p. 52....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Balfour v. Balfour [1919] 2 K.B. 571....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"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...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Family Law and the Pursuit of Intimacy...\n",
-      " - Analyzing \"For example, Law Reform (Miscellaneous Provisions) Act 1970 (U.K .); Domestic Relations Act 1975 (N.Z .); Marriage Act Amendment Act 1976 (Cwth .)...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"G.S. Frost, Promises Broken: Courtship, Class, and Gender in Victorian England (1995); Thornton, op. cit. (1996), n. 4....\"\n",
-      "     - Reference: Promises Broken: Courtship, Class, and Gender in Victorian England (1995)...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Grossberg, op. cit., n. 18, p. 38....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Compare U. Vogel, ‘Is Citizenship Gender-Specific?’ in The Frontiers of Citizenship, eds. U. Vogel and M. Moran (1991) 59....\"\n",
-      "     - Reference: Is Citizenship Gender-Specific?...\n",
-      " - Analyzing \"See, for example, Bradwell v. Illinois 83 U.S. (16 Wall) 130 (1873)....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Compare J. Pahl, Money and Marriage (1989) 5....\"\n",
-      "     - Reference: Money and Marriage...\n",
-      " - Analyzing \"Although Australia, like the United Kingdom, has a separate property regime, the courts are endowed with broad powers under the Family Law Act 1975 (Cwth.) to distribute property equitably. For detail...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Australian Family Law in Context: Commentary and Materials...\n",
-      "     - Reference: Management of the Community Estate during an Intact Marriage...\n",
-      "     - Reference: What Causes Fundamental Legal Ideas? Marital Property in England and France in the Thirteenth Century’...\n",
-      " - Analyzing \"The legal construction of masculinity and femininity in family law has been the subject of recent scholarly interest. Notable examples are O’Donovan, op. cit., n. 21 and Collier, op. cit., n. 24....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"For discussion of sex and legal subjecthood, see N. Naffine ‘Sexing the Subject (of Law)’ in Thornton, op. cit. (1995), n. 4....\"\n",
-      "     - Reference: Sexing the Subject (of Law)...\n",
-      " - Analyzing \"Contracts Review Act 1980 (N.S.W .)....\"\n",
-      "     - Reference: Contracts Review Act...\n",
-      " - Analyzing \"J. Nedelsky, Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy (1990), especially 223 ff....\"\n",
-      "     - Reference: Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy...\n",
-      " - Analyzing \"C.B. Macpherson, Democratic Theory: Essays in Retrieval (1973) 120....\"\n",
-      "     - Reference: Democratic Theory: Essays in Retrieval...\n",
-      " - Analyzing \"For example, N. Howell, ‘“Sexually Transmitted Debt”: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers’ (1995) 4 Aust. Feminist Law J. 93....\"\n",
-      "     - Reference: Sexually Transmitted Debt”: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers...\n",
-      " - Analyzing \"P. Baron, ‘The Free Exercise of Her Will: Women and Emotionally Transmitted Debt’ (1995) 13 Law in Context 23....\"\n",
-      "     - Reference: The Free Exercise of Her Will: Women and Emotionally Transmitted Debt...\n",
-      " - Analyzing \"id., p. 24 B. Fehlberg, ‘The Husband, the Bank, the Wife and Her Signature’ (1994) 57 Modern Law Rev. 467 468. See, also, Barclays Bank v. O’Brien [1994] 1 A.C. 180, at 185 per Brown-Wilkinson L...\"\n",
-      "     - Reference: The Husband, the Bank, the Wife and Her Signature...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Baron, op. cit., n. 44, p. 34 M. Richardson, ‘Protecting Women who provide Security for a Husband’s, Partner’s or Child’s Debts. The Value and Limits of an Economic Perspective’ (1996) 16 Legal Studie...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Protecting Women who provide Security for a Husband’s, Partner’s or Child’s Debts. The Value and Limits\n",
-      "            of an Economic Perspective’...\n",
-      " - Analyzing \"Examples are legion, and by no means confined to the more sensational criminal law cases picked up by the media, such as R. v. Johns, Supreme Court of South Australia, 26 August 1992 (unreported) in w...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"B. Fehlberg, ‘The Husband, the Bank, the Wife and Her Signature – the Sequel’ (1996) 59 Modern Law Rev. 675....\"\n",
-      "     - Reference: The Husband, the Bank, the Wife and Her Signature – the Sequel...\n",
-      " - Analyzing \"National Australia Bank Ltd v. Garcia (1996) 39 N.S.W.L.R. 577 (N.S.W.C.A.). 50 (1991) 25 N.S.W.L.R. 32 (C.A.)....\"\n",
-      "     - Reference: N.S.W.L.R...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"1994) A.S.C. 56–268 (N.S.W.C.A.)....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Based on the Trade Practices Act 1974 (Cwth.), s. 52 and the Contracts Review Act 1980 (N.S.W .). 54 (1994) A.S.C. 56–270 (N.S.W.C.A .)...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"A number of recent English cases have also turned on the question of whether the wife received independent legal advice. The House of Lords considered the issue in Barclays Bank v. O’Brien [1994] 1 A....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"See I.J. Hardingham and M.A. Neave, Australian Family Property Law (1984) 94....\"\n",
-      "     - Reference: Australian Family Property Law...\n",
-      " - Analyzing \"Compare K. O’Donovan, Sexual Divisions in Law (1985), especially 112–18....\"\n",
-      "     - Reference: Sexual Divisions in Law...\n",
-      " - Analyzing \"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 bro...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: The New Property...\n",
-      "     - Reference: The New Family and the New Property...\n",
-      " - Analyzing \"1992) 29 N.S.W.L.R. 188 (C.A .)...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"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 o...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Property Rights and Third Party Creditors – the Scope and Limitations of Equitable Doctrines...\n",
-      " - Analyzing \"For discussion, see J. Riley, ‘The Property Rights of Home-Makers under General Law: Bryson v. Bryant’ (1994) 16 Sydney Law Rev. 412....\"\n",
-      "     - Reference: The Property Rights of Home-Makers under General Law: Bryson v. Bryant...\n",
-      " - Analyzing \"The Justice T. E. Lindenmayer and P.A. Doolan, ‘When Bankruptcy and Family Law Collide’ (1994) 8 Aust. J. Family Law 111 133....\"\n",
-      "     - Reference: When Bankruptcy and Family Law Collide...\n",
-      " - Analyzing \"B. Bennett, ‘The Economics of Wifing Services: Law and Economics on the Family’ (1991) 18 J. of Law and Society 206....\"\n",
-      "     - Reference: The Economics of Wifing Services: Law and Economics on the Family...\n",
-      " - Analyzing \"O’Donovan, op. cit., n. 57; Thornton, op. cit. (1995), n. 4....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"N.S.W.C.A., unreported, 23 May 1994....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"For detailed discussion of the ramifications, see L.J. Weitzman, The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in America (1985)....\"\n",
-      "     - Reference: The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in\n",
-      "            America...\n",
-      " - Analyzing \"M.L. Shanley, Feminism, Marriage, and the Law in Victorian England, 1850–1895 (1989) 46....\"\n",
-      "     - Reference: Feminism, Marriage, and the Law in Victorian England, 1850–1895...\n",
-      " - Analyzing \"The move to contract as the governing principle of family law has been noted by commentators. See, for example, Freeman, op. cit., n. 24; Neave, op. cit., n. 26; Regan, op. cit., n. 30....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Bryson v. Bryant in respect of which, it might be noted, the High Court refused leave to appeal. Marcia Neave notes the ‘artificiality’ of the concept of intention in a discussion of the constructive ...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Three Approaches to Family Law Disputes – Intention/Belief, Unjust Enrichment and Unconscionability’...\n",
-      " - Analyzing \"For an interesting case study of this phenomenon, see L. Sarmas, ‘Storytelling and the Law: A Case Study of Louth v. Diprose’ (1994) 19 Melbourne University Law Rev. 701....\"\n",
-      "     - Reference: Storytelling and the Law: A Case Study of Louth v. Diprose...\n",
-      " - Analyzing \"C. Colebrook, ‘Feminist Ethics and Historicism’ (1996) 11 Aust. Feminist Studies 295 300....\"\n",
-      "     - Reference: Feminist Ethics and Historicism...\n",
-      " - Analyzing \"M. Albertson Fineman, The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies (1995) 7....\"\n",
-      "     - Reference: The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies...\n",
-      " - Analyzing \"Compare K. O’Donovan, ‘Should all Maintenance of Spouses be abolished?’ (1982) 45 Modern Law Rev. 424 431–3....\"\n",
-      "     - Reference: Should all Maintenance of Spouses be abolished?...\n",
-      " - Analyzing \"For example, De Facto Relationships Act 1984 (N.S.W .). For detailed analysis of the policy considerations, see M.D.A. Freeman and C.M. Lyon, Cohabitation without Marriage: An Essay in Law and Social ...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Cohabitation without Marriage: An Essay in Law and Social Policy...\n",
-      "     - Reference: De Facto Relationships: Issues Paper...\n",
-      " - Analyzing \"Eds. of the Harvard Law Review, Sexual Orientation and the Law (1990); Dean v. District of Columbia 653 U.S. App. D.C 307 (1995); C. Overington, ‘Why can’t They Marry?’ The Age, 26 April 1997....\"\n",
-      "     - Reference: Sexual Orientation and the Law...\n",
-      "     - Reference: Why can’t They Marry?...\n",
-      " - Analyzing \"For example, Lesbian Gay Rights Service and The Bride Wore Pink; Legal Recognition of Our Relationships (1994)....\"\n",
-      "     - Reference: The Bride Wore Pink; Legal Recognition of Our Relationships...\n",
-      " - Analyzing \"id., p. 3....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Above, n. 30....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "Processing 10.1111_1467-6478.00080\n",
-      " - Analyzing \"For a contrary view, see G. Jones, ‘“Traditional” Legal Scholarship: a Personal View’ in What Are Law Schools For?, ed. P. Birks (1996) 14....\"\n",
-      "     - Reference: “Traditional” Legal Scholarship: a Personal View...\n",
-      " - Analyzing \"R. Goff, ‘The Search for Principle’ (1983) Proceeedings of the British Academy 169, at 171. This is an amplification of Dicey’s remark that ‘[b]y adequate study and careful thought whole departments o...\"\n",
-      "     - Reference: The Search for Principle...\n",
-      "     - Reference: Can English Law be taught at the Universities?...\n",
-      " - Analyzing \"J. Smith, The Law of Contract (1989)...\"\n",
-      "     - Reference: The Law of Contract...\n",
-      " - Analyzing \"See, for example, D. Kennedy, ‘Form and substance in Private Law Ajudication’ (1976) 89 Harvard Law Rev. 1685....\"\n",
-      "     - Reference: Form and substance in Private Law Ajudication...\n",
-      " - Analyzing \"B. Hepple, ‘The Renewal of the Liberal Law Degree’ (1996) Cambridge Law J. 470 at 485 and 481....\"\n",
-      "     - Reference: The Renewal of the Liberal Law Degree...\n",
-      " - Analyzing \"P.A. Thomas, ‘Introduction’ in Socio-Legal Studies, ed. P.A. Thomas (1997) 19....\"\n",
-      "     - Reference: Introduction...\n",
-      " - Analyzing \"R. Cotterrell, Law’s Community (1995) 296....\"\n",
-      "     - Reference: Law’s Community...\n",
-      " - Analyzing \"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 s...\"\n",
-      "     - Reference: Company Law...\n",
-      " - Analyzing \"Some fail wholly. It is difficult to see any effect on academic legal education that resulted from Marre’s report A Time for Change (1988). The Jarratt report on universities produced for the Committe...\"\n",
-      "     - Reference: report A Time for Change...\n",
-      "     - Reference: The Robbins report on higher education, Higher Education...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Committee of Inquiry into Higher Education, Higher Education in the learning society (1997) (the Dearing report); ACLEC, First Report on Legal Education and Training (1996). The Government’s White Pap...\"\n",
-      "     - Reference: Higher Education in the learning society...\n",
-      "     - Reference: First Report on Legal Education and Training...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"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 de...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Working on the Chain Gang?...\n",
-      " - Analyzing \"M. Jeeves J. MacFarlane and A. Boon, ‘Education for Life or for Work?’ (1987) 137 New Law J. 835 at 836....\"\n",
-      "     - Reference: Education for Life or for Work?...\n",
-      " - Analyzing \"T.H. Huxley, ‘Universities: Actual and Ideal’ in T.H. Huxley, Collected Essays : Volume III (1905) 215....\"\n",
-      "     - Reference: Universities: Actual and Ideal...\n",
-      " - Analyzing \"J.S. Mill, ‘Inaugural address to the University of St Andrews’ in Collected Work of John Stuart Mill: Volume XXI, ed. J.M. Robson (1984) 218....\"\n",
-      "     - Reference: Inaugural address to the University of St Andrews...\n",
-      " - Analyzing \"Dearing, op. cit., n. 12, para. 9.32....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"id., para. 5.11....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"F.R. Leavis, Education and the University (1948) 28. Leavis’s view was narrowly nationalistic. For ‘centre’ it would be better to substitute ‘centres’....\"\n",
-      "     - Reference: Education and the University...\n",
-      " - Analyzing \"See, further, A. Bradney, ‘Liberalising Legal Education’ in The Law School: Global Issues, Local Questions, ed. F. Cownie (forthcoming)....\"\n",
-      "     - Reference: Liberalising Legal Education...\n",
-      " - Analyzing \"P. Goodrich ‘Of Blackstone’s Tower: Metephors of Distance and Histories of the English Law School’ in Birks, op. cit., n. 1, p. 59. 23 S. Turow, One L (1977) 106....\"\n",
-      "     - Reference: Of Blackstone’s Tower: Metephors of Distance and Histories of the English Law School...\n",
-      " - Analyzing \"O. Kahn-Freund, ‘Reflections on Legal Education’ (1966) 29 Modern Law Rev. 121 at 129....\"\n",
-      "     - Reference: Reflections on Legal Education...\n",
-      " - Analyzing \"Kahn-Freund believed ... legal argument (Kahn-Freund, id.)....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Leavis, op. cit., n. 20, p. 120....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Leavis has, of course, been widely criticized for the cultural and gender assumptions that lie behind his selection of material to be studied. (See, for example, M. King, The New English Literatures (...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: The New English Literatures...\n",
-      " - Analyzing \"Jurisprudence by Sir John Salmond, ed. G. Willliams (10th ., 1947) at 256 and 257....\"\n",
-      "     - Reference: Jurisprudence by Sir John Salmond...\n",
-      " - Analyzing \"So much so that when other disciplines engage with law they must develop their own concepts to analyse law rather than rely on the concepts already developed in law. See, for example, E. Durkheim The ...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: The Division of Labour in Society...\n",
-      " - Analyzing \"M. Le Brun and R. Johnstone, The Quiet Revolution: Improving Student Learning in Law (1994) 65. On the effect on women students, see ‘Define and Empower: Women Students Consider Feminist Learning’ (19...\"\n",
-      "     - Reference: The Quiet Revolution: Improving Student Learning in Law...\n",
-      "     - Reference: Define and Empower: Women Students Consider Feminist Learning...\n",
-      "     - Reference: The Invisible Author of Legal Authority...\n",
-      " - Analyzing \"R. Collier, ‘Masculinism, Law and Law Teaching’ (1991) 19 International J. of the Sociology of Law 427 at 429....\"\n",
-      "     - Reference: Masculinism, Law and Law Teaching...\n",
-      " - Analyzing \"P. McAuslan, ‘Administrative Law, Collective Consumption and Judicial Policy’ (1983) 46 Modern Law Rev. 1 at 8....\"\n",
-      "     - Reference: Administrative Law, Collective Consumption and Judicial Policy...\n",
-      " - Analyzing \"Le Brun and Johnstone, op. cit, n. 32, pp. 71–5....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Goodrich, op. cit., n. 22....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"P. Samuelson, ‘The Convergence of the Law School and the University’ (1975) 44 The Am. Scholar 256 at 258....\"\n",
-      "     - Reference: The Convergence of the Law School and the University...\n",
-      " - Analyzing \"P. Harris and M. Jones ‘A Survey of Law Schools in the United Kingdom, 1996’ (1997) 31 The Law Teacher 38 at 46....\"\n",
-      "     - Reference: A Survey of Law Schools in the United Kingdom, 1996...\n",
-      " - Analyzing \"J. Wilson, ‘A third survey of university legal education’ (1993) 13 Legal Studies 143 at 152....\"\n",
-      "     - Reference: A third survey of university legal education...\n",
-      " - Analyzing \"Thus, for example, Harris and Jones reported that 59.2 per cent of all particpating institutions offered foriegn language tuition as part of their standard LLB programme. (Harris and Jones, op. cit., ...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"T. Mortimer P. Leighton and N. Whatley, Law Teachers: Lawyers or Academics? (1995)...\"\n",
-      "     - Reference: Law Teachers: Lawyers or Academics?...\n",
-      " - Analyzing \"This would include teaching both non-law degree students and sub-degree students. 44 id., p 35...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"L. Skwarok, ‘Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and Assessment at Hong Kong Polytechnic University’ (1995) 29 The Law Teacher 189 at 189....\"\n",
-      "     - Reference: Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and Assessment at Hong Kong Polytechnic University...\n",
-      " - Analyzing \"N. Bastin, ‘Law, Law Staff and CNAA Business Studies Degree Courses’ (1985) 19 The Law Teacher 12 at 13....\"\n",
-      "     - Reference: Law, Law Staff and CNAA Business Studies Degree Courses...\n",
-      " - Analyzing \"A. Ridley, ‘Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?’ (1994) 28 The Law Teacher 281 at 282....\"\n",
-      "     - Reference: Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?...\n",
-      " - Analyzing \"G. Cartan and T. Vilkinas, ‘Legal Literacy for Managers: The Role of the Educator’ (1990) 24 The Law Teacher 246 at 248....\"\n",
-      "     - Reference: Legal Literacy for Managers: The Role of the Educator...\n",
-      " - Analyzing \"Ridley, op. cit., n. 47, at p. 284....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"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 economi...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"P. Birks, ‘Short Cuts’ in Pressing Problems in the Law, ed. P. Birks (1994) 10–24....\"\n",
-      "     - Reference: Short Cuts...\n",
-      " - Analyzing \"Ridley, op. cit., n. 47, p. 283....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Cartan Vilkinas, op. cit., n. 48, p. 248....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"P. Harris, ‘Curriculum Development in Legal Studies’ (1986) 20 The Law Teacher 110 at 112....\"\n",
-      "     - Reference: Curriculum Development in Legal Studies...\n",
-      " - Analyzing \"Dearing, op. cit., n. 12, para 9.3....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"G. Steiner, Errata: An Examined Life (1997) 20....\"\n",
-      "     - Reference: Errata: An Examined Life...\n",
-      "Processing 10.1515_zfrs-1980-0103\n",
-      " - Analyzing \"Gottfried Baumgärtei, 1976 : Gleicher Zugang zum Recht für alle. Köln....\"\n",
-      "     - Reference: Gleicher Zugang zum Recht für alle....\n",
-      " - Analyzing \"Rolf Bender und Rolf Schumacher, 1980 : Erfolgsbarrieren vor Gericht. Tübingen....\"\n",
-      "     - Reference: Erfolgsbarrieren vor Gericht....\n",
-      " - Analyzing \"Donald Black, 1973 : The Mobilization of Law, in: Journal of Legal Studies 2....\"\n",
-      "     - Reference: The Mobilization of Law...\n",
-      " - Analyzing \"Erhard Blankenburg / Viola Blankenburg / Helmut Morasch, 1972 : Der lange Weg in die Berufung, in: Rolf Bender (Hrsg.): Tatsachenforschung in der Justiz. Tübingen....\"\n",
-      "     - Reference: Der lange Weg in die Berufung...\n",
-      " - Analyzing \"Erhard Blankenburg, 1976 : Nichtkriminalisierung als Struktur und Routine, in: Göppinger, Hans und Günter Kaiser: Kriminologie und Strafverfahren. Stuttgart....\"\n",
-      "     - Reference: Nichtkriminalisierung als Struktur und Routine...\n",
-      " - Analyzing \"Erhard Blankenburg / Klaus Sessar / Wiebke Steffen, 1978 : Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle. Berlin....\"\n",
-      "     - Reference: Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle....\n",
-      " - Analyzing \"Erhard Blankenburg; Siegfried Schönholz, 1979 : Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt....\"\n",
-      "     - Reference: Zur Soziologie des Arbeitsgerichtsverfahrens....\n",
-      " - Analyzing \"Erhard Blankenburg, 1980 : Recht als gradualisiertes Konzept, in: Erhard Blankenburg; Ekkehard Klausa und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch für...\"\n",
-      "     - Reference: Recht als gradualisiertes Konzept...\n",
-      " - Analyzing \"Jerome- Carlin und Sheldon Messinger, 1967 : Civil Justice and the Poor. New York. Danzig,...\"\n",
-      "     - Reference: Civil Justice and the Poor....\n",
-      " - Analyzing \"Richard Michael Lowy / 1974 /75; Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675—694....\"\n",
-      "     - Reference: Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner...\n",
-      " - Analyzing \"Johannes Feest / Erhard Blankenburg, 1972 : Die Definitionsmacht der Polizei. Düsseldorf....\"\n",
-      "     - Reference: Die Definitionsmacht der Polizei....\n",
-      " - Analyzing \"William L. F Felstiner ., 1974 /75: Influences of Social Organization on Dispute processing, in: Law and Society Review, vol. 9, pp. 63—94....\"\n",
-      "     - Reference: Influences of Social Organization on Dispute processing...\n",
-      " - Analyzing \"William L. F Felstiner ., 1974 /75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp. 695-706....\"\n",
-      "     - Reference: Avoidance as Dispute Processing: An Elaboration...\n",
-      " - Analyzing \"Marc Galanter, 1974 : Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change, in: Law and Society Review, vol. 9, pp. 95—160....\"\n",
-      "     - Reference: Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change...\n",
-      " - Analyzing \"Theodor Geiger, 1964 : Vorstudien zu einer Soziologie des Rechts....\"\n",
-      "     - Reference: Vorstudien zu einer Soziologie des Rechts....\n",
-      " - Analyzing \"Volkmar Neuwied. Gessner, 1976 : Recht und Konflikt. Tübingen....\"\n",
-      "     - Reference: Recht und Konflikt....\n",
-      " - Analyzing \"Hartmut Hilden, 1976 : Rechtstatsachen im Räumungsstreit. Frankfurt/Main....\"\n",
-      "     - Reference: Rechtstatsachen im Räumungsstreit. Frankfurt/Main....\n",
-      " - Analyzing \"Earl Johnson, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In: Mauro Cappelletti und Bryant Garth (Hrsg.): Access to Justice, Bd. III....\"\n",
-      "     - Reference: Thinking about Access: A Preliminary Typology of Possible Strategies....\n",
-      " - Analyzing \"Milan Alphen Rijn....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Hartmut Koch, 1975 : Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen. Diss. Hamburg....\"\n",
-      "     - Reference: Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen....\n",
-      " - Analyzing \"Niklas Luhmann, 1969 : Legitimation durch Verfahren. Neuwied und Darmstadt....\"\n",
-      "     - Reference: Legitimation durch Verfahren....\n",
-      " - Analyzing \"Niklas Luhmann, 1980 : Kommunikation über Recht in Interaktionssystemen, in: Erhard Blankenburg; Ekkehard Klausa und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, J...\"\n",
-      "     - Reference: Kommunikation über Recht in Interaktionssystemen...\n",
-      " - Analyzing \"Udo Reifner, 1978 : Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, IIM-dp/78—70....\"\n",
-      "     - Reference: Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative...\n",
-      " - Analyzing \"Udo Reifner, 1979 : Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945. IIM-dp/79—104....\"\n",
-      "     - Reference: Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945....\n",
-      " - Analyzing \"Udo Reifner und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe, in: Erhard Blankenburg; Ekkehard Klausa und Hubert Rottleuthner (Hrsg.): Alte...\"\n",
-      "     - Reference: Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe...\n",
-      " - Analyzing \"Austin Sarat, 1976 : Alternatives in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339—375....\"\n",
-      "     - Reference: Alternatives in Dispute Processing in a Small Claim Court...\n",
-      " - Analyzing \"Siegfried Schönholz, 1980 : Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich in: Vereinigung für Rechtssoziologie (Hrsg.): Arbeitslosigkeit und Recht. Bade...\"\n",
-      "     - Reference: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich...\n",
-      " - Analyzing \"E Steinbach ., 1979 : GMD-Bericht, Manuskript. Gesellschaft für Mathematik und Datenverarbeitung. Birlinghoven bei Bonn....\"\n",
-      "     - Reference: GMD-Bericht, Manuskript. Gesellschaft für Mathematik und Datenverarbeitung....\n",
-      " - Analyzing \"Craig Wanner, 1975 : The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306....\"\n",
-      "     - Reference: The Public Ordering of Private Cases; Winning Civil Court Cases...\n",
-      " - Analyzing \"Geiger 1964, insbesondere S. 65—83....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Vgl. Feest Blankenburg, 1972. Die Konsequenz einer größeren Dunkelziffer bei den von der Polizei selbst entdeckten Straftaten entwickle ich ausführlicher in meinem Beitrag über, Nichtkriminalisierung ...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Nichtkriminalisierung als Struktur und Routine...\n",
-      " - Analyzing \"Angaben aus einer Befragung von Peter MacNaughton-Smith und Richard Rosellen zur ' Bereitschaft zur Anzeigeerstattung ' Manuskript Freiburg 1978. Der ausführliche Forschungsbericht von Richard Roselle...\"\n",
-      "     - Reference: Bereitschaft zur Anzeigeerstattung...\n",
-      "     - Reference: Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung...\n",
-      " - Analyzing \"Vgl. Blankenburg Sessar Steffen, 1978, S. 66-85....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Black 1973, S. 125 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Zur höheren Wahrscheinlichkeit der Normierung von Verhalten in weniger komplexen Beziehungen vgl. die Konflikttheorie von Gessner 1976, insbesondere S. 170—183....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Zum Konzept der 'Thematisierung von Recht' vgl. Luhmann 1980, S. 99—112....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Ausführlicher bei Gessner 1976...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Vgl. Schönholz 1980....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Blankenburg Schönholz Rogowski 1979, S. 64 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Hilden 1976, S. 64 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Koch 1975, S. 75 der allerdings nur streitige Urteile und Vergleiche untersucht hat....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Für Angaben der Zählkartenstatistik für die Familiengerichte siehe: Statistisches Bundesamt Wiesbaden, Fachserie 10 (Rechtspflege) Reihe 2.1, Tabelle 10, Wiesbaden 1978....\"\n",
-      "     - Reference: Fachserie 10 (Rechtspflege) Reihe 2.1, Tabelle 10...\n",
-      " - Analyzing \"Blankenburg Schönholz Rogowski 1979, S. 78 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"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 alle...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Johnson 1979 berichtet von dem erfolgreichen Versuch einer Unfall-Schadensregulierung ohne Berücksichtigung einer Schuldzuschreibung in Neuseeland (no fault accident compensation), S. 90 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Steinbach 1979, S. 66 ff. Blankenburg Blankenburg Morasch 1972, S. 82 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Projektbericht ,Rechtshilfebedürfnisse sozial Schwacher *, (Blankenburg Gorges Reifner Ticmann). Befragt wurden im Januar bis März 1979 je eine Person in 835 Haushalten Westberlins. Veröffentlichung i...\"\n",
-      "     - Reference: Projektbericht ,Rechtshilfebedürfnisse sozial Schwacher...\n",
-      " - Analyzing \"Explizit bei Baumgärtei 1976, S. 113-128....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Laut einer GMD-Erhebung aus der Zählkartenstatistik wurde in Baden-Württemberg 1978 in...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Projektbericht Rechtsschutzversicherung*. (Blankenburg Fiedler), Veröffentlichung voraussichtlich Mitte 1980....\"\n",
-      "     - Reference: Projektbericht Rechtsschutzversicherung*....\n",
-      " - Analyzing \"Vgl. auch Reifner Gorges 1980....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Reifner 1979....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Klassisch bei Carlin Howard Messinger 1967....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Grundsätzlich vgl. hierzu den klassischen Beitrag von Galanter 1974, S. 95—160. Die grösseren Chancen von Firmen, insbesondere bei der großen Zahl von vorstreitigen Erledigungen zeigt Sarat 1976, S. 3...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Bender Schumacher 1980, S. 138....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Steinbach 1979, S. 96 ff vgl. auch Blankenburg Blankenburg Morasch 1972, S. 89 Fn. 17...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Reifner 1978....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Blankenburg Schönholz Rogowski 1979, S. 102 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Vgl. zum Verrechtlichungsbegriff meinen Beitrag über: Recht als gradualisiertes Konzept 1980, S. 83—98....\"\n",
-      "     - Reference: Recht als gradualisiertes Konzept...\n",
-      " - Analyzing \"Steinbach 1979, S. 35 Bender Schumacher 1980, S. 24 und S. 49....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Wanner 1975, S. 293—306 hebt dies deutlich hervor, ebenso Bender Schumacher 1980, S. 72 ff. sowie Galanter 1974; Sarat 1976....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Blankenburg Schönholz Rogowski 1979, S. 78 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Ebenda, S. 138-186....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Luhmann 1969....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Für eine überaus positive Bewertung des .Vermeidens1 vgl. Felstiner Danzig Lowy in Law and Society Review, vol. 9, 1974 /75....\"\n",
-      "     - Reference: Law and Society Review...\n",
-      "Processing 10.1515_zfrs-1980-0104\n",
-      " - Analyzing \"Drobnig Rebbinder (Hrsg.), Rechtssoziologie und Rechtsvergleichung (1977);...\"\n",
-      "     - Reference: Rechtssoziologie und Rechtsvergleichung...\n",
-      " - Analyzing \"Rokkan (Hrsg.), Compa rative Research Across Cultures and Nations (Paris, Den Haag 1968);...\"\n",
-      "     - Reference: Compa rative Research Across Cultures and Nations...\n",
-      " - Analyzing \"Rokkan Verba Viet Almasy (Hrsg.), Comparative Sutvey Analysis (Den Haag, Paris 1969); Smelser Comparative Methods in the Social Sciences...\"\n",
-      "     - Reference: Comparative Sutvey Analysis...\n",
-      " - Analyzing \"N. J Englewood Cliffs. 1976); Szalai Petrella (Hrsg.), Cross National Comparative Survey Research (Oxford, New York, Toronto, Sydney, Paris, Frank furt 1977);...\"\n",
-      "     - Reference: Cross National Comparative Survey Research...\n",
-      " - Analyzing \"Vallier (Hrsg.), Comparative Methods in Sociology (Berkeley, Los Angeles, London 1971); Zweigert Kötz. Einführung in die Rechtsvergleichung Bd. I (1971)....\"\n",
-      "     - Reference: Comparative Methods in Sociology...\n",
-      " - Analyzing \"Siehe näher Zweigert Kötz I 12 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Rabel, Aufgabe und Notwendigkeit der Rechtsvergleichung (1925), abgedruckt in: Rabel, Gesammelte Aufsätze III (Hrsg. Leser, 1967) 1 (3)...\"\n",
-      "     - Reference: Aufgabe und Notwendigkeit der Rechtsvergleichung...\n",
-      "     - Reference: Gesammelte Aufsätze...\n",
-      " - Analyzing \"Siehe insbes. die Beiträge in Drobnig Rehbinder....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Dazu R. Abel, Law Books and Books About Law, Stanford Law Rev. 26 (1973) 174 ff. Benda-Beckmann, Einige Anmerkungen über die Beziehung zwischen Rechtssoziologie und Rechtsvergleichung, ZvglRW 78 (1979...\"\n",
-      "     - Reference: Law Books and Books About Law...\n",
-      "     - Reference: Einige Anmerkungen über die Beziehung zwischen Rechtssoziologie und Rechtsvergleichung...\n",
-      " - Analyzing \"Carbonnier, L’apport du droit compare ä la sociologie juridique, in: Livre du centenaire de la Societe de legislation comparee (Paris 1969) 75 (83)...\"\n",
-      "     - Reference: L’apport du droit compare ä la sociologie juridique...\n",
-      " - Analyzing \"Carbonnier (vorige N.) a.a.O....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Nowak, The Strategy of Cross-National Survey Research for the Development of Social Theory, in: Szalai Petrella 3 (9 ff .) Rose, Interkulturelle Forschung in der Rechtssoziologie, in: Drobnig Rehbinde...\"\n",
-      "     - Reference: The Strategy of Cross-National Survey Research for the Development of Social Theory...\n",
-      "     - Reference: Interkulturelle Forschung in der Rechtssoziologie...\n",
-      " - Analyzing \"Dazu näher Wirsing, Probleme des interkulturellen Vergleichs in der Ethnologie, Sociologus 25 (1975) 97 ff. - Vgl. auch Poirier, Situation actuelle et Programme de travail de Techno logie juridique, R...\"\n",
-      "     - Reference: Probleme des interkulturellen Vergleichs in der Ethnologie...\n",
-      "     - Reference: Situation actuelle et Programme de travail de Techno logie juridique...\n",
-      " - Analyzing \"Macaulay, Elegant Models, Empirical Pictures, and the Complexities of Contract, Law & Soc. Rev. 11 (1977) 507 ff....\"\n",
-      "     - Reference: Elegant Models, Empirical Pictures, and the Complexities of Contract...\n",
-      " - Analyzing \"Rose (oben N. 7) 175....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Dazu Grimshau, Comparative Sociology - In What Ways Different From Other Sociologies?, in: Armer Grimshaw 3 (18) Auch der Oberbegriff „cross System comparison\" wird vorgeschlagen, Tomasson, Introducti...\"\n",
-      "     - Reference: Comparative Sociology - In What Ways Different From Other Sociologies?...\n",
-      "     - Reference: Introduction; Comparative Sociology — The State of the Art...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Comparative Survey Analysis — An Annotated Bibliography 1967 — 1973...\n",
-      "     - Reference: Comparative Sociology...\n",
-      " - Analyzing \"Durkheim, Les règles de la methode sociologique Paris 1977) 137....\"\n",
-      "     - Reference: Les règles de la methode sociologique...\n",
-      " - Analyzing \"Smelser 2 f.; Payne, Comparative Sociology — Some Problems of Theory and Method, Brit. J. Soc. 24 (1973) 13 (15 ff .) Ähnlich auch Eisenstadt, Social Institutions - Comparative Method, in: Internation...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Comparative Sociology — Some Problems of Theory and Method...\n",
-      "     - Reference: Social Institutions - Comparative Method...\n",
-      " - Analyzing \"Boesch Eckensberger, Methodische Probleme des interkulturellen Vergleichs, in: Graumann (Hrsg.), Handbuch der Psychologie, Bd. Vll 1 (2. Auf], 1969) 514 (520 ff .) — Zur „cultunit“, die vor allem durc...\"\n",
-      "     - Reference: Methodische Probleme des interkulturellen Vergleichs...\n",
-      "     - Reference: A Handbook of Method in Cultural Anthropology...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Näher dazu Zelditch, Intelligible Comparisons, in: Vallier 267 (270 ff .)...\"\n",
-      "     - Reference: Intelligible Comparisons...\n",
-      " - Analyzing \"Carbonnier (oben N. 5) 80....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Siehe Zweigert, Die soziologische Dimension der Rechtsvergleichung, in: Drobnig Rebbinder 151 (159)...\"\n",
-      "     - Reference: Die soziologische Dimension der Rechtsvergleichung...\n",
-      " - Analyzing \"Zu entsprechenden Versuchen etwa Merryman, Comparative Law and Scientific Explanation, in: Law in the United States of America in Social and Technological Revolution (Brüssel 1974) 81 (89 ff .)...\"\n",
-      "     - Reference: Comparative Law and Scientific Explanation...\n",
-      " - Analyzing \"Beispiel von Carbonnier, Sociologie juridique (Paris 1972) 188 N. 1....\"\n",
-      "     - Reference: Sociologie juridique...\n",
-      " - Analyzing \"Dazu Heidrich, Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels, Jahr buch für Rechtssoziologie und Rechtstheorie 3 (1972) 305 (330 ff .)...\"\n",
-      "     - Reference: Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels...\n",
-      " - Analyzing \"Insbesondere Zweigert (oben N. 17) 157 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Kaiser, Strafrecht und vergleichende Kriminologie, in: Kaiser Vogler (Hrsg.), Strafrecht, Straf rechtsvergleichung (1975) 79 ff. — Siehe auch Villmow Albrecht, Die Vergleichung als Methode der Strafre...\"\n",
-      "     - Reference: Strafrecht und vergleichende Kriminologie...\n",
-      "     - Reference: Die Vergleichung als Methode der Strafrechtswissenschaft und der Kriminologie...\n",
-      " - Analyzing \"So etwa K. H. Neumayer, Ziele und Methoden der Rechtsvergleichung, in: Recueil des travaux suisses présentés au IXe Congrès international de droit compare (1976) 45 (48)...\"\n",
-      "     - Reference: Ziele und Methoden der Rechtsvergleichung...\n",
-      " - Analyzing \"Zur Abgrenzung näher Rehbinder, Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und Rechtsvergleichung, in: Drobnig Rehbinder 56 ff....\"\n",
-      "     - Reference: Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und Rechtsvergleichung...\n",
-      " - Analyzing \"Näher dazu Merryman (oben N. 18) 101 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Heidrich, Sozialwissenschaftliche Aspekte der Rechtsvergleichung, in: Drobnig Rehbinder 178 (186 ff .)...\"\n",
-      "     - Reference: Sozialwissenschaftliche Aspekte der Rechtsvergleichung...\n",
-      " - Analyzing \"Siehe etwa die Erklärung, warum das „Access to justice movement\" in der Bundesrepublik vergleichsweise wenig Widerhall gefunden hat von Blankenburg, Patterns of Legal Culture as a Variable for the Cha...\"\n",
-      "     - Reference: Patterns of Legal Culture as a Variable for the Chances of Legal Innovation...\n",
-      " - Analyzing \"So Rehbinder (oben N. 24) 60....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Dazu R. Abel, Comparative Law and Social Theory, Am. J. Comp. L. 26 (1978) 219 (224 ff .)...\"\n",
-      "     - Reference: Comparative Law and Social Theory...\n",
-      " - Analyzing \"Dazu etwa Smelser 175 f. — Für die Kriminologie siehe Kaiser (oben N. 22) 89 sowie Blazicek Janeksela, Some Comments on Comparative Methodologies in Criminal Justice, Int. J. Crim. Pen 6 (1978) 233 (2...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Some Comments on Comparative Methodologies in Criminal Justice...\n",
-      "     - Reference: Comparative Law and Social Change - On the Origins, Style, Decline and Revival of the Law and Development Movement...\n",
-      " - Analyzing \"Payne (oben N. 13) 15 25 f....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Däubler, Systemvergleich im Arbeitsrecht? Vorüberlegungen zu einigen Methodenfragen, Demokratie und Recht 1979 / 1 S. 23 (31 ff .) Zum Vergleich mit den sozialistischen Ländern siehe auch Zweigert Put...\"\n",
-      "     - Reference: Systemvergleich im Arbeitsrecht? Vorüberlegungen zu einigen Methodenfragen...\n",
-      "     - Reference: Zur Vergleichbarkeit analoger Rechtsinstitute in verschiede nen Gesellschaftsordnungen...\n",
-      " - Analyzing \"Blankenburg, Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration (HM discussion papers 1978 — 23) 5 ff....\"\n",
-      "     - Reference: Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration...\n",
-      " - Analyzing \"Zweigert Kötz I 30 f....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Dazu etwa Armer, Methodology Problems and Possibilities in Comparative Research, in: Armer Grimsbaw 49 (50 ff .) Smelser 182 f. Trommsdorf, Möglichkeiten und Probleme des Kulturvergleichs am Beispiel ...\"\n",
-      "     - Reference: Methodology Problems and Possibilities in Comparative Research...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Möglichkeiten und Probleme des Kulturvergleichs am Beispiel einer Agressionsstudie...\n",
-      " - Analyzing \"Wenn die Strenge elterlicher Strafen gemessen werden soll, kann man etwa darauf ausweichen, welche Strafe die Kinder am meisten fürchten, siehe Malewswka Peyre, Juvenile Deliquency and Development, in...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Juvenile Deliquency and Development...\n",
-      " - Analyzing \"Näher Scheuch, The Cross-Cultural Use of Sample Surveys — Problems of Comparability, in: Rokkan 176 (185) Biervert, Der internationale Vergleich, in: van Koolwiyk / Wieken-Mayser (Hrsg.), Techniken em...\"\n",
-      "     - Reference: The Cross-Cultural Use of Sample Surveys — Problems of Comparability...\n",
-      "     - Reference: Der internationale Vergleich...\n",
-      " - Analyzing \"Verba, The Uses of Survey Research in the Study of Comparative Politics — Issues and Strategies, in: Rokkan Verba Viet Almasy 56 (80)...\"\n",
-      "     - Reference: The Uses of Survey Research in the Study of Comparative Politics — Issues and Strategies...\n",
-      " - Analyzing \"Gessner, Soziologische Ãœberlegungen zu einer Theorie der angewandten Rechtsvergleichung, in: Drobnig Rehbinder 123 (134 ff .)...\"\n",
-      "     - Reference: Soziologische Ãœberlegungen zu einer Theorie der angewandten Rechtsvergleichung...\n",
-      " - Analyzing \"Nowak (oben N. 7) 42....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Für die Bedeutung der funktionalen Äquivalenz beruft man sich häufig auf Merton, der sie am Beispiel der Religion näher erläutert hat (Social Theory and Social Structure, New York, London, erweiterte ...\"\n",
-      "     - Reference: Social Theory and Social Structure...\n",
-      " - Analyzing \"Rheinstein, Marriage Stability, Divorce, and the Law (Chicago 1972)....\"\n",
-      "     - Reference: Marriage Stability, Divorce, and the Law...\n",
-      " - Analyzing \"Abel (oben N. 4) 194 ff. 221 f. - Siehe auch Wilpert, Die Messung von Mitbestimmungsnormen — Darstellung eines international vergleichenden Forschungsansatzes (HM-Paper 1979 — 13) 2 ff. - Zur Behandlu...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Die Messung von Mitbestimmungsnormen — Darstellung eines international vergleichenden Forschungsansatzes...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Abel (oben N. 4) 207 ff. — Siehe auch Constantinesco, Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise, Zeitschrift für Rechtsvergleichung 19 (1978) 161 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise...\n",
-      " - Analyzing \"Siehe Blankenburg (oben N. 33) 3 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Rose (oben N. 7) 176....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Dazu etwa Benda-Beckmann (oben N. 4) 55 ff. Constantinesco, Über den Stil der „Stilthe orie\" in der Rechtsvergleichung, ZvglRW 78 (1979) 154 ff. mwNachw. — Eine vergleichbare Debatte über „ähnliche“un...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Über den Stil der „Stilthe orie\" in der Rechtsvergleichung...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Siehe Zweigert Kötz I 70....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Hofstede, Cultural Determinants of the Exercise of Power in a Hierarchy (Mimeographed, European Institute for Advanced Studies in Management Working Paper 1977 - 8). Ebenso für das Arbeitsrecht Däuble...\"\n",
-      "     - Reference: Cultural Determinants of the Exercise of Power in a Hierarchy...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Dazu Zweigert Kötz 1 110 f. — Kritisch Benda-Beckmann (oben N. 4) 58 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"IDE-International Research Group, Industrial Democracy in Europe (erscheint bei London 1980) Chapter VIII....\"\n",
-      "     - Reference: Industrial Democracy in Europe...\n",
-      " - Analyzing \"Zweigert Kötz I 78....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"IDE-International Research Group (oben N. 52) Chapter VIII....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Dafür Däubler (oben N. 32) 33....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Siehe dazu Rheinstein, Die Rechtshonoratioren und ihr Einfluß auf Charakter und Funk tion der Rechtsordnungen, RabelsZ 34 (1970) 1 ff. Bernstein, Rechtsstile und Rechtshono ratioren. Ein Beitrag zur M...\"\n",
-      "     - Reference: Die Rechtshonoratioren und ihr Einfluß auf Charakter und Funk tion der Rechtsordnungen...\n",
-      "     - Reference: Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der Rechtsvergleichung...\n",
-      " - Analyzing \"Dazu etwa Ruescbemeyer, Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in Germany and the United States (Cambridge, Mass. 1973); ders ., The Legal Profession in Comparat...\"\n",
-      "     - Reference: Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in Germany and the United States...\n",
-      "     - Reference: The Legal Profession in Comparative Perspective...\n",
-      " - Analyzing \"Klausa, Politische Inhaltsanalyse von Rechtslehrertexten, ZfS 8 (1979) 362 ff....\"\n",
-      "     - Reference: Politische Inhaltsanalyse von Rechtslehrertexten...\n",
-      " - Analyzing \"Siehe Nowak (oben N. 7) 23 ff. Smelser 167 ff....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Dazu näher Teune, Analysis and Interpretation in Cross-National Survey Research, in: Szalai Petrella 95 (101)...\"\n",
-      "     - Reference: Analysis and Interpretation in Cross-National Survey Research...\n",
-      " - Analyzing \"Siehe dazu Nader Todd, The Disputing Process — Law in Ten Societies (New York 1978)....\"\n",
-      "     - Reference: The Disputing Process — Law in Ten Societies...\n",
-      " - Analyzing \"Siehe zum entsprechenden Problem in der Kriminologie Kaiser (oben N. 22) 88 mwNachw.; Blazicek Janeksela (oben N. 30) 235 f. 242....\"\n",
-      "     - Reference: Problem in der Kriminologie...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Clinard, Comparative Crime Victimization Surveys — Some Problems and Results, Int. J. Crim, and Pen. 6 (1978) 221 ff....\"\n",
-      "     - Reference: Comparative Crime Victimization Surveys — Some Problems and Results...\n",
-      " - Analyzing \"Siehe Abel-Smith Zander Brooke, Legal Problems and the Citizen (London 1973); Rokumoto, Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in International Comparison, ZfS 7 (...\"\n",
-      "     - Reference: Legal Problems and the Citizen...\n",
-      "     - Reference: Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in International Comparison...\n",
-      "     - Reference: Rechtspro bleme oder private Schwierigkeiten — Die Inanspruchnahme von Rechtshilfe in den Nieder landen...\n",
-      " - Analyzing \"Dazu Podgdrecki, Comparative Studies on the Attitudes Towards Various Legal Systems, Polish Sociological Bulletin 21 No. 1 (1970) 83 (88 ff .) — Siehe auch Ziegen Zur Effek tivität der Rechtssoziologi...\"\n",
-      "     - Reference: Comparative Studies on the Attitudes Towards Various Legal Systems...\n",
-      "     - Reference: Zur Effek tivität der Rechtssoziologie: die Rekonstruktion der Gesellschaft durch Recht...\n",
-      " - Analyzing \"Siehe Podgdrecki, Legal Consciousness as a Research Problem, European Yearbook in Law and Sociology 1977 (Den Haag 1977) 85 (88 ff .)...\"\n",
-      "     - Reference: Legal Consciousness as a Research Problem...\n",
-      " - Analyzing \"Kutchinsky, „The Legal Consciousness“: A Survey of Research on Knowledge and Opinion about Law, in: Podgdrecki Kaupen van Houtte / Vinke Kutchinsky, Knowledge and Opinion about Law (Bristol 1973) 101 ...\"\n",
-      "     - Reference: The Legal Consciousness“: A Survey of Research on Knowledge and Opinion about Law...\n",
-      " - Analyzing \"Podgdrecki, Public Opinion on Law, in: Knowledge and Opinion about Law (vorige N.) 65 (84 ff.)....\"\n",
-      "     - Reference: Public Opinion on Law...\n",
-      " - Analyzing \"Heintz, Interkultureller Vergleich, in: König (Hrsg.), Handbuch der empirischen Sozialfor schung, Bd. 4 (3. Aufl. 1974) 405 (414 f .)...\"\n",
-      "     - Reference: Interkultureller Vergleich...\n",
-      " - Analyzing \"Siehe Hegenbarth, Über methodische und organisatorische Grenzen der empirischen Rechts forschung in Entwicklungsländern, Informationsbrief für Rechtssoziologie April 1979, Son derheft 2, S. 5 ff. mwNa...\"\n",
-      "     - Reference: Über methodische und organisatorische Grenzen der empirischen Rechts forschung in Entwicklungsländern...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Siehe etwa Gessner, Recht und Konflikt — Eine soziologische Untersuchungprivatrechtlicher Konflikte in Mexiko (1976) 37 ff....\"\n",
-      "     - Reference: Recht und Konflikt — Eine soziologische Untersuchungprivatrechtlicher Konflikte in Mexiko...\n",
-      " - Analyzing \"Vgl. Heintz (oben N. 69) 407....\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"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ß vergleich...\"\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      "     - Reference: Problems in Comparative Criminology...\n",
-      " - Analyzing \"Zur Anlage vergleichender Studien näher Rokkan, Vergleichende Sozialwissenschaft (1972) 9 ff. Szalai, The Organization and Execution of Cross-National Survey Research Projects, in: Szalai Petrella 49 ...\"\n",
-      "     - Reference: Vergleichende Sozialwissenschaft...\n",
-      "     - Reference: The Organization and Execution of Cross-National Survey Research Projects...\n",
-      "     - Reference with no title element - adding empty biblStruct\n",
-      " - Analyzing \"Siehe Blegvad, Methodological Aspects of the Project „Local Legal Systems “, in: Kulcsár (Hrsg.), Sociology of Law and Legal Sciences (Budapest 1977) 97 (99 ff .)...\"\n",
-      "     - Reference: Methodological Aspects of the Project „Local Legal Systems...\n",
-      " - Analyzing \"Dazu näher Zweigert, Die kritische Wertung in der Rechtsvergleichung, Festschrift für Schmitthoff (1973) 403 ff....\"\n",
-      "     - Reference: Die kritische Wertung in der Rechtsvergleichung...\n",
-      " - Analyzing \"Siehe etwa zu vorliegenden französischen Untersuchungen Dörner, Rechtstatsachenforschung und Gesetzgebung — Hinweise zur Entwicklung einer Gesetzgebungssoziologie in Frank reich, Interview und Analyse...\"\n",
-      "     - Reference: Rechtstatsachenforschung und Gesetzgebung — Hinweise zur Entwicklung einer Gesetzgebungssoziologie in Frank reich...\n",
-      " - Analyzing \"Siehe Bryde, Recht und Konflikt — Mexiko und Afrika, Verfassung und Recht in Obersee 12 (1979), 159 ff....\"\n",
-      "     - Reference: Recht und Konflikt — Mexiko und Afrika...\n"
-     ]
-    }
-   ],
-   "execution_count": 2
-  },
-  {
-   "metadata": {},
-   "cell_type": "code",
-   "outputs": [],
-   "execution_count": null,
-   "source": "",
-   "id": "90477a6402855f3"
   }
  ],
  "metadata": {
diff --git a/convert-anystyle-data/lib/xslt.py b/convert-anystyle-data/lib/xslt.py
index 7248fb9b8934185cfdd63121d2c2dd487b3d185c..6965cf24bdc887a6e40ba3b63c8622242d7636a3 100644
--- a/convert-anystyle-data/lib/xslt.py
+++ b/convert-anystyle-data/lib/xslt.py
@@ -3,13 +3,18 @@ import os
 from glob import glob
 import shutil
 
-def transform(xslt_path, input_path, output_path, rename_extension:tuple=None, remove_prefix=None):
+def transform(xslt_path, input_path, output_path, rename_extension:tuple=None):
     input_path = os.path.normpath(input_path)
     xslt_path = os.path.normpath(xslt_path)
-    cmd = ['java', '-jar', 'lib/SaxonHE12-5J/saxon-he-12.5.jar',
+    jar_path = os.path.normpath('./lib/SaxonHE12-5/saxon-he-12.5.jar')
+
+    cmd = ['java', '-jar', jar_path,
            f'-s:{input_path}', f'-xsl:{xslt_path}', f'-o:{output_path}/',
            'p_target-language=de', 'p_github-action=true', f'p_output-folder={output_path}/']
+
     process = subprocess.run(cmd, capture_output=True, text=True)
+    if process.returncode != 0:
+        raise RuntimeError(process.stderr)
 
     # clean up the output dir
     for file_path in glob(f'{output_path}/*.xml'):
@@ -18,7 +23,7 @@ def transform(xslt_path, input_path, output_path, rename_extension:tuple=None, r
         parent_dir_path = os.path.dirname(os.path.dirname(file_path))
         file_name = os.path.basename(file_path)
         shutil.move(file_path, os.path.join(parent_dir_path, file_name))
-    shutil.rmtree(f'{output_path}/{output_path}')
+    shutil.rmtree(f'{output_path}/{output_path}', ignore_errors=True)
 
     # rename the extension
     if rename_extension:
@@ -28,9 +33,6 @@ def transform(xslt_path, input_path, output_path, rename_extension:tuple=None, r
             if file_path.endswith(from_extension):
                 os.replace(file_path, file_path.replace(from_extension, to_extension))
 
-    if process.returncode != 0:
-        raise RuntimeError(process.stderr)
-
     print(f'Applied {xslt_path} to files in {input_path} and saved result in {output_path}.')
     return process
 
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 c3795ae95367142e835fb44c2bf400a94d48dc31..2d3e4e2a72a52f631f97de3dd8416509637a79e4 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
@@ -505,7 +505,7 @@
       </note>
       <note n="23" type="footnote" place="bottom">
         <bibl>
-          <title>Crimes (Sexual Assault) Amendment Act</title>
+          <title level="m">Crimes (Sexual Assault) Amendment Act</title>
           <date>1981</date>
           (
           <pubPlace>N.S.W.</pubPlace>
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 4286905ad62794ab0d45561a4c962033275e6204..2e7bbd794dfbeb0a3ce3f8945e5e646b3884fc1c 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
@@ -1,1737 +1,1463 @@
-<TEI xmlns="http://www.tei-c.org/ns/1.0">
-    <teiHeader xmlns:mods="http://www.loc.gov/mods/v3" xmlns:oape="https://openarabicpe.github.io/ns"
-               xmlns:tei="http://www.tei-c.org/ns/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-               xmlns="http://www.tei-c.org/ns/1.0">
-        <fileDesc>
-            <titleStmt>
-                <title>Bibliographic data for 10.1111_1467-6478.00057</title>
-            </titleStmt>
-            <publicationStmt>
-                <p>This bibliographic data is in the public domain.</p>
-            </publicationStmt>
-            <sourceDesc>
-                <p>10.1111_1467-6478.00057</p>
-            </sourceDesc>
-        </fileDesc>
-    </teiHeader>
-    <standOff>
-        <listBibl n="1">
-            <desc>1 A. Phillips, &#8216;Citizenship and Feminist Politics&#8217; in Citizenship, ed. G. Andrews (1991)
-                77.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Citizenship and Feminist Politics</title>
-                    <author>
-                        <persName>
-                            <forename>A.</forename>
-                            <surname>Phillips</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="m">Citizenship</title>
-                    <editor>
-                        <persName>
-                            <forename>G.</forename>
-                            <surname>Andrews</surname>
-                        </persName>
-                    </editor>
-                    <imprint>
-                        <date>1991</date>
-                    </imprint>
-                    <biblScope unit="page" from="77">77</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="2">
-            <desc>2 T. Brennan and C. Pateman, &#8216;&#8220;Mere Auxiliaries to the Commonwealth&#8221;: Women and the
-                Origins of Liberalism&#8217; (1979) 27 Political Studies 183.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Mere Auxiliaries to the Commonwealth&#8221;: Women and the Origins of Liberalism
-                    </title>
-                    <author>
-                        <persName>
-                            <forename>T.</forename>
-                            <surname>Brennan</surname>
-                        </persName>
-                    </author>
-                    <author>
-                        <persName>
-                            <forename>C.</forename>
-                            <surname>Pateman</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Political Studies</title>
-                    <imprint>
-                        <date>1979</date>
-                    </imprint>
-                    <biblScope unit="volume" from="27" to="27">27</biblScope>
-                    <biblScope unit="page" from="183">183</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="3">
-            <desc>3 M. Sawer and M. Simms, A Woman&#8217;s Place: Women and Politics in Australia (2nd ed., 1993).
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">A Woman&#8217;s Place: Women and Politics in Australia</title>
-                    <author>
-                        <persName>
-                            <forename>M.</forename>
-                            <surname>Sawer</surname>
-                        </persName>
-                    </author>
-                    <author>
-                        <persName>
-                            <forename>M.</forename>
-                            <surname>Simms</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1993</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="4">
-            <desc>4 I have explored the gendered nature of citizenship at greater length in two complementary papers :
-                &#8216;Embodying the Citizen&#8217; in Public and Private: Feminist Legal Debates, ed. M. Thornton
-                (1995) and &#8216;Historicising Citizenship: Remembering Broken Promises&#8217; (1996) 20 Melbourne
-                University Law Rev. 1072.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Embodying the Citizen</title>
-                </analytic>
-                <monogr>
-                    <title level="m">Public and Private: Feminist Legal Debates</title>
-                    <editor>
-                        <persName>
-                            <forename>M.</forename>
-                            <surname>Thornton</surname>
-                        </persName>
-                    </editor>
-                    <imprint>
-                        <date>1995</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Historicising Citizenship: Remembering Broken Promises</title>
-                </analytic>
-                <monogr>
-                    <title level="j">Melbourne University Law Rev</title>
-                    <imprint>
-                        <date>1996</date>
-                    </imprint>
-                    <biblScope unit="volume" from="20" to="20">20</biblScope>
-                    <biblScope unit="page" from="1072">1072</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="5">
-            <desc>5 S. Walby, &#8216;Is Citizenship Gendered?&#8217; (1994) 28 Sociology 379</desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Is Citizenship Gendered?</title>
-                    <author>
-                        <persName>
-                            <forename>S.</forename>
-                            <surname>Walby</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Sociology</title>
-                    <imprint>
-                        <date>1994</date>
-                    </imprint>
-                    <biblScope unit="volume" from="28" to="28">28</biblScope>
-                    <biblScope unit="page" from="379">379</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="6">
-            <desc>6 I. Kant, &#8216;Metaphysical First Principles of the Doctrine of Right&#8217; in The Metaphysics of
-                Morals (trans. M. Gregor, 1991) 125&#8211;6 s. 146.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Metaphysical First Principles of the Doctrine of Right</title>
-                    <author>
-                        <persName>
-                            <forename>I.</forename>
-                            <surname>Kant</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="m">The Metaphysics of Morals</title>
-                    <imprint>
-                        <date>1991</date>
-                    </imprint>
-                    <biblScope unit="page" from="125" to="6">125&#8211;6</biblScope>
-                    <biblScope unit="page" from="146">146</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="7">
-            <desc>7 U. Vogel, &#8216;Marriage and the Boundaries of Citizenship&#8217; in The Condition of Citizenship,
-                ed. B. van Steenbergen (1994) 75.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Marriage and the Boundaries of Citizenship</title>
-                    <author>
-                        <persName>
-                            <forename>U.</forename>
-                            <surname>Vogel</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="m">The Condition of Citizenship</title>
-                    <editor>
-                        <persName>
-                            <forename>B.</forename>
-                            <surname>van Steenbergen</surname>
-                        </persName>
-                    </editor>
-                    <imprint>
-                        <date>1994</date>
-                    </imprint>
-                    <biblScope unit="page" from="75">75</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="8">
-            <desc>8 N. Fraser and L. Gordon, &#8216;Civil Citizenship against Social Citizenship?&#8217; in id., p.
-                97.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Civil Citizenship against Social Citizenship?</title>
-                    <author>
-                        <persName>
-                            <forename>N.</forename>
-                            <surname>Fraser</surname>
-                        </persName>
-                    </author>
-                    <author>
-                        <persName>
-                            <forename>L.</forename>
-                            <surname>Gordon</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint/>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="9">
-            <desc>9 Vogel, id., p. 79. W. Blackstone, Commentaries (Facsimile of 1st. ed. of 1765&#8211;69, 1979) 442.
-            </desc>
-            <biblStruct/>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Commentaries</title>
-                    <author>
-                        <persName>
-                            <forename>W.</forename>
-                            <surname>Blackstone</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1979</date>
-                    </imprint>
-                    <biblScope unit="page" from="442">442</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="11">
-            <desc>11 Vogel, op. cit., n. 7, pp. 80&#8211;1.</desc>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="12">
-            <desc>12 F. Haug (ed.), Female Sexualization: A Collective Work of Memory (1987) 196.</desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Female Sexualization: A Collective Work of Memory</title>
-                </analytic>
-                <monogr>
-                    <editor>
-                        <persName>
-                            <forename>F.</forename>
-                            <surname>Haug</surname>
-                        </persName>
-                    </editor>
-                    <imprint>
-                        <date>1987</date>
-                    </imprint>
-                    <biblScope unit="page" from="196">196</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="13">
-            <desc>13 A. Bottomley, &#8216;Self and Subjectivities: Languages of Claim in Property Law&#8217; (1993) 20
-                J. of Law and Society 56 61.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Self and Subjectivities: Languages of Claim in Property Law</title>
-                    <author>
-                        <persName>
-                            <forename>A.</forename>
-                            <surname>Bottomley</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">J. of Law and Society</title>
-                    <imprint>
-                        <date>1993</date>
-                    </imprint>
-                    <biblScope unit="volume" from="20" to="20">20</biblScope>
-                    <biblScope unit="page" from="56">56</biblScope>
-                    <biblScope unit="page" from="61">61</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="14">
-            <desc>14 D. West, &#8216;Power and Formation: New Foundations for a Radical Concept of Power&#8217; (1987)
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Power and Formation: New Foundations for a Radical Concept of Power</title>
-                    <author>
-                        <persName>
-                            <forename>D.</forename>
-                            <surname>West</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1987</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="30">
-            <desc>30 Inquiry 137, 145. Compare M. Foucault, Power/Knowledge: Selected Interviews and Other Writings 1972&#8211;1977,
-                ed. C. Gordon (1980) 98.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Inquiry 137</title>
-                </analytic>
-                <monogr>
-                    <imprint/>
-                    <biblScope unit="page" from="145">145</biblScope>
-                </monogr>
-            </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Power/Knowledge: Selected Interviews and Other Writings 1972&#8211;1977</title>
-                    <author>
-                        <persName>
-                            <forename>M.</forename>
-                            <surname>Foucault</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <editor>
-                        <persName>
-                            <forename>C.</forename>
-                            <surname>Gordon</surname>
-                        </persName>
-                    </editor>
-                    <imprint>
-                        <date>1980</date>
-                    </imprint>
-                    <biblScope unit="page" from="98">98</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="15">
-            <desc>15 For a detailed analysis of legal method and the political role it plays, see M.J. Mossman, &#8216;Feminism,
-                and Legal Method: The Difference it Makes&#8217; (1986) 3 Aust. J. of Law and Society 30.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Feminism, and Legal Method: The Difference it Makes</title>
-                    <author>
-                        <persName>
-                            <forename>M.J.</forename>
-                            <surname>Mossman</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Aust. J. of Law and Society</title>
-                    <imprint>
-                        <date>1986</date>
-                    </imprint>
-                    <biblScope unit="volume" from="3" to="3">3</biblScope>
-                    <biblScope unit="page" from="30">30</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="16">
-            <desc>16 H.S. Maine, Ancient Law: Its Connection with the Early History of Society and its Relation to
-                Modern Ideas (10th ed., 1912) 174.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Ancient Law: Its Connection with the Early History of Society and its Relation to
-                        Modern Ideas
-                    </title>
-                    <author>
-                        <persName>
-                            <forename>H.S.</forename>
-                            <surname>Maine</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1912</date>
-                    </imprint>
-                    <biblScope unit="page" from="174">174</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="17">
-            <desc>17 This was particularly the case in the United States of America. See M.J. Horwitz, The
-                Transformation of American Law, 1780&#8211;1860 (1977) 160.
-            </desc>
-            <biblStruct/>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">The Transformation of American Law, 1780&#8211;1860</title>
-                    <author>
-                        <persName>
-                            <forename>M.J.</forename>
-                            <surname>Horwitz</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1977</date>
-                    </imprint>
-                    <biblScope unit="page" from="160">160</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="18">
-            <desc>18 M. Grossberg, Governing the Hearth: Law and the Family in Nineteenth-Century America (1985) ix.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Governing the Hearth: Law and the Family in Nineteenth-Century America</title>
-                    <author>
-                        <persName>
-                            <forename>M.</forename>
-                            <surname>Grossberg</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1985</date>
-                    </imprint>
-                    <biblScope unit="page" from="ix">ix</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="19">
-            <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. See S. Staves, Married Women&#8217;s Separate
-                Property in England, 1660&#8211;1833 (1990) 4, 220.
-            </desc>
-            <biblStruct/>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Married Women&#8217;s Separate Property in England, 1660&#8211;1833</title>
-                    <author>
-                        <persName>
-                            <forename>S.</forename>
-                            <surname>Staves</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1990</date>
-                    </imprint>
-                    <biblScope unit="volume" from="4" to="4">4</biblScope>
-                    <biblScope unit="page" from="220">220</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="20">
-            <desc>20 Siegel presents a valuable study of the changing norms of marriage in the context of wife beating.
-                See R.B. Siegel, &#8216;&#8220;The Rule of Love&#8221;: Wife Beating as Prerogative and Privacy&#8217;
-                (1996) 105 Yale Law J. 2117.
-            </desc>
-            <biblStruct/>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">The Rule of Love&#8221;: Wife Beating as Prerogative and Privacy</title>
-                    <author>
-                        <persName>
-                            <forename>R.B.</forename>
-                            <surname>Siegel</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Yale Law J</title>
-                    <imprint>
-                        <date>1996</date>
-                    </imprint>
-                    <biblScope unit="volume" from="105" to="105">105</biblScope>
-                    <biblScope unit="page" from="2117">2117</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="21">
-            <desc>21 C. Pateman, The Sexual Contract (1988). For further analysis of the marriage contract, see K. O&#8217;Donovan,
-                Family Matters (1993), especially 43&#8211;59.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">The Sexual Contract</title>
-                    <author>
-                        <persName>
-                            <forename>C.</forename>
-                            <surname>Pateman</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1988</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Family Matters</title>
-                    <author>
-                        <persName>
-                            <forename>K.</forename>
-                            <surname>O&#8217;Donovan</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1993</date>
-                    </imprint>
-                    <biblScope unit="page" from="especially">especially 43&#8211;59</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="23">
-            <desc>23 Crimes (Sexual Assault) Amendment Act 1981 (N.S.W .); Criminal Law Consolidation Act Amendment Act
-                1976 (S.A .); Criminal Code (Sexual Offences) Act 1987 (Tas .); Crimes (Sexual Offences) 1991 (Vic .);
-                Acts Amendment (Sexual Assault) Act 1985 (W.A .). The High Court upheld the validity of the South
-                Australian law in 1991 (see R. v. L. (1991) 103 A.L.R. 577), the same year that the House of Lords
-                abolished the immunity (see R. v. R. [1991] 2 All E.R. 257).
-            </desc>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <monogr>
-                    <title level="j">All E.R</title>
-                    <imprint>
-                        <date>1991</date>
-                    </imprint>
-                    <biblScope unit="volume" from="2" to="2">2</biblScope>
-                </monogr>
-            </biblStruct>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="24">
-            <desc>24 M. Freeman, &#8216;Contracting in the Haven: Balfour v. Balfour Revisited&#8217; in Exploring the
-                Boundaries of Contract, ed. R. Halson (1996) 74 R. Collier, Masculinity, Law and the Family (1995) 127
-                and throughout. See Collier further for a comprehensive study of sexuality in marriage.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Contracting in the Haven: Balfour v. Balfour Revisited</title>
-                    <author>
-                        <persName>
-                            <forename>M.</forename>
-                            <surname>Freeman</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="m">Exploring the Boundaries of Contract</title>
-                    <editor>
-                        <persName>
-                            <forename>R.</forename>
-                            <surname>Halson</surname>
-                        </persName>
-                    </editor>
-                    <imprint>
-                        <date>1996</date>
-                    </imprint>
-                    <biblScope unit="page" from="74">74</biblScope>
-                    <biblScope unit="page"/>
-                </monogr>
-            </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Masculinity, Law and the Family</title>
-                    <author>
-                        <persName>
-                            <forename>R.</forename>
-                            <surname>Collier</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1995</date>
-                    </imprint>
-                    <biblScope unit="page" from="127">127 and throughout</biblScope>
-                </monogr>
-            </biblStruct>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="25">
-            <desc>25 P.S. Atiyah, An Introduction to the Law of Contract (5th ed., 1995) 3.</desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">An Introduction to the Law of Contract</title>
-                    <author>
-                        <persName>
-                            <forename>P.S.</forename>
-                            <surname>Atiyah</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1995</date>
-                    </imprint>
-                    <biblScope unit="page" from="3">3</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="26">
-            <desc>26 The Australian Law Reform Commission has addressed the issue and recommended recognition of
-                prenuptial agreements. See A.L.R.C., Matrimonial Property, report no. 37 (1987); A.L.R.C. ., Report of
-                the Joint Select Committee on Certain Aspects of the Operation and Interpretation of the Family Law Act
-                (1992). For critique, see M. Neave, &#8216;Private Ordering in Family Law &#8211; Will Women Benefit?&#8217;
-                in Thornton, op. cit., n. 4. For a feminist critique of contract in the American context, see C. Dalton,
-                &#8216;An Essay in the Deconstruction of Contract Doctrine&#8217; (1985) 94 Yale Law J. 997.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Matrimonial Property</title>
-                    <title level="a">Report of the Joint Select Committee on Certain Aspects of the Operation and
-                        Interpretation of the Family
-                        Law Act
-                    </title>
-                    <author>
-                        <orgName>A.L.R.C.</orgName>
-                    </author>
-                    <author>
-                        <orgName>A.L.R.C.</orgName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">report no. 37</title>
-                    <imprint>
-                        <date>1987</date>
-                        <date>1992</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Private Ordering in Family Law &#8211; Will Women Benefit?</title>
-                    <author>
-                        <persName>
-                            <forename>M.</forename>
-                            <surname>Neave</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="m">Thornton</title>
-                    <imprint/>
-                </monogr>
-            </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">An Essay in the Deconstruction of Contract Doctrine</title>
-                    <author>
-                        <persName>
-                            <forename>C.</forename>
-                            <surname>Dalton</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Yale Law J</title>
-                    <imprint>
-                        <date>1985</date>
-                    </imprint>
-                    <biblScope unit="volume" from="94" to="94">94</biblScope>
-                    <biblScope unit="page" from="997">997</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="27">
-            <desc>27 L. J. Weitzman, The Marriage Contract: Spouses, Lovers, and the Law (1981) 347 ff.</desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">The Marriage Contract: Spouses, Lovers, and the Law</title>
-                    <author>
-                        <persName>
-                            <forename>L.</forename>
-                            <forename>J.</forename>
-                            <surname>Weitzman</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1981</date>
-                    </imprint>
-                    <biblScope unit="page" from="347">347</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="28">
-            <desc>28 Grossberg, op. cit., n. 18, p. 52.</desc>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="29">
-            <desc>29 Balfour v. Balfour [1919] 2 K.B. 571.</desc>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="30">
-            <desc>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 assumptions. See
-                M.C. Regan ., Family Law and the Pursuit of Intimacy (1993).
-            </desc>
-            <biblStruct/>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Family Law and the Pursuit of Intimacy</title>
-                    <author>
-                        <persName>
-                            <forename>M.C.</forename>
-                            <surname>Regan</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1993</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="31">
-            <desc>31 For example, Law Reform (Miscellaneous Provisions) Act 1970 (U.K .); Domestic Relations Act 1975
-                (N.Z .); Marriage Act Amendment Act 1976 (Cwth .)
-            </desc>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="32">
-            <desc>32 G.S. Frost, Promises Broken: Courtship, Class, and Gender in Victorian England (1995); Thornton,
-                op. cit. (1996), n. 4.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Promises Broken: Courtship, Class, and Gender in Victorian England (1995)</title>
-                    <author>
-                        <persName>
-                            <forename>G.S.</forename>
-                            <surname>Frost</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint/>
-                </monogr>
-            </biblStruct>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="33">
-            <desc>33 Grossberg, op. cit., n. 18, p. 38.</desc>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="34">
-            <desc>34 Compare U. Vogel, &#8216;Is Citizenship Gender-Specific?&#8217; in The Frontiers of Citizenship,
-                eds. U. Vogel and M. Moran (1991) 59.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Is Citizenship Gender-Specific?</title>
-                    <author>
-                        <persName>
-                            <forename>U.</forename>
-                            <surname>Vogel</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="m">The Frontiers of Citizenship</title>
-                    <editor>
-                        <persName>
-                            <forename>U.</forename>
-                            <surname>Vogel</surname>
-                        </persName>
-                    </editor>
-                    <editor>
-                        <persName>
-                            <forename>M.</forename>
-                            <surname>Moran</surname>
-                        </persName>
-                    </editor>
-                    <imprint>
-                        <date>1991</date>
-                    </imprint>
-                    <biblScope unit="page" from="59">59</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="35">
-            <desc>35 See, for example, Bradwell v. Illinois 83 U.S. (16 Wall) 130 (1873).</desc>
-            <biblStruct/>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="36">
-            <desc>36 Compare J. Pahl, Money and Marriage (1989) 5.</desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Money and Marriage</title>
-                    <author>
-                        <persName>
-                            <forename>J.</forename>
-                            <surname>Pahl</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1989</date>
-                    </imprint>
-                    <biblScope unit="page" from="5">5</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="37">
-            <desc>37 Although Australia, like the United Kingdom, has a separate property regime, the courts are endowed
-                with broad powers under the Family Law Act 1975 (Cwth.) to distribute property equitably. For detailed
-                treatment, see P. Parkinson S. Parker and J. Behrens, Australian Family Law in Context: Commentary and
-                Materials (1994). Most civil law countries and most American states have developed community property
-                regimes which recognize the joint ownership of property acquired during marriage, but the legal
-                significance is similarly directed to the time of divorce. For discussion of the position during
-                marriage, see J.T. Oldham, &#8216;Management of the Community Estate during an Intact Marriage&#8217;
-                (1993) 56 Law and Contemporary Problems 99. For a discussion of the genesis of the two systems, see C.
-                Donahue ., &#8216;What Causes Fundamental Legal Ideas? Marital Property in England and France in the
-                Thirteenth Century&#8217; (1979) 78 Michigan Law Rev. 59.
-            </desc>
-            <biblStruct/>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Australian Family Law in Context: Commentary and Materials</title>
-                    <author>
-                        <persName>
-                            <forename>P.</forename>
-                            <forename>Parkinson</forename>
-                            <surname>S. Parker</surname>
-                        </persName>
-                    </author>
-                    <author>
-                        <persName>
-                            <forename>J.</forename>
-                            <surname>Behrens</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1994</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Management of the Community Estate during an Intact Marriage</title>
-                    <author>
-                        <persName>
-                            <forename>J.T.</forename>
-                            <surname>Oldham</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Law and Contemporary Problems</title>
-                    <imprint>
-                        <date>1993</date>
-                    </imprint>
-                    <biblScope unit="volume" from="56" to="56">56</biblScope>
-                    <biblScope unit="page" from="99">99</biblScope>
-                </monogr>
-            </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">What Causes Fundamental Legal Ideas? Marital Property in England and France in the
-                        Thirteenth Century&#8217;
-                    </title>
-                    <author>
-                        <persName>
-                            <forename>C.</forename>
-                            <surname>Donahue</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Michigan Law Rev</title>
-                    <imprint>
-                        <date>1979</date>
-                    </imprint>
-                    <biblScope unit="volume" from="78" to="78">78</biblScope>
-                    <biblScope unit="page" from="59">59</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="38">
-            <desc>38 The legal construction of masculinity and femininity in family law has been the subject of recent
-                scholarly interest. Notable examples are O&#8217;Donovan, op. cit., n. 21 and Collier, op. cit., n. 24.
-            </desc>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="39">
-            <desc>39 For discussion of sex and legal subjecthood, see N. Naffine &#8216;Sexing the Subject (of Law)&#8217;
-                in Thornton, op. cit. (1995), n. 4.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Sexing the Subject (of Law)</title>
-                    <author>
-                        <persName>
-                            <forename>N.</forename>
-                            <surname>Naffine</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <editor>
-                        <persName>
-                            <surname>Thornton</surname>
-                        </persName>
-                    </editor>
-                    <imprint>
-                        <date>1995</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="40">
-            <desc>40 Contracts Review Act 1980 (N.S.W .).</desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <monogr>
-                    <title level="j">Contracts Review Act</title>
-                    <imprint>
-                        <date>1980</date>
-                        <pubPlace>N.S.W</pubPlace>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="41">
-            <desc>41 J. Nedelsky, Private Property and the Limits of American Constitutionalism: The Madisonian
-                Framework and its Legacy (1990), especially 223 ff.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Private Property and the Limits of American Constitutionalism: The Madisonian
-                        Framework and its Legacy
-                    </title>
-                    <author>
-                        <persName>
-                            <forename>J.</forename>
-                            <surname>Nedelsky</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1990</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="42">
-            <desc>42 C.B. Macpherson, Democratic Theory: Essays in Retrieval (1973) 120.</desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Democratic Theory: Essays in Retrieval</title>
-                    <author>
-                        <persName>
-                            <forename>C.B.</forename>
-                            <surname>Macpherson</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1973</date>
-                    </imprint>
-                    <biblScope unit="page" from="120">120</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="43">
-            <desc>43 For example, N. Howell, &#8216;&#8220;Sexually Transmitted Debt&#8221;: A Feminist Analysis of Laws
-                Regulating Guarantors and Co-Borrowers&#8217; (1995) 4 Aust. Feminist Law J. 93.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Sexually Transmitted Debt&#8221;: A Feminist Analysis of Laws Regulating Guarantors
-                        and Co-Borrowers
-                    </title>
-                    <author>
-                        <persName>
-                            <forename>N.</forename>
-                            <surname>Howell</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Aust. Feminist Law J</title>
-                    <imprint>
-                        <date>1995</date>
-                    </imprint>
-                    <biblScope unit="volume" from="4" to="4">4</biblScope>
-                    <biblScope unit="page" from="93">93</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="44">
-            <desc>44 P. Baron, &#8216;The Free Exercise of Her Will: Women and Emotionally Transmitted Debt&#8217;
-                (1995) 13 Law in Context 23.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">The Free Exercise of Her Will: Women and Emotionally Transmitted Debt</title>
-                    <author>
-                        <persName>
-                            <forename>P.</forename>
-                            <surname>Baron</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Law in Context</title>
-                    <imprint>
-                        <date>1995</date>
-                    </imprint>
-                    <biblScope unit="volume" from="13" to="13">13</biblScope>
-                    <biblScope unit="page" from="23">23</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="45">
-            <desc>45 id., p. 24 B. Fehlberg, &#8216;The Husband, the Bank, the Wife and Her Signature&#8217; (1994) 57
-                Modern Law Rev. 467 468. See, also, Barclays Bank v. O&#8217;Brien [1994] 1 A.C. 180, at 185 per
-                Brown-Wilkinson L
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">The Husband, the Bank, the Wife and Her Signature</title>
-                    <author>
-                        <persName>
-                            <forename>B.</forename>
-                            <surname>Fehlberg</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Modern Law Rev</title>
-                    <imprint>
-                        <date>1994</date>
-                    </imprint>
-                    <biblScope unit="volume" from="57" to="57">57</biblScope>
-                    <biblScope unit="page" from="467">467</biblScope>
-                    <biblScope unit="page" from="468">468</biblScope>
-                </monogr>
-            </biblStruct>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="46">
-            <desc>46 Baron, op. cit., n. 44, p. 34 M. Richardson, &#8216;Protecting Women who provide Security for a
-                Husband&#8217;s, Partner&#8217;s or Child&#8217;s Debts. The Value and Limits of an Economic Perspective&#8217;
-                (1996) 16 Legal Studies 368.
-            </desc>
-            <biblStruct/>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <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
-                        of an Economic Perspective&#8217;
-                    </title>
-                    <author>
-                        <persName>
-                            <forename>M.</forename>
-                            <surname>Richardson</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Legal Studies</title>
-                    <imprint>
-                        <date>1996</date>
-                    </imprint>
-                    <biblScope unit="volume" from="16" to="16">16</biblScope>
-                    <biblScope unit="page" from="368">368</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="47">
-            <desc>47 Examples are legion, and by no means confined to the more sensational criminal law cases picked up
-                by the media, such as R. v. Johns, Supreme Court of South Australia, 26 August 1992 (unreported) in
-                which Bollen J. stated that it was acceptable for a husband to resort to &#8216;rougher than usual
-                handling&#8217; to persuade his wife to have sex with him. For examples relating to STD, see Howell, op.
-                cit., n. 43.
-            </desc>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="48">
-            <desc>48 B. Fehlberg, &#8216;The Husband, the Bank, the Wife and Her Signature &#8211; the Sequel&#8217;
-                (1996) 59 Modern Law Rev. 675.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">The Husband, the Bank, the Wife and Her Signature &#8211; the Sequel</title>
-                    <author>
-                        <persName>
-                            <forename>B.</forename>
-                            <surname>Fehlberg</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Modern Law Rev</title>
-                    <imprint>
-                        <date>1996</date>
-                    </imprint>
-                    <biblScope unit="volume" from="59" to="59">59</biblScope>
-                    <biblScope unit="page" from="675">675</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="49">
-            <desc>49 National Australia Bank Ltd v. Garcia (1996) 39 N.S.W.L.R. 577 (N.S.W.C.A.). 50 (1991) 25
-                N.S.W.L.R. 32 (C.A.).
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <monogr>
-                    <title level="j">N.S.W.L.R</title>
-                    <imprint>
-                        <date>1996</date>
-                    </imprint>
-                    <biblScope unit="volume" from="39" to="39">39</biblScope>
-                </monogr>
-            </biblStruct>
-            <biblStruct/>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="52">
-            <desc>52 1994) A.S.C. 56&#8211;268 (N.S.W.C.A.).</desc>
-            <biblStruct/>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="53">
-            <desc>53 Based on the Trade Practices Act 1974 (Cwth.), s. 52 and the Contracts Review Act 1980 (N.S.W .).
-                54 (1994) A.S.C. 56&#8211;270 (N.S.W.C.A .)
-            </desc>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="55">
-            <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 Barclays Bank v. O&#8217;Brien
-                [1994] 1 A.C. 180. See, also, Banco Exterior Internacional v. Mann [1995] 1 All E.R. 936.
-            </desc>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="56">
-            <desc>56 See I.J. Hardingham and M.A. Neave, Australian Family Property Law (1984) 94.</desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Australian Family Property Law</title>
-                    <author>
-                        <persName>
-                            <forename>I.J.</forename>
-                            <surname>Hardingham</surname>
-                        </persName>
-                    </author>
-                    <author>
-                        <persName>
-                            <forename>M.A.</forename>
-                            <surname>Neave</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1984</date>
-                    </imprint>
-                    <biblScope unit="page" from="94">94</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="57">
-            <desc>57 Compare K. O&#8217;Donovan, Sexual Divisions in Law (1985), especially 112&#8211;18.</desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Sexual Divisions in Law</title>
-                    <author>
-                        <persName>
-                            <forename>K.</forename>
-                            <surname>O&#8217;Donovan</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1985</date>
-                    </imprint>
-                    <biblScope unit="page" from="especially">especially 112&#8211;18</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="58">
-            <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. See C.A. Reich, &#8216;The New Property&#8217; (1964) 73
-                Yale Law J. 733. Despite a greater sensitivity to the interests of women, as well as writing almost two
-                decades later, Glendon also fails to address the question of unpaid work as a form of property. See M.A.
-                Glendon, The New Family and the New Property (1981).
-            </desc>
-            <biblStruct/>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">The New Property</title>
-                    <author>
-                        <persName>
-                            <forename>C.A.</forename>
-                            <surname>Reich</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Yale Law J</title>
-                    <imprint>
-                        <date>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">
-                <analytic>
-                    <title level="a">The New Family and the New Property</title>
-                    <author>
-                        <persName>
-                            <forename>M.A.</forename>
-                            <surname>Glendon</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1981</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="59">
-            <desc>59 1992) 29 N.S.W.L.R. 188 (C.A .)</desc>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="60">
-            <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. For a discussion of recent trends in Australia, see 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.
-            </desc>
-            <biblStruct/>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Property Rights and Third Party Creditors &#8211; the Scope and Limitations of
-                        Equitable Doctrines
-                    </title>
-                    <author>
-                        <persName>
-                            <forename>P.</forename>
-                            <surname>Parkinson</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Australian J. Family Law</title>
-                    <imprint>
-                        <date>1997</date>
-                    </imprint>
-                    <biblScope unit="volume" from="11" to="11">11</biblScope>
-                    <biblScope unit="page" from="100">100</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="61">
-            <desc>61 For discussion, see J. Riley, &#8216;The Property Rights of Home-Makers under General Law: Bryson
-                v. Bryant&#8217; (1994) 16 Sydney Law Rev. 412.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">The Property Rights of Home-Makers under General Law: Bryson v. Bryant</title>
-                    <author>
-                        <persName>
-                            <forename>J.</forename>
-                            <surname>Riley</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Sydney Law Rev</title>
-                    <imprint>
-                        <date>1994</date>
-                    </imprint>
-                    <biblScope unit="volume" from="16" to="16">16</biblScope>
-                    <biblScope unit="page" from="412">412</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="62">
-            <desc>62 The Justice T. E. Lindenmayer and P.A. Doolan, &#8216;When Bankruptcy and Family Law Collide&#8217;
-                (1994) 8 Aust. J. Family Law 111 133.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">When Bankruptcy and Family Law Collide</title>
-                    <author>
-                        <persName>
-                            <forename>Justice</forename>
-                            <forename>T. E.</forename>
-                            <surname>Lindenmayer</surname>
-                        </persName>
-                    </author>
-                    <author>
-                        <persName>
-                            <forename>P.A.</forename>
-                            <surname>Doolan</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Aust. J. Family Law</title>
-                    <imprint>
-                        <date>1994</date>
-                    </imprint>
-                    <biblScope unit="volume" from="8" to="8">8</biblScope>
-                    <biblScope unit="page" from="111">111</biblScope>
-                    <biblScope unit="page" from="133">133</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="63">
-            <desc>63 B. Bennett, &#8216;The Economics of Wifing Services: Law and Economics on the Family&#8217; (1991)
-                18 J. of Law and Society 206.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">The Economics of Wifing Services: Law and Economics on the Family</title>
-                    <author>
-                        <persName>
-                            <forename>B.</forename>
-                            <surname>Bennett</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">J. of Law and Society</title>
-                    <imprint>
-                        <date>1991</date>
-                    </imprint>
-                    <biblScope unit="volume" from="18" to="18">18</biblScope>
-                    <biblScope unit="page" from="206">206</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="64">
-            <desc>64 O&#8217;Donovan, op. cit., n. 57; Thornton, op. cit. (1995), n. 4.</desc>
-            <biblStruct/>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="65">
-            <desc>65 N.S.W.C.A., unreported, 23 May 1994.</desc>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="66">
-            <desc>66 For detailed discussion of the ramifications, see L.J. Weitzman, The Divorce Revolution: The
-                Unexpected Social and Economic Consequences for Women and Children in America (1985).
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">The Divorce Revolution: The Unexpected Social and Economic Consequences for Women
-                        and Children in
-                        America
-                    </title>
-                    <author>
-                        <persName>
-                            <forename>L.J.</forename>
-                            <surname>Weitzman</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1985</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="67">
-            <desc>67 M.L. Shanley, Feminism, Marriage, and the Law in Victorian England, 1850&#8211;1895 (1989) 46.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Feminism, Marriage, and the Law in Victorian England, 1850&#8211;1895</title>
-                    <author>
-                        <persName>
-                            <forename>M.L.</forename>
-                            <surname>Shanley</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1989</date>
-                    </imprint>
-                    <biblScope unit="page" from="46">46</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="68">
-            <desc>68 The move to contract as the governing principle of family law has been noted by commentators. See,
-                for example, Freeman, op. cit., n. 24; Neave, op. cit., n. 26; Regan, op. cit., n. 30.
-            </desc>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="69">
-            <desc>69 Bryson v. Bryant 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
-                constructive trust in the context of de facto spouses. See M. Neave &#8216;Three Approaches to Family
-                Law Disputes &#8211; Intention/Belief, Unjust Enrichment and Unconscionability&#8217; in Equity,
-                Fiduciaries and Trusts, ed. T.G. Youdan (1989) 262&#8211;4.
-            </desc>
-            <biblStruct/>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Three Approaches to Family Law Disputes &#8211; Intention/Belief, Unjust Enrichment
-                        and Unconscionability&#8217;
-                    </title>
-                    <author>
-                        <persName>
-                            <forename>M.</forename>
-                            <surname>Neave</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="m">Equity, Fiduciaries and Trusts</title>
-                    <editor>
-                        <persName>
-                            <forename>T.G.</forename>
-                            <surname>Youdan</surname>
-                        </persName>
-                    </editor>
-                    <imprint>
-                        <date>1989</date>
-                    </imprint>
-                    <biblScope unit="page" from="262" to="4">262&#8211;4</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="70">
-            <desc>70 For an interesting case study of this phenomenon, see L. Sarmas, &#8216;Storytelling and the Law: A
-                Case Study of Louth v. Diprose&#8217; (1994) 19 Melbourne University Law Rev. 701.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Storytelling and the Law: A Case Study of Louth v. Diprose</title>
-                    <author>
-                        <persName>
-                            <forename>L.</forename>
-                            <surname>Sarmas</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Melbourne University Law Rev</title>
-                    <imprint>
-                        <date>1994</date>
-                    </imprint>
-                    <biblScope unit="volume" from="19" to="19">19</biblScope>
-                    <biblScope unit="page" from="701">701</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="71">
-            <desc>71 C. Colebrook, &#8216;Feminist Ethics and Historicism&#8217; (1996) 11 Aust. Feminist Studies 295
-                300.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Feminist Ethics and Historicism</title>
-                    <author>
-                        <persName>
-                            <forename>C.</forename>
-                            <surname>Colebrook</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Aust. Feminist Studies</title>
-                    <imprint>
-                        <date>1996</date>
-                    </imprint>
-                    <biblScope unit="volume" from="11" to="11">11</biblScope>
-                    <biblScope unit="page" from="295">295</biblScope>
-                    <biblScope unit="page" from="300">300</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="72">
-            <desc>72 M. Albertson Fineman, The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies
-                (1995) 7.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies
-                    </title>
-                    <author>
-                        <persName>
-                            <forename>M.</forename>
-                            <forename>Albertson</forename>
-                            <surname>Fineman</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1995</date>
-                    </imprint>
-                    <biblScope unit="page" from="7">7</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="73">
-            <desc>73 Compare K. O&#8217;Donovan, &#8216;Should all Maintenance of Spouses be abolished?&#8217; (1982) 45
-                Modern Law Rev. 424 431&#8211;3.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Should all Maintenance of Spouses be abolished?</title>
-                    <author>
-                        <persName>
-                            <forename>K.</forename>
-                            <surname>O&#8217;Donovan</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">Modern Law Rev</title>
-                    <imprint>
-                        <date>1982</date>
-                    </imprint>
-                    <biblScope unit="volume" from="45" to="45">45</biblScope>
-                    <biblScope unit="page" from="424">424</biblScope>
-                    <biblScope unit="page" from="431" to="3">431&#8211;3</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="74">
-            <desc>74 For example, De Facto Relationships Act 1984 (N.S.W .). For detailed analysis of the policy
-                considerations, see M.D.A. Freeman and C.M. Lyon, Cohabitation without Marriage: An Essay in Law and
-                Social Policy (1983); New South Wales Law Reform Commission, De Facto Relationships: Issues Paper
-                (1981).
-            </desc>
-            <biblStruct/>
-            <biblStruct/>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Cohabitation without Marriage: An Essay in Law and Social Policy</title>
-                    <author>
-                        <persName>
-                            <forename>M.D.A.</forename>
-                            <surname>Freeman</surname>
-                        </persName>
-                    </author>
-                    <author>
-                        <persName>
-                            <forename>C.M.</forename>
-                            <surname>Lyon</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1983</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">De Facto Relationships: Issues Paper</title>
-                    <author>
-                        <persName>
-                            <forename>New</forename>
-                            <forename>South Wales Law Reform</forename>
-                            <surname>Commission</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1981</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="75">
-            <desc>75 Eds. of the Harvard Law Review, Sexual Orientation and the Law (1990); Dean v. District of Columbia
-                653 U.S. App. D.C 307 (1995); C. Overington, &#8216;Why can&#8217;t They Marry?&#8217; The Age, 26 April
-                1997.
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Sexual Orientation and the Law</title>
-                    <author>
-                        <persName>
-                            <forename>Eds. of the Harvard</forename>
-                            <forename>Law</forename>
-                            <surname>Review</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1990</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">Why can&#8217;t They Marry?</title>
-                    <author>
-                        <persName>
-                            <forename>C.</forename>
-                            <surname>Overington</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <title level="j">The Age</title>
-                    <imprint>
-                        <date>1995</date>
-                        <date>1997</date>
-                    </imprint>
-                    <biblScope unit="page" from="26">26</biblScope>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="76">
-            <desc>76 For example, Lesbian Gay Rights Service and The Bride Wore Pink; Legal Recognition of Our
-                Relationships (1994).
-            </desc>
-            <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
-                <analytic>
-                    <title level="a">The Bride Wore Pink; Legal Recognition of Our Relationships</title>
-                    <author>
-                        <persName>
-                            <surname>Lesbian</surname>
-                        </persName>
-                    </author>
-                    <author>
-                        <persName>
-                            <forename>Gay</forename>
-                            <forename>Rights</forename>
-                            <surname>Service</surname>
-                        </persName>
-                    </author>
-                </analytic>
-                <monogr>
-                    <imprint>
-                        <date>1994</date>
-                    </imprint>
-                </monogr>
-            </biblStruct>
-        </listBibl>
-        <listBibl n="77">
-            <desc>77 id., p. 3.</desc>
-            <biblStruct/>
-        </listBibl>
-        <listBibl n="78">
-            <desc>78 Above, n. 30.</desc>
-            <biblStruct/>
-        </listBibl>
-    </standOff>
-</TEI>
+<TEI xmlns="http://www.tei-c.org/ns/1.0"><teiHeader xmlns:mods="http://www.loc.gov/mods/v3" xmlns:oape="https://openarabicpe.github.io/ns" xmlns:tei="http://www.tei-c.org/ns/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.tei-c.org/ns/1.0">
+      <fileDesc>
+         <titleStmt>
+            <title>Bibliographic data for 10.1111_1467-6478.00057</title>
+         </titleStmt>
+         <publicationStmt>
+            <p>This bibliographic data is in the public domain.</p>
+         </publicationStmt>
+         <sourceDesc>
+            <p>10.1111_1467-6478.00057</p>
+         </sourceDesc>
+      </fileDesc>
+   </teiHeader>
+   <standOff><listBibl n="1"><desc>1 A. Phillips, &#8216;Citizenship and Feminist Politics&#8217; in Citizenship, ed. G. Andrews (1991) 77.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Citizenship and Feminist Politics</title>
+               <author>
+                  <persName>
+                     <forename>A.</forename>
+                     <surname>Phillips</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="m">Citizenship</title>
+               <editor>
+                  <persName>
+                     <forename>G.</forename>
+                     <surname>Andrews</surname>
+                  </persName>
+               </editor>
+               <imprint>
+                  <date>1991</date>
+               </imprint>
+               <biblScope unit="page" from="77">77</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="2"><desc>2 T. Brennan and C. Pateman, &#8216;&#8220;Mere Auxiliaries to the Commonwealth&#8221;: Women and the Origins of Liberalism&#8217; (1979) 27 Political Studies 183.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Mere Auxiliaries to the Commonwealth&#8221;: Women and the Origins of Liberalism</title>
+               <author>
+                  <persName>
+                     <forename>T.</forename>
+                     <surname>Brennan</surname>
+                  </persName>
+               </author>
+               <author>
+                  <persName>
+                     <forename>C.</forename>
+                     <surname>Pateman</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Political Studies</title>
+               <imprint>
+                  <date>1979</date>
+               </imprint>
+               <biblScope unit="volume" from="27" to="27">27</biblScope>
+               <biblScope unit="page" from="183">183</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="3"><desc>3 M. Sawer and M. Simms, A Woman&#8217;s Place: Women and Politics in Australia (2nd ed., 1993).</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">A Woman&#8217;s Place: Women and Politics in Australia</title>
+               <author>
+                  <persName>
+                     <forename>M.</forename>
+                     <surname>Sawer</surname>
+                  </persName>
+               </author>
+               <author>
+                  <persName>
+                     <forename>M.</forename>
+                     <surname>Simms</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1993</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="4"><desc>4 I have explored the gendered nature of citizenship at greater length in two complementary papers: &#8216;Embodying the Citizen&#8217; in Public and Private: Feminist Legal Debates, ed. M. Thornton (1995) and &#8216;Historicising Citizenship: Remembering Broken Promises&#8217; (1996) 20 Melbourne University Law Rev. 1072.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Embodying the Citizen</title>
+            </analytic>
+            <monogr>
+               <title level="m">Public and Private: Feminist Legal Debates</title>
+               <editor>
+                  <persName>
+                     <forename>M.</forename>
+                     <surname>Thornton</surname>
+                  </persName>
+               </editor>
+               <imprint>
+                  <date>1995</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Historicising Citizenship: Remembering Broken Promises</title>
+            </analytic>
+            <monogr>
+               <title level="j">Melbourne University Law Rev</title>
+               <imprint>
+                  <date>1996</date>
+               </imprint>
+               <biblScope unit="volume" from="20" to="20">20</biblScope>
+               <biblScope unit="page" from="1072">1072</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="5"><desc>5 S. Walby, &#8216;Is Citizenship Gendered?&#8217; (1994) 28 Sociology 379</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Is Citizenship Gendered?</title>
+               <author>
+                  <persName>
+                     <forename>S.</forename>
+                     <surname>Walby</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Sociology</title>
+               <imprint>
+                  <date>1994</date>
+               </imprint>
+               <biblScope unit="volume" from="28" to="28">28</biblScope>
+               <biblScope unit="page" from="379">379</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="6"><desc>6 I. Kant, &#8216;Metaphysical First Principles of the Doctrine of Right [1785]&#8217; in The Metaphysics of Morals (trans. M. Gregor, 1991) 125&#8211;6 s. 146.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Metaphysical First Principles of the Doctrine of Right [1785]</title>
+               <author>
+                  <persName>
+                     <forename>I.</forename>
+                     <surname>Kant</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="m">The Metaphysics of Morals</title>
+               <imprint>
+                  <date>1991</date>
+               </imprint>
+               <biblScope unit="page" from="125" to="6">125&#8211;6</biblScope>
+               <biblScope unit="page" from="146">146</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="7"><desc>7 U. Vogel, &#8216;Marriage and the Boundaries of Citizenship&#8217; in The Condition of Citizenship, ed. B. van Steenbergen (1994) 75.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Marriage and the Boundaries of Citizenship</title>
+               <author>
+                  <persName>
+                     <forename>U.</forename>
+                     <surname>Vogel</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="m">The Condition of Citizenship</title>
+               <editor>
+                  <persName>
+                     <forename>B.</forename>
+                     <surname>van Steenbergen</surname>
+                  </persName>
+               </editor>
+               <imprint>
+                  <date>1994</date>
+               </imprint>
+               <biblScope unit="page" from="75">75</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="8"><desc>8 N. Fraser and L. Gordon, &#8216;Civil Citizenship against Social Citizenship?&#8217; in id., p. 97.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Civil Citizenship against Social Citizenship?</title>
+               <author>
+                  <persName>
+                     <forename>N.</forename>
+                     <surname>Fraser</surname>
+                  </persName>
+               </author>
+               <author>
+                  <persName>
+                     <forename>L.</forename>
+                     <surname>Gordon</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="9"><desc>9 Vogel, id., p. 79. W. Blackstone, Commentaries (Facsimile of 1st. ed. of 1765&#8211;69, 1979) 442.</desc><biblStruct/><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Commentaries</title>
+               <author>
+                  <persName>
+                     <forename>W.</forename>
+                     <surname>Blackstone</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1979</date>
+               </imprint>
+               <biblScope unit="page" from="442">442</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="11"><desc>11 Vogel, op. cit., n. 7, pp. 80&#8211;1.</desc><biblStruct/></listBibl><listBibl n="12"><desc>12 F. Haug (ed.), Female Sexualization: A Collective Work of Memory (1987) 196.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Female Sexualization: A Collective Work of Memory</title>
+            </analytic>
+            <monogr>
+               <editor>
+                  <persName>
+                     <forename>F.</forename>
+                     <surname>Haug</surname>
+                  </persName>
+               </editor>
+               <imprint>
+                  <date>1987</date>
+               </imprint>
+               <biblScope unit="page" from="196">196</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="13"><desc>13 A. Bottomley, &#8216;Self and Subjectivities: Languages of Claim in Property Law&#8217; (1993) 20 J. of Law and Society 56, 61.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Self and Subjectivities: Languages of Claim in Property Law</title>
+               <author>
+                  <persName>
+                     <forename>A.</forename>
+                     <surname>Bottomley</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">J. of Law and Society</title>
+               <imprint>
+                  <date>1993</date>
+               </imprint>
+               <biblScope unit="volume" from="20" to="20">20</biblScope>
+               <biblScope unit="page" from="56">56</biblScope>
+               <biblScope unit="page" from="61">61</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="14"><desc>14 D. West, &#8216;Power and Formation: New Foundations for a Radical Concept of Power&#8217; (1987)</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Power and Formation: New Foundations for a Radical Concept of Power</title>
+               <author>
+                  <persName>
+                     <forename>D.</forename>
+                     <surname>West</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1987</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="30"><desc>30 Inquiry 137, 145. Compare M. Foucault, Power/Knowledge: Selected Interviews and Other Writings 1972&#8211;1977, ed. C. Gordon (1980) 98.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Inquiry 137</title>
+            </analytic>
+            <monogr>
+               <imprint/>
+               <biblScope unit="page" from="145">145</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Power/Knowledge: Selected Interviews and Other Writings 1972&#8211;1977</title>
+               <author>
+                  <persName>
+                     <forename>M.</forename>
+                     <surname>Foucault</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <editor>
+                  <persName>
+                     <forename>C.</forename>
+                     <surname>Gordon</surname>
+                  </persName>
+               </editor>
+               <imprint>
+                  <date>1980</date>
+               </imprint>
+               <biblScope unit="page" from="98">98</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="15"><desc>15 For a detailed analysis of legal method and the political role it plays, see M.J. Mossman, &#8216;Feminism, and Legal Method: The Difference it Makes&#8217; (1986) 3 Aust. J. of Law and Society 30.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Feminism, and Legal Method: The Difference it Makes</title>
+               <author>
+                  <persName>
+                     <forename>M.J.</forename>
+                     <surname>Mossman</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Aust. J. of Law and Society</title>
+               <imprint>
+                  <date>1986</date>
+               </imprint>
+               <biblScope unit="volume" from="3" to="3">3</biblScope>
+               <biblScope unit="page" from="30">30</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="16"><desc>16 H.S. Maine, Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas (10th ed., 1912) 174.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas</title>
+               <author>
+                  <persName>
+                     <forename>H.S.</forename>
+                     <surname>Maine</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1912</date>
+               </imprint>
+               <biblScope unit="page" from="174">174</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="17"><desc>17 This was particularly the case in the United States of America. See M.J. Horwitz, The Transformation of American Law, 1780&#8211;1860 (1977) 160.</desc><biblStruct/><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">The Transformation of American Law, 1780&#8211;1860</title>
+               <author>
+                  <persName>
+                     <forename>M.J.</forename>
+                     <surname>Horwitz</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1977</date>
+               </imprint>
+               <biblScope unit="page" from="160">160</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="18"><desc>18 M. Grossberg, Governing the Hearth: Law and the Family in Nineteenth-Century America (1985) ix.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Governing the Hearth: Law and the Family in Nineteenth-Century America</title>
+               <author>
+                  <persName>
+                     <forename>M.</forename>
+                     <surname>Grossberg</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1985</date>
+               </imprint>
+               <biblScope unit="page" from="ix">ix</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="19"><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. See S. Staves, Married Women&#8217;s Separate Property in England, 1660&#8211;1833 (1990) 4, 220.</desc><biblStruct/><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Married Women&#8217;s Separate Property in England, 1660&#8211;1833</title>
+               <author>
+                  <persName>
+                     <forename>S.</forename>
+                     <surname>Staves</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1990</date>
+               </imprint>
+               <biblScope unit="volume" from="4" to="4">4</biblScope>
+               <biblScope unit="page" from="220">220</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="20"><desc>20 Siegel presents a valuable study of the changing norms of marriage in the context of wife beating. See R.B. Siegel, &#8216;"The Rule of Love&#8221;: Wife Beating as Prerogative and Privacy&#8217; (1996) 105 Yale Law J. 2117.</desc><biblStruct/><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">"The Rule of Love&#8221;: Wife Beating as Prerogative and Privacy</title>
+               <author>
+                  <persName>
+                     <forename>R.B.</forename>
+                     <surname>Siegel</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Yale Law J</title>
+               <imprint>
+                  <date>1996</date>
+               </imprint>
+               <biblScope unit="volume" from="105" to="105">105</biblScope>
+               <biblScope unit="page" from="2117">2117</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="21"><desc>21 C. Pateman, The Sexual Contract (1988). For further analysis of the marriage contract, see K. O&#8217;Donovan, Family Matters (1993), especially 43&#8211;59.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">The Sexual Contract</title>
+               <author>
+                  <persName>
+                     <forename>C.</forename>
+                     <surname>Pateman</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1988</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Family Matters</title>
+               <author>
+                  <persName>
+                     <forename>K.</forename>
+                     <surname>O&#8217;Donovan</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1993</date>
+               </imprint>
+               <biblScope unit="page" from="especially">especially 43&#8211;59</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="23"><desc>23 Crimes (Sexual Assault) Amendment Act 1981 (N.S.W.); Criminal Law Consolidation Act Amendment Act 1976 (S.A.); Criminal Code (Sexual Offences) Act 1987 (Tas.); Crimes (Sexual Offences) 1991 (Vic.); Acts Amendment (Sexual Assault) Act 1985 (W.A.). The High Court upheld the validity of the South Australian law in 1991 (see R. v. L. (1991) 103 A.L.R. 577), the same year that the House of Lords abolished the immunity (see R. v. R. [1991] 2 All E.R. 257).</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Crimes (Sexual Assault) Amendment Act</title>
+               <imprint>
+                  <date>1981</date>
+                  <pubPlace>N.S.W.</pubPlace>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Criminal Law Consolidation Act Amendment Act</title>
+               <imprint>
+                  <date>1976</date>
+                  <pubPlace>S.A.</pubPlace>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Criminal Code (Sexual Offences) Act</title>
+               <imprint>
+                  <date>1987</date>
+                  <pubPlace>Tas.</pubPlace>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Crimes (Sexual Offences)</title>
+               <imprint>
+                  <date>1991</date>
+                  <pubPlace>Vic.</pubPlace>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Acts Amendment (Sexual Assault) Act</title>
+               <imprint>
+                  <date>1985</date>
+                  <pubPlace>W.A.</pubPlace>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct/><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">R. v. L.</title>
+               <idno type="caseNumber">103 A.L.R. 577</idno>
+               <imprint>
+                  <date>1991</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct/><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">R. v. R.</title>
+               <title level="j">All E.R.</title>
+               <imprint>
+                  <date>1991</date>
+               </imprint>
+               <biblScope unit="volume" from="2" to="2">2</biblScope>
+               <biblScope unit="page" from="257">257</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="24"><desc>24 M. Freeman, &#8216;Contracting in the Haven: Balfour v. Balfour Revisited&#8217; in Exploring the Boundaries of Contract, ed. R. Halson (1996) 74 R. Collier, Masculinity, Law and the Family (1995) 127 and throughout. See Collier further for a comprehensive study of sexuality in marriage.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Contracting in the Haven: Balfour v. Balfour Revisited</title>
+               <author>
+                  <persName>
+                     <forename>M.</forename>
+                     <surname>Freeman</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="m">Exploring the Boundaries of Contract</title>
+               <editor>
+                  <persName>
+                     <forename>R.</forename>
+                     <surname>Halson</surname>
+                  </persName>
+               </editor>
+               <imprint>
+                  <date>1996</date>
+               </imprint>
+               <biblScope unit="page" from="74">74</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Masculinity, Law and the Family</title>
+               <author>
+                  <persName>
+                     <forename>R.</forename>
+                     <surname>Collier</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1995</date>
+               </imprint>
+               <biblScope unit="page" from="127">127 and throughout</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct/></listBibl><listBibl n="25"><desc>25 P.S. Atiyah, An Introduction to the Law of Contract (5th ed., 1995) 3.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">An Introduction to the Law of Contract</title>
+               <author>
+                  <persName>
+                     <forename>P.S.</forename>
+                     <surname>Atiyah</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1995</date>
+               </imprint>
+               <biblScope unit="page" from="3">3</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="26"><desc>26 The Australian Law Reform Commission has addressed the issue and recommended recognition of prenuptial agreements. See A.L.R.C., Matrimonial Property, report no. 37 (1987); A.L.R.C. ., Report of the Joint Select Committee on Certain Aspects of the Operation and Interpretation of the Family Law Act (1992). For critique, see M. Neave, &#8216;Private Ordering in Family Law &#8211; Will Women Benefit?&#8217; in Thornton, op. cit., n. 4. For a feminist critique of contract in the American context, see C. Dalton, &#8216;An Essay in the Deconstruction of Contract Doctrine&#8217; (1985) 94 Yale Law J. 997.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Matrimonial Property</title>
+               <author>
+                  <orgName>A.L.R.C.</orgName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">report no. 37</title>
+               <imprint>
+                  <date>1987</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Report of the Joint Select Committee on Certain Aspects of the Operation and Interpretation of the Family
+            Law Act</title>
+               <author>
+                  <orgName>A.L.R.C.</orgName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1992</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Private Ordering in Family Law &#8211; Will Women Benefit?</title>
+               <author>
+                  <persName>
+                     <forename>M.</forename>
+                     <surname>Neave</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="m">Thornton</title>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">An Essay in the Deconstruction of Contract Doctrine</title>
+               <author>
+                  <persName>
+                     <forename>C.</forename>
+                     <surname>Dalton</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Yale Law J</title>
+               <imprint>
+                  <date>1985</date>
+               </imprint>
+               <biblScope unit="volume" from="94" to="94">94</biblScope>
+               <biblScope unit="page" from="997">997</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="27"><desc>27 L. J. Weitzman, The Marriage Contract: Spouses, Lovers, and the Law (1981) 347 ff.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">The Marriage Contract: Spouses, Lovers, and the Law</title>
+               <author>
+                  <persName>
+                     <forename>L.</forename>
+                     <forename>J.</forename>
+                     <surname>Weitzman</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1981</date>
+               </imprint>
+               <biblScope unit="page" from="347">347</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="28"><desc>28 Grossberg, op. cit., n. 18, p. 52.</desc><biblStruct/></listBibl><listBibl n="29"><desc>29 V. Balfour [1919] 2 K.B. 571.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="j">K.B.</title>
+               <author>
+                  <persName>
+                     <forename>V.</forename>
+                     <surname>Balfour</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1919</date>
+               </imprint>
+               <biblScope unit="volume" from="2">2</biblScope>
+               <biblScope unit="page" from="571">571</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="30"><desc>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 assumptions. See M.C. Regan ., Family Law and the Pursuit of Intimacy (1993).</desc><biblStruct/><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Family Law and the Pursuit of Intimacy</title>
+               <author>
+                  <persName>
+                     <forename>M.C.</forename>
+                     <surname>Regan</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1993</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="31"><desc>31 For example, Law Reform (Miscellaneous Provisions) Act 1970 (U.K.); Domestic Relations Act 1975 (N.Z.); Marriage Act Amendment Act 1976 (Cwth.)</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Law Reform (Miscellaneous Provisions) Act</title>
+               <imprint>
+                  <date>1970</date>
+                  <pubPlace>U.K.</pubPlace>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Domestic Relations Act</title>
+               <imprint>
+                  <date>1975</date>
+                  <pubPlace>N.Z.</pubPlace>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Marriage Act Amendment Act</title>
+               <imprint>
+                  <date>1976</date>
+                  <pubPlace>Cwth.</pubPlace>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="32"><desc>32 G.S. Frost, Promises Broken: Courtship, Class, and Gender in Victorian England (1995); Thornton, op. cit. (1996), n. 4.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Promises Broken: Courtship, Class, and Gender in Victorian England (1995)</title>
+               <author>
+                  <persName>
+                     <forename>G.S.</forename>
+                     <surname>Frost</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct/></listBibl><listBibl n="33"><desc>33 Grossberg, op. cit., n. 18, p. 38.</desc><biblStruct/></listBibl><listBibl n="34"><desc>34 Compare U. Vogel, &#8216;Is Citizenship Gender-Specific?&#8217; in The Frontiers of Citizenship, eds. U. Vogel and M. Moran (1991) 59.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Is Citizenship Gender-Specific?</title>
+               <author>
+                  <persName>
+                     <forename>U.</forename>
+                     <surname>Vogel</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="m">The Frontiers of Citizenship</title>
+               <editor>
+                  <persName>
+                     <forename>U.</forename>
+                     <surname>Vogel</surname>
+                  </persName>
+               </editor>
+               <editor>
+                  <persName>
+                     <forename>M.</forename>
+                     <surname>Moran</surname>
+                  </persName>
+               </editor>
+               <imprint>
+                  <date>1991</date>
+               </imprint>
+               <biblScope unit="page" from="59">59</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="35"><desc>35 See, for example, Bradwell v. Illinois 83 U.S. (16 Wall) 130 (1873).</desc><biblStruct/><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Bradwell v. Illinois 83 U.S. (16 Wall) 130</title>
+               <imprint>
+                  <date>1873</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="36"><desc>36 Compare J. Pahl, Money and Marriage (1989) 5.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Money and Marriage</title>
+               <author>
+                  <persName>
+                     <forename>J.</forename>
+                     <surname>Pahl</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1989</date>
+               </imprint>
+               <biblScope unit="page" from="5">5</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="37"><desc>37 Although Australia, like the United Kingdom, has a separate property regime, the courts are endowed with broad powers under the Family Law Act 1975 (Cwth.) to distribute property equitably. For detailed treatment, see P. Parkinson S. Parker and J. Behrens, Australian Family Law in Context: Commentary and Materials (1994). Most civil law countries and most American states have developed community property regimes which recognize the joint ownership of property acquired during marriage, but the legal significance is similarly directed to the time of divorce. For discussion of the position during marriage, see J.T. Oldham, &#8216;Management of the Community Estate during an Intact Marriage&#8217; (1993) 56 Law and Contemporary Problems 99. For a discussion of the genesis of the two systems, see C. Donahue, &#8216;What Causes Fundamental Legal Ideas? Marital Property in England and France in the Thirteenth Century&#8217; (1979) 78 Michigan Law Rev. 59.</desc><biblStruct/><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Australian Family Law in Context: Commentary and Materials</title>
+               <author>
+                  <persName>
+                     <forename>P.</forename>
+                     <forename>Parkinson</forename>
+                     <surname>S. Parker</surname>
+                  </persName>
+               </author>
+               <author>
+                  <persName>
+                     <forename>J.</forename>
+                     <surname>Behrens</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1994</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Management of the Community Estate during an Intact Marriage</title>
+               <author>
+                  <persName>
+                     <forename>J.T.</forename>
+                     <surname>Oldham</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Law and Contemporary Problems</title>
+               <imprint>
+                  <date>1993</date>
+               </imprint>
+               <biblScope unit="volume" from="56" to="56">56</biblScope>
+               <biblScope unit="page" from="99">99</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">What Causes Fundamental Legal Ideas? Marital Property in England and France in the Thirteenth Century&#8217;</title>
+               <author>
+                  <persName>
+                     <forename>C.</forename>
+                     <surname>Donahue</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Michigan Law Rev</title>
+               <imprint>
+                  <date>1979</date>
+               </imprint>
+               <biblScope unit="volume" from="78" to="78">78</biblScope>
+               <biblScope unit="page" from="59">59</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="38"><desc>38 The legal construction of masculinity and femininity in family law has been the subject of recent scholarly interest. Notable examples are O&#8217;Donovan, op. cit., n. 21 and Collier, op. cit., n. 24.</desc><biblStruct/><biblStruct/><biblStruct/></listBibl><listBibl n="39"><desc>39 For discussion of sex and legal subjecthood, see N. Naffine &#8216;Sexing the Subject (of Law)&#8217; in Thornton, op. cit. (1995), n. 4.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Sexing the Subject (of Law)</title>
+               <author>
+                  <persName>
+                     <forename>N.</forename>
+                     <surname>Naffine</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <editor>
+                  <persName>
+                     <surname>Thornton</surname>
+                  </persName>
+               </editor>
+               <imprint>
+                  <date>1995</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="40"><desc>40 Contracts Review Act 1980 (N.S.W.).</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Contracts Review Act</title>
+               <imprint>
+                  <date>1980</date>
+                  <pubPlace>N.S.W.</pubPlace>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="41"><desc>41 J. Nedelsky, Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy (1990), especially 223 ff</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy</title>
+               <author>
+                  <persName>
+                     <forename>J.</forename>
+                     <surname>Nedelsky</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1990</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="42"><desc>42 C.B. Macpherson, Democratic Theory: Essays in Retrieval (1973) 120.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Democratic Theory: Essays in Retrieval</title>
+               <author>
+                  <persName>
+                     <forename>C.B.</forename>
+                     <surname>Macpherson</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1973</date>
+               </imprint>
+               <biblScope unit="page" from="120">120</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="43"><desc>43 For example, N. Howell, &#8216;&#8220;Sexually Transmitted Debt&#8221;: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers&#8217; (1995) 4 Aust. Feminist Law J. 93.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">&#8220;Sexually Transmitted Debt&#8221;: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers</title>
+               <author>
+                  <persName>
+                     <forename>N.</forename>
+                     <surname>Howell</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Aust. Feminist Law J.</title>
+               <imprint>
+                  <date>1995</date>
+               </imprint>
+               <biblScope unit="volume" from="4" to="4">4</biblScope>
+               <biblScope unit="page" from="93">93</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="44"><desc>44 P. Baron, &#8216;The Free Exercise of Her Will: Women and Emotionally Transmitted Debt&#8217; (1995) 13 Law in Context 23.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">The Free Exercise of Her Will: Women and Emotionally Transmitted Debt</title>
+               <author>
+                  <persName>
+                     <forename>P.</forename>
+                     <surname>Baron</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Law in Context</title>
+               <imprint>
+                  <date>1995</date>
+               </imprint>
+               <biblScope unit="volume" from="13" to="13">13</biblScope>
+               <biblScope unit="page" from="23">23</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="45"><desc>45 id., p. 24 B. Fehlberg, &#8216;The Husband, the Bank, the Wife and Her Signature&#8217; (1994) 57 Modern Law Rev. 467, 468. See, also, Barclays Bank v. O&#8217;Brien [1994] 1 A.C. 180, at 185 per Brown-Wilkinson L.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">The Husband, the Bank, the Wife and Her Signature</title>
+               <author>
+                  <persName>
+                     <forename>B.</forename>
+                     <surname>Fehlberg</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Modern Law Rev.</title>
+               <imprint>
+                  <date>1994</date>
+               </imprint>
+               <biblScope unit="volume" from="57" to="57">57</biblScope>
+               <biblScope unit="page" from="467">467,</biblScope>
+               <biblScope unit="page" from="468">468</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Barclays Bank v. O&#8217;Brien</title>
+               <idno type="caseNumber">1 A.C. 180</idno>
+               <imprint>
+                  <date>1994</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="46"><desc>46 Baron, op. cit., n. 44, p. 34. M. Richardson, &#8216;Protecting Women who provide Security for a Husband&#8217;s, Partner&#8217;s or Child&#8217;s Debts. The Value and Limits of an Economic Perspective&#8217; (1996) 16 Legal Studies 368.</desc><biblStruct/><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <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
+            of an Economic Perspective&#8217;</title>
+               <author>
+                  <persName>
+                     <forename>M.</forename>
+                     <surname>Richardson</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Legal Studies</title>
+               <imprint>
+                  <date>1996</date>
+               </imprint>
+               <biblScope unit="volume" from="16" to="16">16</biblScope>
+               <biblScope unit="page" from="368">368</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="47"><desc>47 Examples are legion, and by no means confined to the more sensational criminal law cases picked up by the media, such as R. v. Johns, Supreme Court of South Australia, 26 August 1992 (unreported) in which Bollen J. stated that it was acceptable for a husband to resort to &#8216;rougher than usual handling&#8217; to persuade his wife to have sex with him. For examples relating to STD, see Howell, op. cit., n. 43.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">R. v. Johns</title>
+               <title level="m">Supreme Court of South Australia</title>
+               <imprint>
+                  <date>26 August 1992</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct/></listBibl><listBibl n="48"><desc>48 B. Fehlberg, &#8216;The Husband, the Bank, the Wife and Her Signature &#8211; the Sequel&#8217; (1996) 59 Modern Law Rev. 675.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">The Husband, the Bank, the Wife and Her Signature &#8211; the Sequel</title>
+               <author>
+                  <persName>
+                     <forename>B.</forename>
+                     <surname>Fehlberg</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Modern Law Rev.</title>
+               <imprint>
+                  <date>1996</date>
+               </imprint>
+               <biblScope unit="volume" from="59" to="59">59</biblScope>
+               <biblScope unit="page" from="675">675</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="49"><desc>49 National Australia Bank Ltd v. Garcia (1996) 39 N.S.W.L.R. 577 (N.S.W.C.A.).</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">National Australia Bank Ltd v. Garcia</title>
+               <title level="j">N.S.W.L.R.</title>
+               <imprint>
+                  <date>1996</date>
+                  <pubPlace>N.S.W.C.A.</pubPlace>
+               </imprint>
+               <biblScope unit="volume" from="39" to="39">39</biblScope>
+               <biblScope unit="page" from="577">577</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="50"><desc>50 (1991) 25 N.S.W.L.R. 32 (C.A.).</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">National Australia Bank Ltd v. Garcia</title>
+               <title level="j">N.S.W.L.R.</title>
+               <imprint>
+                  <date>1996</date>
+                  <pubPlace>N.S.W.C.A.</pubPlace>
+               </imprint>
+               <biblScope unit="volume" from="39" to="39">39</biblScope>
+               <biblScope unit="page" from="577">577</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="52"><desc>52 (1994) A.S.C. 56&#8211;268 (N.S.W.C.A.).</desc><biblStruct/></listBibl><listBibl n="53"><desc>53 Based on the Trade Practices Act 1974 (Cwth.), s. 52 and the Contracts Review Act 1980 (N.S.W.). 54 (1994) A.S.C. 56&#8211;270 (N.S.W.C.A.)</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Trade Practices Act 1974</title>
+               <imprint>
+                  <pubPlace>Cwth.</pubPlace>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Contracts Review Act</title>
+               <imprint>
+                  <date>1980</date>
+                  <pubPlace>N.S.W.</pubPlace>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="55"><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 Barclays Bank v. O&#8217;Brien [1994] 1 A.C. 180. See, also, Banco Exterior Internacional v. Mann [1995] 1 All E.R. 936.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Barclays Bank v. O&#8217;Brien</title>
+               <idno type="caseNumber">1 A.C. 180</idno>
+               <imprint>
+                  <date>1994</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Banco Exterior Internacional v. Mann</title>
+               <title level="j">All E.R.</title>
+               <imprint>
+                  <date>1995</date>
+               </imprint>
+               <biblScope unit="volume">1</biblScope>
+               <biblScope unit="page" from="936">936</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="56"><desc>56 See I.J. Hardingham and M.A. Neave, Australian Family Property Law (1984) 94.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Australian Family Property Law</title>
+               <author>
+                  <persName>
+                     <forename>I.J.</forename>
+                     <surname>Hardingham</surname>
+                  </persName>
+               </author>
+               <author>
+                  <persName>
+                     <forename>M.A.</forename>
+                     <surname>Neave</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1984</date>
+               </imprint>
+               <biblScope unit="page" from="94">94</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="57"><desc>57 Compare K. O&#8217;Donovan, Sexual Divisions in Law (1985), especially 112&#8211;18.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Sexual Divisions in Law</title>
+               <author>
+                  <persName>
+                     <forename>K.</forename>
+                     <surname>O&#8217;Donovan</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1985</date>
+               </imprint>
+               <biblScope unit="page" from="especially">especially 112&#8211;18</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="58"><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. See C.A. Reich, &#8216;The New Property&#8217; (1964) 73 Yale Law J. 733. Despite a greater sensitivity to the interests of women, as well as writing almost two decades later, Glendon also fails to address the question of unpaid work as a form of property. See M.A. Glendon, The New Family and the New Property (1981).</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">The New Property</title>
+               <title level="a">The New Family and the New Property</title>
+               <author>
+                  <persName>
+                     <forename>C.A.</forename>
+                     <surname>Reich</surname>
+                  </persName>
+               </author>
+               <author>
+                  <persName>
+                     <forename>M.A.</forename>
+                     <surname>Glendon</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Yale Law J.</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><listBibl n="59"><desc>59 1992) 29 N.S.W.L.R. 188 (C.A .)</desc><biblStruct/></listBibl><listBibl n="60"><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. For a discussion of recent trends in Australia, see 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.</desc><biblStruct/><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Property Rights and Third Party Creditors &#8211; the Scope and Limitations of Equitable Doctrines</title>
+               <author>
+                  <persName>
+                     <forename>P.</forename>
+                     <surname>Parkinson</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Australian J. Family Law</title>
+               <imprint>
+                  <date>1997</date>
+               </imprint>
+               <biblScope unit="volume" from="11" to="11">11</biblScope>
+               <biblScope unit="page" from="100">100</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="61"><desc>61 For discussion, see J. Riley, &#8216;The Property Rights of Home-Makers under General Law: Bryson v. Bryant&#8217; (1994) 16 Sydney Law Rev. 412.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">The Property Rights of Home-Makers under General Law: Bryson v. Bryant</title>
+               <author>
+                  <persName>
+                     <forename>J.</forename>
+                     <surname>Riley</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Sydney Law Rev</title>
+               <imprint>
+                  <date>1994</date>
+               </imprint>
+               <biblScope unit="volume" from="16" to="16">16</biblScope>
+               <biblScope unit="page" from="412">412</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="62"><desc>62 The Justice T. E. Lindenmayer and P.A. Doolan, &#8216;When Bankruptcy and Family Law Collide&#8217; (1994) 8 Aust. J. Family Law 111 133.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">When Bankruptcy and Family Law Collide</title>
+               <author>
+                  <persName>
+                     <forename>Justice</forename>
+                     <forename>T. E.</forename>
+                     <surname>Lindenmayer</surname>
+                  </persName>
+               </author>
+               <author>
+                  <persName>
+                     <forename>P.A.</forename>
+                     <surname>Doolan</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Aust. J. Family Law</title>
+               <imprint>
+                  <date>1994</date>
+               </imprint>
+               <biblScope unit="volume" from="8" to="8">8</biblScope>
+               <biblScope unit="page" from="111">111</biblScope>
+               <biblScope unit="page" from="133">133</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="63"><desc>63 B. Bennett, &#8216;The Economics of Wifing Services: Law and Economics on the Family&#8217; (1991) 18 J. of Law and Society 206.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">The Economics of Wifing Services: Law and Economics on the Family</title>
+               <author>
+                  <persName>
+                     <forename>B.</forename>
+                     <surname>Bennett</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">J. of Law and Society</title>
+               <imprint>
+                  <date>1991</date>
+               </imprint>
+               <biblScope unit="volume" from="18" to="18">18</biblScope>
+               <biblScope unit="page" from="206">206</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="64"><desc>64 O&#8217;Donovan, op. cit., n. 57; Thornton, op. cit. (1995), n. 4.</desc><biblStruct/><biblStruct/></listBibl><listBibl n="65"><desc>65 N.S.W.C.A., unreported, 23 May 1994.</desc><biblStruct/></listBibl><listBibl n="66"><desc>66 For detailed discussion of the ramifications, see L.J. Weitzman, The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in America (1985).</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in
+            America</title>
+               <author>
+                  <persName>
+                     <forename>L.J.</forename>
+                     <surname>Weitzman</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1985</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="67"><desc>67 M.L. Shanley, Feminism, Marriage, and the Law in Victorian England, 1850&#8211;1895 (1989) 46.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Feminism, Marriage, and the Law in Victorian England, 1850&#8211;1895</title>
+               <author>
+                  <persName>
+                     <forename>M.L.</forename>
+                     <surname>Shanley</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1989</date>
+               </imprint>
+               <biblScope unit="page" from="46">46</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="68"><desc>68 The move to contract as the governing principle of family law has been noted by commentators. See, for example, Freeman, op. cit., n. 24; Neave, op. cit., n. 26; Regan, op. cit., n. 30.</desc><biblStruct/><biblStruct/><biblStruct/><biblStruct/></listBibl><listBibl n="69"><desc>69 Bryson v. Bryant 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 constructive trust in the context of de facto spouses. See M. Neave &#8216;Three Approaches to Family Law Disputes &#8211; Intention/Belief, Unjust Enrichment and Unconscionability&#8217; in Equity, Fiduciaries and Trusts, ed. T.G. Youdan (1989) 262&#8211;4.</desc><biblStruct/><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Three Approaches to Family Law Disputes &#8211; Intention/Belief, Unjust Enrichment and Unconscionability&#8217;</title>
+               <author>
+                  <persName>
+                     <forename>M.</forename>
+                     <surname>Neave</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="m">Equity, Fiduciaries and Trusts</title>
+               <editor>
+                  <persName>
+                     <forename>T.G.</forename>
+                     <surname>Youdan</surname>
+                  </persName>
+               </editor>
+               <imprint>
+                  <date>1989</date>
+               </imprint>
+               <biblScope unit="page" from="262" to="4">262&#8211;4</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="70"><desc>70 For an interesting case study of this phenomenon, see L. Sarmas, &#8216;Storytelling and the Law: A Case Study of Louth v. Diprose&#8217; (1994) 19 Melbourne University Law Rev. 701.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Storytelling and the Law: A Case Study of Louth v. Diprose</title>
+               <author>
+                  <persName>
+                     <forename>L.</forename>
+                     <surname>Sarmas</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Melbourne University Law Rev</title>
+               <imprint>
+                  <date>1994</date>
+               </imprint>
+               <biblScope unit="volume" from="19" to="19">19</biblScope>
+               <biblScope unit="page" from="701">701</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="71"><desc>71 C. Colebrook, &#8216;Feminist Ethics and Historicism&#8217; (1996) 11 Aust. Feminist Studies 295 300.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Feminist Ethics and Historicism</title>
+               <author>
+                  <persName>
+                     <forename>C.</forename>
+                     <surname>Colebrook</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Aust. Feminist Studies</title>
+               <imprint>
+                  <date>1996</date>
+               </imprint>
+               <biblScope unit="volume" from="11" to="11">11</biblScope>
+               <biblScope unit="page" from="295">295</biblScope>
+               <biblScope unit="page" from="300">300</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="72"><desc>72 M. Albertson Fineman, The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies (1995) 7.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies</title>
+               <author>
+                  <persName>
+                     <forename>M.</forename>
+                     <forename>Albertson</forename>
+                     <surname>Fineman</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1995</date>
+               </imprint>
+               <biblScope unit="page" from="7">7</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="73"><desc>73 Compare K. O&#8217;Donovan, &#8216;Should all Maintenance of Spouses be abolished?&#8217; (1982) 45 Modern Law Rev. 424 431&#8211;3.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Should all Maintenance of Spouses be abolished?</title>
+               <author>
+                  <persName>
+                     <forename>K.</forename>
+                     <surname>O&#8217;Donovan</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Modern Law Rev</title>
+               <imprint>
+                  <date>1982</date>
+               </imprint>
+               <biblScope unit="volume" from="45" to="45">45</biblScope>
+               <biblScope unit="page" from="424">424</biblScope>
+               <biblScope unit="page" from="431" to="3">431&#8211;3</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="74"><desc>74 For example, De Facto Relationships Act 1984 (N.S.W .). For detailed analysis of the policy considerations, see M.D.A. Freeman and C.M. Lyon, Cohabitation without Marriage: An Essay in Law and Social Policy (1983); New South Wales Law Reform Commission, De Facto Relationships: Issues Paper (1981).</desc><biblStruct/><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">De Facto Relationships Act</title>
+               <imprint>
+                  <date>1984</date>
+                  <pubPlace>N.S.W</pubPlace>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Cohabitation without Marriage: An Essay in Law and Social Policy</title>
+               <author>
+                  <persName>
+                     <forename>M.D.A.</forename>
+                     <surname>Freeman</surname>
+                  </persName>
+               </author>
+               <author>
+                  <persName>
+                     <forename>C.M.</forename>
+                     <surname>Lyon</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1983</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">De Facto Relationships: Issues Paper</title>
+               <author>
+                  <persName>
+                     <forename>New</forename>
+                     <forename>South Wales Law Reform</forename>
+                     <surname>Commission</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1981</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="75"><desc>75 Eds. of the Harvard Law Review, Sexual Orientation and the Law (1990); Dean v. District of Columbia 653 U.S. App. D.C 307 (1995); C. Overington, &#8216;Why can&#8217;t They Marry?&#8217; The Age, 26 April 1997.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Sexual Orientation and the Law</title>
+               <author>
+                  <persName>
+                     <forename>Eds. of the Harvard</forename>
+                     <forename>Law</forename>
+                     <surname>Review</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1990</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">Why can&#8217;t They Marry?</title>
+               <author>
+                  <persName>
+                     <forename>C.</forename>
+                     <surname>Overington</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="m">Dean v. District of Columbia 653 U.S. App. D.C</title>
+               <title level="j">The Age</title>
+               <imprint>
+                  <date>1995</date>
+                  <date>1997</date>
+               </imprint>
+               <biblScope unit="page" from="26">26</biblScope>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="76"><desc>76 For example, Lesbian Gay Rights Service and The Bride Wore Pink; Legal Recognition of Our Relationships (1994).</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <analytic>
+               <title level="a">The Bride Wore Pink; Legal Recognition of Our Relationships</title>
+               <author>
+                  <persName>
+                     <surname>Lesbian</surname>
+                  </persName>
+               </author>
+               <author>
+                  <persName>
+                     <forename>Gay</forename>
+                     <forename>Rights</forename>
+                     <surname>Service</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1994</date>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="77"><desc>77 id., p. 3.</desc><biblStruct/></listBibl><listBibl n="78"><desc>78 Above, n. 30.</desc><biblStruct/></listBibl></standOff></TEI>
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 456adb64cdd7ebad6645c3efb9a37be8d3adb9f2..2843a1edee528a01187ef59f5445e9a269a4e230 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
@@ -209,12 +209,20 @@
                <title level="a">The Robbins report on higher education, Higher Education</title>
             </analytic>
             <monogr>
+               <title level="m">Cmnd 4595)</title>
                <imprint>
                   <date>1963</date>
                </imprint>
             </monogr>
          </biblStruct>
-         <biblStruct/></listBibl><listBibl n="12"><desc>12 Committee of Inquiry into Higher Education, Higher Education in the learning society (1997) (the Dearing report); ACLEC, First Report on Legal Education and Training (1996). The Government&#8217;s White Paper on further and higher education had not been published at the time of writing this essay. ACLEC, id., para 4.6.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         <biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+            <monogr>
+               <title level="m">Cmnd. 2154</title>
+               <imprint/>
+               <biblScope unit="page"/>
+            </monogr>
+         </biblStruct>
+         </listBibl><listBibl n="12"><desc>12 Committee of Inquiry into Higher Education, Higher Education in the learning society (1997) (the Dearing report); ACLEC, First Report on Legal Education and Training (1996). The Government&#8217;s White Paper on further and higher education had not been published at the time of writing this essay. ACLEC, id., para 4.6.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Higher Education in the learning society</title>
                <author>
@@ -299,7 +307,7 @@
                <biblScope unit="page" from="at">at 836</biblScope>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl n="16"><desc>16 T.H. Huxley, &#8216;Universities: Actual and Ideal&#8217; in T.H. Huxley, Collected Essays : Volume III (1905) 215.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl n="16"><desc>16 T.H. Huxley, &#8216;Universities: Actual and Ideal&#8217; in T.H. Huxley, Collected Essays: Volume III (1905) 215.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Universities: Actual and Ideal</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 5225968762f24a930b6260aa1030b713c2b62099..39ed4a15d18be94666add618a6a03861e588faae 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
@@ -11,7 +11,7 @@
          </sourceDesc>
       </fileDesc>
    </teiHeader>
-   <standOff><listBibl><desc>Gottfried Baumg&#228;rtei, 1976 : Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+   <standOff><listBibl><desc>Gottfried Baumg&#228;rtei, 1976: Gleicher Zugang zum Recht f&#252;r alle. K&#246;ln.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Gleicher Zugang zum Recht f&#252;r alle.</title>
                <author>
@@ -28,7 +28,7 @@
                </imprint>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Rolf Bender und Rolf Schumacher, 1980 : Erfolgsbarrieren vor Gericht. T&#252;bingen.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Rolf Bender und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. T&#252;bingen.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Erfolgsbarrieren vor Gericht.</title>
                <author>
@@ -51,7 +51,7 @@
                </imprint>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Donald Black, 1973 : The Mobilization of Law, in: Journal of Legal Studies 2.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Donald Black, 1973: The Mobilization of Law, in: Journal of Legal Studies 2.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">The Mobilization of Law</title>
                <author>
@@ -69,7 +69,7 @@
                <biblScope unit="volume" from="2" to="2">2</biblScope>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Erhard Blankenburg / Viola Blankenburg / Helmut Morasch, 1972 : Der lange Weg in die Berufung, in: Rolf Bender (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Erhard Blankenburg / Viola Blankenburg / Helmut Morasch, 1972: Der lange Weg in die Berufung, in: Rolf Bender (Hrsg.): Tatsachenforschung in der Justiz. T&#252;bingen.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Der lange Weg in die Berufung</title>
                <author>
@@ -105,7 +105,7 @@
                </imprint>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Erhard Blankenburg, 1976 : Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Erhard Blankenburg, 1976: Nichtkriminalisierung als Struktur und Routine, in: G&#246;ppinger, Hans und G&#252;nter Kaiser: Kriminologie und Strafverfahren. Stuttgart.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Nichtkriminalisierung als Struktur und Routine</title>
                <author>
@@ -120,7 +120,7 @@
                </imprint>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Erhard Blankenburg / Klaus Sessar / Wiebke Steffen, 1978 : Die Staatsanwaltschaft im Proze&#223; strafrechtlicher Sozialkontrolle. Berlin.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Erhard Blankenburg / Klaus Sessar / Wiebke Steffen, 1978: Die Staatsanwaltschaft im Proze&#223; strafrechtlicher Sozialkontrolle. Berlin.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Die Staatsanwaltschaft im Proze&#223; strafrechtlicher Sozialkontrolle.</title>
                <author>
@@ -149,7 +149,7 @@
                </imprint>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Erhard Blankenburg; Siegfried Sch&#246;nholz, 1979 : Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Erhard Blankenburg; Siegfried Sch&#246;nholz, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Zur Soziologie des Arbeitsgerichtsverfahrens.</title>
                <author>
@@ -172,7 +172,7 @@
                </imprint>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Erhard Blankenburg, 1980 : Recht als gradualisiertes Konzept, in: Erhard Blankenburg; Ekkehard Klausa und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Erhard Blankenburg, 1980: Recht als gradualisiertes Konzept, in: Erhard Blankenburg; Ekkehard Klausa und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Recht als gradualisiertes Konzept</title>
             </analytic>
@@ -183,7 +183,7 @@
                <biblScope unit="page" from="83" to="98">83&#8212;98</biblScope>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Jerome- Carlin und Sheldon Messinger, 1967 : Civil Justice and the Poor. New York. Danzig,</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Jerome- Carlin und Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig,</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Civil Justice and the Poor.</title>
                <author>
@@ -230,7 +230,7 @@
                <biblScope unit="page" from="675" to="694">675&#8212;694</biblScope>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Johannes Feest / Erhard Blankenburg, 1972 : Die Definitionsmacht der Polizei. D&#252;sseldorf.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Johannes Feest / Erhard Blankenburg, 1972: Die Definitionsmacht der Polizei. D&#252;sseldorf.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Die Definitionsmacht der Polizei.</title>
                <author>
@@ -293,7 +293,7 @@
                <biblScope unit="page" from="695" to="706">695-706</biblScope>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Marc Galanter, 1974 : Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Marc Galanter, 1974: Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change, in: Law and Society Review, vol. 9, pp. 95&#8212;160.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change</title>
                <author>
@@ -312,7 +312,7 @@
                <biblScope unit="page" from="95" to="160">95&#8212;160</biblScope>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Theodor Geiger, 1964 : Vorstudien zu einer Soziologie des Rechts.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Theodor Geiger, 1964: Vorstudien zu einer Soziologie des Rechts.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Vorstudien zu einer Soziologie des Rechts.</title>
                <author>
@@ -328,7 +328,7 @@
                </imprint>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Volkmar Neuwied. Gessner, 1976 : Recht und Konflikt. T&#252;bingen.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Volkmar Neuwied. Gessner, 1976: Recht und Konflikt. T&#252;bingen.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Recht und Konflikt.</title>
                <author>
@@ -345,7 +345,7 @@
                </imprint>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Hartmut Hilden, 1976 : Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Hartmut Hilden, 1976: Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Rechtstatsachen im R&#228;umungsstreit. Frankfurt/Main.</title>
                <author>
@@ -391,7 +391,7 @@
                <biblScope unit="volume" from="III" to="III">III</biblScope>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Milan Alphen Rijn.</desc><biblStruct/></listBibl><listBibl><desc>Hartmut Koch, 1975 : Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen. Diss. Hamburg.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Milan Alphen Rijn.</desc><biblStruct/></listBibl><listBibl><desc>Hartmut Koch, 1975: Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen. Diss. Hamburg.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Das Gerichtsverfahren als Konfliktl&#246;sungsproze&#223; &#8212; Einstellung von Kl&#228;gern und Beklagten zu Mietprozessen.</title>
                <author>
@@ -408,7 +408,7 @@
                </imprint>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Niklas Luhmann, 1969 : Legitimation durch Verfahren. Neuwied und Darmstadt.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Niklas Luhmann, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Legitimation durch Verfahren.</title>
                <author>
@@ -425,7 +425,7 @@
                </imprint>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Niklas Luhmann, 1980 : Kommunikation &#252;ber Recht in Interaktionssystemen, in: Erhard Blankenburg; Ekkehard Klausa und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Niklas Luhmann, 1980: Kommunikation &#252;ber Recht in Interaktionssystemen, in: Erhard Blankenburg; Ekkehard Klausa und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch f&#252;r Rechtssoziologie und Rechtstheorie Bd. 6. Opladen.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Kommunikation &#252;ber Recht in Interaktionssystemen</title>
                <author>
@@ -462,7 +462,7 @@
                <biblScope unit="volume" from="6. Opladen" to="6. Opladen">6. Opladen</biblScope>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Udo Reifner, 1978 : Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, IIM-dp/78&#8212;70.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Udo Reifner, 1978: Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, IIM-dp/78&#8212;70.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Rechtshilfebed&#252;rfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative</title>
                <author>
@@ -479,7 +479,7 @@
                <biblScope unit="page" from="IIM" to="dp">IIM-dp/78&#8212;70</biblScope>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Udo Reifner, 1979 : Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945. IIM-dp/79&#8212;104.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Udo Reifner, 1979: Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945. IIM-dp/79&#8212;104.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Gewerkschaftlicher Rechtsschutz &#8212; Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894&#8212;1945.</title>
                <author>
@@ -539,7 +539,7 @@
                <biblScope unit="volume" from="6. Opladen" to="6. Opladen">6. Opladen</biblScope>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Austin Sarat, 1976 : Alternatives in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Austin Sarat, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339&#8212;375.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Alternatives in Dispute Processing in a Small Claim Court</title>
                <author>
@@ -558,7 +558,7 @@
                <biblScope unit="page" from="339" to="375">339&#8212;375</biblScope>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Siegfried Sch&#246;nholz, 1980 : Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und Recht. Baden-Baden.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Siegfried Sch&#246;nholz, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich in: Vereinigung f&#252;r Rechtssoziologie (Hrsg.): Arbeitslosigkeit und Recht. Baden-Baden.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich</title>
                <author>
@@ -583,7 +583,7 @@
                </imprint>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>E Steinbach ., 1979 : GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und Datenverarbeitung. Birlinghoven bei Bonn.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>E Steinbach ., 1979: GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und Datenverarbeitung. Birlinghoven bei Bonn.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">GMD-Bericht, Manuskript. Gesellschaft f&#252;r Mathematik und Datenverarbeitung.</title>
                <author>
@@ -600,7 +600,7 @@
                </imprint>
             </monogr>
          </biblStruct>
-         </listBibl><listBibl><desc>Craig Wanner, 1975 : The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
+         </listBibl><listBibl><desc>Craig Wanner, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306.</desc><biblStruct xmlns="http://www.tei-c.org/ns/1.0">
             <analytic>
                <title level="a">The Public Ordering of Private Cases; Winning Civil Court Cases</title>
                <author>
diff --git a/convert-anystyle-data/tei-biblStruct/10.1111_1467-6478.00057.biblStruct.xml b/convert-anystyle-data/tei-biblStruct/10.1111_1467-6478.00057.biblStruct.xml
deleted file mode 100644
index b8da61d28390aae6d83adc5b46126ed9c735c41e..0000000000000000000000000000000000000000
--- a/convert-anystyle-data/tei-biblStruct/10.1111_1467-6478.00057.biblStruct.xml
+++ /dev/null
@@ -1,1788 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0">
-   <teiHeader xmlns:mods="http://www.loc.gov/mods/v3"
-              xmlns:oape="https://openarabicpe.github.io/ns"
-              xmlns:tei="http://www.tei-c.org/ns/1.0"
-              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-      <fileDesc>
-         <titleStmt>
-            <title>Bibliographic data for 10.1111_1467-6478.00057</title>
-         </titleStmt>
-         <publicationStmt>
-            <p>This bibliographic data is in the public domain.</p>
-         </publicationStmt>
-         <sourceDesc>
-            <p>10.1111_1467-6478.00057</p>
-         </sourceDesc>
-      </fileDesc>
-   </teiHeader>
-   <standOff>
-      <listBibl>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Citizenship and Feminist Politics</title>
-               <author>
-                  <persName>
-                     <forename>A.</forename>
-                     <surname>Phillips</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Citizenship</title>
-               <editor>
-                  <persName>
-                     <forename>G.</forename>
-                     <surname>Andrews</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1991</date>
-               </imprint>
-               <biblScope unit="page" from="77">77</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Mere Auxiliaries to the Commonwealth”: Women and the Origins of Liberalism</title>
-               <author>
-                  <persName>
-                     <forename>T.</forename>
-                     <surname>Brennan</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>C.</forename>
-                     <surname>Pateman</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Political Studies</title>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="volume" from="27" to="27">27</biblScope>
-               <biblScope unit="page" from="183">183</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">A Woman’s Place: Women and Politics in Australia</title>
-               <author>
-                  <persName>
-                     <forename>M.</forename>
-                     <surname>Sawer</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>M.</forename>
-                     <surname>Simms</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1993</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Embodying the Citizen</title>
-            </analytic>
-            <monogr>
-               <title level="m">Public and Private: Feminist Legal Debates</title>
-               <editor>
-                  <persName>
-                     <forename>M.</forename>
-                     <surname>Thornton</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1995</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Historicising Citizenship: Remembering Broken Promises</title>
-            </analytic>
-            <monogr>
-               <title level="j">Melbourne University Law Rev</title>
-               <imprint>
-                  <date>1996</date>
-               </imprint>
-               <biblScope unit="volume" from="20" to="20">20</biblScope>
-               <biblScope unit="page" from="1072">1072</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Is Citizenship Gendered?</title>
-               <author>
-                  <persName>
-                     <forename>S.</forename>
-                     <surname>Walby</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Sociology</title>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-               <biblScope unit="volume" from="28" to="28">28</biblScope>
-               <biblScope unit="page" from="379">379</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Metaphysical First Principles of the Doctrine of Right</title>
-               <author>
-                  <persName>
-                     <forename>I.</forename>
-                     <surname>Kant</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">The Metaphysics of Morals</title>
-               <imprint>
-                  <date>1991</date>
-               </imprint>
-               <biblScope unit="page" from="125" to="6">125–6</biblScope>
-               <biblScope unit="page" from="146">146</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Marriage and the Boundaries of Citizenship</title>
-               <author>
-                  <persName>
-                     <forename>U.</forename>
-                     <surname>Vogel</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">The Condition of Citizenship</title>
-               <editor>
-                  <persName>
-                     <forename>B.</forename>
-                     <surname>van Steenbergen</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-               <biblScope unit="page" from="75">75</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Civil Citizenship against Social Citizenship?</title>
-               <author>
-                  <persName>
-                     <forename>N.</forename>
-                     <surname>Fraser</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>L.</forename>
-                     <surname>Gordon</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Vogel</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Commentaries</title>
-               <author>
-                  <persName>
-                     <forename>W.</forename>
-                     <surname>Blackstone</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="page" from="442">442</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Vogel</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Female Sexualization: A Collective Work of Memory</title>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <forename>F.</forename>
-                     <surname>Haug</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1987</date>
-               </imprint>
-               <biblScope unit="page" from="196">196</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Self and Subjectivities: Languages of Claim in Property Law</title>
-               <author>
-                  <persName>
-                     <forename>A.</forename>
-                     <surname>Bottomley</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">J. of Law and Society</title>
-               <imprint>
-                  <date>1993</date>
-               </imprint>
-               <biblScope unit="volume" from="20" to="20">20</biblScope>
-               <biblScope unit="page" from="56">56</biblScope>
-               <biblScope unit="page" from="61">61</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Power and Formation: New Foundations for a Radical Concept of Power</title>
-               <author>
-                  <persName>
-                     <forename>D.</forename>
-                     <surname>West</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1987</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Inquiry 137</title>
-            </analytic>
-            <monogr>
-               <imprint/>
-               <biblScope unit="page" from="145">145</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Power/Knowledge: Selected Interviews and Other Writings 1972–1977</title>
-               <author>
-                  <persName>
-                     <forename>M.</forename>
-                     <surname>Foucault</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <forename>C.</forename>
-                     <surname>Gordon</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-               <biblScope unit="page" from="98">98</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Feminism, and Legal Method: The Difference it Makes</title>
-               <author>
-                  <persName>
-                     <forename>M.J.</forename>
-                     <surname>Mossman</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Aust. J. of Law and Society</title>
-               <imprint>
-                  <date>1986</date>
-               </imprint>
-               <biblScope unit="volume" from="3" to="3">3</biblScope>
-               <biblScope unit="page" from="30">30</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas</title>
-               <author>
-                  <persName>
-                     <forename>H.S.</forename>
-                     <surname>Maine</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1912</date>
-               </imprint>
-               <biblScope unit="page" from="174">174</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The Transformation of American Law, 1780–1860</title>
-               <author>
-                  <persName>
-                     <forename>M.J.</forename>
-                     <surname>Horwitz</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1977</date>
-               </imprint>
-               <biblScope unit="page" from="160">160</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Governing the Hearth: Law and the Family in Nineteenth-Century America</title>
-               <author>
-                  <persName>
-                     <forename>M.</forename>
-                     <surname>Grossberg</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1985</date>
-               </imprint>
-               <biblScope unit="page" from="ix">ix</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Married Women’s Separate Property in England, 1660–1833</title>
-               <author>
-                  <persName>
-                     <forename>S.</forename>
-                     <surname>Staves</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1990</date>
-               </imprint>
-               <biblScope unit="volume" from="4" to="4">4</biblScope>
-               <biblScope unit="page" from="220">220</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The Rule of Love”: Wife Beating as Prerogative and Privacy</title>
-               <author>
-                  <persName>
-                     <forename>R.B.</forename>
-                     <surname>Siegel</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Yale Law J</title>
-               <imprint>
-                  <date>1996</date>
-               </imprint>
-               <biblScope unit="volume" from="105" to="105">105</biblScope>
-               <biblScope unit="page" from="2117">2117</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The Sexual Contract</title>
-               <author>
-                  <persName>
-                     <forename>C.</forename>
-                     <surname>Pateman</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1988</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Family Matters</title>
-               <author>
-                  <persName>
-                     <forename>K.</forename>
-                     <surname>O’Donovan</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1993</date>
-               </imprint>
-               <biblScope unit="page" from="especially">especially 43–59</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1981</date>
-                  <pubPlace>N.S.W</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1976</date>
-                  <pubPlace>S.A</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1987</date>
-                  <pubPlace>Tas</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1991</date>
-                  <pubPlace>Vic</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1985</date>
-                  <pubPlace>W.A</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1991</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <title level="j">All E.R</title>
-               <imprint>
-                  <date>1991</date>
-               </imprint>
-               <biblScope unit="volume" from="2" to="2">2</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Contracting in the Haven: Balfour v. Balfour Revisited</title>
-               <author>
-                  <persName>
-                     <forename>M.</forename>
-                     <surname>Freeman</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Exploring the Boundaries of Contract</title>
-               <editor>
-                  <persName>
-                     <forename>R.</forename>
-                     <surname>Halson</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1996</date>
-               </imprint>
-               <biblScope unit="page" from="74">74</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Masculinity, Law and the Family</title>
-               <author>
-                  <persName>
-                     <forename>R.</forename>
-                     <surname>Collier</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1995</date>
-               </imprint>
-               <biblScope unit="page" from="127">127 and throughout</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Collier</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">An Introduction to the Law of Contract</title>
-               <author>
-                  <persName>
-                     <forename>P.S.</forename>
-                     <surname>Atiyah</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1995</date>
-               </imprint>
-               <biblScope unit="page" from="3">3</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Matrimonial Property</title>
-               <title level="a">Report of the Joint Select Committee on Certain Aspects of the Operation and Interpretation of the Family
-            Law Act</title>
-               <author>
-                  <orgName>A.L.R.C.</orgName>
-               </author>
-               <author>
-                  <orgName>A.L.R.C.</orgName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">report no. 37</title>
-               <imprint>
-                  <date>1987</date>
-                  <date>1992</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Private Ordering in Family Law – Will Women Benefit?</title>
-               <author>
-                  <persName>
-                     <forename>M.</forename>
-                     <surname>Neave</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Thornton</title>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">An Essay in the Deconstruction of Contract Doctrine</title>
-               <author>
-                  <persName>
-                     <forename>C.</forename>
-                     <surname>Dalton</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Yale Law J</title>
-               <imprint>
-                  <date>1985</date>
-               </imprint>
-               <biblScope unit="volume" from="94" to="94">94</biblScope>
-               <biblScope unit="page" from="997">997</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The Marriage Contract: Spouses, Lovers, and the Law</title>
-               <author>
-                  <persName>
-                     <forename>L.</forename>
-                     <forename>J.</forename>
-                     <surname>Weitzman</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1981</date>
-               </imprint>
-               <biblScope unit="page" from="347">347</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Grossberg</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Balfour</surname>
-                     <forename>v.</forename>
-                     <surname>Balfour</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1919</date>
-               </imprint>
-               <biblScope unit="page" from="2">2 K.B. 571</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Freeman</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Family Law and the Pursuit of Intimacy</title>
-               <author>
-                  <persName>
-                     <forename>M.C.</forename>
-                     <surname>Regan</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1993</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <forename>For</forename>
-                     <surname>example</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1970</date>
-                  <pubPlace>U.K</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1975</date>
-                  <pubPlace>N.Z</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1976</date>
-                  <pubPlace>Cwth</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Promises Broken: Courtship, Class, and Gender in Victorian England (1995)</title>
-               <author>
-                  <persName>
-                     <forename>G.S.</forename>
-                     <surname>Frost</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Thornton</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1996</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Grossberg</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Is Citizenship Gender-Specific?</title>
-               <author>
-                  <persName>
-                     <forename>U.</forename>
-                     <surname>Vogel</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">The Frontiers of Citizenship</title>
-               <editor>
-                  <persName>
-                     <forename>U.</forename>
-                     <surname>Vogel</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <forename>M.</forename>
-                     <surname>Moran</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1991</date>
-               </imprint>
-               <biblScope unit="page" from="59">59</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1873</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Money and Marriage</title>
-               <author>
-                  <persName>
-                     <forename>J.</forename>
-                     <surname>Pahl</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1989</date>
-               </imprint>
-               <biblScope unit="page" from="5">5</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Although</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Australian Family Law in Context: Commentary and Materials</title>
-               <author>
-                  <persName>
-                     <forename>P.</forename>
-                     <forename>Parkinson</forename>
-                     <surname>S. Parker</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>J.</forename>
-                     <surname>Behrens</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Management of the Community Estate during an Intact Marriage</title>
-               <author>
-                  <persName>
-                     <forename>J.T.</forename>
-                     <surname>Oldham</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Law and Contemporary Problems</title>
-               <imprint>
-                  <date>1993</date>
-               </imprint>
-               <biblScope unit="volume" from="56" to="56">56</biblScope>
-               <biblScope unit="page" from="99">99</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">What Causes Fundamental Legal Ideas? Marital Property in England and France in the Thirteenth Century’</title>
-               <author>
-                  <persName>
-                     <forename>C.</forename>
-                     <surname>Donahue</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Michigan Law Rev</title>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="volume" from="78" to="78">78</biblScope>
-               <biblScope unit="page" from="59">59</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>O’Donovan</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Collier</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Sexing the Subject (of Law)</title>
-               <author>
-                  <persName>
-                     <forename>N.</forename>
-                     <surname>Naffine</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Thornton</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1995</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <title level="j">Contracts Review Act</title>
-               <imprint>
-                  <date>1980</date>
-                  <pubPlace>N.S.W</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy</title>
-               <author>
-                  <persName>
-                     <forename>J.</forename>
-                     <surname>Nedelsky</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1990</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Democratic Theory: Essays in Retrieval</title>
-               <author>
-                  <persName>
-                     <forename>C.B.</forename>
-                     <surname>Macpherson</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1973</date>
-               </imprint>
-               <biblScope unit="page" from="120">120</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Sexually Transmitted Debt”: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers</title>
-               <author>
-                  <persName>
-                     <forename>N.</forename>
-                     <surname>Howell</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Aust. Feminist Law J</title>
-               <imprint>
-                  <date>1995</date>
-               </imprint>
-               <biblScope unit="volume" from="4" to="4">4</biblScope>
-               <biblScope unit="page" from="93">93</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The Free Exercise of Her Will: Women and Emotionally Transmitted Debt</title>
-               <author>
-                  <persName>
-                     <forename>P.</forename>
-                     <surname>Baron</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Law in Context</title>
-               <imprint>
-                  <date>1995</date>
-               </imprint>
-               <biblScope unit="volume" from="13" to="13">13</biblScope>
-               <biblScope unit="page" from="23">23</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The Husband, the Bank, the Wife and Her Signature</title>
-               <author>
-                  <persName>
-                     <forename>B.</forename>
-                     <surname>Fehlberg</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Modern Law Rev</title>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-               <biblScope unit="volume" from="57" to="57">57</biblScope>
-               <biblScope unit="page" from="467">467</biblScope>
-               <biblScope unit="page" from="468">468</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <forename>per</forename>
-                     <forename>Brown-Wilkinson</forename>
-                     <surname>L</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Baron</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Protecting Women who provide Security for a Husband’s, Partner’s or Child’s Debts. The Value and Limits
-            of an Economic Perspective’</title>
-               <author>
-                  <persName>
-                     <forename>M.</forename>
-                     <surname>Richardson</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Legal Studies</title>
-               <imprint>
-                  <date>1996</date>
-               </imprint>
-               <biblScope unit="volume" from="16" to="16">16</biblScope>
-               <biblScope unit="page" from="368">368</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1992</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Howell</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The Husband, the Bank, the Wife and Her Signature – the Sequel</title>
-               <author>
-                  <persName>
-                     <forename>B.</forename>
-                     <surname>Fehlberg</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Modern Law Rev</title>
-               <imprint>
-                  <date>1996</date>
-               </imprint>
-               <biblScope unit="volume" from="59" to="59">59</biblScope>
-               <biblScope unit="page" from="675">675</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <title level="j">N.S.W.L.R</title>
-               <imprint>
-                  <date>1996</date>
-               </imprint>
-               <biblScope unit="volume" from="39" to="39">39</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1991</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1980</date>
-                  <date>1994</date>
-                  <pubPlace>N.S.W</pubPlace>
-               </imprint>
-               <biblScope unit="volume" from="54" to="54">54</biblScope>
-               <biblScope unit="page" from="A">A.S.C. 56–270</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-               <biblScope unit="page" from="1">1 A.C. 180</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1995</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Australian Family Property Law</title>
-               <author>
-                  <persName>
-                     <forename>I.J.</forename>
-                     <surname>Hardingham</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>M.A.</forename>
-                     <surname>Neave</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1984</date>
-               </imprint>
-               <biblScope unit="page" from="94">94</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Sexual Divisions in Law</title>
-               <author>
-                  <persName>
-                     <forename>K.</forename>
-                     <surname>O’Donovan</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1985</date>
-               </imprint>
-               <biblScope unit="page" from="especially">especially 112–18</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The New Property</title>
-               <author>
-                  <persName>
-                     <forename>C.A.</forename>
-                     <surname>Reich</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Yale Law J</title>
-               <imprint>
-                  <date>1964</date>
-               </imprint>
-               <biblScope unit="volume" from="73" to="73">73</biblScope>
-               <biblScope unit="page" from="733">733</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The New Family and the New Property</title>
-               <author>
-                  <persName>
-                     <forename>M.A.</forename>
-                     <surname>Glendon</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1981</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1992</date>
-               </imprint>
-               <biblScope unit="page" from="29">29 N.S.W.L.R. 188</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Property Rights and Third Party Creditors – the Scope and Limitations of Equitable Doctrines</title>
-               <author>
-                  <persName>
-                     <forename>P.</forename>
-                     <surname>Parkinson</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Australian J. Family Law</title>
-               <imprint>
-                  <date>1997</date>
-               </imprint>
-               <biblScope unit="volume" from="11" to="11">11</biblScope>
-               <biblScope unit="page" from="100">100</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The Property Rights of Home-Makers under General Law: Bryson v. Bryant</title>
-               <author>
-                  <persName>
-                     <forename>J.</forename>
-                     <surname>Riley</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Sydney Law Rev</title>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-               <biblScope unit="volume" from="16" to="16">16</biblScope>
-               <biblScope unit="page" from="412">412</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">When Bankruptcy and Family Law Collide</title>
-               <author>
-                  <persName>
-                     <forename>Justice</forename>
-                     <forename>T. E.</forename>
-                     <surname>Lindenmayer</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>P.A.</forename>
-                     <surname>Doolan</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Aust. J. Family Law</title>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-               <biblScope unit="volume" from="8" to="8">8</biblScope>
-               <biblScope unit="page" from="111">111</biblScope>
-               <biblScope unit="page" from="133">133</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The Economics of Wifing Services: Law and Economics on the Family</title>
-               <author>
-                  <persName>
-                     <forename>B.</forename>
-                     <surname>Bennett</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">J. of Law and Society</title>
-               <imprint>
-                  <date>1991</date>
-               </imprint>
-               <biblScope unit="volume" from="18" to="18">18</biblScope>
-               <biblScope unit="page" from="206">206</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>O’Donovan</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Thornton</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in
-            America</title>
-               <author>
-                  <persName>
-                     <forename>L.J.</forename>
-                     <surname>Weitzman</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1985</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Feminism, Marriage, and the Law in Victorian England, 1850–1895</title>
-               <author>
-                  <persName>
-                     <forename>M.L.</forename>
-                     <surname>Shanley</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1989</date>
-               </imprint>
-               <biblScope unit="page" from="46">46</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Freeman</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Neave</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Regan</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <forename>Bryson</forename>
-                     <forename>v.</forename>
-                     <surname>Bryant</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Three Approaches to Family Law Disputes – Intention/Belief, Unjust Enrichment and Unconscionability’</title>
-               <author>
-                  <persName>
-                     <forename>M.</forename>
-                     <surname>Neave</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Equity, Fiduciaries and Trusts</title>
-               <editor>
-                  <persName>
-                     <forename>T.G.</forename>
-                     <surname>Youdan</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1989</date>
-               </imprint>
-               <biblScope unit="page" from="262" to="4">262–4</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Storytelling and the Law: A Case Study of Louth v. Diprose</title>
-               <author>
-                  <persName>
-                     <forename>L.</forename>
-                     <surname>Sarmas</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Melbourne University Law Rev</title>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-               <biblScope unit="volume" from="19" to="19">19</biblScope>
-               <biblScope unit="page" from="701">701</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Feminist Ethics and Historicism</title>
-               <author>
-                  <persName>
-                     <forename>C.</forename>
-                     <surname>Colebrook</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Aust. Feminist Studies</title>
-               <imprint>
-                  <date>1996</date>
-               </imprint>
-               <biblScope unit="volume" from="11" to="11">11</biblScope>
-               <biblScope unit="page" from="295">295</biblScope>
-               <biblScope unit="page" from="300">300</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies</title>
-               <author>
-                  <persName>
-                     <forename>M.</forename>
-                     <forename>Albertson</forename>
-                     <surname>Fineman</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1995</date>
-               </imprint>
-               <biblScope unit="page" from="7">7</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Should all Maintenance of Spouses be abolished?</title>
-               <author>
-                  <persName>
-                     <forename>K.</forename>
-                     <surname>O’Donovan</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Modern Law Rev</title>
-               <imprint>
-                  <date>1982</date>
-               </imprint>
-               <biblScope unit="volume" from="45" to="45">45</biblScope>
-               <biblScope unit="page" from="424">424</biblScope>
-               <biblScope unit="page" from="431" to="3">431–3</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint>
-                  <date>1984</date>
-                  <pubPlace>N.S.W</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Cohabitation without Marriage: An Essay in Law and Social Policy</title>
-               <author>
-                  <persName>
-                     <forename>M.D.A.</forename>
-                     <surname>Freeman</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>C.M.</forename>
-                     <surname>Lyon</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1983</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">De Facto Relationships: Issues Paper</title>
-               <author>
-                  <persName>
-                     <forename>New</forename>
-                     <forename>South Wales Law Reform</forename>
-                     <surname>Commission</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1981</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Sexual Orientation and the Law</title>
-               <author>
-                  <persName>
-                     <forename>Eds. of the Harvard</forename>
-                     <forename>Law</forename>
-                     <surname>Review</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1990</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">Why can’t They Marry?</title>
-               <author>
-                  <persName>
-                     <forename>C.</forename>
-                     <surname>Overington</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">The Age</title>
-               <imprint>
-                  <date>1995</date>
-                  <date>1997</date>
-               </imprint>
-               <biblScope unit="page" from="26">26</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <analytic>
-               <title level="a">The Bride Wore Pink; Legal Recognition of Our Relationships</title>
-               <author>
-                  <persName>
-                     <surname>Lesbian</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>Gay</forename>
-                     <forename>Rights</forename>
-                     <surname>Service</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00057.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-      </listBibl>
-   </standOff>
-</TEI>
diff --git a/convert-anystyle-data/tei-biblStruct/10.1111_1467-6478.00080.biblStruct.xml b/convert-anystyle-data/tei-biblStruct/10.1111_1467-6478.00080.biblStruct.xml
deleted file mode 100644
index 5129a546871532ed8d68de5c082ba06418823ad2..0000000000000000000000000000000000000000
--- a/convert-anystyle-data/tei-biblStruct/10.1111_1467-6478.00080.biblStruct.xml
+++ /dev/null
@@ -1,969 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0">
-   <teiHeader xmlns:mods="http://www.loc.gov/mods/v3"
-              xmlns:oape="https://openarabicpe.github.io/ns"
-              xmlns:tei="http://www.tei-c.org/ns/1.0"
-              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-      <fileDesc>
-         <titleStmt>
-            <title>Bibliographic data for 10.1111_1467-6478.00080</title>
-         </titleStmt>
-         <publicationStmt>
-            <p>This bibliographic data is in the public domain.</p>
-         </publicationStmt>
-         <sourceDesc>
-            <p>10.1111_1467-6478.00080</p>
-         </sourceDesc>
-      </fileDesc>
-   </teiHeader>
-   <standOff>
-      <listBibl>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">“Traditional” Legal Scholarship: a Personal View</title>
-               <author>
-                  <persName>
-                     <forename>G.</forename>
-                     <surname>Jones</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">What Are Law Schools For?</title>
-               <editor>
-                  <persName>
-                     <forename>P.</forename>
-                     <surname>Birks</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1996</date>
-               </imprint>
-               <biblScope unit="page" from="14">14</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">The Search for Principle</title>
-               <author>
-                  <persName>
-                     <forename>R.</forename>
-                     <surname>Goff</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Proceeedings of the British Academy</title>
-               <imprint>
-                  <date>1983</date>
-               </imprint>
-               <biblScope unit="volume" from="169" to="169">169</biblScope>
-               <biblScope unit="page" from="at">at 171</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Can English Law be taught at the Universities?</title>
-               <author>
-                  <persName>
-                     <forename>A.</forename>
-                     <surname>Dicey</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1883</date>
-               </imprint>
-               <biblScope unit="page" from="20">20</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">The Law of Contract</title>
-               <author>
-                  <persName>
-                     <forename>J.</forename>
-                     <surname>Smith</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1989</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Form and substance in Private Law Ajudication</title>
-               <author>
-                  <persName>
-                     <forename>D.</forename>
-                     <surname>Kennedy</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Harvard Law Rev</title>
-               <imprint>
-                  <date>1976</date>
-               </imprint>
-               <biblScope unit="volume" from="89" to="89">89</biblScope>
-               <biblScope unit="page" from="1685">1685</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">The Renewal of the Liberal Law Degree</title>
-               <author>
-                  <persName>
-                     <forename>B.</forename>
-                     <surname>Hepple</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Cambridge Law J</title>
-               <imprint>
-                  <date>1996</date>
-               </imprint>
-               <biblScope unit="page" from="470">470</biblScope>
-               <biblScope unit="page" from="at">at 485 and 481</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Introduction</title>
-               <author>
-                  <persName>
-                     <forename>P.A.</forename>
-                     <surname>Thomas</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Socio-Legal Studies</title>
-               <editor>
-                  <persName>
-                     <forename>P.A.</forename>
-                     <surname>Thomas</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1997</date>
-               </imprint>
-               <biblScope unit="page" from="19">19</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Law’s Community</title>
-               <author>
-                  <persName>
-                     <forename>R.</forename>
-                     <surname>Cotterrell</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1995</date>
-               </imprint>
-               <biblScope unit="page" from="296">296</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Company Law</title>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Thomas</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <publisher>
-                     <persName>
-                        <forename>S.</forename>
-                        <surname>Wheeler</surname>
-                     </persName>
-                  </publisher>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">report A Time for Change</title>
-               <title level="a">Report of the Committee on Legal Education</title>
-               <author>
-                  <persName>
-                     <surname>Marre’s</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1988</date>
-                  <date>1988</date>
-                  <date>1971</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">The Robbins report on higher education, Higher Education</title>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1963</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <imprint/>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Higher Education in the learning society</title>
-               <author>
-                  <persName>
-                     <forename>Committee of Inquiry</forename>
-                     <forename>into Higher</forename>
-                     <surname>Education</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1997</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">First Report on Legal Education and Training</title>
-               <author>
-                  <persName>
-                     <surname>ACLEC</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1996</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>ACLEC</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Working on the Chain Gang?</title>
-               <author>
-                  <persName>
-                     <forename>A.</forename>
-                     <surname>Bradney</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>F.</forename>
-                     <surname>Cownie</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Contemporary Issues in Law</title>
-               <imprint>
-                  <date>1996</date>
-               </imprint>
-               <biblScope unit="volume" from="2" to="2">2</biblScope>
-               <biblScope unit="page" from="15">15</biblScope>
-               <biblScope unit="page" from="at">at 24–6</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Education for Life or for Work?</title>
-               <author>
-                  <persName>
-                     <forename>M.</forename>
-                     <forename>Jeeves</forename>
-                     <surname>J. MacFarlane</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>A.</forename>
-                     <surname>Boon</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">New Law J</title>
-               <imprint>
-                  <date>1987</date>
-               </imprint>
-               <biblScope unit="volume" from="137" to="137">137</biblScope>
-               <biblScope unit="page" from="835">835</biblScope>
-               <biblScope unit="page" from="at">at 836</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Universities: Actual and Ideal</title>
-               <author>
-                  <persName>
-                     <forename>T.H.</forename>
-                     <surname>Huxley</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">T.H. Huxley, Collected Essays</title>
-               <imprint>
-                  <date>1905</date>
-               </imprint>
-               <biblScope unit="volume" from="Volume III" to="Volume III">Volume III</biblScope>
-               <biblScope unit="page" from="215">215</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Inaugural address to the University of St Andrews</title>
-               <author>
-                  <persName>
-                     <forename>J.S.</forename>
-                     <surname>Mill</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Collected Work of John Stuart Mill: Volume</title>
-               <editor>
-                  <persName>
-                     <forename>J.M.</forename>
-                     <surname>Robson</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1984</date>
-               </imprint>
-               <biblScope unit="volume" from="XXI" to="XXI">XXI</biblScope>
-               <biblScope unit="page" from="218">218</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Dearing</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Education and the University</title>
-               <author>
-                  <persName>
-                     <forename>F.R.</forename>
-                     <surname>Leavis</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1948</date>
-               </imprint>
-               <biblScope unit="volume" from="28" to="28">28</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Liberalising Legal Education</title>
-               <author>
-                  <persName>
-                     <forename>A.</forename>
-                     <surname>Bradney</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">The Law School: Global Issues, Local Questions</title>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Of Blackstone’s Tower: Metephors of Distance and Histories of the English Law School</title>
-               <author>
-                  <persName>
-                     <forename>P.</forename>
-                     <surname>Goodrich</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">S. Turow, One L</title>
-               <imprint>
-                  <date>1977</date>
-               </imprint>
-               <biblScope unit="page" from="106">106</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Reflections on Legal Education</title>
-               <author>
-                  <persName>
-                     <forename>O.</forename>
-                     <surname>Kahn-Freund</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Modern Law Rev</title>
-               <imprint>
-                  <date>1966</date>
-               </imprint>
-               <biblScope unit="volume" from="29" to="29">29</biblScope>
-               <biblScope unit="page" from="121">121</biblScope>
-               <biblScope unit="page" from="at">at 129</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Kahn-Freund</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Leavis</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">The New English Literatures</title>
-               <author>
-                  <persName>
-                     <forename>M.</forename>
-                     <surname>King</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-               <biblScope unit="page" from="at">at 216–17</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Jurisprudence by Sir John Salmond</title>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <forename>G.</forename>
-                     <forename>Willliams</forename>
-                     <surname>(10th</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1947</date>
-               </imprint>
-               <biblScope unit="page" from="at">at 256 and 257</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">The Division of Labour in Society</title>
-               <author>
-                  <persName>
-                     <forename>E.</forename>
-                     <surname>Durkheim</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1933</date>
-               </imprint>
-               <biblScope unit="page" from="68">68</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">The Quiet Revolution: Improving Student Learning in Law</title>
-               <author>
-                  <persName>
-                     <forename>M.</forename>
-                     <surname>Le Brun</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>R.</forename>
-                     <surname>Johnstone</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Define and Empower: Women Students Consider Feminist Learning</title>
-            </analytic>
-            <monogr>
-               <title level="j">Law and Critique</title>
-               <imprint>
-                  <date>1990</date>
-               </imprint>
-               <biblScope unit="volume" from="I" to="I">I</biblScope>
-               <biblScope unit="page" from="47">47 at pp. 54–55</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">The Invisible Author of Legal Authority</title>
-               <author>
-                  <persName>
-                     <forename>W.</forename>
-                     <surname>Conklin</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Law and Critique</title>
-               <imprint>
-                  <date>1996</date>
-               </imprint>
-               <biblScope unit="volume" from="VII" to="VII">VII</biblScope>
-               <biblScope unit="page" from="173">173 at pp. 173–6</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Masculinism, Law and Law Teaching</title>
-               <author>
-                  <persName>
-                     <forename>R.</forename>
-                     <surname>Collier</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">International J. of the Sociology of Law</title>
-               <imprint>
-                  <date>1991</date>
-               </imprint>
-               <biblScope unit="volume" from="19" to="19">19</biblScope>
-               <biblScope unit="page" from="427">427</biblScope>
-               <biblScope unit="page" from="at">at 429</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Administrative Law, Collective Consumption and Judicial Policy</title>
-               <author>
-                  <persName>
-                     <forename>P.</forename>
-                     <surname>McAuslan</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Modern Law Rev</title>
-               <imprint>
-                  <date>1983</date>
-               </imprint>
-               <biblScope unit="volume" from="46" to="46">46</biblScope>
-               <biblScope unit="page" from="1">1</biblScope>
-               <biblScope unit="page" from="at">at 8</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <forename>Le</forename>
-                     <surname>Brun</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Johnstone</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Goodrich</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">The Convergence of the Law School and the University</title>
-               <author>
-                  <persName>
-                     <forename>P.</forename>
-                     <surname>Samuelson</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">The Am. Scholar</title>
-               <imprint>
-                  <date>1975</date>
-               </imprint>
-               <biblScope unit="volume" from="44" to="44">44</biblScope>
-               <biblScope unit="page" from="256">256</biblScope>
-               <biblScope unit="page" from="at">at 258</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">A Survey of Law Schools in the United Kingdom, 1996</title>
-               <author>
-                  <persName>
-                     <forename>P.</forename>
-                     <surname>Harris</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>M.</forename>
-                     <surname>Jones</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">The Law Teacher</title>
-               <imprint>
-                  <date>1997</date>
-               </imprint>
-               <biblScope unit="volume" from="31" to="31">31</biblScope>
-               <biblScope unit="page" from="38">38</biblScope>
-               <biblScope unit="page" from="at">at 46</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">A third survey of university legal education</title>
-               <author>
-                  <persName>
-                     <forename>J.</forename>
-                     <surname>Wilson</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Legal Studies</title>
-               <imprint>
-                  <date>1993</date>
-               </imprint>
-               <biblScope unit="volume" from="13" to="13">13</biblScope>
-               <biblScope unit="page" from="143">143</biblScope>
-               <biblScope unit="page" from="at">at 152</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Jones</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Law Teachers: Lawyers or Academics?</title>
-               <author>
-                  <persName>
-                     <forename>T.</forename>
-                     <forename>Mortimer</forename>
-                     <surname>P. Leighton</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>N.</forename>
-                     <surname>Whatley</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1995</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and Assessment at Hong Kong Polytechnic University</title>
-               <author>
-                  <persName>
-                     <forename>L.</forename>
-                     <surname>Skwarok</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">The Law Teacher</title>
-               <imprint>
-                  <date>1995</date>
-               </imprint>
-               <biblScope unit="volume" from="29" to="29">29</biblScope>
-               <biblScope unit="page" from="189">189</biblScope>
-               <biblScope unit="page" from="at">at 189</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Law, Law Staff and CNAA Business Studies Degree Courses</title>
-               <author>
-                  <persName>
-                     <forename>N.</forename>
-                     <surname>Bastin</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">The Law Teacher</title>
-               <imprint>
-                  <date>1985</date>
-               </imprint>
-               <biblScope unit="volume" from="19" to="19">19</biblScope>
-               <biblScope unit="page" from="12">12</biblScope>
-               <biblScope unit="page" from="at">at 13</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?</title>
-               <author>
-                  <persName>
-                     <forename>A.</forename>
-                     <surname>Ridley</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">The Law Teacher</title>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-               <biblScope unit="volume" from="28" to="28">28</biblScope>
-               <biblScope unit="page" from="281">281</biblScope>
-               <biblScope unit="page" from="at">at 282</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Legal Literacy for Managers: The Role of the Educator</title>
-               <author>
-                  <persName>
-                     <forename>G.</forename>
-                     <surname>Cartan</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>T.</forename>
-                     <surname>Vilkinas</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">The Law Teacher</title>
-               <imprint>
-                  <date>1990</date>
-               </imprint>
-               <biblScope unit="volume" from="24" to="24">24</biblScope>
-               <biblScope unit="page" from="246">246</biblScope>
-               <biblScope unit="page" from="at">at 248</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Ridley</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Short Cuts</title>
-               <author>
-                  <persName>
-                     <forename>P.</forename>
-                     <surname>Birks</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Pressing Problems in the Law</title>
-               <editor>
-                  <persName>
-                     <forename>P.</forename>
-                     <surname>Birks</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1994</date>
-               </imprint>
-               <biblScope unit="page" from="10" to="24">10–24</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Ridley</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Cartan</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Vilkinas</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Curriculum Development in Legal Studies</title>
-               <author>
-                  <persName>
-                     <forename>P.</forename>
-                     <surname>Harris</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">The Law Teacher</title>
-               <imprint>
-                  <date>1986</date>
-               </imprint>
-               <biblScope unit="volume" from="20" to="20">20</biblScope>
-               <biblScope unit="page" from="110">110</biblScope>
-               <biblScope unit="page" from="at">at 112</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Dearing</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1111_1467-6478.00080.xml#">
-            <analytic>
-               <title level="a">Errata: An Examined Life</title>
-               <author>
-                  <persName>
-                     <forename>G.</forename>
-                     <surname>Steiner</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1997</date>
-               </imprint>
-               <biblScope unit="page" from="20">20</biblScope>
-            </monogr>
-         </biblStruct>
-      </listBibl>
-   </standOff>
-</TEI>
diff --git a/convert-anystyle-data/tei-biblStruct/10.1515_zfrs-1980-0103.biblStruct.xml b/convert-anystyle-data/tei-biblStruct/10.1515_zfrs-1980-0103.biblStruct.xml
deleted file mode 100644
index 2f4ad24a1e77e632132545fbe3d03d4a9162d9ad..0000000000000000000000000000000000000000
--- a/convert-anystyle-data/tei-biblStruct/10.1515_zfrs-1980-0103.biblStruct.xml
+++ /dev/null
@@ -1,1404 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0">
-   <teiHeader xmlns:mods="http://www.loc.gov/mods/v3"
-              xmlns:oape="https://openarabicpe.github.io/ns"
-              xmlns:tei="http://www.tei-c.org/ns/1.0"
-              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-      <fileDesc>
-         <titleStmt>
-            <title>Bibliographic data for 10.1515_zfrs-1980-0103</title>
-         </titleStmt>
-         <publicationStmt>
-            <p>This bibliographic data is in the public domain.</p>
-         </publicationStmt>
-         <sourceDesc>
-            <p>10.1515_zfrs-1980-0103</p>
-         </sourceDesc>
-      </fileDesc>
-   </teiHeader>
-   <standOff>
-      <listBibl>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Geiger</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1964</date>
-               </imprint>
-               <biblScope unit="page" from="insbesondere">insbesondere S. 65—83</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Feest</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1972</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Nichtkriminalisierung als Struktur und Routine</title>
-               <author>
-                  <persName>
-                     <surname>ich</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1976</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Bereitschaft zur Anzeigeerstattung</title>
-               <author>
-                  <persName>
-                     <forename>Peter</forename>
-                     <surname>MacNaughton-Smith</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>Richard</forename>
-                     <surname>Rosellen</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1978</date>
-                  <pubPlace>Freiburg</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung</title>
-               <author>
-                  <persName>
-                     <forename>Richard</forename>
-                     <surname>Rosellen</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1980</date>
-                  <pubPlace>Berlin</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Sessar</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Steffen</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1978</date>
-               </imprint>
-               <biblScope unit="page" from="66" to="85">66-85</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Black</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1973</date>
-               </imprint>
-               <biblScope unit="page" from="125">125</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Gessner</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1976</date>
-               </imprint>
-               <biblScope unit="page" from="insbesondere">insbesondere S. 170—183</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Luhmann</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-               <biblScope unit="page" from="99" to="112">99—112</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Gessner</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1976</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Schönholz</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Schönholz</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Rogowski</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="page" from="64">64</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Hilden</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1976</date>
-               </imprint>
-               <biblScope unit="page" from="64">64</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Koch</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1975</date>
-               </imprint>
-               <biblScope unit="page" from="75">75</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Fachserie 10 (Rechtspflege) Reihe 2.1, Tabelle 10</title>
-               <author>
-                  <persName>
-                     <forename>Statistisches</forename>
-                     <forename>Bundesamt</forename>
-                     <surname>Wiesbaden</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1978</date>
-                  <pubPlace>Wiesbaden</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Schönholz</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Rogowski</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="page" from="78">78</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Johnson</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="page" from="90">90</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Steinbach</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="page" from="66">66</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Morasch</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1972</date>
-               </imprint>
-               <biblScope unit="page" from="82">82</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Projektbericht ,Rechtshilfebedürfnisse sozial Schwacher</title>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Gorges</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Reifner</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Ticmann).</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Baumgärtei</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1976</date>
-               </imprint>
-               <biblScope unit="page" from="113" to="128">113-128</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Projektbericht Rechtsschutzversicherung*.</title>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Fiedler</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Reifner</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Gorges</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Reifner</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Carlin</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Howard</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Messinger</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1967</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Galanter</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1974</date>
-               </imprint>
-               <biblScope unit="page" from="95" to="160">95—160</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Sarat</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1976</date>
-               </imprint>
-               <biblScope unit="page" from="339" to="375">339-375</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Bender</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Schumacher</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-               <biblScope unit="page" from="138">138</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Steinbach</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="page" from="96">96 ff</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Morasch</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1972</date>
-               </imprint>
-               <biblScope unit="page" from="89">89</biblScope>
-               <biblScope unit="page" from="Fn">Fn. 17</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Reifner</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1978</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Schönholz</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Rogowski</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="page" from="102">102</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Recht als gradualisiertes Konzept</title>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-               <biblScope unit="page" from="83" to="98">83—98</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Steinbach</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="page" from="35">35</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Bender</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Schumacher</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-               <biblScope unit="page" from="24">24 und S. 49</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Wanner</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1975</date>
-               </imprint>
-               <biblScope unit="page" from="293" to="306">293—306</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Bender</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Schumacher</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-               <biblScope unit="page" from="72">72</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Galanter</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1974</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Sarat</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1976</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Schönholz</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Rogowski</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="page" from="78">78</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Luhmann</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1969</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <title level="j">Law and Society Review</title>
-               <author>
-                  <persName>
-                     <surname>Felstiner</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Danzig</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Lowy</surname>
-                  </persName>
-               </author>
-               <imprint>
-                  <date>1974</date>
-               </imprint>
-               <biblScope unit="volume" from="9" to="9">9</biblScope>
-            </monogr>
-         </biblStruct>
-      </listBibl>
-      <listBibl>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Gleicher Zugang zum Recht für alle.</title>
-               <author>
-                  <persName>
-                     <forename>Gottfried</forename>
-                     <surname>Baumgärtei</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1976</date>
-                  <pubPlace>Köln</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Erfolgsbarrieren vor Gericht.</title>
-               <author>
-                  <persName>
-                     <forename>Rolf</forename>
-                     <surname>Bender</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>Rolf</forename>
-                     <surname>Schumacher</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1980</date>
-                  <pubPlace>Tübingen</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">The Mobilization of Law</title>
-               <author>
-                  <persName>
-                     <forename>Donald</forename>
-                     <surname>Black</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Journal of Legal Studies</title>
-               <imprint>
-                  <date>1973</date>
-               </imprint>
-               <biblScope unit="volume" from="2" to="2">2</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Der lange Weg in die Berufung</title>
-               <author>
-                  <persName>
-                     <forename>Erhard</forename>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>Viola</forename>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>Helmut</forename>
-                     <surname>Morasch</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Tatsachenforschung in der Justiz</title>
-               <editor>
-                  <persName>
-                     <forename>Rolf</forename>
-                     <surname>Bender</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1972</date>
-                  <pubPlace>Tübingen</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Nichtkriminalisierung als Struktur und Routine</title>
-               <title level="a">Hans und Günter Kaiser: Kriminologie und Strafverfahren.</title>
-               <author>
-                  <persName>
-                     <forename>Erhard</forename>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Göppinger</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1976</date>
-                  <pubPlace>Stuttgart</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle.</title>
-               <author>
-                  <persName>
-                     <forename>Erhard</forename>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>Klaus</forename>
-                     <surname>Sessar</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>Wiebke</forename>
-                     <surname>Steffen</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1978</date>
-                  <pubPlace>Berlin</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Zur Soziologie des Arbeitsgerichtsverfahrens.</title>
-               <author>
-                  <persName>
-                     <forename>Erhard</forename>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>Siegfried</forename>
-                     <surname>Schönholz</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1979</date>
-                  <pubPlace>Neuwied und Darmstadt</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Recht als gradualisiertes Konzept</title>
-               <author>
-                  <persName>
-                     <forename>Erhard</forename>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title>
-               <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
-               <editor>
-                  <persName>
-                     <forename>Erhard</forename>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <forename>Ekkehard</forename>
-                     <surname>Klausa</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <forename>Hubert</forename>
-                     <surname>Rottleuthner</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-               <biblScope unit="volume" from="6. Opladen" to="6. Opladen">6. Opladen</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Civil Justice and the Poor.</title>
-               <author>
-                  <persName>
-                     <forename>Jerome-</forename>
-                     <surname>Carlin</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>Sheldon</forename>
-                     <surname>Messinger</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1967</date>
-                  <pubPlace>New York. Danzig,</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner</title>
-               <author>
-                  <persName>
-                     <surname>Richard</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>Michael</forename>
-                     <surname>Lowy</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Law and Society Review</title>
-               <imprint>
-                  <date>1974</date>
-               </imprint>
-               <biblScope unit="volume" from="9" to="9">9</biblScope>
-               <biblScope unit="page" from="675" to="694">675—694</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Die Definitionsmacht der Polizei.</title>
-               <author>
-                  <persName>
-                     <forename>Johannes</forename>
-                     <surname>Feest</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>Erhard</forename>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1972</date>
-                  <pubPlace>Düsseldorf</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Influences of Social Organization on Dispute processing</title>
-               <author>
-                  <persName>
-                     <forename>William</forename>
-                     <forename>L. F</forename>
-                     <surname>Felstiner</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Law and Society Review</title>
-               <imprint>
-                  <date>1974</date>
-               </imprint>
-               <biblScope unit="volume" from="9" to="9">9</biblScope>
-               <biblScope unit="page" from="63" to="94">63—94</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Avoidance as Dispute Processing: An Elaboration</title>
-               <author>
-                  <persName>
-                     <forename>William</forename>
-                     <forename>L. F</forename>
-                     <surname>Felstiner</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Law and Society Review</title>
-               <imprint>
-                  <date>1974</date>
-               </imprint>
-               <biblScope unit="volume" from="9" to="9">9</biblScope>
-               <biblScope unit="page" from="695" to="706">695-706</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change</title>
-               <author>
-                  <persName>
-                     <forename>Marc</forename>
-                     <surname>Galanter</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Law and Society Review</title>
-               <imprint>
-                  <date>1974</date>
-               </imprint>
-               <biblScope unit="volume" from="9" to="9">9</biblScope>
-               <biblScope unit="page" from="95" to="160">95—160</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Vorstudien zu einer Soziologie des Rechts.</title>
-               <author>
-                  <persName>
-                     <forename>Theodor</forename>
-                     <surname>Geiger</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1964</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Recht und Konflikt.</title>
-               <author>
-                  <persName>
-                     <forename>Volkmar</forename>
-                     <surname>Neuwied. Gessner</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1976</date>
-                  <pubPlace>Tübingen</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Rechtstatsachen im Räumungsstreit. Frankfurt/Main.</title>
-               <author>
-                  <persName>
-                     <forename>Hartmut</forename>
-                     <surname>Hilden</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1976</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Thinking about Access: A Preliminary Typology of Possible Strategies.</title>
-               <author>
-                  <persName>
-                     <forename>Earl</forename>
-                     <surname>Johnson</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Access to Justice</title>
-               <editor>
-                  <persName>
-                     <forename>Mauro</forename>
-                     <surname>Cappelletti</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <forename>Bryant</forename>
-                     <surname>Garth</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="volume" from="III" to="III">III</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Milan</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Alphen</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Rijn</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen.</title>
-               <author>
-                  <persName>
-                     <forename>Hartmut</forename>
-                     <surname>Koch</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1975</date>
-                  <pubPlace>Hamburg</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Legitimation durch Verfahren.</title>
-               <author>
-                  <persName>
-                     <forename>Niklas</forename>
-                     <surname>Luhmann</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1969</date>
-                  <pubPlace>Neuwied und Darmstadt</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Kommunikation über Recht in Interaktionssystemen</title>
-               <author>
-                  <persName>
-                     <forename>Niklas</forename>
-                     <surname>Luhmann</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title>
-               <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
-               <editor>
-                  <persName>
-                     <forename>Erhard</forename>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <forename>Ekkehard</forename>
-                     <surname>Klausa</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <forename>Hubert</forename>
-                     <surname>Rottleuthner</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-               <biblScope unit="volume" from="6. Opladen" to="6. Opladen">6. Opladen</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative</title>
-               <author>
-                  <persName>
-                     <forename>Udo</forename>
-                     <surname>Reifner</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1978</date>
-               </imprint>
-               <biblScope unit="page" from="IIM" to="dp">IIM-dp/78—70</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945.</title>
-               <author>
-                  <persName>
-                     <forename>Udo</forename>
-                     <surname>Reifner</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="page" from="IIM" to="dp">IIM-dp/79—104</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe</title>
-               <author>
-                  <persName>
-                     <forename>Udo</forename>
-                     <surname>Reifner</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <forename>Irmela</forename>
-                     <surname>Gorges</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title>
-               <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
-               <editor>
-                  <persName>
-                     <forename>Erhard</forename>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <forename>Ekkehard</forename>
-                     <surname>Klausa</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <forename>Hubert</forename>
-                     <surname>Rottleuthner</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1980</date>
-               </imprint>
-               <biblScope unit="volume" from="6. Opladen" to="6. Opladen">6. Opladen</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Alternatives in Dispute Processing in a Small Claim Court</title>
-               <author>
-                  <persName>
-                     <forename>Austin</forename>
-                     <surname>Sarat</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Law and Society Review</title>
-               <imprint>
-                  <date>1976</date>
-               </imprint>
-               <biblScope unit="volume" from="10" to="10">10</biblScope>
-               <biblScope unit="page" from="339" to="375">339—375</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich</title>
-               <author>
-                  <persName>
-                     <forename>Siegfried</forename>
-                     <surname>Schönholz</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Arbeitslosigkeit und Recht</title>
-               <editor>
-                  <persName>
-                     <forename>Vereinigung</forename>
-                     <forename>für</forename>
-                     <surname>Rechtssoziologie</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1980</date>
-                  <pubPlace>Baden-Baden</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">GMD-Bericht, Manuskript. Gesellschaft für Mathematik und Datenverarbeitung.</title>
-               <author>
-                  <persName>
-                     <forename>E</forename>
-                     <surname>Steinbach</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1979</date>
-                  <pubPlace>Birlinghoven bei Bonn</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0103.xml#">
-            <analytic>
-               <title level="a">The Public Ordering of Private Cases; Winning Civil Court Cases</title>
-               <author>
-                  <persName>
-                     <forename>Craig</forename>
-                     <surname>Wanner</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Law and Society Review</title>
-               <imprint>
-                  <date>1975</date>
-               </imprint>
-               <biblScope unit="volume" from="9" to="9">9</biblScope>
-               <biblScope unit="page" from="293" to="306">293-306</biblScope>
-            </monogr>
-         </biblStruct>
-      </listBibl>
-   </standOff>
-</TEI>
diff --git a/convert-anystyle-data/tei-biblStruct/10.1515_zfrs-1980-0104.biblStruct.xml b/convert-anystyle-data/tei-biblStruct/10.1515_zfrs-1980-0104.biblStruct.xml
deleted file mode 100644
index b008efdc2bb1a88b500b81a1661b3588f665b244..0000000000000000000000000000000000000000
--- a/convert-anystyle-data/tei-biblStruct/10.1515_zfrs-1980-0104.biblStruct.xml
+++ /dev/null
@@ -1,2246 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<TEI xmlns="http://www.tei-c.org/ns/1.0">
-   <teiHeader xmlns:mods="http://www.loc.gov/mods/v3"
-              xmlns:oape="https://openarabicpe.github.io/ns"
-              xmlns:tei="http://www.tei-c.org/ns/1.0"
-              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
-      <fileDesc>
-         <titleStmt>
-            <title>Bibliographic data for 10.1515_zfrs-1980-0104</title>
-         </titleStmt>
-         <publicationStmt>
-            <p>This bibliographic data is in the public domain.</p>
-         </publicationStmt>
-         <sourceDesc>
-            <p>10.1515_zfrs-1980-0104</p>
-         </sourceDesc>
-      </fileDesc>
-   </teiHeader>
-   <standOff>
-      <listBibl>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Zweigert</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Kötz</surname>
-                  </persName>
-               </author>
-               <imprint/>
-               <biblScope unit="volume" from="I" to="I">I</biblScope>
-               <biblScope unit="page" from="12">12</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Aufgabe und Notwendigkeit der Rechtsvergleichung</title>
-               <author>
-                  <persName>
-                     <surname>Rabel</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1925</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Gesammelte Aufsätze</title>
-               <author>
-                  <persName>
-                     <surname>Rabel</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Leser</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1967</date>
-               </imprint>
-               <biblScope unit="volume" from="III" to="III">III</biblScope>
-               <biblScope unit="page" from="1">1</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Drobnig</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Rehbinder</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Law Books and Books About Law</title>
-               <author>
-                  <persName>
-                     <forename>R.</forename>
-                     <surname>Abel</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Stanford Law Rev</title>
-               <imprint>
-                  <date>1973</date>
-               </imprint>
-               <biblScope unit="volume" from="26" to="26">26</biblScope>
-               <biblScope unit="page" from="174">174</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Einige Anmerkungen über die Beziehung zwischen Rechtssoziologie und Rechtsvergleichung</title>
-               <author>
-                  <persName>
-                     <surname>Benda-Beckmann</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">ZvglRW</title>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="volume" from="78" to="78">78</biblScope>
-               <biblScope unit="page" from="51">51</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">L’apport du droit compare ä la sociologie juridique</title>
-               <author>
-                  <persName>
-                     <surname>Carbonnier</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Livre du centenaire de la Societe de legislation comparee</title>
-               <imprint>
-                  <date>1969</date>
-                  <pubPlace>Paris</pubPlace>
-               </imprint>
-               <biblScope unit="page" from="75">75</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Carbonnier</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">The Strategy of Cross-National Survey Research for the Development of Social Theory</title>
-               <author>
-                  <persName>
-                     <surname>Nowak</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Szalai</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Petrella</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="3">3</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Interkulturelle Forschung in der Rechtssoziologie</title>
-               <author>
-                  <persName>
-                     <surname>Rose</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Drobnig</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Rehbinder</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="171">171</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Probleme des interkulturellen Vergleichs in der Ethnologie</title>
-               <author>
-                  <persName>
-                     <surname>Wirsing</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Sociologus</title>
-               <imprint>
-                  <date>1975</date>
-               </imprint>
-               <biblScope unit="volume" from="25" to="25">25</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Situation actuelle et Programme de travail de Techno logie juridique</title>
-               <author>
-                  <persName>
-                     <surname>Poirier</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Rev. int. Sc. Soc</title>
-               <imprint>
-                  <date>1970</date>
-               </imprint>
-               <biblScope unit="volume" from="22" to="22">22</biblScope>
-               <biblScope unit="page" from="509">509</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Elegant Models, Empirical Pictures, and the Complexities of Contract</title>
-               <author>
-                  <persName>
-                     <surname>Macaulay</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Law &amp; Soc. Rev</title>
-               <imprint>
-                  <date>1977</date>
-               </imprint>
-               <biblScope unit="volume" from="11" to="11">11</biblScope>
-               <biblScope unit="page" from="507">507</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Rose</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Comparative Sociology - In What Ways Different From Other Sociologies?</title>
-               <author>
-                  <persName>
-                     <surname>Grimshau</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Armer</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Grimshaw</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="3">3</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Introduction; Comparative Sociology — The State of the Art</title>
-               <author>
-                  <persName>
-                     <surname>Tomasson</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Comparative Studies in Sociology</title>
-               <editor>
-                  <persName>
-                     <surname>Tomasson</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1978</date>
-                  <pubPlace>Greenwich, Conn</pubPlace>
-               </imprint>
-               <biblScope unit="volume" from="1" to="1">1</biblScope>
-               <biblScope unit="page" from="1">1</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Rokkan</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Verba</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Viet</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Almasy</surname>
-                  </persName>
-               </author>
-               <imprint/>
-               <biblScope unit="page" from="117">117</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Vallier</surname>
-                  </persName>
-               </author>
-               <imprint/>
-               <biblScope unit="page" from="423">423</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Comparative Survey Analysis — An Annotated Bibliography 1967 — 1973</title>
-               <author>
-                  <persName>
-                     <surname>Almasy</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Balandier</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Delatte</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1976</date>
-                  <pubPlace>Beverly Hills, London</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Comparative Sociology</title>
-               <author>
-                  <persName>
-                     <surname>Marsh</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1967</date>
-                  <pubPlace>New York, Chicago, San Francisco, Atlanta</pubPlace>
-               </imprint>
-               <biblScope unit="page" from="375">375</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Les règles de la methode sociologique</title>
-               <author>
-                  <persName>
-                     <surname>Durkheim</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1977</date>
-                  <pubPlace>Paris</pubPlace>
-               </imprint>
-               <biblScope unit="page" from="137">137</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Smelser</surname>
-                  </persName>
-               </author>
-               <imprint/>
-               <biblScope unit="page" from="2">2</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Comparative Sociology — Some Problems of Theory and Method</title>
-               <author>
-                  <persName/>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Payne</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Brit. J. Soc</title>
-               <imprint>
-                  <date>1973</date>
-               </imprint>
-               <biblScope unit="volume" from="24" to="24">24</biblScope>
-               <biblScope unit="page" from="13">13</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Social Institutions - Comparative Method</title>
-               <author>
-                  <persName>
-                     <surname>Eisenstadt</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">International Encyclopedia of the Social Sciences</title>
-               <imprint>
-                  <date>1968</date>
-                  <pubPlace>London</pubPlace>
-               </imprint>
-               <biblScope unit="volume" from="14" to="14">14</biblScope>
-               <biblScope unit="page" from="421">421</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Methodische Probleme des interkulturellen Vergleichs</title>
-               <author>
-                  <persName>
-                     <surname>Boesch</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Eckensberger</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Handbuch der Psychologie</title>
-               <editor>
-                  <persName>
-                     <surname>Graumann</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1969</date>
-               </imprint>
-               <biblScope unit="volume" from="Vll 1 (2. Auf" to="Vll 1 (2. Auf">Vll 1 (2. Auf</biblScope>
-               <biblScope unit="page" from="514">514</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">A Handbook of Method in Cultural Anthropology</title>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Naroll</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Cohen</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1973</date>
-                  <pubPlace>New York, London</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Smelser</surname>
-                  </persName>
-               </author>
-               <imprint/>
-               <biblScope unit="page" from="168">168</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Wirsing</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Intelligible Comparisons</title>
-               <author>
-                  <persName>
-                     <surname>Zelditch</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Vallier</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="267">267</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Carbonnier</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Die soziologische Dimension der Rechtsvergleichung</title>
-               <author>
-                  <persName>
-                     <surname>Zweigert</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Drobnig</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Rebbinder</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="151">151</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Comparative Law and Scientific Explanation</title>
-               <author>
-                  <persName>
-                     <surname>Merryman</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Law in the United States of America in Social and Technological Revolution</title>
-               <imprint>
-                  <date>1974</date>
-                  <pubPlace>Brüssel</pubPlace>
-               </imprint>
-               <biblScope unit="page" from="81">81</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Sociologie juridique</title>
-               <author>
-                  <persName>
-                     <surname>Carbonnier</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1972</date>
-                  <pubPlace>Paris</pubPlace>
-               </imprint>
-               <biblScope unit="page" from="188">188 N. 1</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels</title>
-               <author>
-                  <persName>
-                     <surname>Heidrich</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="s">Jahr buch für Rechtssoziologie und Rechtstheorie</title>
-               <imprint>
-                  <date>1972</date>
-               </imprint>
-               <biblScope unit="volume" from="3" to="3">3</biblScope>
-               <biblScope unit="page" from="305">305</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Zweigert</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Strafrecht und vergleichende Kriminologie</title>
-               <author>
-                  <persName>
-                     <surname>Kaiser</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Strafrecht, Straf rechtsvergleichung</title>
-               <editor>
-                  <persName>
-                     <surname>Kaiser</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Vogler</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1975</date>
-               </imprint>
-               <biblScope unit="page" from="79">79</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Die Vergleichung als Methode der Strafrechtswissenschaft und der Kriminologie</title>
-               <author>
-                  <persName>
-                     <surname>Villmow</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Albrecht</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">MschrKrim</title>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="volume" from="62" to="62">62</biblScope>
-               <biblScope unit="page" from="163">163</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Ziele und Methoden der Rechtsvergleichung</title>
-               <author>
-                  <persName>
-                     <forename>K.</forename>
-                     <forename>H.</forename>
-                     <surname>Neumayer</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Recueil des travaux suisses présentés au IXe Congrès international de droit compare</title>
-               <imprint>
-                  <date>1976</date>
-               </imprint>
-               <biblScope unit="page" from="45">45</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und Rechtsvergleichung</title>
-               <author>
-                  <persName>
-                     <surname>Rehbinder</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Drobnig</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Rehbinder</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="56">56</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Merryman</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Sozialwissenschaftliche Aspekte der Rechtsvergleichung</title>
-               <author>
-                  <persName>
-                     <surname>Heidrich</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Drobnig</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Rehbinder</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="178">178</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Patterns of Legal Culture as a Variable for the Chances of Legal Innovation</title>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">innovations in the Legal Services</title>
-               <editor>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1980</date>
-                  <pubPlace>Cambridge, Mass.; Meisenheim</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Rehbinder</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Comparative Law and Social Theory</title>
-               <author>
-                  <persName>
-                     <forename>R.</forename>
-                     <surname>Abel</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="s">Am. J. Comp. L</title>
-               <imprint>
-                  <date>1978</date>
-               </imprint>
-               <biblScope unit="volume" from="26" to="26">26</biblScope>
-               <biblScope unit="page" from="219">219</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Smelser</surname>
-                  </persName>
-               </author>
-               <imprint/>
-               <biblScope unit="page" from="175">175</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Kaiser</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Some Comments on Comparative Methodologies in Criminal Justice</title>
-               <author>
-                  <persName>
-                     <surname>Blazicek</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Janeksela</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Int. J. Crim. Pen</title>
-               <imprint>
-                  <date>1978</date>
-               </imprint>
-               <biblScope unit="volume" from="6" to="6">6</biblScope>
-               <biblScope unit="page" from="233">233</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Comparative Law and Social Change - On the Origins, Style, Decline and Revival of the Law and Development Movement</title>
-               <author>
-                  <persName>
-                     <surname>Merryman</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Am. J. Comp. L</title>
-               <imprint>
-                  <date>1977</date>
-               </imprint>
-               <biblScope unit="volume" from="25" to="25">25</biblScope>
-               <biblScope unit="page" from="457">457</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Payne</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Systemvergleich im Arbeitsrecht? Vorüberlegungen zu einigen Methodenfragen</title>
-               <author>
-                  <persName>
-                     <surname>Däubler</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Demokratie und Recht</title>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="volume" from="1" to="1">1</biblScope>
-               <biblScope unit="page" from="23">23</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Zur Vergleichbarkeit analoger Rechtsinstitute in verschiede nen Gesellschaftsordnungen</title>
-               <author>
-                  <persName>
-                     <surname>Zweigert</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Puttfarken</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Rechtsvergleichung</title>
-               <editor>
-                  <persName>
-                     <surname>Zweigert</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Puttfarken</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1978</date>
-               </imprint>
-               <biblScope unit="page" from="395">395</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration</title>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">HM discussion papers</title>
-               <imprint>
-                  <date>1978</date>
-               </imprint>
-               <biblScope unit="volume" from="23" to="23">23</biblScope>
-               <biblScope unit="page" from="5">5</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Zweigert</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Kötz</surname>
-                  </persName>
-               </author>
-               <imprint/>
-               <biblScope unit="volume" from="I" to="I">I</biblScope>
-               <biblScope unit="page" from="30">30</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Methodology Problems and Possibilities in Comparative Research</title>
-               <author>
-                  <persName>
-                     <surname>Armer</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Armer</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Grimsbaw</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="49">49</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Smelser</surname>
-                  </persName>
-               </author>
-               <imprint/>
-               <biblScope unit="page" from="182">182</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Möglichkeiten und Probleme des Kulturvergleichs am Beispiel einer Agressionsstudie</title>
-               <author>
-                  <persName>
-                     <surname>Trommsdorf</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">KZfSS</title>
-               <imprint>
-                  <date>1978</date>
-               </imprint>
-               <biblScope unit="volume" from="30" to="30">30</biblScope>
-               <biblScope unit="page" from="361">361</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Juvenile Deliquency and Development</title>
-               <author>
-                  <persName>
-                     <surname>Malewswka</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Peyre</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Szalai</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Petrella</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="131">131</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">The Cross-Cultural Use of Sample Surveys — Problems of Comparability</title>
-               <author>
-                  <persName>
-                     <surname>Scheuch</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Rokkan</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="176">176</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Der internationale Vergleich</title>
-               <author>
-                  <persName>
-                     <surname>Biervert</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Techniken empirischer Sozialforschung</title>
-               <editor>
-                  <persName>
-                     <forename>van</forename>
-                     <surname>Koolwiyk</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Wieken-Mayser</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1975</date>
-               </imprint>
-               <biblScope unit="volume" from="2" to="2">2</biblScope>
-               <biblScope unit="page" from="113">113</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">The Uses of Survey Research in the Study of Comparative Politics — Issues and Strategies</title>
-               <author>
-                  <persName>
-                     <surname>Verba</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Rokkan</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Verba</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Viet</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Almasy</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="56">56</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Soziologische Ãœberlegungen zu einer Theorie der angewandten Rechtsvergleichung</title>
-               <author>
-                  <persName>
-                     <surname>Gessner</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Drobnig</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Rehbinder</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="123">123</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Nowak</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Social Theory and Social Structure</title>
-               <title level="a">The OECD Social Indicator Development Programme - 1976 Progress Report on Phase II</title>
-               <author>
-                  <persName>
-                     <surname>Merton</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1968</date>
-                  <date>1977</date>
-                  <pubPlace>New York, London</pubPlace>
-                  <pubPlace>Paris</pubPlace>
-                  <publisher>
-                     <persName>
-                        <surname>OECD</surname>
-                     </persName>
-                  </publisher>
-               </imprint>
-               <biblScope unit="page" from="82">82 ff</biblScope>
-               <biblScope unit="page" from="40">40</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Marriage Stability, Divorce, and the Law</title>
-               <author>
-                  <persName>
-                     <surname>Rheinstein</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1972</date>
-                  <pubPlace>Chicago</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Abel</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Die Messung von Mitbestimmungsnormen — Darstellung eines international vergleichenden Forschungsansatzes</title>
-               <author>
-                  <persName>
-                     <surname>Wilpert</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1979</date>
-                  <publisher>
-                     <persName>
-                        <surname>HM-Paper</surname>
-                     </persName>
-                  </publisher>
-               </imprint>
-               <biblScope unit="page" from="13">13) 2</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Scheuch</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Abel</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise</title>
-               <author>
-                  <persName>
-                     <surname>Constantinesco</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Zeitschrift für Rechtsvergleichung</title>
-               <imprint>
-                  <date>1978</date>
-               </imprint>
-               <biblScope unit="volume" from="19" to="19">19</biblScope>
-               <biblScope unit="page" from="161">161</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Blankenburg</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Rose</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Benda-Beckmann</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Über den Stil der „Stilthe orie" in der Rechtsvergleichung</title>
-               <author>
-                  <persName>
-                     <surname>Constantinesco</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">ZvglRW</title>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="volume" from="78" to="78">78</biblScope>
-               <biblScope unit="page" from="154">154</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Payne</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Zweigert</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Kötz</surname>
-                  </persName>
-               </author>
-               <imprint/>
-               <biblScope unit="volume" from="I" to="I">I</biblScope>
-               <biblScope unit="page" from="70">70</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Cultural Determinants of the Exercise of Power in a Hierarchy</title>
-               <author>
-                  <persName>
-                     <surname>Hofstede</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">European Institute for Advanced Studies in Management Working Paper</title>
-               <imprint>
-                  <date>1977</date>
-               </imprint>
-               <biblScope unit="volume" from="8" to="8">8</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Däubler</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Zweigert</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Kötz</surname>
-                  </persName>
-               </author>
-               <imprint/>
-               <biblScope unit="volume" from="1" to="1">1</biblScope>
-               <biblScope unit="page" from="110">110</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Benda-Beckmann</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Industrial Democracy in Europe</title>
-               <author>
-                  <persName>
-                     <forename>IDE-International</forename>
-                     <forename>Research</forename>
-                     <surname>Group</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1980</date>
-                  <pubPlace>London</pubPlace>
-               </imprint>
-               <biblScope unit="page" from="Chapter">Chapter VIII</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Zweigert</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Kötz</surname>
-                  </persName>
-               </author>
-               <imprint/>
-               <biblScope unit="volume" from="I" to="I">I</biblScope>
-               <biblScope unit="page" from="78">78</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <imprint>
-                  <publisher>
-                     <persName>
-                        <forename>IDE-International</forename>
-                        <forename>Research</forename>
-                        <surname>Group</surname>
-                     </persName>
-                  </publisher>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Däubler</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Die Rechtshonoratioren und ihr Einfluß auf Charakter und Funk tion der Rechtsordnungen</title>
-               <author>
-                  <persName>
-                     <surname>Rheinstein</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">RabelsZ</title>
-               <imprint>
-                  <date>1970</date>
-               </imprint>
-               <biblScope unit="volume" from="34" to="34">34</biblScope>
-               <biblScope unit="page" from="1">1</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der Rechtsvergleichung</title>
-               <author>
-                  <persName>
-                     <surname>Bernstein</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">RabelsZ</title>
-               <imprint>
-                  <date>1970</date>
-               </imprint>
-               <biblScope unit="volume" from="34" to="34">34</biblScope>
-               <biblScope unit="page" from="443">443</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in Germany and the United States</title>
-               <author>
-                  <persName>
-                     <surname>Ruescbemeyer</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1973</date>
-                  <pubPlace>Cambridge, Mass</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">The Legal Profession in Comparative Perspective</title>
-               <author>
-                  <persName>
-                     <surname>ders</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Social System and Legal Process</title>
-               <editor>
-                  <persName>
-                     <forename>H.</forename>
-                     <forename>M.</forename>
-                     <surname>Johnson</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1978</date>
-                  <pubPlace>San Francisco, Washington, London</pubPlace>
-               </imprint>
-               <biblScope unit="page" from="97">97</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Politische Inhaltsanalyse von Rechtslehrertexten</title>
-               <author>
-                  <persName>
-                     <surname>Klausa</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">ZfS</title>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="volume" from="8" to="8">8</biblScope>
-               <biblScope unit="page" from="362">362</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Nowak</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Smelser</surname>
-                  </persName>
-               </author>
-               <imprint/>
-               <biblScope unit="page" from="167">167</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Analysis and Interpretation in Cross-National Survey Research</title>
-               <author>
-                  <persName>
-                     <surname>Teune</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Szalai</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Petrella</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="95">95</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">The Disputing Process — Law in Ten Societies</title>
-               <author>
-                  <persName>
-                     <surname>Nader</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Todd</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1978</date>
-                  <pubPlace>New York</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Problem in der Kriminologie</title>
-               <author>
-                  <persName>
-                     <surname>Kaiser</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName/>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Blazicek</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Janeksela</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Comparative Crime Victimization Surveys — Some Problems and Results</title>
-               <author>
-                  <persName>
-                     <surname>Clinard</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Int. J. Crim, and Pen</title>
-               <imprint>
-                  <date>1978</date>
-               </imprint>
-               <biblScope unit="volume" from="6" to="6">6</biblScope>
-               <biblScope unit="page" from="221">221</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Legal Problems and the Citizen</title>
-               <author>
-                  <persName>
-                     <surname>Abel-Smith</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Zander</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Brooke</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1973</date>
-                  <pubPlace>London</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in International Comparison</title>
-               <author>
-                  <persName>
-                     <surname>Rokumoto</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">ZfS</title>
-               <imprint>
-                  <date>1978</date>
-               </imprint>
-               <biblScope unit="volume" from="7" to="7">7</biblScope>
-               <biblScope unit="page" from="228">228</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Rechtspro bleme oder private Schwierigkeiten — Die Inanspruchnahme von Rechtshilfe in den Nieder landen</title>
-               <author>
-                  <persName>
-                     <surname>Schuyt</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Groenendijk</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Sloot</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
-               <imprint>
-                  <date>1978</date>
-               </imprint>
-               <biblScope unit="volume" from="5" to="5">5</biblScope>
-               <biblScope unit="page" from="109">109</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Comparative Studies on the Attitudes Towards Various Legal Systems</title>
-               <author>
-                  <persName>
-                     <surname>Podgdrecki</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Polish Sociological Bulletin</title>
-               <imprint>
-                  <date>1970</date>
-               </imprint>
-               <biblScope unit="volume" from="21 No. 1" to="21 No. 1">21 No. 1</biblScope>
-               <biblScope unit="page" from="83">83</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Zur Effek tivität der Rechtssoziologie: die Rekonstruktion der Gesellschaft durch Recht</title>
-               <author>
-                  <persName>
-                     <surname>Ziegen</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1975</date>
-               </imprint>
-               <biblScope unit="page" from="196">196</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Legal Consciousness as a Research Problem</title>
-               <author>
-                  <persName>
-                     <surname>Podgdrecki</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">European Yearbook in Law and Sociology  1977</title>
-               <imprint>
-                  <date>1977</date>
-                  <pubPlace>Den Haag</pubPlace>
-               </imprint>
-               <biblScope unit="page" from="85">85</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">The Legal Consciousness“: A Survey of Research on Knowledge and Opinion about Law</title>
-               <author>
-                  <persName>
-                     <surname>Kutchinsky</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Knowledge and Opinion about Law</title>
-               <editor>
-                  <persName>
-                     <surname>Podgdrecki</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Kaupen</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <forename>van</forename>
-                     <surname>Houtte</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Vinke</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Kutchinsky</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1973</date>
-                  <pubPlace>Bristol</pubPlace>
-               </imprint>
-               <biblScope unit="page" from="101">101</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Public Opinion on Law</title>
-               <author>
-                  <persName>
-                     <surname>Podgdrecki</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Knowledge and Opinion about Law</title>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Interkultureller Vergleich</title>
-               <author>
-                  <persName>
-                     <surname>Heintz</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Handbuch der empirischen Sozialfor schung</title>
-               <editor>
-                  <persName>
-                     <surname>König</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1974</date>
-               </imprint>
-               <biblScope unit="volume" from="4 (3. Aufl" to="4 (3. Aufl">4 (3. Aufl</biblScope>
-               <biblScope unit="page" from="405">405</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Über methodische und organisatorische Grenzen der empirischen Rechts forschung in Entwicklungsländern</title>
-               <author>
-                  <persName>
-                     <surname>Hegenbarth</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Informationsbrief für Rechtssoziologie</title>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="volume" from="Son derheft 2" to="Son derheft 2">Son derheft 2</biblScope>
-               <biblScope unit="page" from="5">5</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Recht und Konflikt — Eine soziologische Untersuchungprivatrechtlicher Konflikte in Mexiko</title>
-               <author>
-                  <persName>
-                     <surname>Gessner</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1976</date>
-               </imprint>
-               <biblScope unit="page" from="37">37</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <author>
-                  <persName>
-                     <surname>Heintz</surname>
-                  </persName>
-               </author>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <imprint/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Problems in Comparative Criminology</title>
-               <author>
-                  <persName>
-                     <surname>Friday</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Int. J. Crim</title>
-               <imprint>
-                  <date>1973</date>
-               </imprint>
-               <biblScope unit="volume" from="1" to="1">1</biblScope>
-               <biblScope unit="page" from="151">151</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Vergleichende Sozialwissenschaft</title>
-               <author>
-                  <persName>
-                     <surname>Rokkan</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <imprint>
-                  <date>1972</date>
-               </imprint>
-               <biblScope unit="page" from="9">9</biblScope>
-               <biblScope unit="page"/>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">The Organization and Execution of Cross-National Survey Research Projects</title>
-               <author>
-                  <persName>
-                     <surname>Szalai</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Szalai</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Petrella</surname>
-                  </persName>
-               </editor>
-               <imprint/>
-               <biblScope unit="page" from="49">49</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <monogr>
-               <imprint>
-                  <publisher>
-                     <persName>
-                        <forename>IDE-International</forename>
-                        <forename>Research</forename>
-                        <surname>Group</surname>
-                     </persName>
-                  </publisher>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Methodological Aspects of the Project „Local Legal Systems</title>
-               <author>
-                  <persName>
-                     <surname>Blegvad</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Sociology of Law and Legal Sciences</title>
-               <editor>
-                  <persName>
-                     <surname>Kulcsár</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1977</date>
-                  <pubPlace>Budapest</pubPlace>
-               </imprint>
-               <biblScope unit="page" from="97">97</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Die kritische Wertung in der Rechtsvergleichung</title>
-               <author>
-                  <persName>
-                     <surname>Zweigert</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="m">Festschrift für Schmitthoff</title>
-               <imprint>
-                  <date>1973</date>
-               </imprint>
-               <biblScope unit="page" from="403">403</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Rechtstatsachenforschung und Gesetzgebung — Hinweise zur Entwicklung einer Gesetzgebungssoziologie in Frank reich</title>
-               <author>
-                  <persName>
-                     <surname>Dörner</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Interview und Analyse</title>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="page" from="377">377</biblScope>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Recht und Konflikt — Mexiko und Afrika</title>
-               <author>
-                  <persName>
-                     <surname>Bryde</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <title level="j">Verfassung und Recht in Obersee</title>
-               <imprint>
-                  <date>1979</date>
-               </imprint>
-               <biblScope unit="volume" from="12" to="12">12</biblScope>
-               <biblScope unit="page" from="159">159</biblScope>
-            </monogr>
-         </biblStruct>
-      </listBibl>
-      <listBibl>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Rechtssoziologie und Rechtsvergleichung</title>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Drobnig</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Rebbinder</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1977</date>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Compa rative Research Across Cultures and Nations</title>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Rokkan</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1968</date>
-                  <pubPlace>Paris, Den Haag</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Comparative Sutvey Analysis</title>
-               <title level="a">Comparative Methods in the Social Sciences</title>
-               <author>
-                  <persName>
-                     <surname>Smelser</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Rokkan</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Verba</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Viet</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Almasy</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1969</date>
-                  <pubPlace>Den Haag, Paris</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Cross National Comparative Survey Research</title>
-               <author>
-                  <persName>
-                     <forename>N.</forename>
-                     <forename>J</forename>
-                     <surname>Englewood Cliffs</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName/>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Szalai</surname>
-                  </persName>
-               </editor>
-               <editor>
-                  <persName>
-                     <surname>Petrella</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1976</date>
-                  <date>1977</date>
-                  <pubPlace>Oxford, New York, Toronto, Sydney, Paris, Frank furt</pubPlace>
-               </imprint>
-            </monogr>
-         </biblStruct>
-         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei-bibl-corrected/10.1515_zfrs-1980-0104.xml#">
-            <analytic>
-               <title level="a">Comparative Methods in Sociology</title>
-               <title level="a">Einführung in die Rechtsvergleichung</title>
-               <author>
-                  <persName>
-                     <surname>Zweigert</surname>
-                  </persName>
-               </author>
-               <author>
-                  <persName>
-                     <surname>Kötz</surname>
-                  </persName>
-               </author>
-            </analytic>
-            <monogr>
-               <editor>
-                  <persName>
-                     <surname>Vallier</surname>
-                  </persName>
-               </editor>
-               <imprint>
-                  <date>1971</date>
-                  <date>1971</date>
-                  <pubPlace>Berkeley, Los Angeles, London</pubPlace>
-               </imprint>
-               <biblScope unit="volume" from="I" to="I">I</biblScope>
-            </monogr>
-         </biblStruct>
-      </listBibl>
-   </standOff>
-</TEI>
diff --git a/convert-anystyle-data/tei-to-bibformats.ipynb b/convert-anystyle-data/tei-to-bibformats.ipynb
index cbc1bb1af9c15693fbe0d8406daab24d6f08c5ed..b971668d52117cae74664f9e12bca6c5c94f385f 100644
--- a/convert-anystyle-data/tei-to-bibformats.ipynb
+++ b/convert-anystyle-data/tei-to-bibformats.ipynb
@@ -21,8 +21,8 @@
   {
    "metadata": {
     "ExecuteTime": {
-     "end_time": "2024-08-27T20:23:35.718829Z",
-     "start_time": "2024-08-27T20:23:30.937360Z"
+     "end_time": "2024-09-30T07:54:13.442541100Z",
+     "start_time": "2024-09-30T07:54:05.586047400Z"
     }
    },
    "cell_type": "code",
@@ -82,7 +82,7 @@
      ]
     }
    ],
-   "execution_count": 30
+   "execution_count": 1
   },
   {
    "metadata": {},
@@ -99,8 +99,8 @@
   {
    "metadata": {
     "ExecuteTime": {
-     "end_time": "2024-08-22T08:58:42.538326Z",
-     "start_time": "2024-08-22T08:58:34.687673Z"
+     "end_time": "2024-09-30T07:54:21.268112200Z",
+     "start_time": "2024-09-30T07:54:18.540833800Z"
     }
    },
    "cell_type": "code",
@@ -118,19 +118,21 @@
    ],
    "id": "72b688e9b2e0d1f2",
    "outputs": [],
-   "execution_count": 86
+   "execution_count": 2
   },
   {
    "metadata": {},
    "cell_type": "markdown",
-   "source": "## Convert TEI-bibl to TEI-biblStruct",
+   "source": [
+    "## Convert TEI-bibl to TEI-biblStruct"
+   ],
    "id": "ddb489a0e84d0ad6"
   },
   {
    "metadata": {
     "ExecuteTime": {
-     "end_time": "2024-09-29T19:06:58.676159Z",
-     "start_time": "2024-09-29T19:06:56.372150Z"
+     "end_time": "2024-09-30T07:54:37.231679800Z",
+     "start_time": "2024-09-30T07:54:36.583982200Z"
     }
    },
    "cell_type": "code",
@@ -144,29 +146,29 @@
    "id": "6228841009ae6c5f",
    "outputs": [
     {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Applied lib\\xslt\\convert_tei-to-biblstruct_bibl.xsl to files in tei-bibl-corrected and saved result in tei-biblStruct.\n"
+     "ename": "FileNotFoundError",
+     "evalue": "[WinError 2] Das System kann die angegebene Datei nicht finden",
+     "output_type": "error",
+     "traceback": [
+      "\u001B[1;31m---------------------------------------------------------------------------\u001B[0m",
+      "\u001B[1;31mFileNotFoundError\u001B[0m                         Traceback (most recent call last)",
+      "Cell \u001B[1;32mIn[3], line 2\u001B[0m\n\u001B[0;32m      1\u001B[0m \u001B[38;5;28;01mfrom\u001B[39;00m \u001B[38;5;21;01mlib\u001B[39;00m\u001B[38;5;21;01m.\u001B[39;00m\u001B[38;5;21;01mxslt\u001B[39;00m \u001B[38;5;28;01mimport\u001B[39;00m transform\n\u001B[1;32m----> 2\u001B[0m transform(xslt_path\u001B[38;5;241m=\u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mlib/xslt/convert_tei-to-biblstruct_bibl.xsl\u001B[39m\u001B[38;5;124m'\u001B[39m, \n\u001B[0;32m      3\u001B[0m           input_path\u001B[38;5;241m=\u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mtei-bibl-corrected\u001B[39m\u001B[38;5;124m'\u001B[39m,\n\u001B[0;32m      4\u001B[0m           output_path\u001B[38;5;241m=\u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mtei-biblStruct\u001B[39m\u001B[38;5;124m'\u001B[39m, \n\u001B[0;32m      5\u001B[0m           rename_extension\u001B[38;5;241m=\u001B[39m(\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m-bibl_biblStruct.TEIP5.xml\u001B[39m\u001B[38;5;124m'\u001B[39m,\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m.biblStruct.xml\u001B[39m\u001B[38;5;124m'\u001B[39m))\n",
+      "File \u001B[1;32m~\\DataspellProjects\\experiments\\convert-anystyle-data\\lib\\xslt.py:12\u001B[0m, in \u001B[0;36mtransform\u001B[1;34m(xslt_path, input_path, output_path, rename_extension, remove_prefix)\u001B[0m\n\u001B[0;32m      8\u001B[0m xslt_path \u001B[38;5;241m=\u001B[39m os\u001B[38;5;241m.\u001B[39mpath\u001B[38;5;241m.\u001B[39mnormpath(xslt_path)\n\u001B[0;32m      9\u001B[0m cmd \u001B[38;5;241m=\u001B[39m [\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mjava\u001B[39m\u001B[38;5;124m'\u001B[39m, \u001B[38;5;124m'\u001B[39m\u001B[38;5;124m-jar\u001B[39m\u001B[38;5;124m'\u001B[39m, \u001B[38;5;124m'\u001B[39m\u001B[38;5;124mlib/SaxonHE12-5J/saxon-he-12.5.jar\u001B[39m\u001B[38;5;124m'\u001B[39m,\n\u001B[0;32m     10\u001B[0m        \u001B[38;5;124mf\u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m-s:\u001B[39m\u001B[38;5;132;01m{\u001B[39;00minput_path\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m'\u001B[39m, \u001B[38;5;124mf\u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m-xsl:\u001B[39m\u001B[38;5;132;01m{\u001B[39;00mxslt_path\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m'\u001B[39m, \u001B[38;5;124mf\u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124m-o:\u001B[39m\u001B[38;5;132;01m{\u001B[39;00moutput_path\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m/\u001B[39m\u001B[38;5;124m'\u001B[39m,\n\u001B[0;32m     11\u001B[0m        \u001B[38;5;124m'\u001B[39m\u001B[38;5;124mp_target-language=de\u001B[39m\u001B[38;5;124m'\u001B[39m, \u001B[38;5;124m'\u001B[39m\u001B[38;5;124mp_github-action=true\u001B[39m\u001B[38;5;124m'\u001B[39m, \u001B[38;5;124mf\u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mp_output-folder=\u001B[39m\u001B[38;5;132;01m{\u001B[39;00moutput_path\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m/\u001B[39m\u001B[38;5;124m'\u001B[39m]\n\u001B[1;32m---> 12\u001B[0m process \u001B[38;5;241m=\u001B[39m subprocess\u001B[38;5;241m.\u001B[39mrun(cmd, capture_output\u001B[38;5;241m=\u001B[39m\u001B[38;5;28;01mTrue\u001B[39;00m, text\u001B[38;5;241m=\u001B[39m\u001B[38;5;28;01mTrue\u001B[39;00m)\n\u001B[0;32m     14\u001B[0m \u001B[38;5;66;03m# clean up the output dir\u001B[39;00m\n\u001B[0;32m     15\u001B[0m \u001B[38;5;28;01mfor\u001B[39;00m file_path \u001B[38;5;129;01min\u001B[39;00m glob(\u001B[38;5;124mf\u001B[39m\u001B[38;5;124m'\u001B[39m\u001B[38;5;132;01m{\u001B[39;00moutput_path\u001B[38;5;132;01m}\u001B[39;00m\u001B[38;5;124m/*.xml\u001B[39m\u001B[38;5;124m'\u001B[39m):\n",
+      "File \u001B[1;32m~\\AppData\\Local\\miniconda3\\Lib\\subprocess.py:548\u001B[0m, in \u001B[0;36mrun\u001B[1;34m(input, capture_output, timeout, check, *popenargs, **kwargs)\u001B[0m\n\u001B[0;32m    545\u001B[0m     kwargs[\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mstdout\u001B[39m\u001B[38;5;124m'\u001B[39m] \u001B[38;5;241m=\u001B[39m PIPE\n\u001B[0;32m    546\u001B[0m     kwargs[\u001B[38;5;124m'\u001B[39m\u001B[38;5;124mstderr\u001B[39m\u001B[38;5;124m'\u001B[39m] \u001B[38;5;241m=\u001B[39m PIPE\n\u001B[1;32m--> 548\u001B[0m \u001B[38;5;28;01mwith\u001B[39;00m Popen(\u001B[38;5;241m*\u001B[39mpopenargs, \u001B[38;5;241m*\u001B[39m\u001B[38;5;241m*\u001B[39mkwargs) \u001B[38;5;28;01mas\u001B[39;00m process:\n\u001B[0;32m    549\u001B[0m     \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[0;32m    550\u001B[0m         stdout, stderr \u001B[38;5;241m=\u001B[39m process\u001B[38;5;241m.\u001B[39mcommunicate(\u001B[38;5;28minput\u001B[39m, timeout\u001B[38;5;241m=\u001B[39mtimeout)\n",
+      "File \u001B[1;32m~\\AppData\\Local\\miniconda3\\Lib\\subprocess.py:1026\u001B[0m, in \u001B[0;36mPopen.__init__\u001B[1;34m(self, args, bufsize, executable, stdin, stdout, stderr, preexec_fn, close_fds, shell, cwd, env, universal_newlines, startupinfo, creationflags, restore_signals, start_new_session, pass_fds, user, group, extra_groups, encoding, errors, text, umask, pipesize, process_group)\u001B[0m\n\u001B[0;32m   1022\u001B[0m         \u001B[38;5;28;01mif\u001B[39;00m \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mtext_mode:\n\u001B[0;32m   1023\u001B[0m             \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mstderr \u001B[38;5;241m=\u001B[39m io\u001B[38;5;241m.\u001B[39mTextIOWrapper(\u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mstderr,\n\u001B[0;32m   1024\u001B[0m                     encoding\u001B[38;5;241m=\u001B[39mencoding, errors\u001B[38;5;241m=\u001B[39merrors)\n\u001B[1;32m-> 1026\u001B[0m     \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_execute_child(args, executable, preexec_fn, close_fds,\n\u001B[0;32m   1027\u001B[0m                         pass_fds, cwd, env,\n\u001B[0;32m   1028\u001B[0m                         startupinfo, creationflags, shell,\n\u001B[0;32m   1029\u001B[0m                         p2cread, p2cwrite,\n\u001B[0;32m   1030\u001B[0m                         c2pread, c2pwrite,\n\u001B[0;32m   1031\u001B[0m                         errread, errwrite,\n\u001B[0;32m   1032\u001B[0m                         restore_signals,\n\u001B[0;32m   1033\u001B[0m                         gid, gids, uid, umask,\n\u001B[0;32m   1034\u001B[0m                         start_new_session, process_group)\n\u001B[0;32m   1035\u001B[0m \u001B[38;5;28;01mexcept\u001B[39;00m:\n\u001B[0;32m   1036\u001B[0m     \u001B[38;5;66;03m# Cleanup if the child failed starting.\u001B[39;00m\n\u001B[0;32m   1037\u001B[0m     \u001B[38;5;28;01mfor\u001B[39;00m f \u001B[38;5;129;01min\u001B[39;00m \u001B[38;5;28mfilter\u001B[39m(\u001B[38;5;28;01mNone\u001B[39;00m, (\u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mstdin, \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mstdout, \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39mstderr)):\n",
+      "File \u001B[1;32m~\\AppData\\Local\\miniconda3\\Lib\\subprocess.py:1538\u001B[0m, in \u001B[0;36mPopen._execute_child\u001B[1;34m(self, args, executable, preexec_fn, close_fds, pass_fds, cwd, env, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite, unused_restore_signals, unused_gid, unused_gids, unused_uid, unused_umask, unused_start_new_session, unused_process_group)\u001B[0m\n\u001B[0;32m   1536\u001B[0m \u001B[38;5;66;03m# Start the process\u001B[39;00m\n\u001B[0;32m   1537\u001B[0m \u001B[38;5;28;01mtry\u001B[39;00m:\n\u001B[1;32m-> 1538\u001B[0m     hp, ht, pid, tid \u001B[38;5;241m=\u001B[39m _winapi\u001B[38;5;241m.\u001B[39mCreateProcess(executable, args,\n\u001B[0;32m   1539\u001B[0m                              \u001B[38;5;66;03m# no special security\u001B[39;00m\n\u001B[0;32m   1540\u001B[0m                              \u001B[38;5;28;01mNone\u001B[39;00m, \u001B[38;5;28;01mNone\u001B[39;00m,\n\u001B[0;32m   1541\u001B[0m                              \u001B[38;5;28mint\u001B[39m(\u001B[38;5;129;01mnot\u001B[39;00m close_fds),\n\u001B[0;32m   1542\u001B[0m                              creationflags,\n\u001B[0;32m   1543\u001B[0m                              env,\n\u001B[0;32m   1544\u001B[0m                              cwd,\n\u001B[0;32m   1545\u001B[0m                              startupinfo)\n\u001B[0;32m   1546\u001B[0m \u001B[38;5;28;01mfinally\u001B[39;00m:\n\u001B[0;32m   1547\u001B[0m     \u001B[38;5;66;03m# Child is launched. Close the parent's copy of those pipe\u001B[39;00m\n\u001B[0;32m   1548\u001B[0m     \u001B[38;5;66;03m# handles that only the child should have open.  You need\u001B[39;00m\n\u001B[1;32m   (...)\u001B[0m\n\u001B[0;32m   1551\u001B[0m     \u001B[38;5;66;03m# pipe will not close when the child process exits and the\u001B[39;00m\n\u001B[0;32m   1552\u001B[0m     \u001B[38;5;66;03m# ReadFile will hang.\u001B[39;00m\n\u001B[0;32m   1553\u001B[0m     \u001B[38;5;28mself\u001B[39m\u001B[38;5;241m.\u001B[39m_close_pipe_fds(p2cread, p2cwrite,\n\u001B[0;32m   1554\u001B[0m                          c2pread, c2pwrite,\n\u001B[0;32m   1555\u001B[0m                          errread, errwrite)\n",
+      "\u001B[1;31mFileNotFoundError\u001B[0m: [WinError 2] Das System kann die angegebene Datei nicht finden"
      ]
-    },
-    {
-     "data": {
-      "text/plain": [
-       "''"
-      ]
-     },
-     "execution_count": 7,
-     "metadata": {},
-     "output_type": "execute_result"
     }
    ],
-   "execution_count": 7
+   "execution_count": 3
   },
   {
    "metadata": {},
    "cell_type": "markdown",
-   "source": "## Convert TEI-bibl to MODS",
+   "source": [
+    "## Convert TEI-bibl to MODS"
+   ],
    "id": "dcdb762867feb96a"
   },
   {
diff --git a/convert-anystyle-data/tei-to-biblstruct-gs.ipynb b/convert-anystyle-data/tei-to-biblstruct-gs.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..d9a56c4289c2eaa5241881181112edd91a903c5a
--- /dev/null
+++ b/convert-anystyle-data/tei-to-biblstruct-gs.ipynb
@@ -0,0 +1,905 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "source": [
+    "# Create `biblStruct` that works as a Gold Standard\n",
+    "\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",
+    "\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",
+    "            <!-- 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",
+    "        <listBibl>\n",
+    "            <desc>full raw reference string of bibliography entry or out-of-band reference in the text</desc>\n",
+    "            <biblStruct />\n",
+    "        </listBibl>\n",
+    "    </standOff>\n",
+    "</TEI>\n",
+    "```\n",
+    "The full input string is enclosed in a `<desc>` node as the first child of `<listBibl>`."
+   ],
+   "metadata": {
+    "collapsed": false
+   },
+   "id": "403886afc226bad8"
+  },
+  {
+   "cell_type": "markdown",
+   "source": [
+    "We first need to create `biblStruct` from the corrected `bibl` annoations (you need to run [tei-to-biblstruct-gs.ipynb](./tei-to-biblstruct-gs.ipynb) first to install the dependencies):"
+   ],
+   "metadata": {
+    "collapsed": false
+   },
+   "id": "c0edb2f97feb2857"
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 4,
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Applied lib\\xslt\\convert_tei-to-biblstruct_bibl.xsl to files in tei-bibl-corrected and saved result in tei-biblStruct.\n"
+     ]
+    },
+    {
+     "data": {
+      "text/plain": "''"
+     },
+     "execution_count": 4,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "from lib.xslt import transform\n",
+    "transform(xslt_path='lib/xslt/convert_tei-to-biblstruct_bibl.xsl',\n",
+    "          input_path='tei-bibl-corrected',\n",
+    "          output_path='tei-biblStruct',\n",
+    "          rename_extension=('-bibl_biblStruct.TEIP5.xml','.biblStruct.xml')).stderr"
+   ],
+   "metadata": {
+    "collapsed": false,
+    "ExecuteTime": {
+     "end_time": "2024-09-30T08:46:21.636913900Z",
+     "start_time": "2024-09-30T08:46:17.219488500Z"
+    }
+   },
+   "id": "ec39149134021704"
+  },
+  {
+   "cell_type": "markdown",
+   "source": [
+    "Now combine the `bibl` and `biblStruct` to create the gold standard `biblStruct`."
+   ],
+   "metadata": {
+    "collapsed": false
+   },
+   "id": "4a1816a9d4d4e645"
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 5,
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Processing 10.1111_1467-6478.00057\n",
+      " - Analyzing \"A. Phillips, ‘Citizenship and Feminist Politics’ in Citizenship, ed. G. Andrews (1991) 77....\"\n",
+      "     - Reference: Citizenship and Feminist Politics...\n",
+      " - Analyzing \"T. Brennan and C. Pateman, ‘“Mere Auxiliaries to the Commonwealth”: Women and the Origins of Liberalism’ (1979) 27 Political Studies 183....\"\n",
+      "     - Reference: Mere Auxiliaries to the Commonwealth”: Women and the Origins of Liberalism...\n",
+      " - Analyzing \"M. Sawer and M. Simms, A Woman’s Place: Women and Politics in Australia (2nd ed., 1993)....\"\n",
+      "     - Reference: A Woman’s Place: Women and Politics in Australia...\n",
+      " - Analyzing \"I have explored the gendered nature of citizenship at greater length in two complementary papers: ‘Embodying the Citizen’ in Public and Private: Feminist Legal Debates, ed. M. Thornton (1995) and ‘His...\"\n",
+      "     - Reference: Embodying the Citizen...\n",
+      "     - Reference: Historicising Citizenship: Remembering Broken Promises...\n",
+      " - Analyzing \"S. Walby, ‘Is Citizenship Gendered?’ (1994) 28 Sociology 379...\"\n",
+      "     - Reference: Is Citizenship Gendered?...\n",
+      " - Analyzing \"I. Kant, ‘Metaphysical First Principles of the Doctrine of Right [1785]’ in The Metaphysics of Morals (trans. M. Gregor, 1991) 125–6 s. 146....\"\n",
+      "     - Reference: Metaphysical First Principles of the Doctrine of Right [1785]...\n",
+      " - Analyzing \"U. Vogel, ‘Marriage and the Boundaries of Citizenship’ in The Condition of Citizenship, ed. B. van Steenbergen (1994) 75....\"\n",
+      "     - Reference: Marriage and the Boundaries of Citizenship...\n",
+      " - Analyzing \"N. Fraser and L. Gordon, ‘Civil Citizenship against Social Citizenship?’ in id., p. 97....\"\n",
+      "     - Reference: Civil Citizenship against Social Citizenship?...\n",
+      " - Analyzing \"Vogel, id., p. 79. W. Blackstone, Commentaries (Facsimile of 1st. ed. of 1765–69, 1979) 442....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Commentaries...\n",
+      " - Analyzing \"Vogel, op. cit., n. 7, pp. 80–1....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"F. Haug (ed.), Female Sexualization: A Collective Work of Memory (1987) 196....\"\n",
+      "     - Reference: Female Sexualization: A Collective Work of Memory...\n",
+      " - Analyzing \"A. Bottomley, ‘Self and Subjectivities: Languages of Claim in Property Law’ (1993) 20 J. of Law and Society 56, 61....\"\n",
+      "     - Reference: Self and Subjectivities: Languages of Claim in Property Law...\n",
+      " - Analyzing \"D. West, ‘Power and Formation: New Foundations for a Radical Concept of Power’ (1987)...\"\n",
+      "     - Reference: Power and Formation: New Foundations for a Radical Concept of Power...\n",
+      " - Analyzing \"Inquiry 137, 145. Compare M. Foucault, Power/Knowledge: Selected Interviews and Other Writings 1972–1977, ed. C. Gordon (1980) 98....\"\n",
+      "     - Reference: Inquiry 137...\n",
+      "     - Reference: Power/Knowledge: Selected Interviews and Other Writings 1972–1977...\n",
+      " - Analyzing \"For a detailed analysis of legal method and the political role it plays, see M.J. Mossman, ‘Feminism, and Legal Method: The Difference it Makes’ (1986) 3 Aust. J. of Law and Society 30....\"\n",
+      "     - Reference: Feminism, and Legal Method: The Difference it Makes...\n",
+      " - Analyzing \"H.S. Maine, Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas (10th ed., 1912) 174....\"\n",
+      "     - Reference: Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas...\n",
+      " - Analyzing \"This was particularly the case in the United States of America. See M.J. Horwitz, The Transformation of American Law, 1780–1860 (1977) 160....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: The Transformation of American Law, 1780–1860...\n",
+      " - Analyzing \"M. Grossberg, Governing the Hearth: Law and the Family in Nineteenth-Century America (1985) ix....\"\n",
+      "     - Reference: Governing the Hearth: Law and the Family in Nineteenth-Century America...\n",
+      " - Analyzing \"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 ...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Married Women’s Separate Property in England, 1660–1833...\n",
+      " - Analyzing \"Siegel presents a valuable study of the changing norms of marriage in the context of wife beating. See R.B. Siegel, ‘\"The Rule of Love”: Wife Beating as Prerogative and Privacy’ (1996) 105 Yale Law J....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: \"The Rule of Love”: Wife Beating as Prerogative and Privacy...\n",
+      " - Analyzing \"C. Pateman, The Sexual Contract (1988). For further analysis of the marriage contract, see K. O’Donovan, Family Matters (1993), especially 43–59....\"\n",
+      "     - Reference: The Sexual Contract...\n",
+      "     - Reference: Family Matters...\n",
+      " - Analyzing \"Crimes (Sexual Assault) Amendment Act 1981 (N.S.W.); Criminal Law Consolidation Act Amendment Act 1976 (S.A.); Criminal Code (Sexual Offences) Act 1987 (Tas.); Crimes (Sexual Offences) 1991 (Vic.); Ac...\"\n",
+      "     - Reference: Crimes (Sexual Assault) Amendment Act...\n",
+      "     - Reference: Criminal Law Consolidation Act Amendment Act...\n",
+      "     - Reference: Criminal Code (Sexual Offences) Act...\n",
+      "     - Reference: Crimes (Sexual Offences)...\n",
+      "     - Reference: Acts Amendment (Sexual Assault) Act...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: R. v. L....\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: R. v. R....\n",
+      " - Analyzing \"M. Freeman, ‘Contracting in the Haven: Balfour v. Balfour Revisited’ in Exploring the Boundaries of Contract, ed. R. Halson (1996) 74 R. Collier, Masculinity, Law and the Family (1995) 127 and through...\"\n",
+      "     - Reference: Contracting in the Haven: Balfour v. Balfour Revisited...\n",
+      "     - Reference: Masculinity, Law and the Family...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"P.S. Atiyah, An Introduction to the Law of Contract (5th ed., 1995) 3....\"\n",
+      "     - Reference: An Introduction to the Law of Contract...\n",
+      " - Analyzing \"The Australian Law Reform Commission has addressed the issue and recommended recognition of prenuptial agreements. See A.L.R.C., Matrimonial Property, report no. 37 (1987); A.L.R.C. ., Report of the J...\"\n",
+      "     - Reference: Matrimonial Property...\n",
+      "     - Reference: Report of the Joint Select Committee on Certain Aspects of the Operation and Interpretation of the Family\n",
+      "            Law Act...\n",
+      "     - Reference: Private Ordering in Family Law – Will Women Benefit?...\n",
+      "     - Reference: An Essay in the Deconstruction of Contract Doctrine...\n",
+      " - Analyzing \"L. J. Weitzman, The Marriage Contract: Spouses, Lovers, and the Law (1981) 347 ff....\"\n",
+      "     - Reference: The Marriage Contract: Spouses, Lovers, and the Law...\n",
+      " - Analyzing \"Grossberg, op. cit., n. 18, p. 52....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"V. Balfour [1919] 2 K.B. 571....\"\n",
+      "     - Reference: K.B....\n",
+      " - Analyzing \"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...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Family Law and the Pursuit of Intimacy...\n",
+      " - Analyzing \"For example, Law Reform (Miscellaneous Provisions) Act 1970 (U.K.); Domestic Relations Act 1975 (N.Z.); Marriage Act Amendment Act 1976 (Cwth.)...\"\n",
+      "     - Reference: Law Reform (Miscellaneous Provisions) Act...\n",
+      "     - Reference: Domestic Relations Act...\n",
+      "     - Reference: Marriage Act Amendment Act...\n",
+      " - Analyzing \"G.S. Frost, Promises Broken: Courtship, Class, and Gender in Victorian England (1995); Thornton, op. cit. (1996), n. 4....\"\n",
+      "     - Reference: Promises Broken: Courtship, Class, and Gender in Victorian England (1995)...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Grossberg, op. cit., n. 18, p. 38....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Compare U. Vogel, ‘Is Citizenship Gender-Specific?’ in The Frontiers of Citizenship, eds. U. Vogel and M. Moran (1991) 59....\"\n",
+      "     - Reference: Is Citizenship Gender-Specific?...\n",
+      " - Analyzing \"See, for example, Bradwell v. Illinois 83 U.S. (16 Wall) 130 (1873)....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Bradwell v. Illinois 83 U.S. (16 Wall) 130...\n",
+      " - Analyzing \"Compare J. Pahl, Money and Marriage (1989) 5....\"\n",
+      "     - Reference: Money and Marriage...\n",
+      " - Analyzing \"Although Australia, like the United Kingdom, has a separate property regime, the courts are endowed with broad powers under the Family Law Act 1975 (Cwth.) to distribute property equitably. For detail...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Australian Family Law in Context: Commentary and Materials...\n",
+      "     - Reference: Management of the Community Estate during an Intact Marriage...\n",
+      "     - Reference: What Causes Fundamental Legal Ideas? Marital Property in England and France in the Thirteenth Century’...\n",
+      " - Analyzing \"The legal construction of masculinity and femininity in family law has been the subject of recent scholarly interest. Notable examples are O’Donovan, op. cit., n. 21 and Collier, op. cit., n. 24....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"For discussion of sex and legal subjecthood, see N. Naffine ‘Sexing the Subject (of Law)’ in Thornton, op. cit. (1995), n. 4....\"\n",
+      "     - Reference: Sexing the Subject (of Law)...\n",
+      " - Analyzing \"Contracts Review Act 1980 (N.S.W.)....\"\n",
+      "     - Reference: Contracts Review Act...\n",
+      " - Analyzing \"J. Nedelsky, Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy (1990), especially 223 ff...\"\n",
+      "     - Reference: Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy...\n",
+      " - Analyzing \"C.B. Macpherson, Democratic Theory: Essays in Retrieval (1973) 120....\"\n",
+      "     - Reference: Democratic Theory: Essays in Retrieval...\n",
+      " - Analyzing \"For example, N. Howell, ‘“Sexually Transmitted Debt”: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers’ (1995) 4 Aust. Feminist Law J. 93....\"\n",
+      "     - Reference: “Sexually Transmitted Debt”: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers...\n",
+      " - Analyzing \"P. Baron, ‘The Free Exercise of Her Will: Women and Emotionally Transmitted Debt’ (1995) 13 Law in Context 23....\"\n",
+      "     - Reference: The Free Exercise of Her Will: Women and Emotionally Transmitted Debt...\n",
+      " - Analyzing \"id., p. 24 B. Fehlberg, ‘The Husband, the Bank, the Wife and Her Signature’ (1994) 57 Modern Law Rev. 467, 468. See, also, Barclays Bank v. O’Brien [1994] 1 A.C. 180, at 185 per Brown-Wilkinson L....\"\n",
+      "     - Reference: The Husband, the Bank, the Wife and Her Signature...\n",
+      "     - Reference: Barclays Bank v. O’Brien...\n",
+      " - Analyzing \"Baron, op. cit., n. 44, p. 34. M. Richardson, ‘Protecting Women who provide Security for a Husband’s, Partner’s or Child’s Debts. The Value and Limits of an Economic Perspective’ (1996) 16 Legal Studi...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Protecting Women who provide Security for a Husband’s, Partner’s or Child’s Debts. The Value and Limits\n",
+      "            of an Economic Perspective’...\n",
+      " - Analyzing \"Examples are legion, and by no means confined to the more sensational criminal law cases picked up by the media, such as R. v. Johns, Supreme Court of South Australia, 26 August 1992 (unreported) in w...\"\n",
+      "     - Reference: R. v. Johns...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"B. Fehlberg, ‘The Husband, the Bank, the Wife and Her Signature – the Sequel’ (1996) 59 Modern Law Rev. 675....\"\n",
+      "     - Reference: The Husband, the Bank, the Wife and Her Signature – the Sequel...\n",
+      " - Analyzing \"National Australia Bank Ltd v. Garcia (1996) 39 N.S.W.L.R. 577 (N.S.W.C.A.)....\"\n",
+      "     - Reference: National Australia Bank Ltd v. Garcia...\n",
+      " - Analyzing \"(1991) 25 N.S.W.L.R. 32 (C.A.)....\"\n",
+      "     - Reference: N.S.W.L.R....\n",
+      " - Analyzing \"(1994) A.S.C. 56–268 (N.S.W.C.A.)....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Based on the Trade Practices Act 1974 (Cwth.), s. 52 and the Contracts Review Act 1980 (N.S.W.). 54 (1994) A.S.C. 56–270 (N.S.W.C.A.)...\"\n",
+      "     - Reference: Trade Practices Act 1974...\n",
+      "     - Reference: Contracts Review Act...\n",
+      " - Analyzing \"A number of recent English cases have also turned on the question of whether the wife received independent legal advice. The House of Lords considered the issue in Barclays Bank v. O’Brien [1994] 1 A....\"\n",
+      "     - Reference: Barclays Bank v. O’Brien...\n",
+      "     - Reference: Banco Exterior Internacional v. Mann...\n",
+      " - Analyzing \"See I.J. Hardingham and M.A. Neave, Australian Family Property Law (1984) 94....\"\n",
+      "     - Reference: Australian Family Property Law...\n",
+      " - Analyzing \"Compare K. O’Donovan, Sexual Divisions in Law (1985), especially 112–18....\"\n",
+      "     - Reference: Sexual Divisions in Law...\n",
+      " - Analyzing \"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 bro...\"\n",
+      "     - Reference: The New Property...\n",
+      " - Analyzing \"1992) 29 N.S.W.L.R. 188 (C.A .)...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"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 o...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Property Rights and Third Party Creditors – the Scope and Limitations of Equitable Doctrines...\n",
+      " - Analyzing \"For discussion, see J. Riley, ‘The Property Rights of Home-Makers under General Law: Bryson v. Bryant’ (1994) 16 Sydney Law Rev. 412....\"\n",
+      "     - Reference: The Property Rights of Home-Makers under General Law: Bryson v. Bryant...\n",
+      " - Analyzing \"The Justice T. E. Lindenmayer and P.A. Doolan, ‘When Bankruptcy and Family Law Collide’ (1994) 8 Aust. J. Family Law 111 133....\"\n",
+      "     - Reference: When Bankruptcy and Family Law Collide...\n",
+      " - Analyzing \"B. Bennett, ‘The Economics of Wifing Services: Law and Economics on the Family’ (1991) 18 J. of Law and Society 206....\"\n",
+      "     - Reference: The Economics of Wifing Services: Law and Economics on the Family...\n",
+      " - Analyzing \"O’Donovan, op. cit., n. 57; Thornton, op. cit. (1995), n. 4....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"N.S.W.C.A., unreported, 23 May 1994....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"For detailed discussion of the ramifications, see L.J. Weitzman, The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in America (1985)....\"\n",
+      "     - Reference: The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in\n",
+      "            America...\n",
+      " - Analyzing \"M.L. Shanley, Feminism, Marriage, and the Law in Victorian England, 1850–1895 (1989) 46....\"\n",
+      "     - Reference: Feminism, Marriage, and the Law in Victorian England, 1850–1895...\n",
+      " - Analyzing \"The move to contract as the governing principle of family law has been noted by commentators. See, for example, Freeman, op. cit., n. 24; Neave, op. cit., n. 26; Regan, op. cit., n. 30....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Bryson v. Bryant in respect of which, it might be noted, the High Court refused leave to appeal. Marcia Neave notes the ‘artificiality’ of the concept of intention in a discussion of the constructive ...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Three Approaches to Family Law Disputes – Intention/Belief, Unjust Enrichment and Unconscionability’...\n",
+      " - Analyzing \"For an interesting case study of this phenomenon, see L. Sarmas, ‘Storytelling and the Law: A Case Study of Louth v. Diprose’ (1994) 19 Melbourne University Law Rev. 701....\"\n",
+      "     - Reference: Storytelling and the Law: A Case Study of Louth v. Diprose...\n",
+      " - Analyzing \"C. Colebrook, ‘Feminist Ethics and Historicism’ (1996) 11 Aust. Feminist Studies 295 300....\"\n",
+      "     - Reference: Feminist Ethics and Historicism...\n",
+      " - Analyzing \"M. Albertson Fineman, The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies (1995) 7....\"\n",
+      "     - Reference: The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies...\n",
+      " - Analyzing \"Compare K. O’Donovan, ‘Should all Maintenance of Spouses be abolished?’ (1982) 45 Modern Law Rev. 424 431–3....\"\n",
+      "     - Reference: Should all Maintenance of Spouses be abolished?...\n",
+      " - Analyzing \"For example, De Facto Relationships Act 1984 (N.S.W .). For detailed analysis of the policy considerations, see M.D.A. Freeman and C.M. Lyon, Cohabitation without Marriage: An Essay in Law and Social ...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: De Facto Relationships Act...\n",
+      "     - Reference: Cohabitation without Marriage: An Essay in Law and Social Policy...\n",
+      "     - Reference: De Facto Relationships: Issues Paper...\n",
+      " - Analyzing \"Eds. of the Harvard Law Review, Sexual Orientation and the Law (1990); Dean v. District of Columbia 653 U.S. App. D.C 307 (1995); C. Overington, ‘Why can’t They Marry?’ The Age, 26 April 1997....\"\n",
+      "     - Reference: Sexual Orientation and the Law...\n",
+      "     - Reference: Dean v. District of Columbia 653 U.S. App. D.C...\n",
+      " - Analyzing \"For example, Lesbian Gay Rights Service and The Bride Wore Pink; Legal Recognition of Our Relationships (1994)....\"\n",
+      "     - Reference: The Bride Wore Pink; Legal Recognition of Our Relationships...\n",
+      " - Analyzing \"id., p. 3....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Above, n. 30....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "Processing 10.1111_1467-6478.00080\n",
+      " - Analyzing \"For a contrary view, see G. Jones, ‘“Traditional” Legal Scholarship: a Personal View’ in What Are Law Schools For?, ed. P. Birks (1996) 14....\"\n",
+      "     - Reference: “Traditional” Legal Scholarship: a Personal View...\n",
+      " - Analyzing \"R. Goff, ‘The Search for Principle’ (1983) Proceeedings of the British Academy 169, at 171. This is an amplification of Dicey’s remark that ‘[b]y adequate study and careful thought whole departments o...\"\n",
+      "     - Reference: The Search for Principle...\n",
+      "     - Reference: Can English Law be taught at the Universities?...\n",
+      " - Analyzing \"J. Smith, The Law of Contract (1989)...\"\n",
+      "     - Reference: The Law of Contract...\n",
+      " - Analyzing \"See, for example, D. Kennedy, ‘Form and substance in Private Law Ajudication’ (1976) 89 Harvard Law Rev. 1685....\"\n",
+      "     - Reference: Form and substance in Private Law Ajudication...\n",
+      " - Analyzing \"B. Hepple, ‘The Renewal of the Liberal Law Degree’ (1996) Cambridge Law J. 470 at 485 and 481....\"\n",
+      "     - Reference: The Renewal of the Liberal Law Degree...\n",
+      " - Analyzing \"P.A. Thomas, ‘Introduction’ in Socio-Legal Studies, ed. P.A. Thomas (1997) 19....\"\n",
+      "     - Reference: Introduction...\n",
+      " - Analyzing \"R. Cotterrell, Law’s Community (1995) 296....\"\n",
+      "     - Reference: Law’s Community...\n",
+      " - Analyzing \"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 s...\"\n",
+      "     - Reference: Company Law...\n",
+      " - Analyzing \"Some fail wholly. It is difficult to see any effect on academic legal education that resulted from Marre’s report A Time for Change (1988). The Jarratt report on universities produced for the Committe...\"\n",
+      "     - Reference: report A Time for Change...\n",
+      "     - Reference: Cmnd 4595)...\n",
+      "     - Reference: Cmnd. 2154...\n",
+      " - Analyzing \"Committee of Inquiry into Higher Education, Higher Education in the learning society (1997) (the Dearing report); ACLEC, First Report on Legal Education and Training (1996). The Government’s White Pap...\"\n",
+      "     - Reference: Higher Education in the learning society...\n",
+      "     - Reference: First Report on Legal Education and Training...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"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 de...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Working on the Chain Gang?...\n",
+      " - Analyzing \"M. Jeeves J. MacFarlane and A. Boon, ‘Education for Life or for Work?’ (1987) 137 New Law J. 835 at 836....\"\n",
+      "     - Reference: Education for Life or for Work?...\n",
+      " - Analyzing \"T.H. Huxley, ‘Universities: Actual and Ideal’ in T.H. Huxley, Collected Essays: Volume III (1905) 215....\"\n",
+      "     - Reference: Universities: Actual and Ideal...\n",
+      " - Analyzing \"J.S. Mill, ‘Inaugural address to the University of St Andrews’ in Collected Work of John Stuart Mill: Volume XXI, ed. J.M. Robson (1984) 218....\"\n",
+      "     - Reference: Inaugural address to the University of St Andrews...\n",
+      " - Analyzing \"Dearing, op. cit., n. 12, para. 9.32....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"id., para. 5.11....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"F.R. Leavis, Education and the University (1948) 28. Leavis’s view was narrowly nationalistic. For ‘centre’ it would be better to substitute ‘centres’....\"\n",
+      "     - Reference: Education and the University...\n",
+      " - Analyzing \"See, further, A. Bradney, ‘Liberalising Legal Education’ in The Law School: Global Issues, Local Questions, ed. F. Cownie (forthcoming)....\"\n",
+      "     - Reference: Liberalising Legal Education...\n",
+      " - Analyzing \"P. Goodrich ‘Of Blackstone’s Tower: Metephors of Distance and Histories of the English Law School’ in Birks, op. cit., n. 1, p. 59. 23 S. Turow, One L (1977) 106....\"\n",
+      "     - Reference: Of Blackstone’s Tower: Metephors of Distance and Histories of the English Law School...\n",
+      " - Analyzing \"O. Kahn-Freund, ‘Reflections on Legal Education’ (1966) 29 Modern Law Rev. 121 at 129....\"\n",
+      "     - Reference: Reflections on Legal Education...\n",
+      " - Analyzing \"Kahn-Freund believed ... legal argument (Kahn-Freund, id.)....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Leavis, op. cit., n. 20, p. 120....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Leavis has, of course, been widely criticized for the cultural and gender assumptions that lie behind his selection of material to be studied. (See, for example, M. King, The New English Literatures (...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: The New English Literatures...\n",
+      " - Analyzing \"Jurisprudence by Sir John Salmond, ed. G. Willliams (10th ., 1947) at 256 and 257....\"\n",
+      "     - Reference: Jurisprudence by Sir John Salmond...\n",
+      " - Analyzing \"So much so that when other disciplines engage with law they must develop their own concepts to analyse law rather than rely on the concepts already developed in law. See, for example, E. Durkheim The ...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: The Division of Labour in Society...\n",
+      " - Analyzing \"M. Le Brun and R. Johnstone, The Quiet Revolution: Improving Student Learning in Law (1994) 65. On the effect on women students, see ‘Define and Empower: Women Students Consider Feminist Learning’ (19...\"\n",
+      "     - Reference: The Quiet Revolution: Improving Student Learning in Law...\n",
+      "     - Reference: Define and Empower: Women Students Consider Feminist Learning...\n",
+      "     - Reference: The Invisible Author of Legal Authority...\n",
+      " - Analyzing \"R. Collier, ‘Masculinism, Law and Law Teaching’ (1991) 19 International J. of the Sociology of Law 427 at 429....\"\n",
+      "     - Reference: Masculinism, Law and Law Teaching...\n",
+      " - Analyzing \"P. McAuslan, ‘Administrative Law, Collective Consumption and Judicial Policy’ (1983) 46 Modern Law Rev. 1 at 8....\"\n",
+      "     - Reference: Administrative Law, Collective Consumption and Judicial Policy...\n",
+      " - Analyzing \"Le Brun and Johnstone, op. cit, n. 32, pp. 71–5....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Goodrich, op. cit., n. 22....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"P. Samuelson, ‘The Convergence of the Law School and the University’ (1975) 44 The Am. Scholar 256 at 258....\"\n",
+      "     - Reference: The Convergence of the Law School and the University...\n",
+      " - Analyzing \"P. Harris and M. Jones ‘A Survey of Law Schools in the United Kingdom, 1996’ (1997) 31 The Law Teacher 38 at 46....\"\n",
+      "     - Reference: A Survey of Law Schools in the United Kingdom, 1996...\n",
+      " - Analyzing \"J. Wilson, ‘A third survey of university legal education’ (1993) 13 Legal Studies 143 at 152....\"\n",
+      "     - Reference: A third survey of university legal education...\n",
+      " - Analyzing \"Thus, for example, Harris and Jones reported that 59.2 per cent of all particpating institutions offered foriegn language tuition as part of their standard LLB programme. (Harris and Jones, op. cit., ...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"T. Mortimer P. Leighton and N. Whatley, Law Teachers: Lawyers or Academics? (1995)...\"\n",
+      "     - Reference: Law Teachers: Lawyers or Academics?...\n",
+      " - Analyzing \"This would include teaching both non-law degree students and sub-degree students. 44 id., p 35...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"L. Skwarok, ‘Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and Assessment at Hong Kong Polytechnic University’ (1995) 29 The Law Teacher 189 at 189....\"\n",
+      "     - Reference: Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and Assessment at Hong Kong Polytechnic University...\n",
+      " - Analyzing \"N. Bastin, ‘Law, Law Staff and CNAA Business Studies Degree Courses’ (1985) 19 The Law Teacher 12 at 13....\"\n",
+      "     - Reference: Law, Law Staff and CNAA Business Studies Degree Courses...\n",
+      " - Analyzing \"A. Ridley, ‘Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?’ (1994) 28 The Law Teacher 281 at 282....\"\n",
+      "     - Reference: Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?...\n",
+      " - Analyzing \"G. Cartan and T. Vilkinas, ‘Legal Literacy for Managers: The Role of the Educator’ (1990) 24 The Law Teacher 246 at 248....\"\n",
+      "     - Reference: Legal Literacy for Managers: The Role of the Educator...\n",
+      " - Analyzing \"Ridley, op. cit., n. 47, at p. 284....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"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 economi...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"P. Birks, ‘Short Cuts’ in Pressing Problems in the Law, ed. P. Birks (1994) 10–24....\"\n",
+      "     - Reference: Short Cuts...\n",
+      " - Analyzing \"Ridley, op. cit., n. 47, p. 283....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Cartan Vilkinas, op. cit., n. 48, p. 248....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"P. Harris, ‘Curriculum Development in Legal Studies’ (1986) 20 The Law Teacher 110 at 112....\"\n",
+      "     - Reference: Curriculum Development in Legal Studies...\n",
+      " - Analyzing \"Dearing, op. cit., n. 12, para 9.3....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"G. Steiner, Errata: An Examined Life (1997) 20....\"\n",
+      "     - Reference: Errata: An Examined Life...\n",
+      "Processing 10.1515_zfrs-1980-0103\n",
+      " - Analyzing \"Gottfried Baumgärtei, 1976: Gleicher Zugang zum Recht für alle. Köln....\"\n",
+      "     - Reference: Gleicher Zugang zum Recht für alle....\n",
+      " - Analyzing \"Rolf Bender und Rolf Schumacher, 1980: Erfolgsbarrieren vor Gericht. Tübingen....\"\n",
+      "     - Reference: Erfolgsbarrieren vor Gericht....\n",
+      " - Analyzing \"Donald Black, 1973: The Mobilization of Law, in: Journal of Legal Studies 2....\"\n",
+      "     - Reference: The Mobilization of Law...\n",
+      " - Analyzing \"Erhard Blankenburg / Viola Blankenburg / Helmut Morasch, 1972: Der lange Weg in die Berufung, in: Rolf Bender (Hrsg.): Tatsachenforschung in der Justiz. Tübingen....\"\n",
+      "     - Reference: Der lange Weg in die Berufung...\n",
+      " - Analyzing \"Erhard Blankenburg, 1976: Nichtkriminalisierung als Struktur und Routine, in: Göppinger, Hans und Günter Kaiser: Kriminologie und Strafverfahren. Stuttgart....\"\n",
+      "     - Reference: Nichtkriminalisierung als Struktur und Routine...\n",
+      " - Analyzing \"Erhard Blankenburg / Klaus Sessar / Wiebke Steffen, 1978: Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle. Berlin....\"\n",
+      "     - Reference: Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle....\n",
+      " - Analyzing \"Erhard Blankenburg; Siegfried Schönholz, 1979: Zur Soziologie des Arbeitsgerichtsverfahrens. Neuwied und Darmstadt....\"\n",
+      "     - Reference: Zur Soziologie des Arbeitsgerichtsverfahrens....\n",
+      " - Analyzing \"Erhard Blankenburg, 1980: Recht als gradualisiertes Konzept, in: Erhard Blankenburg; Ekkehard Klausa und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Jahrbuch für ...\"\n",
+      "     - Reference: Recht als gradualisiertes Konzept...\n",
+      " - Analyzing \"Jerome- Carlin und Sheldon Messinger, 1967: Civil Justice and the Poor. New York. Danzig,...\"\n",
+      "     - Reference: Civil Justice and the Poor....\n",
+      " - Analyzing \"Richard Michael Lowy / 1974 /75; Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner, Law and Society Review, vol. 9, pp. 675—694....\"\n",
+      "     - Reference: Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner...\n",
+      " - Analyzing \"Johannes Feest / Erhard Blankenburg, 1972: Die Definitionsmacht der Polizei. Düsseldorf....\"\n",
+      "     - Reference: Die Definitionsmacht der Polizei....\n",
+      " - Analyzing \"William L. F Felstiner ., 1974 /75: Influences of Social Organization on Dispute processing, in: Law and Society Review, vol. 9, pp. 63—94....\"\n",
+      "     - Reference: Influences of Social Organization on Dispute processing...\n",
+      " - Analyzing \"William L. F Felstiner ., 1974 /75: Avoidance as Dispute Processing: An Elaboration, in: Law and Society Review, vol. 9, pp. 695-706....\"\n",
+      "     - Reference: Avoidance as Dispute Processing: An Elaboration...\n",
+      " - Analyzing \"Marc Galanter, 1974: Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change, in: Law and Society Review, vol. 9, pp. 95—160....\"\n",
+      "     - Reference: Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change...\n",
+      " - Analyzing \"Theodor Geiger, 1964: Vorstudien zu einer Soziologie des Rechts....\"\n",
+      "     - Reference: Vorstudien zu einer Soziologie des Rechts....\n",
+      " - Analyzing \"Volkmar Neuwied. Gessner, 1976: Recht und Konflikt. Tübingen....\"\n",
+      "     - Reference: Recht und Konflikt....\n",
+      " - Analyzing \"Hartmut Hilden, 1976: Rechtstatsachen im Räumungsstreit. Frankfurt/Main....\"\n",
+      "     - Reference: Rechtstatsachen im Räumungsstreit. Frankfurt/Main....\n",
+      " - Analyzing \"Earl Johnson, 1979; Thinking about Access: A Preliminary Typology of Possible Strategies. In: Mauro Cappelletti und Bryant Garth (Hrsg.): Access to Justice, Bd. III....\"\n",
+      "     - Reference: Thinking about Access: A Preliminary Typology of Possible Strategies....\n",
+      " - Analyzing \"Milan Alphen Rijn....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Hartmut Koch, 1975: Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen. Diss. Hamburg....\"\n",
+      "     - Reference: Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen....\n",
+      " - Analyzing \"Niklas Luhmann, 1969: Legitimation durch Verfahren. Neuwied und Darmstadt....\"\n",
+      "     - Reference: Legitimation durch Verfahren....\n",
+      " - Analyzing \"Niklas Luhmann, 1980: Kommunikation über Recht in Interaktionssystemen, in: Erhard Blankenburg; Ekkehard Klausa und Hubert Rottleuthner (Hrsg.): Alternative Rechtsformen und Alternativen zum Recht, Ja...\"\n",
+      "     - Reference: Kommunikation über Recht in Interaktionssystemen...\n",
+      " - Analyzing \"Udo Reifner, 1978: Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative, IIM-dp/78—70....\"\n",
+      "     - Reference: Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative...\n",
+      " - Analyzing \"Udo Reifner, 1979: Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945. IIM-dp/79—104....\"\n",
+      "     - Reference: Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945....\n",
+      " - Analyzing \"Udo Reifner und Irmela Gorges, 1980; Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe, in: Erhard Blankenburg; Ekkehard Klausa und Hubert Rottleuthner (Hrsg.): Alte...\"\n",
+      "     - Reference: Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe...\n",
+      " - Analyzing \"Austin Sarat, 1976: Alternatives in Dispute Processing in a Small Claim Court, in: Law and Society Review, vol. 10, pp. 339—375....\"\n",
+      "     - Reference: Alternatives in Dispute Processing in a Small Claim Court...\n",
+      " - Analyzing \"Siegfried Schönholz, 1980: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich in: Vereinigung für Rechtssoziologie (Hrsg.): Arbeitslosigkeit und Recht. Baden...\"\n",
+      "     - Reference: Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich...\n",
+      " - Analyzing \"E Steinbach ., 1979: GMD-Bericht, Manuskript. Gesellschaft für Mathematik und Datenverarbeitung. Birlinghoven bei Bonn....\"\n",
+      "     - Reference: GMD-Bericht, Manuskript. Gesellschaft für Mathematik und Datenverarbeitung....\n",
+      " - Analyzing \"Craig Wanner, 1975: The Public Ordering of Private Cases; Winning Civil Court Cases, in: Law and Society Review, vol. 9, pp. 293-306....\"\n",
+      "     - Reference: The Public Ordering of Private Cases; Winning Civil Court Cases...\n",
+      " - Analyzing \"Geiger 1964, insbesondere S. 65—83....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Vgl. Feest Blankenburg, 1972. Die Konsequenz einer größeren Dunkelziffer bei den von der Polizei selbst entdeckten Straftaten entwickle ich ausführlicher in meinem Beitrag über, Nichtkriminalisierung ...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Nichtkriminalisierung als Struktur und Routine...\n",
+      " - Analyzing \"Angaben aus einer Befragung von Peter MacNaughton-Smith und Richard Rosellen zur ' Bereitschaft zur Anzeigeerstattung ' Manuskript Freiburg 1978. Der ausführliche Forschungsbericht von Richard Roselle...\"\n",
+      "     - Reference: Bereitschaft zur Anzeigeerstattung...\n",
+      "     - Reference: Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung...\n",
+      " - Analyzing \"Vgl. Blankenburg Sessar Steffen, 1978, S. 66-85....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Black 1973, S. 125 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Zur höheren Wahrscheinlichkeit der Normierung von Verhalten in weniger komplexen Beziehungen vgl. die Konflikttheorie von Gessner 1976, insbesondere S. 170—183....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Zum Konzept der 'Thematisierung von Recht' vgl. Luhmann 1980, S. 99—112....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Ausführlicher bei Gessner 1976...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Vgl. Schönholz 1980....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Blankenburg Schönholz Rogowski 1979, S. 64 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Hilden 1976, S. 64 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Koch 1975, S. 75 der allerdings nur streitige Urteile und Vergleiche untersucht hat....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Für Angaben der Zählkartenstatistik für die Familiengerichte siehe: Statistisches Bundesamt Wiesbaden, Fachserie 10 (Rechtspflege) Reihe 2.1, Tabelle 10, Wiesbaden 1978....\"\n",
+      "     - Reference: Fachserie 10 (Rechtspflege) Reihe 2.1, Tabelle 10...\n",
+      " - Analyzing \"Blankenburg Schönholz Rogowski 1979, S. 78 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"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 alle...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Johnson 1979 berichtet von dem erfolgreichen Versuch einer Unfall-Schadensregulierung ohne Berücksichtigung einer Schuldzuschreibung in Neuseeland (no fault accident compensation), S. 90 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Steinbach 1979, S. 66 ff. Blankenburg Blankenburg Morasch 1972, S. 82 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Projektbericht ,Rechtshilfebedürfnisse sozial Schwacher *, (Blankenburg Gorges Reifner Ticmann). Befragt wurden im Januar bis März 1979 je eine Person in 835 Haushalten Westberlins. Veröffentlichung i...\"\n",
+      "     - Reference: Projektbericht ,Rechtshilfebedürfnisse sozial Schwacher...\n",
+      " - Analyzing \"Explizit bei Baumgärtei 1976, S. 113-128....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Laut einer GMD-Erhebung aus der Zählkartenstatistik wurde in Baden-Württemberg 1978 in...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Projektbericht Rechtsschutzversicherung*. (Blankenburg Fiedler), Veröffentlichung voraussichtlich Mitte 1980....\"\n",
+      "     - Reference: Projektbericht Rechtsschutzversicherung*....\n",
+      " - Analyzing \"Vgl. auch Reifner Gorges 1980....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Reifner 1979....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Klassisch bei Carlin Howard Messinger 1967....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Grundsätzlich vgl. hierzu den klassischen Beitrag von Galanter 1974, S. 95—160. Die grösseren Chancen von Firmen, insbesondere bei der großen Zahl von vorstreitigen Erledigungen zeigt Sarat 1976, S. 3...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Bender Schumacher 1980, S. 138....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Steinbach 1979, S. 96 ff vgl. auch Blankenburg Blankenburg Morasch 1972, S. 89 Fn. 17...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Reifner 1978....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Blankenburg Schönholz Rogowski 1979, S. 102 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Vgl. zum Verrechtlichungsbegriff meinen Beitrag über: Recht als gradualisiertes Konzept 1980, S. 83—98....\"\n",
+      "     - Reference: Recht als gradualisiertes Konzept...\n",
+      " - Analyzing \"Steinbach 1979, S. 35 Bender Schumacher 1980, S. 24 und S. 49....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Wanner 1975, S. 293—306 hebt dies deutlich hervor, ebenso Bender Schumacher 1980, S. 72 ff. sowie Galanter 1974; Sarat 1976....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Blankenburg Schönholz Rogowski 1979, S. 78 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Ebenda, S. 138-186....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Luhmann 1969....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Für eine überaus positive Bewertung des .Vermeidens1 vgl. Felstiner Danzig Lowy in Law and Society Review, vol. 9, 1974 /75....\"\n",
+      "     - Reference: Law and Society Review...\n",
+      "Processing 10.1515_zfrs-1980-0104\n",
+      " - Analyzing \"Drobnig Rebbinder (Hrsg.), Rechtssoziologie und Rechtsvergleichung (1977);...\"\n",
+      "     - Reference: Rechtssoziologie und Rechtsvergleichung...\n",
+      " - Analyzing \"Rokkan (Hrsg.), Compa rative Research Across Cultures and Nations (Paris, Den Haag 1968);...\"\n",
+      "     - Reference: Compa rative Research Across Cultures and Nations...\n",
+      " - Analyzing \"Rokkan Verba Viet Almasy (Hrsg.), Comparative Sutvey Analysis (Den Haag, Paris 1969); Smelser Comparative Methods in the Social Sciences...\"\n",
+      "     - Reference: Comparative Sutvey Analysis...\n",
+      " - Analyzing \"N. J Englewood Cliffs. 1976); Szalai Petrella (Hrsg.), Cross National Comparative Survey Research (Oxford, New York, Toronto, Sydney, Paris, Frank furt 1977);...\"\n",
+      "     - Reference: Cross National Comparative Survey Research...\n",
+      " - Analyzing \"Vallier (Hrsg.), Comparative Methods in Sociology (Berkeley, Los Angeles, London 1971); Zweigert Kötz. Einführung in die Rechtsvergleichung Bd. I (1971)....\"\n",
+      "     - Reference: Comparative Methods in Sociology...\n",
+      " - Analyzing \"Siehe näher Zweigert Kötz I 12 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Rabel, Aufgabe und Notwendigkeit der Rechtsvergleichung (1925), abgedruckt in: Rabel, Gesammelte Aufsätze III (Hrsg. Leser, 1967) 1 (3)...\"\n",
+      "     - Reference: Aufgabe und Notwendigkeit der Rechtsvergleichung...\n",
+      "     - Reference: Gesammelte Aufsätze...\n",
+      " - Analyzing \"Siehe insbes. die Beiträge in Drobnig Rehbinder....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Dazu R. Abel, Law Books and Books About Law, Stanford Law Rev. 26 (1973) 174 ff. Benda-Beckmann, Einige Anmerkungen über die Beziehung zwischen Rechtssoziologie und Rechtsvergleichung, ZvglRW 78 (1979...\"\n",
+      "     - Reference: Law Books and Books About Law...\n",
+      "     - Reference: Einige Anmerkungen über die Beziehung zwischen Rechtssoziologie und Rechtsvergleichung...\n",
+      " - Analyzing \"Carbonnier, L’apport du droit compare ä la sociologie juridique, in: Livre du centenaire de la Societe de legislation comparee (Paris 1969) 75 (83)...\"\n",
+      "     - Reference: L’apport du droit compare ä la sociologie juridique...\n",
+      " - Analyzing \"Carbonnier (vorige N.) a.a.O....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Nowak, The Strategy of Cross-National Survey Research for the Development of Social Theory, in: Szalai Petrella 3 (9 ff .) Rose, Interkulturelle Forschung in der Rechtssoziologie, in: Drobnig Rehbinde...\"\n",
+      "     - Reference: The Strategy of Cross-National Survey Research for the Development of Social Theory...\n",
+      "     - Reference: Interkulturelle Forschung in der Rechtssoziologie...\n",
+      " - Analyzing \"Dazu näher Wirsing, Probleme des interkulturellen Vergleichs in der Ethnologie, Sociologus 25 (1975) 97 ff. - Vgl. auch Poirier, Situation actuelle et Programme de travail de Techno logie juridique, R...\"\n",
+      "     - Reference: Probleme des interkulturellen Vergleichs in der Ethnologie...\n",
+      "     - Reference: Situation actuelle et Programme de travail de Techno logie juridique...\n",
+      " - Analyzing \"Macaulay, Elegant Models, Empirical Pictures, and the Complexities of Contract, Law & Soc. Rev. 11 (1977) 507 ff....\"\n",
+      "     - Reference: Elegant Models, Empirical Pictures, and the Complexities of Contract...\n",
+      " - Analyzing \"Rose (oben N. 7) 175....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Dazu Grimshau, Comparative Sociology - In What Ways Different From Other Sociologies?, in: Armer Grimshaw 3 (18) Auch der Oberbegriff „cross System comparison\" wird vorgeschlagen, Tomasson, Introducti...\"\n",
+      "     - Reference: Comparative Sociology - In What Ways Different From Other Sociologies?...\n",
+      "     - Reference: Introduction; Comparative Sociology — The State of the Art...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Comparative Survey Analysis — An Annotated Bibliography 1967 — 1973...\n",
+      "     - Reference: Comparative Sociology...\n",
+      " - Analyzing \"Durkheim, Les règles de la methode sociologique Paris 1977) 137....\"\n",
+      "     - Reference: Les règles de la methode sociologique...\n",
+      " - Analyzing \"Smelser 2 f.; Payne, Comparative Sociology — Some Problems of Theory and Method, Brit. J. Soc. 24 (1973) 13 (15 ff .) Ähnlich auch Eisenstadt, Social Institutions - Comparative Method, in: Internation...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Comparative Sociology — Some Problems of Theory and Method...\n",
+      "     - Reference: Social Institutions - Comparative Method...\n",
+      " - Analyzing \"Boesch Eckensberger, Methodische Probleme des interkulturellen Vergleichs, in: Graumann (Hrsg.), Handbuch der Psychologie, Bd. Vll 1 (2. Auf], 1969) 514 (520 ff .) — Zur „cultunit“, die vor allem durc...\"\n",
+      "     - Reference: Methodische Probleme des interkulturellen Vergleichs...\n",
+      "     - Reference: A Handbook of Method in Cultural Anthropology...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Näher dazu Zelditch, Intelligible Comparisons, in: Vallier 267 (270 ff .)...\"\n",
+      "     - Reference: Intelligible Comparisons...\n",
+      " - Analyzing \"Carbonnier (oben N. 5) 80....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Siehe Zweigert, Die soziologische Dimension der Rechtsvergleichung, in: Drobnig Rebbinder 151 (159)...\"\n",
+      "     - Reference: Die soziologische Dimension der Rechtsvergleichung...\n",
+      " - Analyzing \"Zu entsprechenden Versuchen etwa Merryman, Comparative Law and Scientific Explanation, in: Law in the United States of America in Social and Technological Revolution (Brüssel 1974) 81 (89 ff .)...\"\n",
+      "     - Reference: Comparative Law and Scientific Explanation...\n",
+      " - Analyzing \"Beispiel von Carbonnier, Sociologie juridique (Paris 1972) 188 N. 1....\"\n",
+      "     - Reference: Sociologie juridique...\n",
+      " - Analyzing \"Dazu Heidrich, Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels, Jahr buch für Rechtssoziologie und Rechtstheorie 3 (1972) 305 (330 ff .)...\"\n",
+      "     - Reference: Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels...\n",
+      " - Analyzing \"Insbesondere Zweigert (oben N. 17) 157 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Kaiser, Strafrecht und vergleichende Kriminologie, in: Kaiser Vogler (Hrsg.), Strafrecht, Straf rechtsvergleichung (1975) 79 ff. — Siehe auch Villmow Albrecht, Die Vergleichung als Methode der Strafre...\"\n",
+      "     - Reference: Strafrecht und vergleichende Kriminologie...\n",
+      "     - Reference: Die Vergleichung als Methode der Strafrechtswissenschaft und der Kriminologie...\n",
+      " - Analyzing \"So etwa K. H. Neumayer, Ziele und Methoden der Rechtsvergleichung, in: Recueil des travaux suisses présentés au IXe Congrès international de droit compare (1976) 45 (48)...\"\n",
+      "     - Reference: Ziele und Methoden der Rechtsvergleichung...\n",
+      " - Analyzing \"Zur Abgrenzung näher Rehbinder, Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und Rechtsvergleichung, in: Drobnig Rehbinder 56 ff....\"\n",
+      "     - Reference: Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und Rechtsvergleichung...\n",
+      " - Analyzing \"Näher dazu Merryman (oben N. 18) 101 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Heidrich, Sozialwissenschaftliche Aspekte der Rechtsvergleichung, in: Drobnig Rehbinder 178 (186 ff .)...\"\n",
+      "     - Reference: Sozialwissenschaftliche Aspekte der Rechtsvergleichung...\n",
+      " - Analyzing \"Siehe etwa die Erklärung, warum das „Access to justice movement\" in der Bundesrepublik vergleichsweise wenig Widerhall gefunden hat von Blankenburg, Patterns of Legal Culture as a Variable for the Cha...\"\n",
+      "     - Reference: Patterns of Legal Culture as a Variable for the Chances of Legal Innovation...\n",
+      " - Analyzing \"So Rehbinder (oben N. 24) 60....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Dazu R. Abel, Comparative Law and Social Theory, Am. J. Comp. L. 26 (1978) 219 (224 ff .)...\"\n",
+      "     - Reference: Comparative Law and Social Theory...\n",
+      " - Analyzing \"Dazu etwa Smelser 175 f. — Für die Kriminologie siehe Kaiser (oben N. 22) 89 sowie Blazicek Janeksela, Some Comments on Comparative Methodologies in Criminal Justice, Int. J. Crim. Pen 6 (1978) 233 (2...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Some Comments on Comparative Methodologies in Criminal Justice...\n",
+      "     - Reference: Comparative Law and Social Change - On the Origins, Style, Decline and Revival of the Law and Development Movement...\n",
+      " - Analyzing \"Payne (oben N. 13) 15 25 f....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Däubler, Systemvergleich im Arbeitsrecht? Vorüberlegungen zu einigen Methodenfragen, Demokratie und Recht 1979 / 1 S. 23 (31 ff .) Zum Vergleich mit den sozialistischen Ländern siehe auch Zweigert Put...\"\n",
+      "     - Reference: Systemvergleich im Arbeitsrecht? Vorüberlegungen zu einigen Methodenfragen...\n",
+      "     - Reference: Zur Vergleichbarkeit analoger Rechtsinstitute in verschiede nen Gesellschaftsordnungen...\n",
+      " - Analyzing \"Blankenburg, Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration (HM discussion papers 1978 — 23) 5 ff....\"\n",
+      "     - Reference: Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration...\n",
+      " - Analyzing \"Zweigert Kötz I 30 f....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Dazu etwa Armer, Methodology Problems and Possibilities in Comparative Research, in: Armer Grimsbaw 49 (50 ff .) Smelser 182 f. Trommsdorf, Möglichkeiten und Probleme des Kulturvergleichs am Beispiel ...\"\n",
+      "     - Reference: Methodology Problems and Possibilities in Comparative Research...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Möglichkeiten und Probleme des Kulturvergleichs am Beispiel einer Agressionsstudie...\n",
+      " - Analyzing \"Wenn die Strenge elterlicher Strafen gemessen werden soll, kann man etwa darauf ausweichen, welche Strafe die Kinder am meisten fürchten, siehe Malewswka Peyre, Juvenile Deliquency and Development, in...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Juvenile Deliquency and Development...\n",
+      " - Analyzing \"Näher Scheuch, The Cross-Cultural Use of Sample Surveys — Problems of Comparability, in: Rokkan 176 (185) Biervert, Der internationale Vergleich, in: van Koolwiyk / Wieken-Mayser (Hrsg.), Techniken em...\"\n",
+      "     - Reference: The Cross-Cultural Use of Sample Surveys — Problems of Comparability...\n",
+      "     - Reference: Der internationale Vergleich...\n",
+      " - Analyzing \"Verba, The Uses of Survey Research in the Study of Comparative Politics — Issues and Strategies, in: Rokkan Verba Viet Almasy 56 (80)...\"\n",
+      "     - Reference: The Uses of Survey Research in the Study of Comparative Politics — Issues and Strategies...\n",
+      " - Analyzing \"Gessner, Soziologische Ãœberlegungen zu einer Theorie der angewandten Rechtsvergleichung, in: Drobnig Rehbinder 123 (134 ff .)...\"\n",
+      "     - Reference: Soziologische Ãœberlegungen zu einer Theorie der angewandten Rechtsvergleichung...\n",
+      " - Analyzing \"Nowak (oben N. 7) 42....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Für die Bedeutung der funktionalen Äquivalenz beruft man sich häufig auf Merton, der sie am Beispiel der Religion näher erläutert hat (Social Theory and Social Structure, New York, London, erweiterte ...\"\n",
+      "     - Reference: Social Theory and Social Structure...\n",
+      " - Analyzing \"Rheinstein, Marriage Stability, Divorce, and the Law (Chicago 1972)....\"\n",
+      "     - Reference: Marriage Stability, Divorce, and the Law...\n",
+      " - Analyzing \"Abel (oben N. 4) 194 ff. 221 f. - Siehe auch Wilpert, Die Messung von Mitbestimmungsnormen — Darstellung eines international vergleichenden Forschungsansatzes (HM-Paper 1979 — 13) 2 ff. - Zur Behandlu...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Die Messung von Mitbestimmungsnormen — Darstellung eines international vergleichenden Forschungsansatzes...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Abel (oben N. 4) 207 ff. — Siehe auch Constantinesco, Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise, Zeitschrift für Rechtsvergleichung 19 (1978) 161 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise...\n",
+      " - Analyzing \"Siehe Blankenburg (oben N. 33) 3 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Rose (oben N. 7) 176....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Dazu etwa Benda-Beckmann (oben N. 4) 55 ff. Constantinesco, Über den Stil der „Stilthe orie\" in der Rechtsvergleichung, ZvglRW 78 (1979) 154 ff. mwNachw. — Eine vergleichbare Debatte über „ähnliche“un...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Über den Stil der „Stilthe orie\" in der Rechtsvergleichung...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Siehe Zweigert Kötz I 70....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Hofstede, Cultural Determinants of the Exercise of Power in a Hierarchy (Mimeographed, European Institute for Advanced Studies in Management Working Paper 1977 - 8). Ebenso für das Arbeitsrecht Däuble...\"\n",
+      "     - Reference: Cultural Determinants of the Exercise of Power in a Hierarchy...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Dazu Zweigert Kötz 1 110 f. — Kritisch Benda-Beckmann (oben N. 4) 58 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"IDE-International Research Group, Industrial Democracy in Europe (erscheint bei London 1980) Chapter VIII....\"\n",
+      "     - Reference: Industrial Democracy in Europe...\n",
+      " - Analyzing \"Zweigert Kötz I 78....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"IDE-International Research Group (oben N. 52) Chapter VIII....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Dafür Däubler (oben N. 32) 33....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Siehe dazu Rheinstein, Die Rechtshonoratioren und ihr Einfluß auf Charakter und Funk tion der Rechtsordnungen, RabelsZ 34 (1970) 1 ff. Bernstein, Rechtsstile und Rechtshono ratioren. Ein Beitrag zur M...\"\n",
+      "     - Reference: Die Rechtshonoratioren und ihr Einfluß auf Charakter und Funk tion der Rechtsordnungen...\n",
+      "     - Reference: Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der Rechtsvergleichung...\n",
+      " - Analyzing \"Dazu etwa Ruescbemeyer, Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in Germany and the United States (Cambridge, Mass. 1973); ders ., The Legal Profession in Comparat...\"\n",
+      "     - Reference: Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in Germany and the United States...\n",
+      "     - Reference: The Legal Profession in Comparative Perspective...\n",
+      " - Analyzing \"Klausa, Politische Inhaltsanalyse von Rechtslehrertexten, ZfS 8 (1979) 362 ff....\"\n",
+      "     - Reference: Politische Inhaltsanalyse von Rechtslehrertexten...\n",
+      " - Analyzing \"Siehe Nowak (oben N. 7) 23 ff. Smelser 167 ff....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Dazu näher Teune, Analysis and Interpretation in Cross-National Survey Research, in: Szalai Petrella 95 (101)...\"\n",
+      "     - Reference: Analysis and Interpretation in Cross-National Survey Research...\n",
+      " - Analyzing \"Siehe dazu Nader Todd, The Disputing Process — Law in Ten Societies (New York 1978)....\"\n",
+      "     - Reference: The Disputing Process — Law in Ten Societies...\n",
+      " - Analyzing \"Siehe zum entsprechenden Problem in der Kriminologie Kaiser (oben N. 22) 88 mwNachw.; Blazicek Janeksela (oben N. 30) 235 f. 242....\"\n",
+      "     - Reference: Problem in der Kriminologie...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Clinard, Comparative Crime Victimization Surveys — Some Problems and Results, Int. J. Crim, and Pen. 6 (1978) 221 ff....\"\n",
+      "     - Reference: Comparative Crime Victimization Surveys — Some Problems and Results...\n",
+      " - Analyzing \"Siehe Abel-Smith Zander Brooke, Legal Problems and the Citizen (London 1973); Rokumoto, Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in International Comparison, ZfS 7 (...\"\n",
+      "     - Reference: Legal Problems and the Citizen...\n",
+      "     - Reference: Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in International Comparison...\n",
+      "     - Reference: Rechtspro bleme oder private Schwierigkeiten — Die Inanspruchnahme von Rechtshilfe in den Nieder landen...\n",
+      " - Analyzing \"Dazu Podgdrecki, Comparative Studies on the Attitudes Towards Various Legal Systems, Polish Sociological Bulletin 21 No. 1 (1970) 83 (88 ff .) — Siehe auch Ziegen Zur Effek tivität der Rechtssoziologi...\"\n",
+      "     - Reference: Comparative Studies on the Attitudes Towards Various Legal Systems...\n",
+      "     - Reference: Zur Effek tivität der Rechtssoziologie: die Rekonstruktion der Gesellschaft durch Recht...\n",
+      " - Analyzing \"Siehe Podgdrecki, Legal Consciousness as a Research Problem, European Yearbook in Law and Sociology 1977 (Den Haag 1977) 85 (88 ff .)...\"\n",
+      "     - Reference: Legal Consciousness as a Research Problem...\n",
+      " - Analyzing \"Kutchinsky, „The Legal Consciousness“: A Survey of Research on Knowledge and Opinion about Law, in: Podgdrecki Kaupen van Houtte / Vinke Kutchinsky, Knowledge and Opinion about Law (Bristol 1973) 101 ...\"\n",
+      "     - Reference: The Legal Consciousness“: A Survey of Research on Knowledge and Opinion about Law...\n",
+      " - Analyzing \"Podgdrecki, Public Opinion on Law, in: Knowledge and Opinion about Law (vorige N.) 65 (84 ff.)....\"\n",
+      "     - Reference: Public Opinion on Law...\n",
+      " - Analyzing \"Heintz, Interkultureller Vergleich, in: König (Hrsg.), Handbuch der empirischen Sozialfor schung, Bd. 4 (3. Aufl. 1974) 405 (414 f .)...\"\n",
+      "     - Reference: Interkultureller Vergleich...\n",
+      " - Analyzing \"Siehe Hegenbarth, Über methodische und organisatorische Grenzen der empirischen Rechts forschung in Entwicklungsländern, Informationsbrief für Rechtssoziologie April 1979, Son derheft 2, S. 5 ff. mwNa...\"\n",
+      "     - Reference: Über methodische und organisatorische Grenzen der empirischen Rechts forschung in Entwicklungsländern...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Siehe etwa Gessner, Recht und Konflikt — Eine soziologische Untersuchungprivatrechtlicher Konflikte in Mexiko (1976) 37 ff....\"\n",
+      "     - Reference: Recht und Konflikt — Eine soziologische Untersuchungprivatrechtlicher Konflikte in Mexiko...\n",
+      " - Analyzing \"Vgl. Heintz (oben N. 69) 407....\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"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ß vergleich...\"\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      "     - Reference: Problems in Comparative Criminology...\n",
+      " - Analyzing \"Zur Anlage vergleichender Studien näher Rokkan, Vergleichende Sozialwissenschaft (1972) 9 ff. Szalai, The Organization and Execution of Cross-National Survey Research Projects, in: Szalai Petrella 49 ...\"\n",
+      "     - Reference: Vergleichende Sozialwissenschaft...\n",
+      "     - Reference: The Organization and Execution of Cross-National Survey Research Projects...\n",
+      "     - Reference with no title element - adding empty biblStruct\n",
+      " - Analyzing \"Siehe Blegvad, Methodological Aspects of the Project „Local Legal Systems “, in: Kulcsár (Hrsg.), Sociology of Law and Legal Sciences (Budapest 1977) 97 (99 ff .)...\"\n",
+      "     - Reference: Methodological Aspects of the Project „Local Legal Systems...\n",
+      " - Analyzing \"Dazu näher Zweigert, Die kritische Wertung in der Rechtsvergleichung, Festschrift für Schmitthoff (1973) 403 ff....\"\n",
+      "     - Reference: Die kritische Wertung in der Rechtsvergleichung...\n",
+      " - Analyzing \"Siehe etwa zu vorliegenden französischen Untersuchungen Dörner, Rechtstatsachenforschung und Gesetzgebung — Hinweise zur Entwicklung einer Gesetzgebungssoziologie in Frank reich, Interview und Analyse...\"\n",
+      "     - Reference: Rechtstatsachenforschung und Gesetzgebung — Hinweise zur Entwicklung einer Gesetzgebungssoziologie in Frank reich...\n",
+      " - Analyzing \"Siehe Bryde, Recht und Konflikt — Mexiko und Afrika, Verfassung und Recht in Obersee 12 (1979), 159 ff....\"\n",
+      "     - Reference: Recht und Konflikt — Mexiko und Afrika...\n"
+     ]
+    }
+   ],
+   "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\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):\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",
+    "    # 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",
+    "            if parent_tag == \"note\":\n",
+    "                source_node = source_parent\n",
+    "            elif parent_tag == \"listBibl\":\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",
+    "            else:\n",
+    "                raise RuntimeError(\"Invalid parent node:\" + parent_tag)\n",
+    "            \n",
+    "            # reconstruct the unparsed input text for the \n",
+    "            gs_input = remove_whitespace(etree.tostring(source_node, method=\"text\", encoding='utf-8').decode()) \n",
+    "            print (f' - Analyzing \"{gs_input[:200]}...\"')\n",
+    "            attrs = {}\n",
+    "            if parent_tag == \"note\":\n",
+    "                footnote_number = attrs['n'] = source_node.attrib['n']\n",
+    "                gs_input = f'{footnote_number} {gs_input}'\n",
+    "            \n",
+    "            # create mew listBibl element for output element\n",
+    "            current_target_parent = etree.SubElement(standoff, \"listBibl\", attrs)\n",
+    "            \n",
+    "            # add raw reference string as <desc> \n",
+    "            etree.SubElement(current_target_parent, \"desc\").text = gs_input\n",
+    "        \n",
+    "        # find correspondent biblStruct data by matching the title\n",
+    "        # todo: there could be edge cases where a title is not unique!\n",
+    "        title = bibl_element.xpath('.//tei:title/text()', namespaces=ns)\n",
+    "        if len(title) > 0:\n",
+    "            title = title[0]\n",
+    "            print(f'     - Reference: {title}...')\n",
+    "            bibl_struct_matches = bibl_struct_tree.xpath(f\"//tei:biblStruct[descendant::tei:title[text()='{title}']]\", 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",
+    "                raise RuntimeError(\"Could not find matching biblStruct element.\")\n",
+    "        else:\n",
+    "            print(f'     - Reference with no title element - adding empty biblStruct')\n",
+    "            etree.SubElement(current_target_parent, \"biblStruct\")\n",
+    "            \n",
+    "    return etree.tostring(output_tree, pretty_print=True)\n",
+    "\n",
+    "\n",
+    "def create_all_gold_standards(bibl_dir, biblstruct_dir, biblstruct_gold_dir):\n",
+    "    for file_path in glob(f'{bibl_dir}/*.xml'):\n",
+    "        file_id = os.path.basename(file_path).replace(\".xml\", \"\")\n",
+    "        print(f'Processing {file_id}')\n",
+    "        bibl_path = file_path\n",
+    "        biblstruct_path = f'{biblstruct_dir}/{file_id}.biblstruct.xml'\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)\n",
+    "        \n",
+    "        with open(f'{biblstruct_gold_dir}/{file_id}.xml', 'w', encoding='utf-8') as output_file:\n",
+    "            output_file.write(output_data.decode())\n",
+    "\n",
+    "create_all_gold_standards('tei-bibl-corrected', 'tei-biblStruct', 'tei-biblStruct-gold')\n",
+    "\n"
+   ],
+   "metadata": {
+    "collapsed": false,
+    "ExecuteTime": {
+     "end_time": "2024-09-30T08:46:26.550424400Z",
+     "start_time": "2024-09-30T08:46:26.382111800Z"
+    }
+   },
+   "id": "b658a0ceebfc73d9"
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "outputs": [],
+   "source": [],
+   "metadata": {
+    "collapsed": false
+   },
+   "id": "6db741d584bcac88"
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Python 3",
+   "language": "python",
+   "name": "python3"
+  },
+  "language_info": {
+   "codemirror_mode": {
+    "name": "ipython",
+    "version": 2
+   },
+   "file_extension": ".py",
+   "mimetype": "text/x-python",
+   "name": "python",
+   "nbconvert_exporter": "python",
+   "pygments_lexer": "ipython2",
+   "version": "2.7.6"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}