diff --git a/convert-anystyle-data/anystyle-to-tei.ipynb b/convert-anystyle-data/anystyle-to-tei.ipynb
index c9f6348aea00397ab70d04d683fe1152fa340a35..fcdbdb32bcdd4ffe9ec6f935ff28787f55331dbe 100644
--- a/convert-anystyle-data/anystyle-to-tei.ipynb
+++ b/convert-anystyle-data/anystyle-to-tei.ipynb
@@ -636,7 +636,12 @@
   {
    "metadata": {},
    "cell_type": "markdown",
-   "source": "## Recreate GT from TEI",
+   "source": [
+    "## Recreate GT from TEI\n",
+    "\n",
+    "This is easier/more accurate from the original AnyStyle data because of whitespace/punctuation issues (see `refs` folder)\n",
+    "but included here as an example how to do it. "
+   ],
    "id": "bb9da323c357ca4c"
   },
   {
@@ -679,9 +684,11 @@
     "        # iterate over the <bibl> elements\n",
     "        for bibl in note.findall('tei:bibl', ns):\n",
     "            text = etree.tostring(bibl, method=\"text\", encoding='utf-8').decode()\n",
+    "            # we need to remove the whitespace that comes with the pretty-printed xml\n",
     "            clean_text = re.sub(r'\\n *', ' ', text)\n",
     "            while re.search(r'  ', clean_text):\n",
     "                clean_text = re.sub(r'  ', ' ', clean_text)\n",
+    "            # fix issues with whitespace before and after punctuation\n",
     "            clean_text = re.sub(r' ,', ',', clean_text)\n",
     "            clean_text = re.sub(r' \\.', '.', clean_text)\n",
     "            clean_text = re.sub(r'\\( ', '(', clean_text)\n",
@@ -700,113 +707,6 @@
    ],
    "id": "4c19609699dc79c"
   },
-  {
-   "metadata": {},
-   "cell_type": "markdown",
-   "source": [
-    "## Extract bibliographic data from TEI files using XSLT\n",
-    "\n",
-    "https://github.com/OpenArabicPE/convert_tei-to-bibliographic-data"
-   ],
-   "id": "b0a231dc7bdd8b01"
-  },
-  {
-   "cell_type": "code",
-   "source": [
-    "from lxml import etree\n",
-    "import glob\n",
-    "from urllib.request import urlopen\n",
-    "import requests\n",
-    "\n",
-    "if not 'cache' in locals():\n",
-    "    cache = {}\n",
-    "\n",
-    "class HttpsResolver(etree.Resolver):\n",
-    "    def resolve(self, url, id, context):\n",
-    "        if url in cache:\n",
-    "            xml_str = cache[url]\n",
-    "        else:\n",
-    "            r = requests.get(url)\n",
-    "            assert(r.status_code == 200)\n",
-    "            xml_str = cache[url] = r.content\n",
-    "        return self.resolve_string(xml_str, context, base_url=url)\n",
-    "\n",
-    "xml_parser = etree.XMLParser(no_network=False)\n",
-    "xml_parser.resolvers.add(HttpsResolver())\n",
-    "\n",
-    "def apply_xslt(xslt_path, xml_input_path, xml_output_path):\n",
-    "    try:\n",
-    "        if xslt_path.startswith('http'):\n",
-    "            with urlopen(xslt_path) as f:\n",
-    "                xslt_doc = etree.parse(f, parser=xml_parser)\n",
-    "        else:\n",
-    "            xslt_doc = etree.parse(xslt_path)\n",
-    "        xml_doc = etree.parse(xml_input_path)\n",
-    "        transformer = etree.XSLT(xslt_doc)\n",
-    "        new_xml = transformer(xml_doc)\n",
-    "        with open(xml_output_path, 'w', encoding='utf-8') as f:\n",
-    "            f.write(new_xml)\n",
-    "    except etree.XSLTParseError as e:\n",
-    "        print(f\"Error parsing XSLT file at {xslt_path}: {e}\")\n",
-    "\n",
-    "xslt_url = 'https://openarabicpe.github.io/convert_tei-to-bibliographic-data/xslt/convert_tei-to-biblstruct_bibl.xsl'\n",
-    "\n",
-    "for input_path in glob.glob('tei/*.xml'):\n",
-    "    print(f'Converting {input_path}')\n",
-    "    base_name = os.path.basename(input_path)\n",
-    "    output_path = f'tei-biblstruct/{base_name}'\n",
-    "    apply_xslt(xslt_url, input_path, output_path )\n"
-   ],
-   "metadata": {
-    "collapsed": false,
-    "ExecuteTime": {
-     "end_time": "2024-08-17T20:26:23.085932Z",
-     "start_time": "2024-08-17T20:26:21.140245Z"
-    }
-   },
-   "id": "cb3b4140ab153c08",
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "Converting tei\\10.1111_1467-6478.00057.xml\n",
-      "Error parsing XSLT file at https://openarabicpe.github.io/convert_tei-to-bibliographic-data/xslt/convert_tei-to-biblstruct_bibl.xsl: Failed to compile predicate\n",
-      "Converting tei\\10.1111_1467-6478.00080.xml\n",
-      "Error parsing XSLT file at https://openarabicpe.github.io/convert_tei-to-bibliographic-data/xslt/convert_tei-to-biblstruct_bibl.xsl: Failed to compile predicate\n",
-      "Converting tei\\10.1515_zfrs-1980-0103.xml\n",
-      "Error parsing XSLT file at https://openarabicpe.github.io/convert_tei-to-bibliographic-data/xslt/convert_tei-to-biblstruct_bibl.xsl: Failed to compile predicate\n",
-      "Converting tei\\10.1515_zfrs-1980-0104.xml\n",
-      "Error parsing XSLT file at https://openarabicpe.github.io/convert_tei-to-bibliographic-data/xslt/convert_tei-to-biblstruct_bibl.xsl: Failed to compile predicate\n"
-     ]
-    }
-   ],
-   "execution_count": 6
-  },
-  {
-   "metadata": {
-    "ExecuteTime": {
-     "end_time": "2024-08-17T20:26:33.167772Z",
-     "start_time": "2024-08-17T20:26:33.116862Z"
-    }
-   },
-   "cell_type": "code",
-   "source": [
-    "!saxon -s:\"tei/10.1111_1467-6478.00057.xml\" -xsl:\"https://openarabicpe.github.io/convert_tei-to-bibliographic-data/xslt/convert_tei-to-biblstruct_bibl.xsl\""
-   ],
-   "id": "2e6d27dc670c0038",
-   "outputs": [
-    {
-     "name": "stderr",
-     "output_type": "stream",
-     "text": [
-      "Der Befehl \"saxon\" ist entweder falsch geschrieben oder\n",
-      "konnte nicht gefunden werden.\n"
-     ]
-    }
-   ],
-   "execution_count": 7
-  },
   {
    "metadata": {},
    "cell_type": "code",
diff --git a/convert-anystyle-data/biblStruct/10.1111_1467-6478.00057.xml b/convert-anystyle-data/biblStruct/10.1111_1467-6478.00057.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/convert-anystyle-data/biblStruct/10.1111_1467-6478.00080.xml b/convert-anystyle-data/biblStruct/10.1111_1467-6478.00080.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/convert-anystyle-data/biblStruct/10.1515_zfrs-1980-0103.xml b/convert-anystyle-data/biblStruct/10.1515_zfrs-1980-0103.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/convert-anystyle-data/biblStruct/10.1515_zfrs-1980-0104.xml b/convert-anystyle-data/biblStruct/10.1515_zfrs-1980-0104.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/convert-anystyle-data/biblStruct/metadata/10.1111_1467-6478.00057-bibl_biblStruct.TEIP5.xml b/convert-anystyle-data/biblStruct/metadata/10.1111_1467-6478.00057-bibl_biblStruct.TEIP5.xml
new file mode 100644
index 0000000000000000000000000000000000000000..2695d2b8d54d171c8eeb2a9af965f4fc54df63ea
--- /dev/null
+++ b/convert-anystyle-data/biblStruct/metadata/10.1111_1467-6478.00057-bibl_biblStruct.TEIP5.xml
@@ -0,0 +1,1786 @@
+<?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/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="pp">77</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">27</biblScope>
+               <biblScope unit="pp">183</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="vol">20</biblScope>
+               <biblScope unit="pp">1072</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">28</biblScope>
+               <biblScope unit="pp">379</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">125–6, s. 146</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">75</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="pp">442</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">196</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">20</biblScope>
+               <biblScope unit="pp">56, 61</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/10.1111_1467-6478.00057.xml#">
+            <analytic>
+               <title level="a">Inquiry 137</title>
+            </analytic>
+            <monogr>
+               <imprint/>
+               <biblScope unit="pp">145</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">98</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">3</biblScope>
+               <biblScope unit="pp">30</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">174</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">160</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">ix</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">4</biblScope>
+               <biblScope unit="pp">220</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">105</biblScope>
+               <biblScope unit="pp">2117</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">especially 43–59</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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/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/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <title level="j">All E.R</title>
+               <imprint>
+                  <date>1991</date>
+               </imprint>
+               <biblScope unit="vol">2</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">74</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">127 and throughout</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">3</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <analytic>
+               <title level="a">A.L.R.C., 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>
+                  <persName>
+                     <surname>A.L.R.C</surname>
+                  </persName>
+               </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/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/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="vol">94</biblScope>
+               <biblScope unit="pp">997</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">347 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">2 K.B. 571</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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/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/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/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/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/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/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="pp">59</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">5</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="vol">56</biblScope>
+               <biblScope unit="pp">99</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">78</biblScope>
+               <biblScope unit="pp">59</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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/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>
+               <biblScope unit="pp">especially 223 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">120</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">4</biblScope>
+               <biblScope unit="pp">93</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">13</biblScope>
+               <biblScope unit="pp">23</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">57</biblScope>
+               <biblScope unit="pp">467, 468</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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="vol">16</biblScope>
+               <biblScope unit="pp">368</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="vol">59</biblScope>
+               <biblScope unit="pp">675</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <title level="j">N.S.W.L.R</title>
+               <imprint>
+                  <date>1996</date>
+               </imprint>
+               <biblScope unit="vol">39</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint>
+                  <date>1980</date>
+                  <date>1994</date>
+                  <pubPlace>N.S.W</pubPlace>
+               </imprint>
+               <biblScope unit="vol">54</biblScope>
+               <biblScope unit="pp">A.S.C. 56–270 (N.S.W.C.A.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint>
+                  <date>1994</date>
+               </imprint>
+               <biblScope unit="pp">1 A.C. 180</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">94</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">especially 112–18</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">73</biblScope>
+               <biblScope unit="pp">733</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint>
+                  <date>1992</date>
+               </imprint>
+               <biblScope unit="pp">29 N.S.W.L.R. 188 (C.A.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">11</biblScope>
+               <biblScope unit="pp">100</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">16</biblScope>
+               <biblScope unit="pp">412</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">8</biblScope>
+               <biblScope unit="pp">111, 133</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">18</biblScope>
+               <biblScope unit="pp">206</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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/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="pp">46</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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/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="pp">262–4</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">19</biblScope>
+               <biblScope unit="pp">701</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">11</biblScope>
+               <biblScope unit="pp">295, 300</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">7</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">45</biblScope>
+               <biblScope unit="pp">424, 431–3</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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/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="pp">26</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+      </listBibl>
+   </standOff>
+</TEI>
diff --git a/convert-anystyle-data/biblStruct/metadata/10.1111_1467-6478.00080-bibl_biblStruct.TEIP5.xml b/convert-anystyle-data/biblStruct/metadata/10.1111_1467-6478.00080-bibl_biblStruct.TEIP5.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c80d90f95789501bd4dafe2ac2b527082db86436
--- /dev/null
+++ b/convert-anystyle-data/biblStruct/metadata/10.1111_1467-6478.00080-bibl_biblStruct.TEIP5.xml
@@ -0,0 +1,955 @@
+<?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/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="pp">14</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">169</biblScope>
+               <biblScope unit="pp">at 171</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">20</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="vol">89</biblScope>
+               <biblScope unit="pp">1685</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">470, at 485 and 481</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">19</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">296</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/10.1111_1467-6478.00080.xml#">
+            <monogr>
+               <imprint/>
+               <biblScope unit="pp">para. 31</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/10.1111_1467-6478.00080.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">2</biblScope>
+               <biblScope unit="pp">15, at 24–6</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">137</biblScope>
+               <biblScope unit="pp">835, at 836</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">Volume III</biblScope>
+               <biblScope unit="pp">215</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">XXI</biblScope>
+               <biblScope unit="pp">218</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/10.1111_1467-6478.00080.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">28</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">106</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">29</biblScope>
+               <biblScope unit="pp">121, at 129</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/10.1111_1467-6478.00080.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">at 216–17</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">at 256 and 257</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">68</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="vol">I</biblScope>
+               <biblScope unit="pp">47 at pp. 54–55</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">VII</biblScope>
+               <biblScope unit="pp">173 at pp. 173–6</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">19</biblScope>
+               <biblScope unit="pp">427, at 429</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">46</biblScope>
+               <biblScope unit="pp">1, at 8</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="vol">44</biblScope>
+               <biblScope unit="pp">256, at 258</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">31</biblScope>
+               <biblScope unit="pp">38, at 46</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">13</biblScope>
+               <biblScope unit="pp">143, at 152</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/10.1111_1467-6478.00080.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">29</biblScope>
+               <biblScope unit="pp">189, at 189</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">19</biblScope>
+               <biblScope unit="pp">12, at 13</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">28</biblScope>
+               <biblScope unit="pp">281, at 282</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">24</biblScope>
+               <biblScope unit="pp">246, at 248</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/10.1111_1467-6478.00080.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">10–24</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="vol">20</biblScope>
+               <biblScope unit="pp">110, at 112</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">20</biblScope>
+            </monogr>
+         </biblStruct>
+      </listBibl>
+   </standOff>
+</TEI>
diff --git a/convert-anystyle-data/biblStruct/metadata/10.1515_zfrs-1980-0103-bibl_biblStruct.TEIP5.xml b/convert-anystyle-data/biblStruct/metadata/10.1515_zfrs-1980-0103-bibl_biblStruct.TEIP5.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9bdb5f40b4845f65d9a53ae0fa069444556ab14b
--- /dev/null
+++ b/convert-anystyle-data/biblStruct/metadata/10.1515_zfrs-1980-0103-bibl_biblStruct.TEIP5.xml
@@ -0,0 +1,1397 @@
+<?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/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Geiger</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1964</date>
+               </imprint>
+               <biblScope unit="pp">insbesondere S. 65—83</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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/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="pp">66-85</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Black</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1973</date>
+               </imprint>
+               <biblScope unit="pp">125 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Gessner</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1976</date>
+               </imprint>
+               <biblScope unit="pp">insbesondere S. 170—183</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Luhmann</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1980</date>
+               </imprint>
+               <biblScope unit="pp">99—112</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="pp">64 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Hilden</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1976</date>
+               </imprint>
+               <biblScope unit="pp">64 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Koch</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1975</date>
+               </imprint>
+               <biblScope unit="pp">75</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">78 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Johnson</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1979</date>
+               </imprint>
+               <biblScope unit="pp">90 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Steinbach</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1979</date>
+               </imprint>
+               <biblScope unit="pp">66 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">82 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Baumgärtei</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1976</date>
+               </imprint>
+               <biblScope unit="pp">113-128</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Galanter</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1974</date>
+               </imprint>
+               <biblScope unit="pp">95—160</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Sarat</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1976</date>
+               </imprint>
+               <biblScope unit="pp">339-375</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">138</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Steinbach</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1979</date>
+               </imprint>
+               <biblScope unit="pp">96 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">89, Fn. 17</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">102 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <analytic>
+               <title level="a">Recht als gradualisiertes Konzept</title>
+            </analytic>
+            <monogr>
+               <imprint>
+                  <date>1980</date>
+               </imprint>
+               <biblScope unit="pp">83—98</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Steinbach</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1979</date>
+               </imprint>
+               <biblScope unit="pp">35</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">24 und S. 49</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Wanner</surname>
+                  </persName>
+               </author>
+               <imprint>
+                  <date>1975</date>
+               </imprint>
+               <biblScope unit="pp">293—306</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">72 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="pp">78 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="vol">vol. 9</biblScope>
+            </monogr>
+         </biblStruct>
+      </listBibl>
+      <listBibl>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="vol">2</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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/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="vol">Bd. 6. Opladen</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="vol">vol. 9</biblScope>
+               <biblScope unit="pp">675—694</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="vol">vol. 9</biblScope>
+               <biblScope unit="pp">63—94</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">vol. 9</biblScope>
+               <biblScope unit="pp">695-706</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">vol. 9</biblScope>
+               <biblScope unit="pp">95—160</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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="vol">Bd. III</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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="vol">Bd. 6. Opladen</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">IIM-dp/78—70</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">IIM-dp/79—104</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">Bd. 6. Opladen</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
+            <analytic>
+               <title level="a">Alternatives in Dispute Processing in a Small Claim Court</title>
+               <author>
+                  <persName>
+                     <surname>Sarat</surname>
+                  </persName>
+               </author>
+            </analytic>
+            <monogr>
+               <title level="j">Law and Society Review</title>
+               <imprint>
+                  <date>1976</date>
+                  <pubPlace>Austin</pubPlace>
+               </imprint>
+               <biblScope unit="vol">vol. 10</biblScope>
+               <biblScope unit="pp">339—375</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="vol">vol. 9</biblScope>
+               <biblScope unit="pp">293-306</biblScope>
+            </monogr>
+         </biblStruct>
+      </listBibl>
+   </standOff>
+</TEI>
diff --git a/convert-anystyle-data/biblStruct/metadata/10.1515_zfrs-1980-0104-bibl_biblStruct.TEIP5.xml b/convert-anystyle-data/biblStruct/metadata/10.1515_zfrs-1980-0104-bibl_biblStruct.TEIP5.xml
new file mode 100644
index 0000000000000000000000000000000000000000..8a3a12700f286c5c6385f5605178481cfc5b06bd
--- /dev/null
+++ b/convert-anystyle-data/biblStruct/metadata/10.1515_zfrs-1980-0104-bibl_biblStruct.TEIP5.xml
@@ -0,0 +1,2238 @@
+<?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/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="vol">I</biblScope>
+               <biblScope unit="pp">12 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="vol">III</biblScope>
+               <biblScope unit="pp">1 (3)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="vol">26</biblScope>
+               <biblScope unit="pp">174 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">78</biblScope>
+               <biblScope unit="pp">51 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">75 (83)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">3 (9 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">171 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">25</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">22</biblScope>
+               <biblScope unit="pp">509 (526)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">11</biblScope>
+               <biblScope unit="pp">507 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">3 (18)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">Vol. 1</biblScope>
+               <biblScope unit="pp">1</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">117 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Vallier</surname>
+                  </persName>
+               </author>
+               <imprint/>
+               <biblScope unit="pp">423 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">375 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">137</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Smelser</surname>
+                  </persName>
+               </author>
+               <imprint/>
+               <biblScope unit="pp">2 f</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">24</biblScope>
+               <biblScope unit="pp">13 (15 ff.).</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">Bd. 14</biblScope>
+               <biblScope unit="pp">421 (423)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">Bd. Vll 1 (2. Auf</biblScope>
+               <biblScope unit="pp">514 (520 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/10.1515_zfrs-1980-0104.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Smelser</surname>
+                  </persName>
+               </author>
+               <imprint/>
+               <biblScope unit="pp">168 f</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">267 (270 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">151 (159)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">81 (89 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">188 N. 1</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">3</biblScope>
+               <biblScope unit="pp">305 (330 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">79 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">62</biblScope>
+               <biblScope unit="pp">163 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">45 (48)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">56 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">178 (186 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="vol">26</biblScope>
+               <biblScope unit="pp">219 (224 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Smelser</surname>
+                  </persName>
+               </author>
+               <imprint/>
+               <biblScope unit="pp">175 f</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="vol">6</biblScope>
+               <biblScope unit="pp">233 (240)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">25</biblScope>
+               <biblScope unit="pp">457 (479)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="vol">1</biblScope>
+               <biblScope unit="pp">23 (31 ff.).</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">395 (402 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">23</biblScope>
+               <biblScope unit="pp">5 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">I</biblScope>
+               <biblScope unit="pp">30 f</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">49 (50 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Smelser</surname>
+                  </persName>
+               </author>
+               <imprint/>
+               <biblScope unit="pp">182 f</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">30</biblScope>
+               <biblScope unit="pp">361 (364 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">131 (157 f.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">176 (185)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">Bd. 2</biblScope>
+               <biblScope unit="pp">113 (124 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">56 (80)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">123 (134 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">82 ff</biblScope>
+               <biblScope unit="pp">40</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="pp">13) 2 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="vol">19</biblScope>
+               <biblScope unit="pp">161 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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="vol">78</biblScope>
+               <biblScope unit="pp">154 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="vol">I</biblScope>
+               <biblScope unit="pp">70</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">8</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="vol">1</biblScope>
+               <biblScope unit="pp">110 f</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">Chapter VIII</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">I</biblScope>
+               <biblScope unit="pp">78</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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="vol">34</biblScope>
+               <biblScope unit="pp">1 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">34</biblScope>
+               <biblScope unit="pp">443 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">97 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">8</biblScope>
+               <biblScope unit="pp">362 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/10.1515_zfrs-1980-0104.xml#">
+            <monogr>
+               <author>
+                  <persName>
+                     <surname>Smelser</surname>
+                  </persName>
+               </author>
+               <imprint/>
+               <biblScope unit="pp">167 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">95 (101) ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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="vol">6</biblScope>
+               <biblScope unit="pp">221 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="vol">7</biblScope>
+               <biblScope unit="pp">228 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">5</biblScope>
+               <biblScope unit="pp">109 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">21 No. 1</biblScope>
+               <biblScope unit="pp">83 (88 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">196 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">85 (88 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">101 (126)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="vol">Bd. 4 (3. Aufl</biblScope>
+               <biblScope unit="pp">405 (414 f.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">Son derheft 2</biblScope>
+               <biblScope unit="pp">5 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">37 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/10.1515_zfrs-1980-0104.xml#">
+            <monogr>
+               <imprint/>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">1</biblScope>
+               <biblScope unit="pp">151 (152)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">9 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">49 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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="pp">97 (99 ff.)</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">403 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="pp">377 ff</biblScope>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">12</biblScope>
+               <biblScope unit="pp">159 ff</biblScope>
+            </monogr>
+         </biblStruct>
+      </listBibl>
+      <listBibl>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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/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/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/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, Frankfurt</pubPlace>
+               </imprint>
+            </monogr>
+         </biblStruct>
+         <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/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="vol">Bd. I</biblScope>
+            </monogr>
+         </biblStruct>
+      </listBibl>
+   </standOff>
+</TEI>
diff --git a/convert-anystyle-data/lib/.gitignore b/convert-anystyle-data/lib/.gitignore
index f59ec20aabf5842d237244ece8c81ab184faeac1..4fc6141c7122efa30e7ca0c4b82c0f4790fbdeb5 100644
--- a/convert-anystyle-data/lib/.gitignore
+++ b/convert-anystyle-data/lib/.gitignore
@@ -1 +1,2 @@
-*
\ No newline at end of file
+Saxon*
+xslt
diff --git a/convert-anystyle-data/lib/xml2ris.sh b/convert-anystyle-data/lib/xml2ris.sh
new file mode 100644
index 0000000000000000000000000000000000000000..488f5eb64c48e7be2eed5a5b8d44d8a120d03362
--- /dev/null
+++ b/convert-anystyle-data/lib/xml2ris.sh
@@ -0,0 +1,8 @@
+#!/usr/bin/env bash
+
+for file_path in mods/metadata/*.xml
+do
+  out_file=$(basename ${file_path/-bibl\.MODS\.xml/.ris})
+  echo "Converted $file_path to ris/$out_file"
+  xml2ris -i utf8 -o utf8 "$file_path" > "ris/$out_file"
+done
\ No newline at end of file
diff --git a/convert-anystyle-data/mods/10.1111_1467-6478.00057.xml b/convert-anystyle-data/mods/10.1111_1467-6478.00057.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/convert-anystyle-data/mods/10.1111_1467-6478.00080.xml b/convert-anystyle-data/mods/10.1111_1467-6478.00080.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/convert-anystyle-data/mods/10.1515_zfrs-1980-0103.xml b/convert-anystyle-data/mods/10.1515_zfrs-1980-0103.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/convert-anystyle-data/mods/10.1515_zfrs-1980-0104.xml b/convert-anystyle-data/mods/10.1515_zfrs-1980-0104.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/convert-anystyle-data/mods/metadata/10.1111_1467-6478.00057-bibl.MODS.xml b/convert-anystyle-data/mods/metadata/10.1111_1467-6478.00057-bibl.MODS.xml
new file mode 100644
index 0000000000000000000000000000000000000000..76986e0c0d41a0f1deb77dfacac8c91482944f20
--- /dev/null
+++ b/convert-anystyle-data/mods/metadata/10.1111_1467-6478.00057-bibl.MODS.xml
@@ -0,0 +1,1763 @@
+<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="../xslt-boilerplate/modsbp_parameters.xsl"?><?xml-model href="http://www.loc.gov/standards/mods/mods-3-8.xsd"?><modsCollection xmlns="http://www.loc.gov/mods/v3"
+                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+                xsi:schemaLocation="http://www.loc.gov/standards/mods/mods-3-8.xsd">
+   <mods>
+      <titleInfo>
+         <title>Citizenship and Feminist Politics</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>A. Phillips</namePart>
+         <namePart type="family">Phillips</namePart>
+         <namePart type="given">A.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Citizenship</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>77</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Mere Auxiliaries to the Commonwealth”: Women and the Origins of Liberalism</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>T. Brennan</namePart>
+         <namePart type="family">Brennan</namePart>
+         <namePart type="given">T.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>C. Pateman</namePart>
+         <namePart type="family">Pateman</namePart>
+         <namePart type="given">C.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Political Studies</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>27183</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>A Woman’s Place: Women and Politics in Australia</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M. Sawer</namePart>
+         <namePart type="family">Sawer</namePart>
+         <namePart type="given">M.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>M. Simms</namePart>
+         <namePart type="family">Simms</namePart>
+         <namePart type="given">M.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Embodying the Citizen</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Public and Private: Feminist Legal Debates</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Historicising Citizenship: Remembering Broken Promises</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Melbourne University Law Rev</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>201072</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Is Citizenship Gendered?</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>S. Walby</namePart>
+         <namePart type="family">Walby</namePart>
+         <namePart type="given">S.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Sociology</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>28379</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Metaphysical First Principles of the Doctrine of Right</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>I. Kant</namePart>
+         <namePart type="family">Kant</namePart>
+         <namePart type="given">I.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>The Metaphysics of Morals</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>125–6, s. 146</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Marriage and the Boundaries of Citizenship</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>U. Vogel</namePart>
+         <namePart type="family">Vogel</namePart>
+         <namePart type="given">U.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>The Condition of Citizenship</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>75</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Civil Citizenship against Social Citizenship?</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>N. Fraser</namePart>
+         <namePart type="family">Fraser</namePart>
+         <namePart type="given">N.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>L. Gordon</namePart>
+         <namePart type="family">Gordon</namePart>
+         <namePart type="given">L.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Commentaries</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>W. Blackstone</namePart>
+         <namePart type="family">Blackstone</namePart>
+         <namePart type="given">W.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>442</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Female Sexualization: A Collective Work of Memory</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>196</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Self and Subjectivities: Languages of Claim in Property Law</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>A. Bottomley</namePart>
+         <namePart type="family">Bottomley</namePart>
+         <namePart type="given">A.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>J. of Law and Society</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>2056, 61</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Power and Formation: New Foundations for a Radical Concept of Power</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>D. West</namePart>
+         <namePart type="family">West</namePart>
+         <namePart type="given">D.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Inquiry 137</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>145</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Power/Knowledge: Selected Interviews and Other Writings 1972–1977</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M. Foucault</namePart>
+         <namePart type="family">Foucault</namePart>
+         <namePart type="given">M.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>98</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Feminism, and Legal Method: The Difference it Makes</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M.J. Mossman</namePart>
+         <namePart type="family">Mossman</namePart>
+         <namePart type="given">M.J.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Aust. J. of Law and Society</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>330</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>H.S. Maine</namePart>
+         <namePart type="family">Maine</namePart>
+         <namePart type="given">H.S.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>174</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Transformation of American Law, 1780–1860</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M.J. Horwitz</namePart>
+         <namePart type="family">Horwitz</namePart>
+         <namePart type="given">M.J.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>160</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Governing the Hearth: Law and the Family in Nineteenth-Century America</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M. Grossberg</namePart>
+         <namePart type="family">Grossberg</namePart>
+         <namePart type="given">M.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>ix</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Married Women’s Separate Property in England, 1660–1833</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>S. Staves</namePart>
+         <namePart type="family">Staves</namePart>
+         <namePart type="given">S.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>4220</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Rule of Love”: Wife Beating as Prerogative and Privacy</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>R.B. Siegel</namePart>
+         <namePart type="family">Siegel</namePart>
+         <namePart type="given">R.B.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Yale Law J</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>1052117</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Sexual Contract</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>C. Pateman</namePart>
+         <namePart type="family">Pateman</namePart>
+         <namePart type="given">C.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Family Matters</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>K. O’Donovan</namePart>
+         <namePart type="family">O’Donovan</namePart>
+         <namePart type="given">K.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>especially 43–59</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>All E.R</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local">periodical</genre>
+      <genre authority="marcgt">periodical</genre>
+      <originInfo>
+         <issuance>continuing</issuance>
+      </originInfo>
+      <part>2</part>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Contracting in the Haven: Balfour v. Balfour Revisited</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>M. Freeman</namePart>
+         <namePart type="family">Freeman</namePart>
+         <namePart type="given">M.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Exploring the Boundaries of Contract</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>74</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Masculinity, Law and the Family</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>R. Collier</namePart>
+         <namePart type="family">Collier</namePart>
+         <namePart type="given">R.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>127 and throughout</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>An Introduction to the Law of Contract</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>P.S. Atiyah</namePart>
+         <namePart type="family">Atiyah</namePart>
+         <namePart type="given">P.S.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>3</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>A.L.R.C., Matrimonial Property</title>
+         <title>Report of the Joint Select Committee on Certain Aspects of the Operation and Interpretation of the Family Law Act</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>A.L.R.C</namePart>
+         <namePart type="family">A.L.R.C</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>report no. 37</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Private Ordering in Family Law – Will Women Benefit?</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>M. Neave</namePart>
+         <namePart type="family">Neave</namePart>
+         <namePart type="given">M.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Thornton</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>An Essay in the Deconstruction of Contract Doctrine</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>C. Dalton</namePart>
+         <namePart type="family">Dalton</namePart>
+         <namePart type="given">C.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Yale Law J</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>94997</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Marriage Contract: Spouses, Lovers, and the Law</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>L. J. Weitzman</namePart>
+         <namePart type="family">Weitzman</namePart>
+         <namePart type="given">L.</namePart>
+         <namePart type="given">J.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>347 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Family Law and the Pursuit of Intimacy</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M.C. Regan</namePart>
+         <namePart type="family">Regan</namePart>
+         <namePart type="given">M.C.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Promises Broken: Courtship, Class, and Gender in Victorian England (1995)</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>G.S. Frost</namePart>
+         <namePart type="family">Frost</namePart>
+         <namePart type="given">G.S.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Is Citizenship Gender-Specific?</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>U. Vogel</namePart>
+         <namePart type="family">Vogel</namePart>
+         <namePart type="given">U.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>The Frontiers of Citizenship</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>59</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Money and Marriage</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>J. Pahl</namePart>
+         <namePart type="family">Pahl</namePart>
+         <namePart type="given">J.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>5</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Australian Family Law in Context: Commentary and Materials</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>P. Parkinson S. Parker</namePart>
+         <namePart type="family">S. Parker</namePart>
+         <namePart type="given">P.</namePart>
+         <namePart type="given">Parkinson</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>J. Behrens</namePart>
+         <namePart type="family">Behrens</namePart>
+         <namePart type="given">J.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Management of the Community Estate during an Intact Marriage</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>J.T. Oldham</namePart>
+         <namePart type="family">Oldham</namePart>
+         <namePart type="given">J.T.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Law and Contemporary Problems</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>5699</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>What Causes Fundamental Legal Ideas? Marital Property in England and France in the Thirteenth Century’</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>C. Donahue</namePart>
+         <namePart type="family">Donahue</namePart>
+         <namePart type="given">C.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Michigan Law Rev</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>7859</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Sexing the Subject (of Law)</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>N. Naffine</namePart>
+         <namePart type="family">Naffine</namePart>
+         <namePart type="given">N.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Contracts Review Act</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local">periodical</genre>
+      <genre authority="marcgt">periodical</genre>
+      <originInfo>
+         <place/>
+         <issuance>continuing</issuance>
+      </originInfo>
+      <part/>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>J. Nedelsky</namePart>
+         <namePart type="family">Nedelsky</namePart>
+         <namePart type="given">J.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>especially 223 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Democratic Theory: Essays in Retrieval</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>C.B. Macpherson</namePart>
+         <namePart type="family">Macpherson</namePart>
+         <namePart type="given">C.B.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>120</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Sexually Transmitted Debt”: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>N. Howell</namePart>
+         <namePart type="family">Howell</namePart>
+         <namePart type="given">N.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Aust. Feminist Law J</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>493</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Free Exercise of Her Will: Women and Emotionally Transmitted Debt</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>P. Baron</namePart>
+         <namePart type="family">Baron</namePart>
+         <namePart type="given">P.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Law in Context</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>1323</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Husband, the Bank, the Wife and Her Signature</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>B. Fehlberg</namePart>
+         <namePart type="family">Fehlberg</namePart>
+         <namePart type="given">B.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Modern Law Rev</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>57467, 468</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Protecting Women who provide Security for a Husband’s, Partner’s or Child’s Debts. The Value and Limits of an Economic Perspective’</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M. Richardson</namePart>
+         <namePart type="family">Richardson</namePart>
+         <namePart type="given">M.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Legal Studies</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>16368</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Husband, the Bank, the Wife and Her Signature – the Sequel</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>B. Fehlberg</namePart>
+         <namePart type="family">Fehlberg</namePart>
+         <namePart type="given">B.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Modern Law Rev</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>59675</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>N.S.W.L.R</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local">periodical</genre>
+      <genre authority="marcgt">periodical</genre>
+      <originInfo>
+         <issuance>continuing</issuance>
+      </originInfo>
+      <part>39</part>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Australian Family Property Law</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>I.J. Hardingham</namePart>
+         <namePart type="family">Hardingham</namePart>
+         <namePart type="given">I.J.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>M.A. Neave</namePart>
+         <namePart type="family">Neave</namePart>
+         <namePart type="given">M.A.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>94</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Sexual Divisions in Law</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>K. O’Donovan</namePart>
+         <namePart type="family">O’Donovan</namePart>
+         <namePart type="given">K.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>especially 112–18</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The New Property</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>C.A. Reich</namePart>
+         <namePart type="family">Reich</namePart>
+         <namePart type="given">C.A.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Yale Law J</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>73733</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The New Family and the New Property</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M.A. Glendon</namePart>
+         <namePart type="family">Glendon</namePart>
+         <namePart type="given">M.A.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Property Rights and Third Party Creditors – the Scope and Limitations of Equitable Doctrines</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>P. Parkinson</namePart>
+         <namePart type="family">Parkinson</namePart>
+         <namePart type="given">P.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Australian J. Family Law</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>11100</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Property Rights of Home-Makers under General Law: Bryson v. Bryant</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>J. Riley</namePart>
+         <namePart type="family">Riley</namePart>
+         <namePart type="given">J.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Sydney Law Rev</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>16412</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>When Bankruptcy and Family Law Collide</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Justice T. E. Lindenmayer</namePart>
+         <namePart type="family">Lindenmayer</namePart>
+         <namePart type="given">Justice</namePart>
+         <namePart type="given">T. E.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>P.A. Doolan</namePart>
+         <namePart type="family">Doolan</namePart>
+         <namePart type="given">P.A.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Aust. J. Family Law</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>8111, 133</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Economics of Wifing Services: Law and Economics on the Family</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>B. Bennett</namePart>
+         <namePart type="family">Bennett</namePart>
+         <namePart type="given">B.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>J. of Law and Society</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>18206</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in America</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>L.J. Weitzman</namePart>
+         <namePart type="family">Weitzman</namePart>
+         <namePart type="given">L.J.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Feminism, Marriage, and the Law in Victorian England, 1850–1895</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M.L. Shanley</namePart>
+         <namePart type="family">Shanley</namePart>
+         <namePart type="given">M.L.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>46</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Three Approaches to Family Law Disputes – Intention/Belief, Unjust Enrichment and Unconscionability’</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>M. Neave</namePart>
+         <namePart type="family">Neave</namePart>
+         <namePart type="given">M.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Equity, Fiduciaries and Trusts</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>262–4</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Storytelling and the Law: A Case Study of Louth v. Diprose</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>L. Sarmas</namePart>
+         <namePart type="family">Sarmas</namePart>
+         <namePart type="given">L.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Melbourne University Law Rev</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>19701</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Feminist Ethics and Historicism</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>C. Colebrook</namePart>
+         <namePart type="family">Colebrook</namePart>
+         <namePart type="given">C.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Aust. Feminist Studies</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>11295, 300</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M. Albertson Fineman</namePart>
+         <namePart type="family">Fineman</namePart>
+         <namePart type="given">M.</namePart>
+         <namePart type="given">Albertson</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>7</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Should all Maintenance of Spouses be abolished?</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>K. O’Donovan</namePart>
+         <namePart type="family">O’Donovan</namePart>
+         <namePart type="given">K.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Modern Law Rev</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>45424, 431–3</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Cohabitation without Marriage: An Essay in Law and Social Policy</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M.D.A. Freeman</namePart>
+         <namePart type="family">Freeman</namePart>
+         <namePart type="given">M.D.A.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>C.M. Lyon</namePart>
+         <namePart type="family">Lyon</namePart>
+         <namePart type="given">C.M.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>De Facto Relationships: Issues Paper</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>New South Wales Law Reform Commission</namePart>
+         <namePart type="family">Commission</namePart>
+         <namePart type="given">New</namePart>
+         <namePart type="given">South Wales Law Reform</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Sexual Orientation and the Law</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Eds. of the Harvard Law Review</namePart>
+         <namePart type="family">Review</namePart>
+         <namePart type="given">Eds. of the Harvard</namePart>
+         <namePart type="given">Law</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Why can’t They Marry?</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>C. Overington</namePart>
+         <namePart type="family">Overington</namePart>
+         <namePart type="given">C.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>The Age</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>26</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Bride Wore Pink; Legal Recognition of Our Relationships</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Lesbian</namePart>
+         <namePart type="family">Lesbian</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Gay Rights Service</namePart>
+         <namePart type="family">Service</namePart>
+         <namePart type="given">Gay</namePart>
+         <namePart type="given">Rights</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+</modsCollection>
diff --git a/convert-anystyle-data/mods/metadata/10.1111_1467-6478.00080-bibl.MODS.xml b/convert-anystyle-data/mods/metadata/10.1111_1467-6478.00080-bibl.MODS.xml
new file mode 100644
index 0000000000000000000000000000000000000000..45fc20b3545e5f49e22e8ab94af1d005e399fab7
--- /dev/null
+++ b/convert-anystyle-data/mods/metadata/10.1111_1467-6478.00080-bibl.MODS.xml
@@ -0,0 +1,1067 @@
+<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="../xslt-boilerplate/modsbp_parameters.xsl"?><?xml-model href="http://www.loc.gov/standards/mods/mods-3-8.xsd"?><modsCollection xmlns="http://www.loc.gov/mods/v3"
+                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+                xsi:schemaLocation="http://www.loc.gov/standards/mods/mods-3-8.xsd">
+   <mods>
+      <titleInfo>
+         <title>“Traditional” Legal Scholarship: a Personal View</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>G. Jones</namePart>
+         <namePart type="family">Jones</namePart>
+         <namePart type="given">G.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>What Are Law Schools For?</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>14</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Search for Principle</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>R. Goff</namePart>
+         <namePart type="family">Goff</namePart>
+         <namePart type="given">R.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Proceeedings of the British Academy</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>169at 171</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Can English Law be taught at the Universities?</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>A. Dicey</namePart>
+         <namePart type="family">Dicey</namePart>
+         <namePart type="given">A.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>20</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Law of Contract</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>J. Smith</namePart>
+         <namePart type="family">Smith</namePart>
+         <namePart type="given">J.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Form and substance in Private Law Ajudication</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>D. Kennedy</namePart>
+         <namePart type="family">Kennedy</namePart>
+         <namePart type="given">D.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Harvard Law Rev</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>891685</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Renewal of the Liberal Law Degree</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>B. Hepple</namePart>
+         <namePart type="family">Hepple</namePart>
+         <namePart type="given">B.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Cambridge Law J</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>470, at 485 and 481</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Introduction</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>P.A. Thomas</namePart>
+         <namePart type="family">Thomas</namePart>
+         <namePart type="given">P.A.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Socio-Legal Studies</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>19</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Law’s Community</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>R. Cotterrell</namePart>
+         <namePart type="family">Cotterrell</namePart>
+         <namePart type="given">R.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>296</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Company Law</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <publisher>S. Wheeler</publisher>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>report A Time for Change</title>
+         <title>Report of the Committee on Legal Education</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Marre’s</namePart>
+         <namePart type="family">Marre’s</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Robbins report on higher education, Higher Education</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Higher Education in the learning society</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Committee of Inquiry into Higher Education</namePart>
+         <namePart type="family">Education</namePart>
+         <namePart type="given">Committee of Inquiry</namePart>
+         <namePart type="given">into Higher</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>First Report on Legal Education and Training</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>ACLEC</namePart>
+         <namePart type="family">ACLEC</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Working on the Chain Gang?</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>A. Bradney</namePart>
+         <namePart type="family">Bradney</namePart>
+         <namePart type="given">A.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>F. Cownie</namePart>
+         <namePart type="family">Cownie</namePart>
+         <namePart type="given">F.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Contemporary Issues in Law</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>215, at 24–6</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Education for Life or for Work?</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M. Jeeves J. MacFarlane</namePart>
+         <namePart type="family">J. MacFarlane</namePart>
+         <namePart type="given">M.</namePart>
+         <namePart type="given">Jeeves</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>A. Boon</namePart>
+         <namePart type="family">Boon</namePart>
+         <namePart type="given">A.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>New Law J</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>137835, at 836</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Universities: Actual and Ideal</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>T.H. Huxley</namePart>
+         <namePart type="family">Huxley</namePart>
+         <namePart type="given">T.H.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>T.H. Huxley, Collected Essays</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>Volume III215</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Inaugural address to the University of St Andrews</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>J.S. Mill</namePart>
+         <namePart type="family">Mill</namePart>
+         <namePart type="given">J.S.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Collected Work of John Stuart Mill: Volume</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>XXI218</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Education and the University</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>F.R. Leavis</namePart>
+         <namePart type="family">Leavis</namePart>
+         <namePart type="given">F.R.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>28</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Liberalising Legal Education</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>A. Bradney</namePart>
+         <namePart type="family">Bradney</namePart>
+         <namePart type="given">A.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>The Law School: Global Issues, Local Questions</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Of Blackstone’s Tower: Metephors of Distance and Histories of the English Law School</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>P. Goodrich</namePart>
+         <namePart type="family">Goodrich</namePart>
+         <namePart type="given">P.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>S. Turow, One L</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>106</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Reflections on Legal Education</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>O. Kahn-Freund</namePart>
+         <namePart type="family">Kahn-Freund</namePart>
+         <namePart type="given">O.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Modern Law Rev</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>29121, at 129</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The New English Literatures</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M. King</namePart>
+         <namePart type="family">King</namePart>
+         <namePart type="given">M.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>at 216–17</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Jurisprudence by Sir John Salmond</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>at 256 and 257</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Division of Labour in Society</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>E. Durkheim</namePart>
+         <namePart type="family">Durkheim</namePart>
+         <namePart type="given">E.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>68</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Quiet Revolution: Improving Student Learning in Law</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>M. Le Brun</namePart>
+         <namePart type="family">Le Brun</namePart>
+         <namePart type="given">M.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>R. Johnstone</namePart>
+         <namePart type="family">Johnstone</namePart>
+         <namePart type="given">R.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Define and Empower: Women Students Consider Feminist Learning</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Law and Critique</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>I47 at pp. 54–55</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Invisible Author of Legal Authority</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>W. Conklin</namePart>
+         <namePart type="family">Conklin</namePart>
+         <namePart type="given">W.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Law and Critique</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>VII173 at pp. 173–6</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Masculinism, Law and Law Teaching</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>R. Collier</namePart>
+         <namePart type="family">Collier</namePart>
+         <namePart type="given">R.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>International J. of the Sociology of Law</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>19427, at 429</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Administrative Law, Collective Consumption and Judicial Policy</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>P. McAuslan</namePart>
+         <namePart type="family">McAuslan</namePart>
+         <namePart type="given">P.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Modern Law Rev</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>461, at 8</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Convergence of the Law School and the University</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>P. Samuelson</namePart>
+         <namePart type="family">Samuelson</namePart>
+         <namePart type="given">P.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>The Am. Scholar</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>44256, at 258</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>A Survey of Law Schools in the United Kingdom, 1996</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>P. Harris</namePart>
+         <namePart type="family">Harris</namePart>
+         <namePart type="given">P.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>M. Jones</namePart>
+         <namePart type="family">Jones</namePart>
+         <namePart type="given">M.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>The Law Teacher</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>3138, at 46</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>A third survey of university legal education</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>J. Wilson</namePart>
+         <namePart type="family">Wilson</namePart>
+         <namePart type="given">J.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Legal Studies</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>13143, at 152</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Law Teachers: Lawyers or Academics?</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>T. Mortimer P. Leighton</namePart>
+         <namePart type="family">P. Leighton</namePart>
+         <namePart type="given">T.</namePart>
+         <namePart type="given">Mortimer</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>N. Whatley</namePart>
+         <namePart type="family">Whatley</namePart>
+         <namePart type="given">N.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and Assessment at Hong Kong Polytechnic University</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>L. Skwarok</namePart>
+         <namePart type="family">Skwarok</namePart>
+         <namePart type="given">L.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>The Law Teacher</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>29189, at 189</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Law, Law Staff and CNAA Business Studies Degree Courses</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>N. Bastin</namePart>
+         <namePart type="family">Bastin</namePart>
+         <namePart type="given">N.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>The Law Teacher</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>1912, at 13</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>A. Ridley</namePart>
+         <namePart type="family">Ridley</namePart>
+         <namePart type="given">A.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>The Law Teacher</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>28281, at 282</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Legal Literacy for Managers: The Role of the Educator</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>G. Cartan</namePart>
+         <namePart type="family">Cartan</namePart>
+         <namePart type="given">G.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>T. Vilkinas</namePart>
+         <namePart type="family">Vilkinas</namePart>
+         <namePart type="given">T.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>The Law Teacher</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>24246, at 248</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Short Cuts</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>P. Birks</namePart>
+         <namePart type="family">Birks</namePart>
+         <namePart type="given">P.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Pressing Problems in the Law</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>10–24</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Curriculum Development in Legal Studies</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>P. Harris</namePart>
+         <namePart type="family">Harris</namePart>
+         <namePart type="given">P.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>The Law Teacher</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>20110, at 112</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Errata: An Examined Life</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>G. Steiner</namePart>
+         <namePart type="family">Steiner</namePart>
+         <namePart type="given">G.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>20</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+</modsCollection>
diff --git a/convert-anystyle-data/mods/metadata/10.1515_zfrs-1980-0103-bibl.MODS.xml b/convert-anystyle-data/mods/metadata/10.1515_zfrs-1980-0103-bibl.MODS.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a8dd274270238af18108220fe82663948e3f7081
--- /dev/null
+++ b/convert-anystyle-data/mods/metadata/10.1515_zfrs-1980-0103-bibl.MODS.xml
@@ -0,0 +1,1060 @@
+<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="../xslt-boilerplate/modsbp_parameters.xsl"?><?xml-model href="http://www.loc.gov/standards/mods/mods-3-8.xsd"?><modsCollection xmlns="http://www.loc.gov/mods/v3"
+                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+                xsi:schemaLocation="http://www.loc.gov/standards/mods/mods-3-8.xsd">
+   <mods>
+      <titleInfo>
+         <title>Gleicher Zugang zum Recht für alle.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Gottfried Baumgärtei</namePart>
+         <namePart type="family">Baumgärtei</namePart>
+         <namePart type="given">Gottfried</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Erfolgsbarrieren vor Gericht.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Rolf Bender</namePart>
+         <namePart type="family">Bender</namePart>
+         <namePart type="given">Rolf</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Rolf Schumacher</namePart>
+         <namePart type="family">Schumacher</namePart>
+         <namePart type="given">Rolf</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Mobilization of Law</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Donald Black</namePart>
+         <namePart type="family">Black</namePart>
+         <namePart type="given">Donald</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Journal of Legal Studies</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>2</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Der lange Weg in die Berufung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Erhard Blankenburg</namePart>
+         <namePart type="family">Blankenburg</namePart>
+         <namePart type="given">Erhard</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Viola Blankenburg</namePart>
+         <namePart type="family">Blankenburg</namePart>
+         <namePart type="given">Viola</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Helmut Morasch</namePart>
+         <namePart type="family">Morasch</namePart>
+         <namePart type="given">Helmut</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Tatsachenforschung in der Justiz</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <place/>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Nichtkriminalisierung als Struktur und Routine</title>
+         <title>Hans und Günter Kaiser: Kriminologie und Strafverfahren.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Erhard Blankenburg</namePart>
+         <namePart type="family">Blankenburg</namePart>
+         <namePart type="given">Erhard</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Erhard Blankenburg</namePart>
+         <namePart type="family">Blankenburg</namePart>
+         <namePart type="given">Erhard</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Klaus Sessar</namePart>
+         <namePart type="family">Sessar</namePart>
+         <namePart type="given">Klaus</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Wiebke Steffen</namePart>
+         <namePart type="family">Steffen</namePart>
+         <namePart type="given">Wiebke</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Zur Soziologie des Arbeitsgerichtsverfahrens.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Erhard Blankenburg</namePart>
+         <namePart type="family">Blankenburg</namePart>
+         <namePart type="given">Erhard</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Siegfried Schönholz</namePart>
+         <namePart type="family">Schönholz</namePart>
+         <namePart type="given">Siegfried</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Recht als gradualisiertes Konzept</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Erhard Blankenburg</namePart>
+         <namePart type="family">Blankenburg</namePart>
+         <namePart type="given">Erhard</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Alternative Rechtsformen und Alternativen zum Recht</title>
+            <title>Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>Bd. 6. Opladen</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Civil Justice and the Poor.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Jerome- Carlin</namePart>
+         <namePart type="family">Carlin</namePart>
+         <namePart type="given">Jerome-</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Sheldon Messinger</namePart>
+         <namePart type="family">Messinger</namePart>
+         <namePart type="given">Sheldon</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Richard</namePart>
+         <namePart type="family">Richard</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Michael Lowy</namePart>
+         <namePart type="family">Lowy</namePart>
+         <namePart type="given">Michael</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Law and Society Review</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>vol. 9675—694</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Die Definitionsmacht der Polizei.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Johannes Feest</namePart>
+         <namePart type="family">Feest</namePart>
+         <namePart type="given">Johannes</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Erhard Blankenburg</namePart>
+         <namePart type="family">Blankenburg</namePart>
+         <namePart type="given">Erhard</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Influences of Social Organization on Dispute processing</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>William L. F Felstiner</namePart>
+         <namePart type="family">Felstiner</namePart>
+         <namePart type="given">William</namePart>
+         <namePart type="given">L. F</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Law and Society Review</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>vol. 963—94</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Avoidance as Dispute Processing: An Elaboration</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>William L. F Felstiner</namePart>
+         <namePart type="family">Felstiner</namePart>
+         <namePart type="given">William</namePart>
+         <namePart type="given">L. F</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Law and Society Review</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>vol. 9695-706</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Marc Galanter</namePart>
+         <namePart type="family">Galanter</namePart>
+         <namePart type="given">Marc</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Law and Society Review</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>vol. 995—160</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Vorstudien zu einer Soziologie des Rechts.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Theodor Geiger</namePart>
+         <namePart type="family">Geiger</namePart>
+         <namePart type="given">Theodor</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Recht und Konflikt.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Volkmar Neuwied. Gessner</namePart>
+         <namePart type="family">Neuwied. Gessner</namePart>
+         <namePart type="given">Volkmar</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Rechtstatsachen im Räumungsstreit. Frankfurt/Main.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Hartmut Hilden</namePart>
+         <namePart type="family">Hilden</namePart>
+         <namePart type="given">Hartmut</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Thinking about Access: A Preliminary Typology of Possible Strategies.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Earl Johnson</namePart>
+         <namePart type="family">Johnson</namePart>
+         <namePart type="given">Earl</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Access to Justice</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>Bd. III</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Hartmut Koch</namePart>
+         <namePart type="family">Koch</namePart>
+         <namePart type="given">Hartmut</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Legitimation durch Verfahren.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Niklas Luhmann</namePart>
+         <namePart type="family">Luhmann</namePart>
+         <namePart type="given">Niklas</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Kommunikation über Recht in Interaktionssystemen</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Niklas Luhmann</namePart>
+         <namePart type="family">Luhmann</namePart>
+         <namePart type="given">Niklas</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Alternative Rechtsformen und Alternativen zum Recht</title>
+            <title>Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>Bd. 6. Opladen</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Udo Reifner</namePart>
+         <namePart type="family">Reifner</namePart>
+         <namePart type="given">Udo</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>IIM-dp/78—70</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Udo Reifner</namePart>
+         <namePart type="family">Reifner</namePart>
+         <namePart type="given">Udo</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>IIM-dp/79—104</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Udo Reifner</namePart>
+         <namePart type="family">Reifner</namePart>
+         <namePart type="given">Udo</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Irmela Gorges</namePart>
+         <namePart type="family">Gorges</namePart>
+         <namePart type="given">Irmela</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Alternative Rechtsformen und Alternativen zum Recht</title>
+            <title>Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>Bd. 6. Opladen</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Alternatives in Dispute Processing in a Small Claim Court</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Sarat</namePart>
+         <namePart type="family">Sarat</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Law and Society Review</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>vol. 10339—375</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Siegfried Schönholz</namePart>
+         <namePart type="family">Schönholz</namePart>
+         <namePart type="given">Siegfried</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Arbeitslosigkeit und Recht</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <place/>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>GMD-Bericht, Manuskript. Gesellschaft für Mathematik und Datenverarbeitung.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>E Steinbach</namePart>
+         <namePart type="family">Steinbach</namePart>
+         <namePart type="given">E</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Public Ordering of Private Cases; Winning Civil Court Cases</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Craig Wanner</namePart>
+         <namePart type="family">Wanner</namePart>
+         <namePart type="given">Craig</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Law and Society Review</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>vol. 9293-306</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Nichtkriminalisierung als Struktur und Routine</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>ich</namePart>
+         <namePart type="family">ich</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Bereitschaft zur Anzeigeerstattung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Peter MacNaughton-Smith</namePart>
+         <namePart type="family">MacNaughton-Smith</namePart>
+         <namePart type="given">Peter</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Richard Rosellen</namePart>
+         <namePart type="family">Rosellen</namePart>
+         <namePart type="given">Richard</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Richard Rosellen</namePart>
+         <namePart type="family">Rosellen</namePart>
+         <namePart type="given">Richard</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Fachserie 10 (Rechtspflege) Reihe 2.1, Tabelle 10</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Statistisches Bundesamt Wiesbaden</namePart>
+         <namePart type="family">Wiesbaden</namePart>
+         <namePart type="given">Statistisches</namePart>
+         <namePart type="given">Bundesamt</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Projektbericht ,Rechtshilfebedürfnisse sozial Schwacher</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Blankenburg</namePart>
+         <namePart type="family">Blankenburg</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Gorges</namePart>
+         <namePart type="family">Gorges</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Reifner</namePart>
+         <namePart type="family">Reifner</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Ticmann).</namePart>
+         <namePart type="family">Ticmann).</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Projektbericht Rechtsschutzversicherung*.</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Blankenburg</namePart>
+         <namePart type="family">Blankenburg</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Fiedler</namePart>
+         <namePart type="family">Fiedler</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Recht als gradualisiertes Konzept</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>83—98</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Law and Society Review</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local">periodical</genre>
+      <genre authority="marcgt">periodical</genre>
+      <name type="personal">
+         <namePart>Felstiner</namePart>
+         <namePart type="family">Felstiner</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Danzig</namePart>
+         <namePart type="family">Danzig</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Lowy</namePart>
+         <namePart type="family">Lowy</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <originInfo>
+         <issuance>continuing</issuance>
+      </originInfo>
+      <part>vol. 9</part>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+</modsCollection>
diff --git a/convert-anystyle-data/mods/metadata/10.1515_zfrs-1980-0104-bibl.MODS.xml b/convert-anystyle-data/mods/metadata/10.1515_zfrs-1980-0104-bibl.MODS.xml
new file mode 100644
index 0000000000000000000000000000000000000000..fc61e8362169653709ec7a7a3ac4faaf873ec1a9
--- /dev/null
+++ b/convert-anystyle-data/mods/metadata/10.1515_zfrs-1980-0104-bibl.MODS.xml
@@ -0,0 +1,2159 @@
+<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="../xslt-boilerplate/modsbp_parameters.xsl"?><?xml-model href="http://www.loc.gov/standards/mods/mods-3-8.xsd"?><modsCollection xmlns="http://www.loc.gov/mods/v3"
+                xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+                xsi:schemaLocation="http://www.loc.gov/standards/mods/mods-3-8.xsd">
+   <mods>
+      <titleInfo>
+         <title>Rechtssoziologie und Rechtsvergleichung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Compa rative Research Across Cultures and Nations</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Comparative Sutvey Analysis</title>
+         <title>Comparative Methods in the Social Sciences</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Smelser</namePart>
+         <namePart type="family">Smelser</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Cross National Comparative Survey Research</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>N. J Englewood Cliffs</namePart>
+         <namePart type="family">Englewood Cliffs</namePart>
+         <namePart type="given">N.</namePart>
+         <namePart type="given">J</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Comparative Methods in Sociology</title>
+         <title>Einführung in die Rechtsvergleichung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Zweigert</namePart>
+         <namePart type="family">Zweigert</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Kötz</namePart>
+         <namePart type="family">Kötz</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>Bd. I</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Aufgabe und Notwendigkeit der Rechtsvergleichung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Rabel</namePart>
+         <namePart type="family">Rabel</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Gesammelte Aufsätze</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Rabel</namePart>
+         <namePart type="family">Rabel</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>III1 (3)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Law Books and Books About Law</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>R. Abel</namePart>
+         <namePart type="family">Abel</namePart>
+         <namePart type="given">R.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Stanford Law Rev</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>26174 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Einige Anmerkungen über die Beziehung zwischen Rechtssoziologie und Rechtsvergleichung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Benda-Beckmann</namePart>
+         <namePart type="family">Benda-Beckmann</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>ZvglRW</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>7851 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>L’apport du droit compare ä la sociologie juridique</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Carbonnier</namePart>
+         <namePart type="family">Carbonnier</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Livre du centenaire de la Societe de legislation comparee</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <place/>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>75 (83)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Strategy of Cross-National Survey Research for the Development of Social Theory</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Nowak</namePart>
+         <namePart type="family">Nowak</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>3 (9 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Interkulturelle Forschung in der Rechtssoziologie</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Rose</namePart>
+         <namePart type="family">Rose</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>171 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Probleme des interkulturellen Vergleichs in der Ethnologie</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Wirsing</namePart>
+         <namePart type="family">Wirsing</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Sociologus</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>25</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Situation actuelle et Programme de travail de Techno logie juridique</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Poirier</namePart>
+         <namePart type="family">Poirier</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Rev. int. Sc. Soc</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>22509 (526)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Elegant Models, Empirical Pictures, and the Complexities of Contract</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Macaulay</namePart>
+         <namePart type="family">Macaulay</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Law &amp; Soc. Rev</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>11507 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Comparative Sociology - In What Ways Different From Other Sociologies?</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Grimshau</namePart>
+         <namePart type="family">Grimshau</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>3 (18)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Introduction; Comparative Sociology — The State of the Art</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Tomasson</namePart>
+         <namePart type="family">Tomasson</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Comparative Studies in Sociology</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <place/>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>Vol. 11</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Comparative Survey Analysis — An Annotated Bibliography 1967 — 1973</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Almasy</namePart>
+         <namePart type="family">Almasy</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Balandier</namePart>
+         <namePart type="family">Balandier</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Delatte</namePart>
+         <namePart type="family">Delatte</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Comparative Sociology</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Marsh</namePart>
+         <namePart type="family">Marsh</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>375 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Les règles de la methode sociologique</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Durkheim</namePart>
+         <namePart type="family">Durkheim</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>137</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Comparative Sociology — Some Problems of Theory and Method</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart/>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Payne</namePart>
+         <namePart type="family">Payne</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Brit. J. Soc</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>2413 (15 ff.).</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Social Institutions - Comparative Method</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Eisenstadt</namePart>
+         <namePart type="family">Eisenstadt</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>International Encyclopedia of the Social Sciences</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>Bd. 14421 (423)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Methodische Probleme des interkulturellen Vergleichs</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Boesch</namePart>
+         <namePart type="family">Boesch</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Eckensberger</namePart>
+         <namePart type="family">Eckensberger</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Handbuch der Psychologie</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>Bd. Vll 1 (2. Auf514 (520 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>A Handbook of Method in Cultural Anthropology</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Intelligible Comparisons</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Zelditch</namePart>
+         <namePart type="family">Zelditch</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>267 (270 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Die soziologische Dimension der Rechtsvergleichung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Zweigert</namePart>
+         <namePart type="family">Zweigert</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>151 (159)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Comparative Law and Scientific Explanation</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Merryman</namePart>
+         <namePart type="family">Merryman</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Law in the United States of America in Social and Technological Revolution</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <place/>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>81 (89 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Sociologie juridique</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Carbonnier</namePart>
+         <namePart type="family">Carbonnier</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>188 N. 1</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Heidrich</namePart>
+         <namePart type="family">Heidrich</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Jahr buch für Rechtssoziologie und Rechtstheorie</title>
+         </titleInfo>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>3305 (330 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Strafrecht und vergleichende Kriminologie</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Kaiser</namePart>
+         <namePart type="family">Kaiser</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Strafrecht, Straf rechtsvergleichung</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>79 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Die Vergleichung als Methode der Strafrechtswissenschaft und der Kriminologie</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Villmow</namePart>
+         <namePart type="family">Villmow</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Albrecht</namePart>
+         <namePart type="family">Albrecht</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>MschrKrim</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>62163 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Ziele und Methoden der Rechtsvergleichung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>K. H. Neumayer</namePart>
+         <namePart type="family">Neumayer</namePart>
+         <namePart type="given">K.</namePart>
+         <namePart type="given">H.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Recueil des travaux suisses présentés au IXe Congrès international de droit compare</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>45 (48)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und Rechtsvergleichung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Rehbinder</namePart>
+         <namePart type="family">Rehbinder</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>56 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Sozialwissenschaftliche Aspekte der Rechtsvergleichung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Heidrich</namePart>
+         <namePart type="family">Heidrich</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>178 (186 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Patterns of Legal Culture as a Variable for the Chances of Legal Innovation</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Blankenburg</namePart>
+         <namePart type="family">Blankenburg</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>innovations in the Legal Services</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <place/>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Comparative Law and Social Theory</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>R. Abel</namePart>
+         <namePart type="family">Abel</namePart>
+         <namePart type="given">R.</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Am. J. Comp. L</title>
+         </titleInfo>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>26219 (224 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Some Comments on Comparative Methodologies in Criminal Justice</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Blazicek</namePart>
+         <namePart type="family">Blazicek</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Janeksela</namePart>
+         <namePart type="family">Janeksela</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Int. J. Crim. Pen</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>6233 (240)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Comparative Law and Social Change - On the Origins, Style, Decline and Revival of the Law and Development Movement</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Merryman</namePart>
+         <namePart type="family">Merryman</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Am. J. Comp. L</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>25457 (479)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Systemvergleich im Arbeitsrecht? Vorüberlegungen zu einigen Methodenfragen</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Däubler</namePart>
+         <namePart type="family">Däubler</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Demokratie und Recht</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>123 (31 ff.).</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Zur Vergleichbarkeit analoger Rechtsinstitute in verschiede nen Gesellschaftsordnungen</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Zweigert</namePart>
+         <namePart type="family">Zweigert</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Puttfarken</namePart>
+         <namePart type="family">Puttfarken</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Rechtsvergleichung</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>395 (402 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Blankenburg</namePart>
+         <namePart type="family">Blankenburg</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>HM discussion papers</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>235 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Methodology Problems and Possibilities in Comparative Research</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Armer</namePart>
+         <namePart type="family">Armer</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>49 (50 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Möglichkeiten und Probleme des Kulturvergleichs am Beispiel einer Agressionsstudie</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Trommsdorf</namePart>
+         <namePart type="family">Trommsdorf</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>KZfSS</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>30361 (364 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Juvenile Deliquency and Development</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Malewswka</namePart>
+         <namePart type="family">Malewswka</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Peyre</namePart>
+         <namePart type="family">Peyre</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>131 (157 f.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Cross-Cultural Use of Sample Surveys — Problems of Comparability</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Scheuch</namePart>
+         <namePart type="family">Scheuch</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>176 (185)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Der internationale Vergleich</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Biervert</namePart>
+         <namePart type="family">Biervert</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Techniken empirischer Sozialforschung</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>Bd. 2113 (124 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Uses of Survey Research in the Study of Comparative Politics — Issues and Strategies</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Verba</namePart>
+         <namePart type="family">Verba</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>56 (80)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Soziologische Ãœberlegungen zu einer Theorie der angewandten Rechtsvergleichung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Gessner</namePart>
+         <namePart type="family">Gessner</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>123 (134 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Social Theory and Social Structure</title>
+         <title>The OECD Social Indicator Development Programme - 1976 Progress Report on Phase II</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Merton</namePart>
+         <namePart type="family">Merton</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <publisher>OECD</publisher>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>82 ff40</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Marriage Stability, Divorce, and the Law</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Rheinstein</namePart>
+         <namePart type="family">Rheinstein</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Die Messung von Mitbestimmungsnormen — Darstellung eines international vergleichenden Forschungsansatzes</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Wilpert</namePart>
+         <namePart type="family">Wilpert</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <publisher>HM-Paper</publisher>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>13) 2 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Constantinesco</namePart>
+         <namePart type="family">Constantinesco</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Zeitschrift für Rechtsvergleichung</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>19161 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Über den Stil der „Stilthe orie" in der Rechtsvergleichung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Constantinesco</namePart>
+         <namePart type="family">Constantinesco</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>ZvglRW</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>78154 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Cultural Determinants of the Exercise of Power in a Hierarchy</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Hofstede</namePart>
+         <namePart type="family">Hofstede</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>European Institute for Advanced Studies in Management Working Paper</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>8</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Industrial Democracy in Europe</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>IDE-International Research Group</namePart>
+         <namePart type="family">Group</namePart>
+         <namePart type="given">IDE-International</namePart>
+         <namePart type="given">Research</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>Chapter VIII</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Die Rechtshonoratioren und ihr Einfluß auf Charakter und Funk tion der Rechtsordnungen</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Rheinstein</namePart>
+         <namePart type="family">Rheinstein</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>RabelsZ</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>341 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der Rechtsvergleichung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Bernstein</namePart>
+         <namePart type="family">Bernstein</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>RabelsZ</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>34443 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in Germany and the United States</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Ruescbemeyer</namePart>
+         <namePart type="family">Ruescbemeyer</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Legal Profession in Comparative Perspective</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>ders</namePart>
+         <namePart type="family">ders</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Social System and Legal Process</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <place/>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>97 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Politische Inhaltsanalyse von Rechtslehrertexten</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Klausa</namePart>
+         <namePart type="family">Klausa</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>ZfS</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>8362 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Analysis and Interpretation in Cross-National Survey Research</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Teune</namePart>
+         <namePart type="family">Teune</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>95 (101) ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Disputing Process — Law in Ten Societies</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Nader</namePart>
+         <namePart type="family">Nader</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Todd</namePart>
+         <namePart type="family">Todd</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Problem in der Kriminologie</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Kaiser</namePart>
+         <namePart type="family">Kaiser</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Comparative Crime Victimization Surveys — Some Problems and Results</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Clinard</namePart>
+         <namePart type="family">Clinard</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Int. J. Crim, and Pen</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>6221 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Legal Problems and the Citizen</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Abel-Smith</namePart>
+         <namePart type="family">Abel-Smith</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Zander</namePart>
+         <namePart type="family">Zander</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Brooke</namePart>
+         <namePart type="family">Brooke</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in International Comparison</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Rokumoto</namePart>
+         <namePart type="family">Rokumoto</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>ZfS</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>7228 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Rechtspro bleme oder private Schwierigkeiten — Die Inanspruchnahme von Rechtshilfe in den Nieder landen</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Schuyt</namePart>
+         <namePart type="family">Schuyt</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Groenendijk</namePart>
+         <namePart type="family">Groenendijk</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <name type="personal">
+         <namePart>Sloot</namePart>
+         <namePart type="family">Sloot</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Jahrbuch für Rechtssoziologie und Rechtstheorie</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>5109 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Comparative Studies on the Attitudes Towards Various Legal Systems</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Podgdrecki</namePart>
+         <namePart type="family">Podgdrecki</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Polish Sociological Bulletin</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>21 No. 183 (88 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Zur Effek tivität der Rechtssoziologie: die Rekonstruktion der Gesellschaft durch Recht</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Ziegen</namePart>
+         <namePart type="family">Ziegen</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>196 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Legal Consciousness as a Research Problem</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Podgdrecki</namePart>
+         <namePart type="family">Podgdrecki</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>European Yearbook in Law and Sociology 1977</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <place/>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>85 (88 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Legal Consciousness“: A Survey of Research on Knowledge and Opinion about Law</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Kutchinsky</namePart>
+         <namePart type="family">Kutchinsky</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Knowledge and Opinion about Law</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <place/>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>101 (126)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Public Opinion on Law</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Podgdrecki</namePart>
+         <namePart type="family">Podgdrecki</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Knowledge and Opinion about Law</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part/>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Interkultureller Vergleich</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Heintz</namePart>
+         <namePart type="family">Heintz</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Handbuch der empirischen Sozialfor schung</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>Bd. 4 (3. Aufl405 (414 f.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Über methodische und organisatorische Grenzen der empirischen Rechts forschung in Entwicklungsländern</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Hegenbarth</namePart>
+         <namePart type="family">Hegenbarth</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Informationsbrief für Rechtssoziologie</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>Son derheft 25 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Recht und Konflikt — Eine soziologische Untersuchungprivatrechtlicher Konflikte in Mexiko</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Gessner</namePart>
+         <namePart type="family">Gessner</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>37 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Problems in Comparative Criminology</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Friday</namePart>
+         <namePart type="family">Friday</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Int. J. Crim</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>1151 (152)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Vergleichende Sozialwissenschaft</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Rokkan</namePart>
+         <namePart type="family">Rokkan</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>9 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>The Organization and Execution of Cross-National Survey Research Projects</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Szalai</namePart>
+         <namePart type="family">Szalai</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo/>
+         <genre authority="marcgt"/>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>49 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Methodological Aspects of the Project „Local Legal Systems</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Blegvad</namePart>
+         <namePart type="family">Blegvad</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Sociology of Law and Legal Sciences</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <place/>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>97 (99 ff.)</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Die kritische Wertung in der Rechtsvergleichung</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">bookSection</genre>
+      <name type="personal">
+         <namePart>Zweigert</namePart>
+         <namePart type="family">Zweigert</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Festschrift für Schmitthoff</title>
+         </titleInfo>
+         <genre authority="marcgt">book</genre>
+         <originInfo>
+            <issuance>monographic</issuance>
+         </originInfo>
+         <part>403 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Rechtstatsachenforschung und Gesetzgebung — Hinweise zur Entwicklung einer Gesetzgebungssoziologie in Frank reich</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Dörner</namePart>
+         <namePart type="family">Dörner</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Interview und Analyse</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>377 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+   <mods>
+      <titleInfo>
+         <title>Recht und Konflikt — Mexiko und Afrika</title>
+      </titleInfo>
+      <typeOfResource>text</typeOfResource>
+      <genre authority="local" xml:lang="en">journalArticle</genre>
+      <genre authority="marcgt" xml:lang="en">article</genre>
+      <name type="personal">
+         <namePart>Bryde</namePart>
+         <namePart type="family">Bryde</namePart>
+         <role>
+            <roleTerm authority="marcrelator" type="code">aut</roleTerm>
+         </role>
+      </name>
+      <relatedItem type="host">
+         <titleInfo>
+            <title>Verfassung und Recht in Obersee</title>
+         </titleInfo>
+         <genre authority="marcgt">journal</genre>
+         <originInfo>
+            <issuance>continuing</issuance>
+         </originInfo>
+         <part>12159 ff</part>
+      </relatedItem>
+      <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
+   </mods>
+</modsCollection>
diff --git a/convert-anystyle-data/ris/10.1111_1467-6478.00057.ris b/convert-anystyle-data/ris/10.1111_1467-6478.00057.ris
new file mode 100644
index 0000000000000000000000000000000000000000..8765b6e88ffcfeb29a074f6abaadf710b7f5eb69
--- /dev/null
+++ b/convert-anystyle-data/ris/10.1111_1467-6478.00057.ris
@@ -0,0 +1,373 @@
+TY  - CHAP
+AU  - Phillips, A. Phillips A.
+TI  - Citizenship and Feminist Politics
+BT  - Citizenship
+ID  - ref1
+ER  - 
+TY  - JOUR
+AU  - Brennan, T. Brennan T.
+AU  - Pateman, C. Pateman C.
+TI  - Mere Auxiliaries to the Commonwealth”: Women and the Origins of Liberalism
+JO  - Political Studies
+ID  - ref2
+ER  - 
+TY  - JOUR
+AU  - Sawer, M. Sawer M.
+AU  - Simms, M. Simms M.
+TI  - A Woman’s Place: Women and Politics in Australia
+ID  - ref3
+ER  - 
+TY  - CHAP
+TI  - Embodying the Citizen
+BT  - Public and Private: Feminist Legal Debates
+ID  - ref4
+ER  - 
+TY  - JOUR
+TI  - Historicising Citizenship: Remembering Broken Promises
+JO  - Melbourne University Law Rev
+ID  - ref5
+ER  - 
+TY  - JOUR
+AU  - Walby, S. Walby S.
+TI  - Is Citizenship Gendered?
+JO  - Sociology
+ID  - ref6
+ER  - 
+TY  - CHAP
+AU  - Kant, I. Kant I.
+TI  - Metaphysical First Principles of the Doctrine of Right
+BT  - The Metaphysics of Morals
+ID  - ref7
+ER  - 
+TY  - CHAP
+AU  - Vogel, U. Vogel U.
+TI  - Marriage and the Boundaries of Citizenship
+BT  - The Condition of Citizenship
+ID  - ref8
+ER  - 
+TY  - JOUR
+AU  - Fraser, N. Fraser N.
+AU  - Gordon, L. Gordon L.
+TI  - Civil Citizenship against Social Citizenship?
+ID  - ref9
+ER  - 
+TY  - JOUR
+AU  - Blackstone, W. Blackstone W.
+TI  - Commentaries
+ID  - ref10
+ER  - 
+TY  - JOUR
+TI  - Female Sexualization: A Collective Work of Memory
+ID  - ref11
+ER  - 
+TY  - JOUR
+AU  - Bottomley, A. Bottomley A.
+TI  - Self and Subjectivities: Languages of Claim in Property Law
+JO  - J. of Law and Society
+ID  - ref12
+ER  - 
+TY  - JOUR
+AU  - West, D. West D.
+TI  - Power and Formation: New Foundations for a Radical Concept of Power
+ID  - ref13
+ER  - 
+TY  - JOUR
+TI  - Inquiry 137
+ID  - ref14
+ER  - 
+TY  - JOUR
+AU  - Foucault, M. Foucault M.
+TI  - Power/Knowledge: Selected Interviews and Other Writings 1972–1977
+ID  - ref15
+ER  - 
+TY  - JOUR
+AU  - Mossman, M.J. Mossman M.J.
+TI  - Feminism, and Legal Method: The Difference it Makes
+JO  - Aust. J. of Law and Society
+ID  - ref16
+ER  - 
+TY  - JOUR
+AU  - Maine, H.S. Maine H.S.
+TI  - Ancient Law: Its Connection with the Early History of Society and its Relation to Modern Ideas
+ID  - ref17
+ER  - 
+TY  - JOUR
+AU  - Horwitz, M.J. Horwitz M.J.
+TI  - The Transformation of American Law, 1780–1860
+ID  - ref18
+ER  - 
+TY  - JOUR
+AU  - Grossberg, M. Grossberg M.
+TI  - Governing the Hearth: Law and the Family in Nineteenth-Century America
+ID  - ref19
+ER  - 
+TY  - JOUR
+AU  - Staves, S. Staves S.
+TI  - Married Women’s Separate Property in England, 1660–1833
+ID  - ref20
+ER  - 
+TY  - JOUR
+AU  - Siegel, R.B. Siegel R.B.
+TI  - The Rule of Love”: Wife Beating as Prerogative and Privacy
+JO  - Yale Law J
+ID  - ref21
+ER  - 
+TY  - JOUR
+AU  - Pateman, C. Pateman C.
+TI  - The Sexual Contract
+ID  - ref22
+ER  - 
+TY  - JOUR
+AU  - O’Donovan, K. O’Donovan K.
+TI  - Family Matters
+ID  - ref23
+ER  - 
+TY  - JOUR
+TI  - All E.R
+ID  - ref24
+ER  - 
+TY  - CHAP
+AU  - Freeman, M. Freeman M.
+TI  - Contracting in the Haven: Balfour v. Balfour Revisited
+BT  - Exploring the Boundaries of Contract
+ID  - ref25
+ER  - 
+TY  - JOUR
+AU  - Collier, R. Collier R.
+TI  - Masculinity, Law and the Family
+ID  - ref26
+ER  - 
+TY  - JOUR
+AU  - Atiyah, P.S. Atiyah P.S.
+TI  - An Introduction to the Law of Contract
+ID  - ref27
+ER  - 
+TY  - JOUR
+AU  - A.L.R.C, A.L.R.C
+TI  - A.L.R.C., Matrimonial Property Report of the Joint Select Committee on Certain Aspects of the Operation and Interpretation of the Family Law Act
+JO  - report no. 37
+ID  - ref28
+ER  - 
+TY  - CHAP
+AU  - Neave, M. Neave M.
+TI  - Private Ordering in Family Law – Will Women Benefit?
+BT  - Thornton
+ID  - ref29
+ER  - 
+TY  - JOUR
+AU  - Dalton, C. Dalton C.
+TI  - An Essay in the Deconstruction of Contract Doctrine
+JO  - Yale Law J
+ID  - ref30
+ER  - 
+TY  - JOUR
+AU  - Weitzman, L. J. Weitzman L. J.
+TI  - The Marriage Contract: Spouses, Lovers, and the Law
+ID  - ref31
+ER  - 
+TY  - JOUR
+AU  - Regan, M.C. Regan M.C.
+TI  - Family Law and the Pursuit of Intimacy
+ID  - ref32
+ER  - 
+TY  - JOUR
+AU  - Frost, G.S. Frost G.S.
+TI  - Promises Broken: Courtship, Class, and Gender in Victorian England (1995)
+ID  - ref33
+ER  - 
+TY  - CHAP
+AU  - Vogel, U. Vogel U.
+TI  - Is Citizenship Gender-Specific?
+BT  - The Frontiers of Citizenship
+ID  - ref34
+ER  - 
+TY  - JOUR
+AU  - Pahl, J. Pahl J.
+TI  - Money and Marriage
+ID  - ref35
+ER  - 
+TY  - JOUR
+AU  - S. Parker, P. Parkinson S. Parker P. Parkinson
+AU  - Behrens, J. Behrens J.
+TI  - Australian Family Law in Context: Commentary and Materials
+ID  - ref36
+ER  - 
+TY  - JOUR
+AU  - Oldham, J.T. Oldham J.T.
+TI  - Management of the Community Estate during an Intact Marriage
+JO  - Law and Contemporary Problems
+ID  - ref37
+ER  - 
+TY  - JOUR
+AU  - Donahue, C. Donahue C.
+TI  - What Causes Fundamental Legal Ideas? Marital Property in England and France in the Thirteenth Century’
+JO  - Michigan Law Rev
+ID  - ref38
+ER  - 
+TY  - JOUR
+AU  - Naffine, N. Naffine N.
+TI  - Sexing the Subject (of Law)
+ID  - ref39
+ER  - 
+TY  - JOUR
+TI  - Contracts Review Act
+ID  - ref40
+ER  - 
+TY  - JOUR
+AU  - Nedelsky, J. Nedelsky J.
+TI  - Private Property and the Limits of American Constitutionalism: The Madisonian Framework and its Legacy
+ID  - ref41
+ER  - 
+TY  - JOUR
+AU  - Macpherson, C.B. Macpherson C.B.
+TI  - Democratic Theory: Essays in Retrieval
+ID  - ref42
+ER  - 
+TY  - JOUR
+AU  - Howell, N. Howell N.
+TI  - Sexually Transmitted Debt”: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers
+JO  - Aust. Feminist Law J
+ID  - ref43
+ER  - 
+TY  - JOUR
+AU  - Baron, P. Baron P.
+TI  - The Free Exercise of Her Will: Women and Emotionally Transmitted Debt
+JO  - Law in Context
+ID  - ref44
+ER  - 
+TY  - JOUR
+AU  - Fehlberg, B. Fehlberg B.
+TI  - The Husband, the Bank, the Wife and Her Signature
+JO  - Modern Law Rev
+ID  - ref45
+ER  - 
+TY  - JOUR
+AU  - Richardson, M. Richardson M.
+TI  - Protecting Women who provide Security for a Husband’s, Partner’s or Child’s Debts. The Value and Limits of an Economic Perspective’
+JO  - Legal Studies
+ID  - ref46
+ER  - 
+TY  - JOUR
+AU  - Fehlberg, B. Fehlberg B.
+TI  - The Husband, the Bank, the Wife and Her Signature – the Sequel
+JO  - Modern Law Rev
+ID  - ref47
+ER  - 
+TY  - JOUR
+TI  - N.S.W.L.R
+ID  - ref48
+ER  - 
+TY  - JOUR
+AU  - Hardingham, I.J. Hardingham I.J.
+AU  - Neave, M.A. Neave M.A.
+TI  - Australian Family Property Law
+ID  - ref49
+ER  - 
+TY  - JOUR
+AU  - O’Donovan, K. O’Donovan K.
+TI  - Sexual Divisions in Law
+ID  - ref50
+ER  - 
+TY  - JOUR
+AU  - Reich, C.A. Reich C.A.
+TI  - The New Property
+JO  - Yale Law J
+ID  - ref51
+ER  - 
+TY  - JOUR
+AU  - Glendon, M.A. Glendon M.A.
+TI  - The New Family and the New Property
+ID  - ref52
+ER  - 
+TY  - JOUR
+AU  - Parkinson, P. Parkinson P.
+TI  - Property Rights and Third Party Creditors – the Scope and Limitations of Equitable Doctrines
+JO  - Australian J. Family Law
+ID  - ref53
+ER  - 
+TY  - JOUR
+AU  - Riley, J. Riley J.
+TI  - The Property Rights of Home-Makers under General Law: Bryson v. Bryant
+JO  - Sydney Law Rev
+ID  - ref54
+ER  - 
+TY  - JOUR
+AU  - Lindenmayer, Justice T. E. Lindenmayer Justice T. E.
+AU  - Doolan, P.A. Doolan P.A.
+TI  - When Bankruptcy and Family Law Collide
+JO  - Aust. J. Family Law
+ID  - ref55
+ER  - 
+TY  - JOUR
+AU  - Bennett, B. Bennett B.
+TI  - The Economics of Wifing Services: Law and Economics on the Family
+JO  - J. of Law and Society
+ID  - ref56
+ER  - 
+TY  - JOUR
+AU  - Weitzman, L.J. Weitzman L.J.
+TI  - The Divorce Revolution: The Unexpected Social and Economic Consequences for Women and Children in America
+ID  - ref57
+ER  - 
+TY  - JOUR
+AU  - Shanley, M.L. Shanley M.L.
+TI  - Feminism, Marriage, and the Law in Victorian England, 1850–1895
+ID  - ref58
+ER  - 
+TY  - CHAP
+AU  - Neave, M. Neave M.
+TI  - Three Approaches to Family Law Disputes – Intention/Belief, Unjust Enrichment and Unconscionability’
+BT  - Equity, Fiduciaries and Trusts
+ID  - ref59
+ER  - 
+TY  - JOUR
+AU  - Sarmas, L. Sarmas L.
+TI  - Storytelling and the Law: A Case Study of Louth v. Diprose
+JO  - Melbourne University Law Rev
+ID  - ref60
+ER  - 
+TY  - JOUR
+AU  - Colebrook, C. Colebrook C.
+TI  - Feminist Ethics and Historicism
+JO  - Aust. Feminist Studies
+ID  - ref61
+ER  - 
+TY  - JOUR
+AU  - Fineman, M. Albertson Fineman M. Albertson
+TI  - The Neutered Mother, the Sexual Family and Other Twentieth Century Tragedies
+ID  - ref62
+ER  - 
+TY  - JOUR
+AU  - O’Donovan, K. O’Donovan K.
+TI  - Should all Maintenance of Spouses be abolished?
+JO  - Modern Law Rev
+ID  - ref63
+ER  - 
+TY  - JOUR
+AU  - Freeman, M.D.A. Freeman M.D.A.
+AU  - Lyon, C.M. Lyon C.M.
+TI  - Cohabitation without Marriage: An Essay in Law and Social Policy
+ID  - ref64
+ER  - 
+TY  - JOUR
+AU  - Commission, New South Wales Law Reform Commission New South Wales Law Reform
+TI  - De Facto Relationships: Issues Paper
+ID  - ref65
+ER  - 
+TY  - JOUR
+AU  - Review, Eds. of the Harvard Law Review Eds. of the Harvard Law
+TI  - Sexual Orientation and the Law
+ID  - ref66
+ER  - 
+TY  - JOUR
+AU  - Overington, C. Overington C.
+TI  - Why can’t They Marry?
+JO  - The Age
+ID  - ref67
+ER  - 
+TY  - JOUR
+AU  - Lesbian, Lesbian
+AU  - Service, Gay Rights Service Gay Rights
+TI  - The Bride Wore Pink; Legal Recognition of Our Relationships
+ID  - ref68
+ER  - 
diff --git a/convert-anystyle-data/ris/10.1111_1467-6478.00080.ris b/convert-anystyle-data/ris/10.1111_1467-6478.00080.ris
new file mode 100644
index 0000000000000000000000000000000000000000..20d05a92d188245307c278a9abda9aa6682639df
--- /dev/null
+++ b/convert-anystyle-data/ris/10.1111_1467-6478.00080.ris
@@ -0,0 +1,228 @@
+TY  - CHAP
+AU  - Jones, G. Jones G.
+TI  - “Traditional” Legal Scholarship: a Personal View
+BT  - What Are Law Schools For?
+ID  - ref1
+ER  - 
+TY  - JOUR
+AU  - Goff, R. Goff R.
+TI  - The Search for Principle
+JO  - Proceeedings of the British Academy
+ID  - ref2
+ER  - 
+TY  - JOUR
+AU  - Dicey, A. Dicey A.
+TI  - Can English Law be taught at the Universities?
+ID  - ref3
+ER  - 
+TY  - JOUR
+AU  - Smith, J. Smith J.
+TI  - The Law of Contract
+ID  - ref4
+ER  - 
+TY  - JOUR
+AU  - Kennedy, D. Kennedy D.
+TI  - Form and substance in Private Law Ajudication
+JO  - Harvard Law Rev
+ID  - ref5
+ER  - 
+TY  - JOUR
+AU  - Hepple, B. Hepple B.
+TI  - The Renewal of the Liberal Law Degree
+JO  - Cambridge Law J
+ID  - ref6
+ER  - 
+TY  - CHAP
+AU  - Thomas, P.A. Thomas P.A.
+TI  - Introduction
+BT  - Socio-Legal Studies
+ID  - ref7
+ER  - 
+TY  - JOUR
+AU  - Cotterrell, R. Cotterrell R.
+TI  - Law’s Community
+ID  - ref8
+ER  - 
+TY  - JOUR
+TI  - Company Law
+PB  - S. Wheeler
+ID  - ref9
+ER  - 
+TY  - JOUR
+AU  - Marre’s, Marre’s
+TI  - report A Time for Change Report of the Committee on Legal Education
+ID  - ref10
+ER  - 
+TY  - JOUR
+TI  - The Robbins report on higher education, Higher Education
+ID  - ref11
+ER  - 
+TY  - JOUR
+AU  - Education, Committee of Inquiry into Higher Education Committee of Inquiry into Higher
+TI  - Higher Education in the learning society
+ID  - ref12
+ER  - 
+TY  - JOUR
+AU  - ACLEC, ACLEC
+TI  - First Report on Legal Education and Training
+ID  - ref13
+ER  - 
+TY  - JOUR
+AU  - Bradney, A. Bradney A.
+AU  - Cownie, F. Cownie F.
+TI  - Working on the Chain Gang?
+JO  - Contemporary Issues in Law
+ID  - ref14
+ER  - 
+TY  - JOUR
+AU  - J. MacFarlane, M. Jeeves J. MacFarlane M. Jeeves
+AU  - Boon, A. Boon A.
+TI  - Education for Life or for Work?
+JO  - New Law J
+ID  - ref15
+ER  - 
+TY  - CHAP
+AU  - Huxley, T.H. Huxley T.H.
+TI  - Universities: Actual and Ideal
+BT  - T.H. Huxley, Collected Essays
+ID  - ref16
+ER  - 
+TY  - CHAP
+AU  - Mill, J.S. Mill J.S.
+TI  - Inaugural address to the University of St Andrews
+BT  - Collected Work of John Stuart Mill: Volume
+ID  - ref17
+ER  - 
+TY  - JOUR
+AU  - Leavis, F.R. Leavis F.R.
+TI  - Education and the University
+ID  - ref18
+ER  - 
+TY  - CHAP
+AU  - Bradney, A. Bradney A.
+TI  - Liberalising Legal Education
+BT  - The Law School: Global Issues, Local Questions
+ID  - ref19
+ER  - 
+TY  - JOUR
+AU  - Goodrich, P. Goodrich P.
+TI  - Of Blackstone’s Tower: Metephors of Distance and Histories of the English Law School
+JO  - S. Turow, One L
+ID  - ref20
+ER  - 
+TY  - JOUR
+AU  - Kahn-Freund, O. Kahn-Freund O.
+TI  - Reflections on Legal Education
+JO  - Modern Law Rev
+ID  - ref21
+ER  - 
+TY  - JOUR
+AU  - King, M. King M.
+TI  - The New English Literatures
+ID  - ref22
+ER  - 
+TY  - JOUR
+TI  - Jurisprudence by Sir John Salmond
+ID  - ref23
+ER  - 
+TY  - JOUR
+AU  - Durkheim, E. Durkheim E.
+TI  - The Division of Labour in Society
+ID  - ref24
+ER  - 
+TY  - JOUR
+AU  - Le Brun, M. Le Brun M.
+AU  - Johnstone, R. Johnstone R.
+TI  - The Quiet Revolution: Improving Student Learning in Law
+ID  - ref25
+ER  - 
+TY  - JOUR
+TI  - Define and Empower: Women Students Consider Feminist Learning
+JO  - Law and Critique
+ID  - ref26
+ER  - 
+TY  - JOUR
+AU  - Conklin, W. Conklin W.
+TI  - The Invisible Author of Legal Authority
+JO  - Law and Critique
+ID  - ref27
+ER  - 
+TY  - JOUR
+AU  - Collier, R. Collier R.
+TI  - Masculinism, Law and Law Teaching
+JO  - International J. of the Sociology of Law
+ID  - ref28
+ER  - 
+TY  - JOUR
+AU  - McAuslan, P. McAuslan P.
+TI  - Administrative Law, Collective Consumption and Judicial Policy
+JO  - Modern Law Rev
+ID  - ref29
+ER  - 
+TY  - JOUR
+AU  - Samuelson, P. Samuelson P.
+TI  - The Convergence of the Law School and the University
+JO  - The Am. Scholar
+ID  - ref30
+ER  - 
+TY  - JOUR
+AU  - Harris, P. Harris P.
+AU  - Jones, M. Jones M.
+TI  - A Survey of Law Schools in the United Kingdom, 1996
+JO  - The Law Teacher
+ID  - ref31
+ER  - 
+TY  - JOUR
+AU  - Wilson, J. Wilson J.
+TI  - A third survey of university legal education
+JO  - Legal Studies
+ID  - ref32
+ER  - 
+TY  - JOUR
+AU  - P. Leighton, T. Mortimer P. Leighton T. Mortimer
+AU  - Whatley, N. Whatley N.
+TI  - Law Teachers: Lawyers or Academics?
+ID  - ref33
+ER  - 
+TY  - JOUR
+AU  - Skwarok, L. Skwarok L.
+TI  - Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and Assessment at Hong Kong Polytechnic University
+JO  - The Law Teacher
+ID  - ref34
+ER  - 
+TY  - JOUR
+AU  - Bastin, N. Bastin N.
+TI  - Law, Law Staff and CNAA Business Studies Degree Courses
+JO  - The Law Teacher
+ID  - ref35
+ER  - 
+TY  - JOUR
+AU  - Ridley, A. Ridley A.
+TI  - Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion?
+JO  - The Law Teacher
+ID  - ref36
+ER  - 
+TY  - JOUR
+AU  - Cartan, G. Cartan G.
+AU  - Vilkinas, T. Vilkinas T.
+TI  - Legal Literacy for Managers: The Role of the Educator
+JO  - The Law Teacher
+ID  - ref37
+ER  - 
+TY  - CHAP
+AU  - Birks, P. Birks P.
+TI  - Short Cuts
+BT  - Pressing Problems in the Law
+ID  - ref38
+ER  - 
+TY  - JOUR
+AU  - Harris, P. Harris P.
+TI  - Curriculum Development in Legal Studies
+JO  - The Law Teacher
+ID  - ref39
+ER  - 
+TY  - JOUR
+AU  - Steiner, G. Steiner G.
+TI  - Errata: An Examined Life
+ID  - ref40
+ER  - 
diff --git a/convert-anystyle-data/ris/10.1515_zfrs-1980-0103.ris b/convert-anystyle-data/ris/10.1515_zfrs-1980-0103.ris
new file mode 100644
index 0000000000000000000000000000000000000000..681433c71d71431a85ef97fc10a14df55d574b05
--- /dev/null
+++ b/convert-anystyle-data/ris/10.1515_zfrs-1980-0103.ris
@@ -0,0 +1,209 @@
+TY  - JOUR
+AU  - Baumgärtei, Gottfried Baumgärtei Gottfried
+TI  - Gleicher Zugang zum Recht für alle.
+ID  - ref1
+ER  - 
+TY  - JOUR
+AU  - Bender, Rolf Bender Rolf
+AU  - Schumacher, Rolf Schumacher Rolf
+TI  - Erfolgsbarrieren vor Gericht.
+ID  - ref2
+ER  - 
+TY  - JOUR
+AU  - Black, Donald Black Donald
+TI  - The Mobilization of Law
+JO  - Journal of Legal Studies
+ID  - ref3
+ER  - 
+TY  - CHAP
+AU  - Blankenburg, Erhard Blankenburg Erhard
+AU  - Blankenburg, Viola Blankenburg Viola
+AU  - Morasch, Helmut Morasch Helmut
+TI  - Der lange Weg in die Berufung
+BT  - Tatsachenforschung in der Justiz
+ID  - ref4
+ER  - 
+TY  - JOUR
+AU  - Blankenburg, Erhard Blankenburg Erhard
+TI  - Nichtkriminalisierung als Struktur und Routine Hans und Günter Kaiser: Kriminologie und Strafverfahren.
+ID  - ref5
+ER  - 
+TY  - JOUR
+AU  - Blankenburg, Erhard Blankenburg Erhard
+AU  - Sessar, Klaus Sessar Klaus
+AU  - Steffen, Wiebke Steffen Wiebke
+TI  - Die Staatsanwaltschaft im Prozeß strafrechtlicher Sozialkontrolle.
+ID  - ref6
+ER  - 
+TY  - JOUR
+AU  - Blankenburg, Erhard Blankenburg Erhard
+AU  - Schönholz, Siegfried Schönholz Siegfried
+TI  - Zur Soziologie des Arbeitsgerichtsverfahrens.
+ID  - ref7
+ER  - 
+TY  - CHAP
+AU  - Blankenburg, Erhard Blankenburg Erhard
+TI  - Recht als gradualisiertes Konzept
+BT  - Alternative Rechtsformen und Alternativen zum Recht Jahrbuch für Rechtssoziologie und Rechtstheorie
+ID  - ref8
+ER  - 
+TY  - JOUR
+AU  - Carlin, Jerome- Carlin Jerome-
+AU  - Messinger, Sheldon Messinger Sheldon
+TI  - Civil Justice and the Poor.
+ID  - ref9
+ER  - 
+TY  - JOUR
+AU  - Richard, Richard
+AU  - Lowy, Michael Lowy Michael
+TI  - Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner
+JO  - Law and Society Review
+ID  - ref10
+ER  - 
+TY  - JOUR
+AU  - Feest, Johannes Feest Johannes
+AU  - Blankenburg, Erhard Blankenburg Erhard
+TI  - Die Definitionsmacht der Polizei.
+ID  - ref11
+ER  - 
+TY  - JOUR
+AU  - Felstiner, William L. F Felstiner William L. F
+TI  - Influences of Social Organization on Dispute processing
+JO  - Law and Society Review
+ID  - ref12
+ER  - 
+TY  - JOUR
+AU  - Felstiner, William L. F Felstiner William L. F
+TI  - Avoidance as Dispute Processing: An Elaboration
+JO  - Law and Society Review
+ID  - ref13
+ER  - 
+TY  - JOUR
+AU  - Galanter, Marc Galanter Marc
+TI  - Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change
+JO  - Law and Society Review
+ID  - ref14
+ER  - 
+TY  - JOUR
+AU  - Geiger, Theodor Geiger Theodor
+TI  - Vorstudien zu einer Soziologie des Rechts.
+ID  - ref15
+ER  - 
+TY  - JOUR
+AU  - Neuwied. Gessner, Volkmar Neuwied. Gessner Volkmar
+TI  - Recht und Konflikt.
+ID  - ref16
+ER  - 
+TY  - JOUR
+AU  - Hilden, Hartmut Hilden Hartmut
+TI  - Rechtstatsachen im Räumungsstreit. Frankfurt/Main.
+ID  - ref17
+ER  - 
+TY  - CHAP
+AU  - Johnson, Earl Johnson Earl
+TI  - Thinking about Access: A Preliminary Typology of Possible Strategies.
+BT  - Access to Justice
+ID  - ref18
+ER  - 
+TY  - JOUR
+AU  - Koch, Hartmut Koch Hartmut
+TI  - Das Gerichtsverfahren als Konfliktlösungsprozeß — Einstellung von Klägern und Beklagten zu Mietprozessen.
+ID  - ref19
+ER  - 
+TY  - JOUR
+AU  - Luhmann, Niklas Luhmann Niklas
+TI  - Legitimation durch Verfahren.
+ID  - ref20
+ER  - 
+TY  - CHAP
+AU  - Luhmann, Niklas Luhmann Niklas
+TI  - Kommunikation über Recht in Interaktionssystemen
+BT  - Alternative Rechtsformen und Alternativen zum Recht Jahrbuch für Rechtssoziologie und Rechtstheorie
+ID  - ref21
+ER  - 
+TY  - JOUR
+AU  - Reifner, Udo Reifner Udo
+TI  - Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative
+ID  - ref22
+ER  - 
+TY  - JOUR
+AU  - Reifner, Udo Reifner Udo
+TI  - Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945.
+ID  - ref23
+ER  - 
+TY  - CHAP
+AU  - Reifner, Udo Reifner Udo
+AU  - Gorges, Irmela Gorges Irmela
+TI  - Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe
+BT  - Alternative Rechtsformen und Alternativen zum Recht Jahrbuch für Rechtssoziologie und Rechtstheorie
+ID  - ref24
+ER  - 
+TY  - JOUR
+AU  - Sarat, Sarat
+TI  - Alternatives in Dispute Processing in a Small Claim Court
+JO  - Law and Society Review
+ID  - ref25
+ER  - 
+TY  - CHAP
+AU  - Schönholz, Siegfried Schönholz Siegfried
+TI  - Arbeitsplatzsicherung oder Kompensation - Rechtliche Formen des Bestandsschutzes im Vergleich
+BT  - Arbeitslosigkeit und Recht
+ID  - ref26
+ER  - 
+TY  - JOUR
+AU  - Steinbach, E Steinbach E.
+TI  - GMD-Bericht, Manuskript. Gesellschaft für Mathematik und Datenverarbeitung.
+ID  - ref27
+ER  - 
+TY  - JOUR
+AU  - Wanner, Craig Wanner Craig
+TI  - The Public Ordering of Private Cases; Winning Civil Court Cases
+JO  - Law and Society Review
+ID  - ref28
+ER  - 
+TY  - JOUR
+AU  - ich, ich
+TI  - Nichtkriminalisierung als Struktur und Routine
+ID  - ref29
+ER  - 
+TY  - JOUR
+AU  - MacNaughton-Smith, Peter MacNaughton-Smith Peter
+AU  - Rosellen, Richard Rosellen Richard
+TI  - Bereitschaft zur Anzeigeerstattung
+ID  - ref30
+ER  - 
+TY  - JOUR
+AU  - Rosellen, Richard Rosellen Richard
+TI  - Private Verbrechenskontrolle — eine empirische Untersuchung zur Anzeigeerstattung
+ID  - ref31
+ER  - 
+TY  - JOUR
+AU  - Wiesbaden, Statistisches Bundesamt Wiesbaden Statistisches Bundesamt
+TI  - Fachserie 10 (Rechtspflege) Reihe 2.1, Tabelle 10
+ID  - ref32
+ER  - 
+TY  - JOUR
+AU  - Blankenburg, Blankenburg
+AU  - Gorges, Gorges
+AU  - Reifner, Reifner
+AU  - Ticmann)., Ticmann).
+TI  - Projektbericht ,Rechtshilfebedürfnisse sozial Schwacher
+ID  - ref33
+ER  - 
+TY  - JOUR
+AU  - Blankenburg, Blankenburg
+AU  - Fiedler, Fiedler
+TI  - Projektbericht Rechtsschutzversicherung*.
+ID  - ref34
+ER  - 
+TY  - JOUR
+TI  - Recht als gradualisiertes Konzept
+ID  - ref35
+ER  - 
+TY  - JOUR
+AU  - Felstiner, Felstiner
+AU  - Danzig, Danzig
+AU  - Lowy, Lowy
+TI  - Law and Society Review
+ID  - ref36
+ER  - 
diff --git a/convert-anystyle-data/ris/10.1515_zfrs-1980-0104.ris b/convert-anystyle-data/ris/10.1515_zfrs-1980-0104.ris
new file mode 100644
index 0000000000000000000000000000000000000000..f138d967a6ff134566aff4529505f08f424cd16b
--- /dev/null
+++ b/convert-anystyle-data/ris/10.1515_zfrs-1980-0104.ris
@@ -0,0 +1,467 @@
+TY  - JOUR
+TI  - Rechtssoziologie und Rechtsvergleichung
+ID  - ref1
+ER  - 
+TY  - JOUR
+TI  - Compa rative Research Across Cultures and Nations
+ID  - ref2
+ER  - 
+TY  - JOUR
+AU  - Smelser, Smelser
+TI  - Comparative Sutvey Analysis Comparative Methods in the Social Sciences
+ID  - ref3
+ER  - 
+TY  - JOUR
+AU  - Englewood Cliffs, N. J Englewood Cliffs N. J.
+TI  - Cross National Comparative Survey Research
+ID  - ref4
+ER  - 
+TY  - JOUR
+AU  - Zweigert, Zweigert
+AU  - Kötz, Kötz
+TI  - Comparative Methods in Sociology Einführung in die Rechtsvergleichung
+ID  - ref5
+ER  - 
+TY  - JOUR
+AU  - Rabel, Rabel
+TI  - Aufgabe und Notwendigkeit der Rechtsvergleichung
+ID  - ref6
+ER  - 
+TY  - JOUR
+AU  - Rabel, Rabel
+TI  - Gesammelte Aufsätze
+ID  - ref7
+ER  - 
+TY  - JOUR
+AU  - Abel, R. Abel R.
+TI  - Law Books and Books About Law
+JO  - Stanford Law Rev
+ID  - ref8
+ER  - 
+TY  - JOUR
+AU  - Benda-Beckmann, Benda-Beckmann
+TI  - Einige Anmerkungen über die Beziehung zwischen Rechtssoziologie und Rechtsvergleichung
+JO  - ZvglRW
+ID  - ref9
+ER  - 
+TY  - CHAP
+AU  - Carbonnier, Carbonnier
+TI  - L’apport du droit compare ä la sociologie juridique
+BT  - Livre du centenaire de la Societe de legislation comparee
+ID  - ref10
+ER  - 
+TY  - JOUR
+AU  - Nowak, Nowak
+TI  - The Strategy of Cross-National Survey Research for the Development of Social Theory
+ID  - ref11
+ER  - 
+TY  - JOUR
+AU  - Rose, Rose
+TI  - Interkulturelle Forschung in der Rechtssoziologie
+ID  - ref12
+ER  - 
+TY  - JOUR
+AU  - Wirsing, Wirsing
+TI  - Probleme des interkulturellen Vergleichs in der Ethnologie
+JO  - Sociologus
+ID  - ref13
+ER  - 
+TY  - JOUR
+AU  - Poirier, Poirier
+TI  - Situation actuelle et Programme de travail de Techno logie juridique
+JO  - Rev. int. Sc. Soc
+ID  - ref14
+ER  - 
+TY  - JOUR
+AU  - Macaulay, Macaulay
+TI  - Elegant Models, Empirical Pictures, and the Complexities of Contract
+JO  - Law & Soc. Rev
+ID  - ref15
+ER  - 
+TY  - JOUR
+AU  - Grimshau, Grimshau
+TI  - Comparative Sociology - In What Ways Different From Other Sociologies?
+ID  - ref16
+ER  - 
+TY  - CHAP
+AU  - Tomasson, Tomasson
+TI  - Introduction; Comparative Sociology — The State of the Art
+BT  - Comparative Studies in Sociology
+ID  - ref17
+ER  - 
+TY  - JOUR
+AU  - Almasy, Almasy
+AU  - Balandier, Balandier
+AU  - Delatte, Delatte
+TI  - Comparative Survey Analysis — An Annotated Bibliography 1967 — 1973
+ID  - ref18
+ER  - 
+TY  - JOUR
+AU  - Marsh, Marsh
+TI  - Comparative Sociology
+ID  - ref19
+ER  - 
+TY  - JOUR
+AU  - Durkheim, Durkheim
+TI  - Les règles de la methode sociologique
+ID  - ref20
+ER  - 
+TY  - JOUR
+AU  - Payne, Payne
+TI  - Comparative Sociology — Some Problems of Theory and Method
+JO  - Brit. J. Soc
+ID  - ref21
+ER  - 
+TY  - JOUR
+AU  - Eisenstadt, Eisenstadt
+TI  - Social Institutions - Comparative Method
+JO  - International Encyclopedia of the Social Sciences
+ID  - ref22
+ER  - 
+TY  - CHAP
+AU  - Boesch, Boesch
+AU  - Eckensberger, Eckensberger
+TI  - Methodische Probleme des interkulturellen Vergleichs
+BT  - Handbuch der Psychologie
+ID  - ref23
+ER  - 
+TY  - JOUR
+TI  - A Handbook of Method in Cultural Anthropology
+ID  - ref24
+ER  - 
+TY  - JOUR
+AU  - Zelditch, Zelditch
+TI  - Intelligible Comparisons
+ID  - ref25
+ER  - 
+TY  - JOUR
+AU  - Zweigert, Zweigert
+TI  - Die soziologische Dimension der Rechtsvergleichung
+ID  - ref26
+ER  - 
+TY  - CHAP
+AU  - Merryman, Merryman
+TI  - Comparative Law and Scientific Explanation
+BT  - Law in the United States of America in Social and Technological Revolution
+ID  - ref27
+ER  - 
+TY  - JOUR
+AU  - Carbonnier, Carbonnier
+TI  - Sociologie juridique
+ID  - ref28
+ER  - 
+TY  - JOUR
+AU  - Heidrich, Heidrich
+TI  - Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels
+JO  - Jahr buch für Rechtssoziologie und Rechtstheorie
+ID  - ref29
+ER  - 
+TY  - CHAP
+AU  - Kaiser, Kaiser
+TI  - Strafrecht und vergleichende Kriminologie
+BT  - Strafrecht, Straf rechtsvergleichung
+ID  - ref30
+ER  - 
+TY  - JOUR
+AU  - Villmow, Villmow
+AU  - Albrecht, Albrecht
+TI  - Die Vergleichung als Methode der Strafrechtswissenschaft und der Kriminologie
+JO  - MschrKrim
+ID  - ref31
+ER  - 
+TY  - CHAP
+AU  - Neumayer, K. H. Neumayer K. H.
+TI  - Ziele und Methoden der Rechtsvergleichung
+BT  - Recueil des travaux suisses présentés au IXe Congrès international de droit compare
+ID  - ref32
+ER  - 
+TY  - JOUR
+AU  - Rehbinder, Rehbinder
+TI  - Erkenntnistheoretisches zum Verhältnis von Rechtssoziologie und Rechtsvergleichung
+ID  - ref33
+ER  - 
+TY  - JOUR
+AU  - Heidrich, Heidrich
+TI  - Sozialwissenschaftliche Aspekte der Rechtsvergleichung
+ID  - ref34
+ER  - 
+TY  - CHAP
+AU  - Blankenburg, Blankenburg
+TI  - Patterns of Legal Culture as a Variable for the Chances of Legal Innovation
+BT  - innovations in the Legal Services
+ID  - ref35
+ER  - 
+TY  - JOUR
+AU  - Abel, R. Abel R.
+TI  - Comparative Law and Social Theory
+JO  - Am. J. Comp. L
+ID  - ref36
+ER  - 
+TY  - JOUR
+AU  - Blazicek, Blazicek
+AU  - Janeksela, Janeksela
+TI  - Some Comments on Comparative Methodologies in Criminal Justice
+JO  - Int. J. Crim. Pen
+ID  - ref37
+ER  - 
+TY  - JOUR
+AU  - Merryman, Merryman
+TI  - Comparative Law and Social Change - On the Origins, Style, Decline and Revival of the Law and Development Movement
+JO  - Am. J. Comp. L
+ID  - ref38
+ER  - 
+TY  - JOUR
+AU  - Däubler, Däubler
+TI  - Systemvergleich im Arbeitsrecht? Vorüberlegungen zu einigen Methodenfragen
+JO  - Demokratie und Recht
+ID  - ref39
+ER  - 
+TY  - CHAP
+AU  - Zweigert, Zweigert
+AU  - Puttfarken, Puttfarken
+TI  - Zur Vergleichbarkeit analoger Rechtsinstitute in verschiede nen Gesellschaftsordnungen
+BT  - Rechtsvergleichung
+ID  - ref40
+ER  - 
+TY  - JOUR
+AU  - Blankenburg, Blankenburg
+TI  - Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration
+JO  - HM discussion papers
+ID  - ref41
+ER  - 
+TY  - JOUR
+AU  - Armer, Armer
+TI  - Methodology Problems and Possibilities in Comparative Research
+ID  - ref42
+ER  - 
+TY  - JOUR
+AU  - Trommsdorf, Trommsdorf
+TI  - Möglichkeiten und Probleme des Kulturvergleichs am Beispiel einer Agressionsstudie
+JO  - KZfSS
+ID  - ref43
+ER  - 
+TY  - JOUR
+AU  - Malewswka, Malewswka
+AU  - Peyre, Peyre
+TI  - Juvenile Deliquency and Development
+ID  - ref44
+ER  - 
+TY  - JOUR
+AU  - Scheuch, Scheuch
+TI  - The Cross-Cultural Use of Sample Surveys — Problems of Comparability
+ID  - ref45
+ER  - 
+TY  - CHAP
+AU  - Biervert, Biervert
+TI  - Der internationale Vergleich
+BT  - Techniken empirischer Sozialforschung
+ID  - ref46
+ER  - 
+TY  - JOUR
+AU  - Verba, Verba
+TI  - The Uses of Survey Research in the Study of Comparative Politics — Issues and Strategies
+ID  - ref47
+ER  - 
+TY  - JOUR
+AU  - Gessner, Gessner
+TI  - Soziologische Ãœberlegungen zu einer Theorie der angewandten Rechtsvergleichung
+ID  - ref48
+ER  - 
+TY  - JOUR
+AU  - Merton, Merton
+TI  - Social Theory and Social Structure The OECD Social Indicator Development Programme - 1976 Progress Report on Phase II
+PB  - OECD
+ID  - ref49
+ER  - 
+TY  - JOUR
+AU  - Rheinstein, Rheinstein
+TI  - Marriage Stability, Divorce, and the Law
+ID  - ref50
+ER  - 
+TY  - JOUR
+AU  - Wilpert, Wilpert
+TI  - Die Messung von Mitbestimmungsnormen — Darstellung eines international vergleichenden Forschungsansatzes
+PB  - HM-Paper
+ID  - ref51
+ER  - 
+TY  - JOUR
+AU  - Constantinesco, Constantinesco
+TI  - Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise
+JO  - Zeitschrift für Rechtsvergleichung
+ID  - ref52
+ER  - 
+TY  - JOUR
+AU  - Constantinesco, Constantinesco
+TI  - Über den Stil der „Stilthe orie" in der Rechtsvergleichung
+JO  - ZvglRW
+ID  - ref53
+ER  - 
+TY  - CHAP
+AU  - Hofstede, Hofstede
+TI  - Cultural Determinants of the Exercise of Power in a Hierarchy
+BT  - European Institute for Advanced Studies in Management Working Paper
+ID  - ref54
+ER  - 
+TY  - JOUR
+AU  - Group, IDE-International Research Group IDE-International Research
+TI  - Industrial Democracy in Europe
+ID  - ref55
+ER  - 
+TY  - JOUR
+AU  - Rheinstein, Rheinstein
+TI  - Die Rechtshonoratioren und ihr Einfluß auf Charakter und Funk tion der Rechtsordnungen
+JO  - RabelsZ
+ID  - ref56
+ER  - 
+TY  - JOUR
+AU  - Bernstein, Bernstein
+TI  - Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der Rechtsvergleichung
+JO  - RabelsZ
+ID  - ref57
+ER  - 
+TY  - JOUR
+AU  - Ruescbemeyer, Ruescbemeyer
+TI  - Lawyers and their Societies -- A Comparative Analysis of the Legal Profession in Germany and the United States
+ID  - ref58
+ER  - 
+TY  - CHAP
+AU  - ders, ders
+TI  - The Legal Profession in Comparative Perspective
+BT  - Social System and Legal Process
+ID  - ref59
+ER  - 
+TY  - JOUR
+AU  - Klausa, Klausa
+TI  - Politische Inhaltsanalyse von Rechtslehrertexten
+JO  - ZfS
+ID  - ref60
+ER  - 
+TY  - JOUR
+AU  - Teune, Teune
+TI  - Analysis and Interpretation in Cross-National Survey Research
+ID  - ref61
+ER  - 
+TY  - JOUR
+AU  - Nader, Nader
+AU  - Todd, Todd
+TI  - The Disputing Process — Law in Ten Societies
+ID  - ref62
+ER  - 
+TY  - JOUR
+AU  - Kaiser, Kaiser
+TI  - Problem in der Kriminologie
+ID  - ref63
+ER  - 
+TY  - JOUR
+AU  - Clinard, Clinard
+TI  - Comparative Crime Victimization Surveys — Some Problems and Results
+JO  - Int. J. Crim, and Pen
+ID  - ref64
+ER  - 
+TY  - JOUR
+AU  - Abel-Smith, Abel-Smith
+AU  - Zander, Zander
+AU  - Brooke, Brooke
+TI  - Legal Problems and the Citizen
+ID  - ref65
+ER  - 
+TY  - JOUR
+AU  - Rokumoto, Rokumoto
+TI  - Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in International Comparison
+JO  - ZfS
+ID  - ref66
+ER  - 
+TY  - JOUR
+AU  - Schuyt, Schuyt
+AU  - Groenendijk, Groenendijk
+AU  - Sloot, Sloot
+TI  - Rechtspro bleme oder private Schwierigkeiten — Die Inanspruchnahme von Rechtshilfe in den Nieder landen
+JO  - Jahrbuch für Rechtssoziologie und Rechtstheorie
+ID  - ref67
+ER  - 
+TY  - JOUR
+AU  - Podgdrecki, Podgdrecki
+TI  - Comparative Studies on the Attitudes Towards Various Legal Systems
+JO  - Polish Sociological Bulletin
+ID  - ref68
+ER  - 
+TY  - JOUR
+AU  - Ziegen, Ziegen
+TI  - Zur Effek tivität der Rechtssoziologie: die Rekonstruktion der Gesellschaft durch Recht
+ID  - ref69
+ER  - 
+TY  - JOUR
+AU  - Podgdrecki, Podgdrecki
+TI  - Legal Consciousness as a Research Problem
+JO  - European Yearbook in Law and Sociology 1977
+ID  - ref70
+ER  - 
+TY  - CHAP
+AU  - Kutchinsky, Kutchinsky
+TI  - The Legal Consciousness“: A Survey of Research on Knowledge and Opinion about Law
+BT  - Knowledge and Opinion about Law
+ID  - ref71
+ER  - 
+TY  - CHAP
+AU  - Podgdrecki, Podgdrecki
+TI  - Public Opinion on Law
+BT  - Knowledge and Opinion about Law
+ID  - ref72
+ER  - 
+TY  - CHAP
+AU  - Heintz, Heintz
+TI  - Interkultureller Vergleich
+BT  - Handbuch der empirischen Sozialfor schung
+ID  - ref73
+ER  - 
+TY  - JOUR
+AU  - Hegenbarth, Hegenbarth
+TI  - Über methodische und organisatorische Grenzen der empirischen Rechts forschung in Entwicklungsländern
+JO  - Informationsbrief für Rechtssoziologie
+ID  - ref74
+ER  - 
+TY  - JOUR
+AU  - Gessner, Gessner
+TI  - Recht und Konflikt — Eine soziologische Untersuchungprivatrechtlicher Konflikte in Mexiko
+ID  - ref75
+ER  - 
+TY  - JOUR
+AU  - Friday, Friday
+TI  - Problems in Comparative Criminology
+JO  - Int. J. Crim
+ID  - ref76
+ER  - 
+TY  - JOUR
+AU  - Rokkan, Rokkan
+TI  - Vergleichende Sozialwissenschaft
+ID  - ref77
+ER  - 
+TY  - JOUR
+AU  - Szalai, Szalai
+TI  - The Organization and Execution of Cross-National Survey Research Projects
+ID  - ref78
+ER  - 
+TY  - CHAP
+AU  - Blegvad, Blegvad
+TI  - Methodological Aspects of the Project „Local Legal Systems
+BT  - Sociology of Law and Legal Sciences
+ID  - ref79
+ER  - 
+TY  - CHAP
+AU  - Zweigert, Zweigert
+TI  - Die kritische Wertung in der Rechtsvergleichung
+BT  - Festschrift für Schmitthoff
+ID  - ref80
+ER  - 
+TY  - JOUR
+AU  - Dörner, Dörner
+TI  - Rechtstatsachenforschung und Gesetzgebung — Hinweise zur Entwicklung einer Gesetzgebungssoziologie in Frank reich
+JO  - Interview und Analyse
+ID  - ref81
+ER  - 
+TY  - JOUR
+AU  - Bryde, Bryde
+TI  - Recht und Konflikt — Mexiko und Afrika
+JO  - Verfassung und Recht in Obersee
+ID  - ref82
+ER  - 
diff --git a/convert-anystyle-data/tei-to-bibformats.ipynb b/convert-anystyle-data/tei-to-bibformats.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..8e4cc16e5ce8c8d44e2b1fdaf0592a92f0a5b1ad
--- /dev/null
+++ b/convert-anystyle-data/tei-to-bibformats.ipynb
@@ -0,0 +1,274 @@
+{
+ "cells": [
+  {
+   "metadata": {},
+   "cell_type": "markdown",
+   "source": "# Convert the generated TEI to bibliographic formats\n",
+   "id": "2cdf8ba1eefa38e0"
+  },
+  {
+   "metadata": {},
+   "cell_type": "markdown",
+   "source": [
+    "## Download required XSLT documents\n",
+    "\n",
+    "we use XSLT provided by https://github.com/OpenArabicPE/convert_tei-to-bibliographic-data "
+   ],
+   "id": "db65c4065691c578"
+  },
+  {
+   "metadata": {
+    "ExecuteTime": {
+     "end_time": "2024-08-21T16:22:29.248154Z",
+     "start_time": "2024-08-21T16:22:25.674686Z"
+    }
+   },
+   "cell_type": "code",
+   "source": [
+    "import os\n",
+    "from urllib.parse import urljoin\n",
+    "import requests\n",
+    "from lxml import etree\n",
+    "\n",
+    "def download_xslt(url, target_dir = 'lib/xslt'):\n",
+    "    \"\"\"written by GPT-4\"\"\"\n",
+    "    response = requests.get(url)\n",
+    "    response.raise_for_status()  \n",
+    "    doc = etree.fromstring(response.content)\n",
+    "    for elem in doc.xpath('//*[local-name() = \"import\"]'):\n",
+    "        import_url = urljoin(url, elem.get('href'))  # Construct a full URL based on the href attribute relative to the original url\n",
+    "        download_xslt(import_url, target_dir)\n",
+    "    os.makedirs(target_dir, exist_ok=True)\n",
+    "    with open(os.path.join(target_dir, os.path.basename(url)), 'wb') as f:\n",
+    "        f.write(response.content)\n",
+    "    print(f'Downloaded {os.path.basename(url)}')\n",
+    "\n",
+    "base_url = 'https://openarabicpe.github.io/convert_tei-to-bibliographic-data/xslt'\n",
+    "xslt_docs = ['convert_tei-to-mods_bibl.xsl']\n",
+    "for xslt_doc in xslt_docs:\n",
+    "    download_xslt(f'{base_url}/{xslt_doc}')\n"
+   ],
+   "id": "1de7cedbb3514188",
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Downloaded date-functions.xsl\n",
+      "Downloaded parameters.xsl\n",
+      "Downloaded functions.xsl\n",
+      "Downloaded convert_tei-to-biblstruct_functions.xsl\n",
+      "Downloaded convert_tei-to-mods_functions.xsl\n",
+      "Downloaded convert_tei-to-mods_bibl.xsl\n"
+     ]
+    }
+   ],
+   "execution_count": 40
+  },
+  {
+   "metadata": {},
+   "cell_type": "markdown",
+   "source": [
+    "## Extract bibliographic data from TEI files using XSLT\n",
+    "\n",
+    "### Using lxml - currently not working\n"
+   ],
+   "id": "d08d51f8767602c5"
+  },
+  {
+   "metadata": {
+    "ExecuteTime": {
+     "end_time": "2024-08-21T16:24:16.226255Z",
+     "start_time": "2024-08-21T16:24:16.196421Z"
+    }
+   },
+   "cell_type": "code",
+   "source": [
+    "from lxml import etree\n",
+    "import glob\n",
+    "from urllib.request import urlopen\n",
+    "import requests\n",
+    "\n",
+    "def apply_xslt(xslt_path, xml_input_path, xml_output_path):\n",
+    "    try:\n",
+    "        xslt_doc = etree.parse(xslt_path)\n",
+    "        xml_doc = etree.parse(xml_input_path)\n",
+    "        transformer = etree.XSLT(xslt_doc)\n",
+    "        new_xml = transformer(xml_doc)\n",
+    "        with open(xml_output_path, 'w', encoding='utf-8') as f:\n",
+    "            f.write(new_xml)\n",
+    "    except etree.XSLTParseError as e:\n",
+    "        print(f\"Error parsing XSLT file at {xslt_path}: {e}\")\n",
+    "\n",
+    "for input_path in glob.glob('tei/*.xml'):\n",
+    "    print(f'Converting {input_path}')\n",
+    "    base_name = os.path.basename(input_path)\n",
+    "    output_path = f'tmp/{base_name.replace(\".xml\", \"-mods.xml\")}'\n",
+    "    apply_xslt('lib/xslt/convert_tei-to-mods_bibl.xsl', input_path, output_path)\n"
+   ],
+   "id": "af437a5ab3cc41a3",
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Converting tei\\10.1111_1467-6478.00057.xml\n",
+      "Error parsing XSLT file at lib/xslt/convert_tei-to-mods_bibl.xsl: xsltParseStylesheetTop: ignoring misplaced import element\n",
+      "Converting tei\\10.1111_1467-6478.00080.xml\n",
+      "Error parsing XSLT file at lib/xslt/convert_tei-to-mods_bibl.xsl: xsltParseStylesheetTop: ignoring misplaced import element\n",
+      "Converting tei\\10.1515_zfrs-1980-0103.xml\n",
+      "Error parsing XSLT file at lib/xslt/convert_tei-to-mods_bibl.xsl: xsltParseStylesheetTop: ignoring misplaced import element\n",
+      "Converting tei\\10.1515_zfrs-1980-0104.xml\n",
+      "Error parsing XSLT file at lib/xslt/convert_tei-to-mods_bibl.xsl: xsltParseStylesheetTop: ignoring misplaced import element\n"
+     ]
+    }
+   ],
+   "execution_count": 41
+  },
+  {
+   "metadata": {},
+   "cell_type": "markdown",
+   "source": [
+    "### Using Saxon:\n",
+    "\n",
+    "- download ZIP from https://github.com/Saxonica/Saxon-HE/releases/download/SaxonHE12-5/SaxonHE12-5J.zip\n",
+    "- unpack in lib/SaxonHE12-5J"
+   ],
+   "id": "781d0e0e7a9dd346"
+  },
+  {
+   "metadata": {
+    "ExecuteTime": {
+     "end_time": "2024-08-22T08:23:04.884935Z",
+     "start_time": "2024-08-22T08:22:57.085635Z"
+    }
+   },
+   "cell_type": "code",
+   "source": [
+    "import subprocess\n",
+    "import os\n",
+    "\n",
+    "def transform_tei(xslt_path, file_path='tei', output_path='.'):\n",
+    "    file_path = os.path.normpath(file_path)\n",
+    "    xslt_path = os.path.normpath(xslt_path)\n",
+    "    cmd = ['java', '-jar', 'lib/SaxonHE12-5J/saxon-he-12.5.jar', \n",
+    "           f'-s:{file_path}',\n",
+    "           f'-xsl:{xslt_path}',\n",
+    "           f'-o:{output_path}',\n",
+    "           'p_target-language=de', 'p_github-action=true']\n",
+    "    process = subprocess.run(cmd, capture_output=True, text=True)\n",
+    "    if process.returncode != 0:\n",
+    "        raise RuntimeError(process.stderr)\n",
+    "    return process\n",
+    "\n",
+    "transform_tei(xslt_path='lib/xslt/convert_tei-to-biblstruct_bibl.xsl', output_path='biblStruct')\n",
+    "transform_tei(xslt_path='lib/xslt/convert_tei-to-mods_bibl.xsl', output_path='mods')"
+   ],
+   "id": "34087ef2f498ffa6",
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "CompletedProcess(args=['java', '-jar', 'lib/SaxonHE12-5J/saxon-he-12.5.jar', '-s:tei', '-xsl:lib\\\\xslt\\\\convert_tei-to-mods_bibl.xsl', '-o:mods', 'p_target-language=de', 'p_github-action=true'], returncode=0, stdout='', stderr='')"
+      ]
+     },
+     "execution_count": 84,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "execution_count": 84
+  },
+  {
+   "metadata": {},
+   "cell_type": "markdown",
+   "source": [
+    "## Convert MODS to RIS tagged file format\n",
+    "\n",
+    "This requires the install the bibutils suite of executables https://sourceforge.net/p/bibutils/home/Bibutils/ \n",
+    "(in windows, install it to the standard WSL distro)"
+   ],
+   "id": "5e75488ae4379946"
+  },
+  {
+   "metadata": {
+    "ExecuteTime": {
+     "end_time": "2024-08-22T08:19:43.322537Z",
+     "start_time": "2024-08-22T08:19:43.087262Z"
+    }
+   },
+   "cell_type": "code",
+   "source": [
+    "import subprocess\n",
+    "import platform\n",
+    "\n",
+    "cmd = ['bash', 'lib/xml2ris.sh']\n",
+    "if platform.system() == 'Windows':\n",
+    "    cmd = ['wsl.exe', '-e'] + cmd\n",
+    "output = subprocess.check_output(cmd, stderr=subprocess.STDOUT)\n",
+    "print(output.decode())"
+   ],
+   "id": "fde37a9e4a182bad",
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Converted mods/metadata/10.1111_1467-6478.00057-bibl.MODS.xml to ris/10.1111_1467-6478.00057.ris\n",
+      "xml2ris: Processed 68 references.\n",
+      "Converted mods/metadata/10.1111_1467-6478.00080-bibl.MODS.xml to ris/10.1111_1467-6478.00080.ris\n",
+      "xml2ris: Processed 40 references.\n",
+      "Converted mods/metadata/10.1515_zfrs-1980-0103-bibl.MODS.xml to ris/10.1515_zfrs-1980-0103.ris\n",
+      "xml2ris: Processed 36 references.\n",
+      "Converted mods/metadata/10.1515_zfrs-1980-0104-bibl.MODS.xml to ris/10.1515_zfrs-1980-0104.ris\n",
+      "xml2ris: Processed 82 references.\n",
+      "\n"
+     ]
+    }
+   ],
+   "execution_count": 83
+  },
+  {
+   "metadata": {
+    "ExecuteTime": {
+     "end_time": "2024-08-22T08:18:13.159229Z",
+     "start_time": "2024-08-22T08:18:13.145443Z"
+    }
+   },
+   "cell_type": "code",
+   "source": "",
+   "id": "8a013a47766a81cc",
+   "outputs": [],
+   "execution_count": 80
+  },
+  {
+   "metadata": {},
+   "cell_type": "code",
+   "outputs": [],
+   "execution_count": null,
+   "source": "",
+   "id": "bf5722a2500cf1a"
+  }
+ ],
+ "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
+}
diff --git a/convert-anystyle-data/tmp/.gitignore b/convert-anystyle-data/tmp/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..f59ec20aabf5842d237244ece8c81ab184faeac1
--- /dev/null
+++ b/convert-anystyle-data/tmp/.gitignore
@@ -0,0 +1 @@
+*
\ No newline at end of file