From 1a2845badf6926406768c1bff7a673bb96a9bcd4 Mon Sep 17 00:00:00 2001
From: Christian Boulanger <info@bibliograph.org>
Date: Thu, 22 Aug 2024 13:01:25 +0200
Subject: [PATCH] Fix generation of `biblScope` "from" and "to" attributes

---
 convert-anystyle-data/anystyle-to-tei.ipynb   |  49 +-
 ..._1467-6478.00057-bibl_biblStruct.TEIP5.xml | 111 +++--
 ..._1467-6478.00080-bibl_biblStruct.TEIP5.xml |  76 +--
 ...5_zfrs-1980-0103-bibl_biblStruct.TEIP5.xml |  73 +--
 ...5_zfrs-1980-0104-bibl_biblStruct.TEIP5.xml | 164 ++++---
 .../10.1111_1467-6478.00057-bibl.MODS.xml     | 124 +++--
 .../10.1111_1467-6478.00080-bibl.MODS.xml     | 118 +++--
 .../10.1515_zfrs-1980-0103-bibl.MODS.xml      |  36 +-
 .../10.1515_zfrs-1980-0104-bibl.MODS.xml      | 140 +++---
 convert-anystyle-data/tei-to-bibformats.ipynb |   8 +-
 .../tei/10.1111_1467-6478.00057.xml           | 155 +++---
 .../tei/10.1111_1467-6478.00080.xml           | 111 +++--
 .../tei/10.1515_zfrs-1980-0103.xml            | 100 ++--
 .../tei/10.1515_zfrs-1980-0104.xml            | 452 +++++++++++-------
 14 files changed, 1001 insertions(+), 716 deletions(-)

diff --git a/convert-anystyle-data/anystyle-to-tei.ipynb b/convert-anystyle-data/anystyle-to-tei.ipynb
index 99c0d98..d8df1be 100644
--- a/convert-anystyle-data/anystyle-to-tei.ipynb
+++ b/convert-anystyle-data/anystyle-to-tei.ipynb
@@ -375,8 +375,8 @@
   {
    "metadata": {
     "ExecuteTime": {
-     "end_time": "2024-08-22T09:26:38.068635Z",
-     "start_time": "2024-08-22T09:26:37.699128Z"
+     "end_time": "2024-08-22T10:58:04.789389Z",
+     "start_time": "2024-08-22T10:58:04.568830Z"
     }
    },
    "cell_type": "code",
@@ -419,8 +419,35 @@
     "def clean_container(text):\n",
     "    return remove_punctuation(re.sub(r'^(in|aus|from)(:| )', '', text.strip(), flags=re.IGNORECASE))\n",
     "\n",
-    "def clean_pages(text):\n",
-    "    return remove_punctuation(re.sub(r'^(S\\.|p\\.|pp\\.|ff?\\.||seqq?\\.)', '', text.strip(), flags=re.IGNORECASE))\n",
+    "def extract_page_range(text):\n",
+    "    match = re.match(r'(\\p{Alnum}+)(?: *\\p{Pd} *(\\p{Alnum}+))?', text)\n",
+    "    attributes = {\"unit\": \"page\"}\n",
+    "    if match:\n",
+    "        from_page = match.group(1)\n",
+    "        to_page = match.group(2) \n",
+    "        attributes.update({\"from\": from_page})\n",
+    "        if to_page is not None:\n",
+    "            attributes.update({\"to\": to_page})\n",
+    "    return attributes\n",
+    "\n",
+    "def process_range(text):\n",
+    "    text = re.sub(r'^(S\\.|p\\.|pp\\.)', '', text.strip(), flags=re.IGNORECASE)\n",
+    "    text = re.sub(r'(ff?\\.|seqq?\\.)$', '', text.strip(), flags=re.IGNORECASE)\n",
+    "    text = remove_punctuation(text)\n",
+    "    attributes = extract_page_range(text)\n",
+    "    return (text, attributes)\n",
+    "\n",
+    "def handle_pages(text, bibl, tag, preserve):\n",
+    "    ranges = re.split(r'[,;]', text)\n",
+    "    for range_ in ranges:\n",
+    "        add_node(bibl, tag, range_, clean_func=process_range, preserve=preserve)\n",
+    "        \n",
+    "def extract_cited_range(text):\n",
+    "    match = re.search(r'(.*?)\\s*(\\(.*?\\))', text)\n",
+    "    if match:\n",
+    "        return match.group(1), match.group(2)\n",
+    "    else:\n",
+    "        return text, None\n",
     "\n",
     "def extract_year(text):\n",
     "    m = re.search( r'[12][0-9]{3}', text)\n",
@@ -443,6 +470,11 @@
     "    node = ET.SubElement(parent, tag, (attributes or {}))\n",
     "    if clean_func:\n",
     "        cleaned_text = clean_func(text)\n",
+    "        if type(cleaned_text) is tuple:\n",
+    "            # in a tuple result, the first element is the text and the second node attributes\n",
+    "            for key,value in cleaned_text[1].items():\n",
+    "                node.set(key, value)\n",
+    "            cleaned_text = cleaned_text[0]\n",
     "        if preserve:\n",
     "            start, end = find_string(cleaned_text, text)\n",
     "            prefix, suffix = text[:start], text[end:]\n",
@@ -569,9 +601,12 @@
     "                    add_node(bibl, 'ref', text, {'type': 'legal'}, clean_func = remove_punctuation, preserve=preserve)\n",
     "                case 'pages':\n",
     "                    if bibl[-1].tag == \"ref\":\n",
-    "                        add_node(bibl, 'citedRange', text, {'unit': 'page'}, clean_func= clean_pages, preserve=preserve)\n",
+    "                        handle_pages(text, bibl, 'citedRange', preserve=preserve)\n",
     "                    else:\n",
-    "                        add_node(bibl, 'biblScope', text, {'unit': 'page'}, clean_func= clean_pages, preserve=preserve)\n",
+    "                        pages, cited_range = extract_cited_range(text)\n",
+    "                        handle_pages(pages, bibl, 'biblScope', preserve=preserve)\n",
+    "                        if cited_range:\n",
+    "                            handle_pages(cited_range, bibl, 'citedRange', preserve=preserve)\n",
     "                case 'signal':\n",
     "                    add_node(bibl, 'seg', text, {'type': 'signal'}, clean_func=remove_punctuation, preserve=preserve)\n",
     "                case 'title':\n",
@@ -623,7 +658,7 @@
      ]
     }
    ],
-   "execution_count": 9
+   "execution_count": 17
   },
   {
    "cell_type": "markdown",
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
index db193cf..b508020 100644
--- 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
@@ -39,7 +39,7 @@
                <imprint>
                   <date>1991</date>
                </imprint>
-               <biblScope unit="page">77</biblScope>
+               <biblScope unit="page" from="77">77</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -64,7 +64,7 @@
                   <date>1979</date>
                </imprint>
                <biblScope unit="vol">27</biblScope>
-               <biblScope unit="page">183</biblScope>
+               <biblScope unit="page" from="183">183</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -116,7 +116,7 @@
                   <date>1996</date>
                </imprint>
                <biblScope unit="vol">20</biblScope>
-               <biblScope unit="page">1072</biblScope>
+               <biblScope unit="page" from="1072">1072</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -135,7 +135,7 @@
                   <date>1994</date>
                </imprint>
                <biblScope unit="vol">28</biblScope>
-               <biblScope unit="page">379</biblScope>
+               <biblScope unit="page" from="379">379</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -153,7 +153,8 @@
                <imprint>
                   <date>1991</date>
                </imprint>
-               <biblScope unit="page">125–6, s. 146</biblScope>
+               <biblScope unit="page" from="125" to="6">125–6</biblScope>
+               <biblScope unit="page" from="146">146</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -177,7 +178,7 @@
                <imprint>
                   <date>1994</date>
                </imprint>
-               <biblScope unit="page">75</biblScope>
+               <biblScope unit="page" from="75">75</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -224,7 +225,7 @@
                <imprint>
                   <date>1979</date>
                </imprint>
-               <biblScope unit="page">442</biblScope>
+               <biblScope unit="page" from="442">442</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -251,7 +252,7 @@
                <imprint>
                   <date>1987</date>
                </imprint>
-               <biblScope unit="page">196</biblScope>
+               <biblScope unit="page" from="196">196</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -270,7 +271,8 @@
                   <date>1993</date>
                </imprint>
                <biblScope unit="vol">20</biblScope>
-               <biblScope unit="page">56, 61</biblScope>
+               <biblScope unit="page" from="56">56</biblScope>
+               <biblScope unit="page" from="61">61</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -295,7 +297,7 @@
             </analytic>
             <monogr>
                <imprint/>
-               <biblScope unit="page">145</biblScope>
+               <biblScope unit="page" from="145">145</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -318,7 +320,7 @@
                <imprint>
                   <date>1980</date>
                </imprint>
-               <biblScope unit="page">98</biblScope>
+               <biblScope unit="page" from="98">98</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -337,7 +339,7 @@
                   <date>1986</date>
                </imprint>
                <biblScope unit="vol">3</biblScope>
-               <biblScope unit="page">30</biblScope>
+               <biblScope unit="page" from="30">30</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -354,7 +356,7 @@
                <imprint>
                   <date>1912</date>
                </imprint>
-               <biblScope unit="page">174</biblScope>
+               <biblScope unit="page" from="174">174</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -376,7 +378,7 @@
                <imprint>
                   <date>1977</date>
                </imprint>
-               <biblScope unit="page">160</biblScope>
+               <biblScope unit="page" from="160">160</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -393,7 +395,7 @@
                <imprint>
                   <date>1985</date>
                </imprint>
-               <biblScope unit="page">ix</biblScope>
+               <biblScope unit="page" from="ix">ix</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -416,7 +418,7 @@
                   <date>1990</date>
                </imprint>
                <biblScope unit="vol">4</biblScope>
-               <biblScope unit="page">220</biblScope>
+               <biblScope unit="page" from="220">220</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -440,7 +442,7 @@
                   <date>1996</date>
                </imprint>
                <biblScope unit="vol">105</biblScope>
-               <biblScope unit="page">2117</biblScope>
+               <biblScope unit="page" from="2117">2117</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -473,7 +475,7 @@
                <imprint>
                   <date>1993</date>
                </imprint>
-               <biblScope unit="page">especially 43–59</biblScope>
+               <biblScope unit="page" from="especially">especially 43–59</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -573,7 +575,8 @@
                <imprint>
                   <date>1996</date>
                </imprint>
-               <biblScope unit="page">74</biblScope>
+               <biblScope unit="page" from="74">74</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -590,7 +593,7 @@
                <imprint>
                   <date>1995</date>
                </imprint>
-               <biblScope unit="page">127 and throughout</biblScope>
+               <biblScope unit="page" from="127">127 and throughout</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -617,7 +620,7 @@
                <imprint>
                   <date>1995</date>
                </imprint>
-               <biblScope unit="page">3</biblScope>
+               <biblScope unit="page" from="3">3</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -675,7 +678,7 @@
                   <date>1985</date>
                </imprint>
                <biblScope unit="vol">94</biblScope>
-               <biblScope unit="page">997</biblScope>
+               <biblScope unit="page" from="997">997</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -693,7 +696,7 @@
                <imprint>
                   <date>1981</date>
                </imprint>
-               <biblScope unit="page">347 ff</biblScope>
+               <biblScope unit="page" from="347">347</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -718,7 +721,7 @@
                <imprint>
                   <date>1919</date>
                </imprint>
-               <biblScope unit="page">2 K.B. 571</biblScope>
+               <biblScope unit="page" from="2">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#">
@@ -845,7 +848,7 @@
                <imprint>
                   <date>1991</date>
                </imprint>
-               <biblScope unit="page">59</biblScope>
+               <biblScope unit="page" from="59">59</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -874,7 +877,7 @@
                <imprint>
                   <date>1989</date>
                </imprint>
-               <biblScope unit="page">5</biblScope>
+               <biblScope unit="page" from="5">5</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -926,7 +929,7 @@
                   <date>1993</date>
                </imprint>
                <biblScope unit="vol">56</biblScope>
-               <biblScope unit="page">99</biblScope>
+               <biblScope unit="page" from="99">99</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -945,7 +948,7 @@
                   <date>1979</date>
                </imprint>
                <biblScope unit="vol">78</biblScope>
-               <biblScope unit="page">59</biblScope>
+               <biblScope unit="page" from="59">59</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1017,7 +1020,7 @@
                <imprint>
                   <date>1990</date>
                </imprint>
-               <biblScope unit="page">especially 223 ff</biblScope>
+               <biblScope unit="page" from="especially">especially 223</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1034,7 +1037,7 @@
                <imprint>
                   <date>1973</date>
                </imprint>
-               <biblScope unit="page">120</biblScope>
+               <biblScope unit="page" from="120">120</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1053,7 +1056,7 @@
                   <date>1995</date>
                </imprint>
                <biblScope unit="vol">4</biblScope>
-               <biblScope unit="page">93</biblScope>
+               <biblScope unit="page" from="93">93</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1072,7 +1075,7 @@
                   <date>1995</date>
                </imprint>
                <biblScope unit="vol">13</biblScope>
-               <biblScope unit="page">23</biblScope>
+               <biblScope unit="page" from="23">23</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1091,7 +1094,8 @@
                   <date>1994</date>
                </imprint>
                <biblScope unit="vol">57</biblScope>
-               <biblScope unit="page">467, 468</biblScope>
+               <biblScope unit="page" from="467">467</biblScope>
+               <biblScope unit="page" from="468">468</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1145,7 +1149,7 @@
                   <date>1996</date>
                </imprint>
                <biblScope unit="vol">16</biblScope>
-               <biblScope unit="page">368</biblScope>
+               <biblScope unit="page" from="368">368</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1191,7 +1195,7 @@
                   <date>1996</date>
                </imprint>
                <biblScope unit="vol">59</biblScope>
-               <biblScope unit="page">675</biblScope>
+               <biblScope unit="page" from="675">675</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1245,7 +1249,7 @@
                   <pubPlace>N.S.W</pubPlace>
                </imprint>
                <biblScope unit="vol">54</biblScope>
-               <biblScope unit="page">A.S.C. 56–270 (N.S.W.C.A.)</biblScope>
+               <biblScope unit="page" from="A">A.S.C. 56–270</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1258,7 +1262,7 @@
                <imprint>
                   <date>1994</date>
                </imprint>
-               <biblScope unit="page">1 A.C. 180</biblScope>
+               <biblScope unit="page" from="1">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#">
@@ -1298,7 +1302,7 @@
                <imprint>
                   <date>1984</date>
                </imprint>
-               <biblScope unit="page">94</biblScope>
+               <biblScope unit="page" from="94">94</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1315,7 +1319,7 @@
                <imprint>
                   <date>1985</date>
                </imprint>
-               <biblScope unit="page">especially 112–18</biblScope>
+               <biblScope unit="page" from="especially">especially 112–18</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1339,7 +1343,7 @@
                   <date>1964</date>
                </imprint>
                <biblScope unit="vol">73</biblScope>
-               <biblScope unit="page">733</biblScope>
+               <biblScope unit="page" from="733">733</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1363,7 +1367,7 @@
                <imprint>
                   <date>1992</date>
                </imprint>
-               <biblScope unit="page">29 N.S.W.L.R. 188 (C.A.)</biblScope>
+               <biblScope unit="page" from="29">29 N.S.W.L.R. 188</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1387,7 +1391,7 @@
                   <date>1997</date>
                </imprint>
                <biblScope unit="vol">11</biblScope>
-               <biblScope unit="page">100</biblScope>
+               <biblScope unit="page" from="100">100</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1406,7 +1410,7 @@
                   <date>1994</date>
                </imprint>
                <biblScope unit="vol">16</biblScope>
-               <biblScope unit="page">412</biblScope>
+               <biblScope unit="page" from="412">412</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1432,7 +1436,8 @@
                   <date>1994</date>
                </imprint>
                <biblScope unit="vol">8</biblScope>
-               <biblScope unit="page">111, 133</biblScope>
+               <biblScope unit="page" from="111">111</biblScope>
+               <biblScope unit="page" from="133">133</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1451,7 +1456,7 @@
                   <date>1991</date>
                </imprint>
                <biblScope unit="vol">18</biblScope>
-               <biblScope unit="page">206</biblScope>
+               <biblScope unit="page" from="206">206</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1512,7 +1517,7 @@
                <imprint>
                   <date>1989</date>
                </imprint>
-               <biblScope unit="page">46</biblScope>
+               <biblScope unit="page" from="46">46</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1583,7 +1588,7 @@
                <imprint>
                   <date>1989</date>
                </imprint>
-               <biblScope unit="page">262–4</biblScope>
+               <biblScope unit="page" from="262" to="4">262–4</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1602,7 +1607,7 @@
                   <date>1994</date>
                </imprint>
                <biblScope unit="vol">19</biblScope>
-               <biblScope unit="page">701</biblScope>
+               <biblScope unit="page" from="701">701</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1621,7 +1626,8 @@
                   <date>1996</date>
                </imprint>
                <biblScope unit="vol">11</biblScope>
-               <biblScope unit="page">295, 300</biblScope>
+               <biblScope unit="page" from="295">295</biblScope>
+               <biblScope unit="page" from="300">300</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1639,7 +1645,7 @@
                <imprint>
                   <date>1995</date>
                </imprint>
-               <biblScope unit="page">7</biblScope>
+               <biblScope unit="page" from="7">7</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1658,7 +1664,8 @@
                   <date>1982</date>
                </imprint>
                <biblScope unit="vol">45</biblScope>
-               <biblScope unit="page">424, 431–3</biblScope>
+               <biblScope unit="page" from="424">424</biblScope>
+               <biblScope unit="page" from="431" to="3">431–3</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
@@ -1746,7 +1753,7 @@
                   <date>1995</date>
                   <date>1997</date>
                </imprint>
-               <biblScope unit="page">26</biblScope>
+               <biblScope unit="page" from="26">26</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#">
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
index 28f842a..ff956c4 100644
--- 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
@@ -39,7 +39,7 @@
                <imprint>
                   <date>1996</date>
                </imprint>
-               <biblScope unit="page">14</biblScope>
+               <biblScope unit="page" from="14">14</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -58,7 +58,7 @@
                   <date>1983</date>
                </imprint>
                <biblScope unit="vol">169</biblScope>
-               <biblScope unit="page">at 171</biblScope>
+               <biblScope unit="page" from="at">at 171</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -75,7 +75,7 @@
                <imprint>
                   <date>1883</date>
                </imprint>
-               <biblScope unit="page">20</biblScope>
+               <biblScope unit="page" from="20">20</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -110,7 +110,7 @@
                   <date>1976</date>
                </imprint>
                <biblScope unit="vol">89</biblScope>
-               <biblScope unit="page">1685</biblScope>
+               <biblScope unit="page" from="1685">1685</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -128,7 +128,8 @@
                <imprint>
                   <date>1996</date>
                </imprint>
-               <biblScope unit="page">470, at 485 and 481</biblScope>
+               <biblScope unit="page" from="470">470</biblScope>
+               <biblScope unit="page" from="at">at 485 and 481</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -152,7 +153,7 @@
                <imprint>
                   <date>1997</date>
                </imprint>
-               <biblScope unit="page">19</biblScope>
+               <biblScope unit="page" from="19">19</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -169,7 +170,7 @@
                <imprint>
                   <date>1995</date>
                </imprint>
-               <biblScope unit="page">296</biblScope>
+               <biblScope unit="page" from="296">296</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -223,7 +224,7 @@
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
             <monogr>
                <imprint/>
-               <biblScope unit="page">para. 31</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -295,7 +296,8 @@
                   <date>1996</date>
                </imprint>
                <biblScope unit="vol">2</biblScope>
-               <biblScope unit="page">15, at 24–6</biblScope>
+               <biblScope unit="page" from="15">15</biblScope>
+               <biblScope unit="page" from="at">at 24–6</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -321,7 +323,8 @@
                   <date>1987</date>
                </imprint>
                <biblScope unit="vol">137</biblScope>
-               <biblScope unit="page">835, at 836</biblScope>
+               <biblScope unit="page" from="835">835</biblScope>
+               <biblScope unit="page" from="at">at 836</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -340,7 +343,7 @@
                   <date>1905</date>
                </imprint>
                <biblScope unit="vol">Volume III</biblScope>
-               <biblScope unit="page">215</biblScope>
+               <biblScope unit="page" from="215">215</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -365,7 +368,7 @@
                   <date>1984</date>
                </imprint>
                <biblScope unit="vol">XXI</biblScope>
-               <biblScope unit="page">218</biblScope>
+               <biblScope unit="page" from="218">218</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -430,7 +433,7 @@
                <imprint>
                   <date>1977</date>
                </imprint>
-               <biblScope unit="page">106</biblScope>
+               <biblScope unit="page" from="106">106</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -449,7 +452,8 @@
                   <date>1966</date>
                </imprint>
                <biblScope unit="vol">29</biblScope>
-               <biblScope unit="page">121, at 129</biblScope>
+               <biblScope unit="page" from="121">121</biblScope>
+               <biblScope unit="page" from="at">at 129</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -491,7 +495,7 @@
                <imprint>
                   <date>1980</date>
                </imprint>
-               <biblScope unit="page">at 216–17</biblScope>
+               <biblScope unit="page" from="at">at 216–17</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -509,7 +513,7 @@
                <imprint>
                   <date>1947</date>
                </imprint>
-               <biblScope unit="page">at 256 and 257</biblScope>
+               <biblScope unit="page" from="at">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#">
@@ -531,7 +535,7 @@
                <imprint>
                   <date>1933</date>
                </imprint>
-               <biblScope unit="page">68</biblScope>
+               <biblScope unit="page" from="68">68</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -566,7 +570,7 @@
                   <date>1990</date>
                </imprint>
                <biblScope unit="vol">I</biblScope>
-               <biblScope unit="page">47 at pp. 54–55</biblScope>
+               <biblScope unit="page" from="47">47 at pp. 54–55</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -585,7 +589,7 @@
                   <date>1996</date>
                </imprint>
                <biblScope unit="vol">VII</biblScope>
-               <biblScope unit="page">173 at pp. 173–6</biblScope>
+               <biblScope unit="page" from="173">173 at pp. 173–6</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -604,7 +608,8 @@
                   <date>1991</date>
                </imprint>
                <biblScope unit="vol">19</biblScope>
-               <biblScope unit="page">427, at 429</biblScope>
+               <biblScope unit="page" from="427">427</biblScope>
+               <biblScope unit="page" from="at">at 429</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -623,7 +628,8 @@
                   <date>1983</date>
                </imprint>
                <biblScope unit="vol">46</biblScope>
-               <biblScope unit="page">1, at 8</biblScope>
+               <biblScope unit="page" from="1">1</biblScope>
+               <biblScope unit="page" from="at">at 8</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -668,7 +674,8 @@
                   <date>1975</date>
                </imprint>
                <biblScope unit="vol">44</biblScope>
-               <biblScope unit="page">256, at 258</biblScope>
+               <biblScope unit="page" from="256">256</biblScope>
+               <biblScope unit="page" from="at">at 258</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -693,7 +700,8 @@
                   <date>1997</date>
                </imprint>
                <biblScope unit="vol">31</biblScope>
-               <biblScope unit="page">38, at 46</biblScope>
+               <biblScope unit="page" from="38">38</biblScope>
+               <biblScope unit="page" from="at">at 46</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -712,7 +720,8 @@
                   <date>1993</date>
                </imprint>
                <biblScope unit="vol">13</biblScope>
-               <biblScope unit="page">143, at 152</biblScope>
+               <biblScope unit="page" from="143">143</biblScope>
+               <biblScope unit="page" from="at">at 152</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -774,7 +783,8 @@
                   <date>1995</date>
                </imprint>
                <biblScope unit="vol">29</biblScope>
-               <biblScope unit="page">189, at 189</biblScope>
+               <biblScope unit="page" from="189">189</biblScope>
+               <biblScope unit="page" from="at">at 189</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -793,7 +803,8 @@
                   <date>1985</date>
                </imprint>
                <biblScope unit="vol">19</biblScope>
-               <biblScope unit="page">12, at 13</biblScope>
+               <biblScope unit="page" from="12">12</biblScope>
+               <biblScope unit="page" from="at">at 13</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -812,7 +823,8 @@
                   <date>1994</date>
                </imprint>
                <biblScope unit="vol">28</biblScope>
-               <biblScope unit="page">281, at 282</biblScope>
+               <biblScope unit="page" from="281">281</biblScope>
+               <biblScope unit="page" from="at">at 282</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -837,7 +849,8 @@
                   <date>1990</date>
                </imprint>
                <biblScope unit="vol">24</biblScope>
-               <biblScope unit="page">246, at 248</biblScope>
+               <biblScope unit="page" from="246">246</biblScope>
+               <biblScope unit="page" from="at">at 248</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -876,7 +889,7 @@
                <imprint>
                   <date>1994</date>
                </imprint>
-               <biblScope unit="page">10–24</biblScope>
+               <biblScope unit="page" from="10" to="24">10–24</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -920,7 +933,8 @@
                   <date>1986</date>
                </imprint>
                <biblScope unit="vol">20</biblScope>
-               <biblScope unit="page">110, at 112</biblScope>
+               <biblScope unit="page" from="110">110</biblScope>
+               <biblScope unit="page" from="at">at 112</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#">
@@ -947,7 +961,7 @@
                <imprint>
                   <date>1997</date>
                </imprint>
-               <biblScope unit="page">20</biblScope>
+               <biblScope unit="page" from="20">20</biblScope>
             </monogr>
          </biblStruct>
       </listBibl>
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
index 5601231..c80701a 100644
--- 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
@@ -28,7 +28,7 @@
                <imprint>
                   <date>1964</date>
                </imprint>
-               <biblScope unit="page">insbesondere S. 65—83</biblScope>
+               <biblScope unit="page" from="insbesondere">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#">
@@ -123,7 +123,7 @@
                <imprint>
                   <date>1978</date>
                </imprint>
-               <biblScope unit="page">66-85</biblScope>
+               <biblScope unit="page" from="66" to="85">66-85</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -136,7 +136,7 @@
                <imprint>
                   <date>1973</date>
                </imprint>
-               <biblScope unit="page">125 ff</biblScope>
+               <biblScope unit="page" from="125">125</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -149,7 +149,7 @@
                <imprint>
                   <date>1976</date>
                </imprint>
-               <biblScope unit="page">insbesondere S. 170—183</biblScope>
+               <biblScope unit="page" from="insbesondere">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#">
@@ -162,7 +162,7 @@
                <imprint>
                   <date>1980</date>
                </imprint>
-               <biblScope unit="page">99—112</biblScope>
+               <biblScope unit="page" from="99" to="112">99—112</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -209,7 +209,7 @@
                <imprint>
                   <date>1979</date>
                </imprint>
-               <biblScope unit="page">64 ff</biblScope>
+               <biblScope unit="page" from="64">64</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -222,7 +222,7 @@
                <imprint>
                   <date>1976</date>
                </imprint>
-               <biblScope unit="page">64 ff</biblScope>
+               <biblScope unit="page" from="64">64</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -235,7 +235,8 @@
                <imprint>
                   <date>1975</date>
                </imprint>
-               <biblScope unit="page">75</biblScope>
+               <biblScope unit="page" from="75">75</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -276,7 +277,7 @@
                <imprint>
                   <date>1979</date>
                </imprint>
-               <biblScope unit="page">78 ff</biblScope>
+               <biblScope unit="page" from="78">78</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -294,7 +295,7 @@
                <imprint>
                   <date>1979</date>
                </imprint>
-               <biblScope unit="page">90 ff</biblScope>
+               <biblScope unit="page" from="90">90</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -307,7 +308,8 @@
                <imprint>
                   <date>1979</date>
                </imprint>
-               <biblScope unit="page">66 ff</biblScope>
+               <biblScope unit="page" from="66">66</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -330,7 +332,7 @@
                <imprint>
                   <date>1972</date>
                </imprint>
-               <biblScope unit="page">82 ff</biblScope>
+               <biblScope unit="page" from="82">82</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -373,7 +375,7 @@
                <imprint>
                   <date>1976</date>
                </imprint>
-               <biblScope unit="page">113-128</biblScope>
+               <biblScope unit="page" from="113" to="128">113-128</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -462,7 +464,7 @@
                <imprint>
                   <date>1974</date>
                </imprint>
-               <biblScope unit="page">95—160</biblScope>
+               <biblScope unit="page" from="95" to="160">95—160</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -475,7 +477,7 @@
                <imprint>
                   <date>1976</date>
                </imprint>
-               <biblScope unit="page">339-375</biblScope>
+               <biblScope unit="page" from="339" to="375">339-375</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -493,7 +495,7 @@
                <imprint>
                   <date>1980</date>
                </imprint>
-               <biblScope unit="page">138</biblScope>
+               <biblScope unit="page" from="138">138</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -506,7 +508,8 @@
                <imprint>
                   <date>1979</date>
                </imprint>
-               <biblScope unit="page">96 ff</biblScope>
+               <biblScope unit="page" from="96">96 ff</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -529,7 +532,9 @@
                <imprint>
                   <date>1972</date>
                </imprint>
-               <biblScope unit="page">89, Fn. 17</biblScope>
+               <biblScope unit="page" from="89">89</biblScope>
+               <biblScope unit="page" from="Fn">Fn. 17</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -564,7 +569,7 @@
                <imprint>
                   <date>1979</date>
                </imprint>
-               <biblScope unit="page">102 ff</biblScope>
+               <biblScope unit="page" from="102">102</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -575,7 +580,7 @@
                <imprint>
                   <date>1980</date>
                </imprint>
-               <biblScope unit="page">83—98</biblScope>
+               <biblScope unit="page" from="83" to="98">83—98</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -588,7 +593,8 @@
                <imprint>
                   <date>1979</date>
                </imprint>
-               <biblScope unit="page">35</biblScope>
+               <biblScope unit="page" from="35">35</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -606,7 +612,7 @@
                <imprint>
                   <date>1980</date>
                </imprint>
-               <biblScope unit="page">24 und S. 49</biblScope>
+               <biblScope unit="page" from="24">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#">
@@ -619,7 +625,7 @@
                <imprint>
                   <date>1975</date>
                </imprint>
-               <biblScope unit="page">293—306</biblScope>
+               <biblScope unit="page" from="293" to="306">293—306</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -637,7 +643,8 @@
                <imprint>
                   <date>1980</date>
                </imprint>
-               <biblScope unit="page">72 ff</biblScope>
+               <biblScope unit="page" from="72">72</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -684,7 +691,7 @@
                <imprint>
                   <date>1979</date>
                </imprint>
-               <biblScope unit="page">78 ff</biblScope>
+               <biblScope unit="page" from="78">78</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -980,7 +987,7 @@
                   <date>1974</date>
                </imprint>
                <biblScope unit="vol">vol. 9</biblScope>
-               <biblScope unit="page">675—694</biblScope>
+               <biblScope unit="page" from="675" to="694">675—694</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -1023,7 +1030,7 @@
                   <date>1974</date>
                </imprint>
                <biblScope unit="vol">vol. 9</biblScope>
-               <biblScope unit="page">63—94</biblScope>
+               <biblScope unit="page" from="63" to="94">63—94</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -1043,7 +1050,7 @@
                   <date>1974</date>
                </imprint>
                <biblScope unit="vol">vol. 9</biblScope>
-               <biblScope unit="page">695-706</biblScope>
+               <biblScope unit="page" from="695" to="706">695-706</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -1062,7 +1069,7 @@
                   <date>1974</date>
                </imprint>
                <biblScope unit="vol">vol. 9</biblScope>
-               <biblScope unit="page">95—160</biblScope>
+               <biblScope unit="page" from="95" to="160">95—160</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -1249,7 +1256,7 @@
                <imprint>
                   <date>1978</date>
                </imprint>
-               <biblScope unit="page">IIM-dp/78—70</biblScope>
+               <biblScope unit="page" from="IIM" to="dp">IIM-dp/78—70</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -1266,7 +1273,7 @@
                <imprint>
                   <date>1979</date>
                </imprint>
-               <biblScope unit="page">IIM-dp/79—104</biblScope>
+               <biblScope unit="page" from="IIM" to="dp">IIM-dp/79—104</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -1328,7 +1335,7 @@
                   <pubPlace>Austin</pubPlace>
                </imprint>
                <biblScope unit="vol">vol. 10</biblScope>
-               <biblScope unit="page">339—375</biblScope>
+               <biblScope unit="page" from="339" to="375">339—375</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#">
@@ -1389,7 +1396,7 @@
                   <date>1975</date>
                </imprint>
                <biblScope unit="vol">vol. 9</biblScope>
-               <biblScope unit="page">293-306</biblScope>
+               <biblScope unit="page" from="293" to="306">293-306</biblScope>
             </monogr>
          </biblStruct>
       </listBibl>
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
index 78a3582..cb305fe 100644
--- 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
@@ -32,7 +32,7 @@
                </author>
                <imprint/>
                <biblScope unit="vol">I</biblScope>
-               <biblScope unit="page">12 ff</biblScope>
+               <biblScope unit="page" from="12">12</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -69,7 +69,7 @@
                   <date>1967</date>
                </imprint>
                <biblScope unit="vol">III</biblScope>
-               <biblScope unit="page">1 (3)</biblScope>
+               <biblScope unit="page" from="1">1</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -103,7 +103,8 @@
                   <date>1973</date>
                </imprint>
                <biblScope unit="vol">26</biblScope>
-               <biblScope unit="page">174 ff</biblScope>
+               <biblScope unit="page" from="174">174</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -121,7 +122,7 @@
                   <date>1979</date>
                </imprint>
                <biblScope unit="vol">78</biblScope>
-               <biblScope unit="page">51 ff</biblScope>
+               <biblScope unit="page" from="51">51</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -139,7 +140,7 @@
                   <date>1969</date>
                   <pubPlace>Paris</pubPlace>
                </imprint>
-               <biblScope unit="page">75 (83)</biblScope>
+               <biblScope unit="page" from="75">75</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -173,7 +174,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">3 (9 ff.)</biblScope>
+               <biblScope unit="page" from="3">3</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -197,7 +198,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">171 ff</biblScope>
+               <biblScope unit="page" from="171">171</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -232,7 +233,7 @@
                   <date>1970</date>
                </imprint>
                <biblScope unit="vol">22</biblScope>
-               <biblScope unit="page">509 (526)</biblScope>
+               <biblScope unit="page" from="509">509</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -250,7 +251,7 @@
                   <date>1977</date>
                </imprint>
                <biblScope unit="vol">11</biblScope>
-               <biblScope unit="page">507 ff</biblScope>
+               <biblScope unit="page" from="507">507</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -284,7 +285,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">3 (18)</biblScope>
+               <biblScope unit="page" from="3">3</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -308,7 +309,7 @@
                   <pubPlace>Greenwich, Conn</pubPlace>
                </imprint>
                <biblScope unit="vol">Vol. 1</biblScope>
-               <biblScope unit="page">1</biblScope>
+               <biblScope unit="page" from="1">1</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -334,7 +335,8 @@
                   </persName>
                </author>
                <imprint/>
-               <biblScope unit="page">117 ff</biblScope>
+               <biblScope unit="page" from="117">117</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -345,7 +347,8 @@
                   </persName>
                </author>
                <imprint/>
-               <biblScope unit="page">423 ff</biblScope>
+               <biblScope unit="page" from="423">423</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -388,7 +391,7 @@
                   <date>1967</date>
                   <pubPlace>New York, Chicago, San Francisco, Atlanta</pubPlace>
                </imprint>
-               <biblScope unit="page">375 ff</biblScope>
+               <biblScope unit="page" from="375">375</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -405,7 +408,7 @@
                   <date>1977</date>
                   <pubPlace>Paris</pubPlace>
                </imprint>
-               <biblScope unit="page">137</biblScope>
+               <biblScope unit="page" from="137">137</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -416,7 +419,7 @@
                   </persName>
                </author>
                <imprint/>
-               <biblScope unit="page">2 f</biblScope>
+               <biblScope unit="page" from="2">2</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -437,7 +440,7 @@
                   <date>1973</date>
                </imprint>
                <biblScope unit="vol">24</biblScope>
-               <biblScope unit="page">13 (15 ff.).</biblScope>
+               <biblScope unit="page" from="13">13</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -456,7 +459,7 @@
                   <pubPlace>London</pubPlace>
                </imprint>
                <biblScope unit="vol">Bd. 14</biblScope>
-               <biblScope unit="page">421 (423)</biblScope>
+               <biblScope unit="page" from="421">421</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -484,7 +487,7 @@
                   <date>1969</date>
                </imprint>
                <biblScope unit="vol">Bd. Vll 1 (2. Auf</biblScope>
-               <biblScope unit="page">514 (520 ff.)</biblScope>
+               <biblScope unit="page" from="514">514</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -516,7 +519,8 @@
                   </persName>
                </author>
                <imprint/>
-               <biblScope unit="page">168 f</biblScope>
+               <biblScope unit="page" from="168">168</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -545,7 +549,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">267 (270 ff.)</biblScope>
+               <biblScope unit="page" from="267">267</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -579,7 +583,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">151 (159)</biblScope>
+               <biblScope unit="page" from="151">151</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -597,7 +601,7 @@
                   <date>1974</date>
                   <pubPlace>Brüssel</pubPlace>
                </imprint>
-               <biblScope unit="page">81 (89 ff.)</biblScope>
+               <biblScope unit="page" from="81">81</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -614,7 +618,7 @@
                   <date>1972</date>
                   <pubPlace>Paris</pubPlace>
                </imprint>
-               <biblScope unit="page">188 N. 1</biblScope>
+               <biblScope unit="page" from="188">188 N. 1</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -632,7 +636,7 @@
                   <date>1972</date>
                </imprint>
                <biblScope unit="vol">3</biblScope>
-               <biblScope unit="page">305 (330 ff.)</biblScope>
+               <biblScope unit="page" from="305">305</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -669,7 +673,7 @@
                <imprint>
                   <date>1975</date>
                </imprint>
-               <biblScope unit="page">79 ff</biblScope>
+               <biblScope unit="page" from="79">79</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -692,7 +696,7 @@
                   <date>1979</date>
                </imprint>
                <biblScope unit="vol">62</biblScope>
-               <biblScope unit="page">163 ff</biblScope>
+               <biblScope unit="page" from="163">163</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -711,7 +715,7 @@
                <imprint>
                   <date>1976</date>
                </imprint>
-               <biblScope unit="page">45 (48)</biblScope>
+               <biblScope unit="page" from="45">45</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -735,7 +739,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">56 ff</biblScope>
+               <biblScope unit="page" from="56">56</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -769,7 +773,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">178 (186 ff.)</biblScope>
+               <biblScope unit="page" from="178">178</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -820,7 +824,7 @@
                   <date>1978</date>
                </imprint>
                <biblScope unit="vol">26</biblScope>
-               <biblScope unit="page">219 (224 ff.)</biblScope>
+               <biblScope unit="page" from="219">219</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -831,7 +835,7 @@
                   </persName>
                </author>
                <imprint/>
-               <biblScope unit="page">175 f</biblScope>
+               <biblScope unit="page" from="175">175</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -864,7 +868,7 @@
                   <date>1978</date>
                </imprint>
                <biblScope unit="vol">6</biblScope>
-               <biblScope unit="page">233 (240)</biblScope>
+               <biblScope unit="page" from="233">233</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -882,7 +886,7 @@
                   <date>1977</date>
                </imprint>
                <biblScope unit="vol">25</biblScope>
-               <biblScope unit="page">457 (479)</biblScope>
+               <biblScope unit="page" from="457">457</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -910,7 +914,7 @@
                   <date>1979</date>
                </imprint>
                <biblScope unit="vol">1</biblScope>
-               <biblScope unit="page">23 (31 ff.).</biblScope>
+               <biblScope unit="page" from="23">23</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -942,7 +946,7 @@
                <imprint>
                   <date>1978</date>
                </imprint>
-               <biblScope unit="page">395 (402 ff.)</biblScope>
+               <biblScope unit="page" from="395">395</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -960,7 +964,7 @@
                   <date>1978</date>
                </imprint>
                <biblScope unit="vol">23</biblScope>
-               <biblScope unit="page">5 ff</biblScope>
+               <biblScope unit="page" from="5">5</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -977,7 +981,7 @@
                </author>
                <imprint/>
                <biblScope unit="vol">I</biblScope>
-               <biblScope unit="page">30 f</biblScope>
+               <biblScope unit="page" from="30">30</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1001,7 +1005,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">49 (50 ff.)</biblScope>
+               <biblScope unit="page" from="49">49</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1012,7 +1016,8 @@
                   </persName>
                </author>
                <imprint/>
-               <biblScope unit="page">182 f</biblScope>
+               <biblScope unit="page" from="182">182</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1030,7 +1035,7 @@
                   <date>1978</date>
                </imprint>
                <biblScope unit="vol">30</biblScope>
-               <biblScope unit="page">361 (364 ff.)</biblScope>
+               <biblScope unit="page" from="361">361</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1064,7 +1069,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">131 (157 f.)</biblScope>
+               <biblScope unit="page" from="131">131</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1083,7 +1088,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">176 (185)</biblScope>
+               <biblScope unit="page" from="176">176</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1112,7 +1117,7 @@
                   <date>1975</date>
                </imprint>
                <biblScope unit="vol">Bd. 2</biblScope>
-               <biblScope unit="page">113 (124 ff.)</biblScope>
+               <biblScope unit="page" from="113">113</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1146,7 +1151,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">56 (80)</biblScope>
+               <biblScope unit="page" from="56">56</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1170,7 +1175,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">123 (134 ff.)</biblScope>
+               <biblScope unit="page" from="123">123</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1205,8 +1210,8 @@
                      </persName>
                   </publisher>
                </imprint>
-               <biblScope unit="page">82 ff</biblScope>
-               <biblScope unit="page">40</biblScope>
+               <biblScope unit="page" from="82">82 ff</biblScope>
+               <biblScope unit="page" from="40">40</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1253,7 +1258,7 @@
                      </persName>
                   </publisher>
                </imprint>
-               <biblScope unit="page">13) 2 ff</biblScope>
+               <biblScope unit="page" from="13">13) 2</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1291,7 +1296,7 @@
                   <date>1978</date>
                </imprint>
                <biblScope unit="vol">19</biblScope>
-               <biblScope unit="page">161 ff</biblScope>
+               <biblScope unit="page" from="161">161</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1339,7 +1344,7 @@
                   <date>1979</date>
                </imprint>
                <biblScope unit="vol">78</biblScope>
-               <biblScope unit="page">154 ff</biblScope>
+               <biblScope unit="page" from="154">154</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1366,7 +1371,7 @@
                </author>
                <imprint/>
                <biblScope unit="vol">I</biblScope>
-               <biblScope unit="page">70</biblScope>
+               <biblScope unit="page" from="70">70</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1410,7 +1415,7 @@
                </author>
                <imprint/>
                <biblScope unit="vol">1</biblScope>
-               <biblScope unit="page">110 f</biblScope>
+               <biblScope unit="page" from="110">110</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1439,7 +1444,7 @@
                   <date>1980</date>
                   <pubPlace>London</pubPlace>
                </imprint>
-               <biblScope unit="page">Chapter VIII</biblScope>
+               <biblScope unit="page" from="Chapter">Chapter VIII</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1456,7 +1461,7 @@
                </author>
                <imprint/>
                <biblScope unit="vol">I</biblScope>
-               <biblScope unit="page">78</biblScope>
+               <biblScope unit="page" from="78">78</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1497,7 +1502,8 @@
                   <date>1970</date>
                </imprint>
                <biblScope unit="vol">34</biblScope>
-               <biblScope unit="page">1 ff</biblScope>
+               <biblScope unit="page" from="1">1</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1515,7 +1521,7 @@
                   <date>1970</date>
                </imprint>
                <biblScope unit="vol">34</biblScope>
-               <biblScope unit="page">443 ff</biblScope>
+               <biblScope unit="page" from="443">443</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1556,7 +1562,7 @@
                   <date>1978</date>
                   <pubPlace>San Francisco, Washington, London</pubPlace>
                </imprint>
-               <biblScope unit="page">97 ff</biblScope>
+               <biblScope unit="page" from="97">97</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1574,7 +1580,7 @@
                   <date>1979</date>
                </imprint>
                <biblScope unit="vol">8</biblScope>
-               <biblScope unit="page">362 ff</biblScope>
+               <biblScope unit="page" from="362">362</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1595,7 +1601,7 @@
                   </persName>
                </author>
                <imprint/>
-               <biblScope unit="page">167 ff</biblScope>
+               <biblScope unit="page" from="167">167</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1619,7 +1625,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">95 (101) ff</biblScope>
+               <biblScope unit="page" from="95">95</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1689,7 +1695,7 @@
                   <date>1978</date>
                </imprint>
                <biblScope unit="vol">6</biblScope>
-               <biblScope unit="page">221 ff</biblScope>
+               <biblScope unit="page" from="221">221</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1733,7 +1739,8 @@
                   <date>1978</date>
                </imprint>
                <biblScope unit="vol">7</biblScope>
-               <biblScope unit="page">228 ff</biblScope>
+               <biblScope unit="page" from="228">228</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1761,7 +1768,7 @@
                   <date>1978</date>
                </imprint>
                <biblScope unit="vol">5</biblScope>
-               <biblScope unit="page">109 ff</biblScope>
+               <biblScope unit="page" from="109">109</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1779,7 +1786,7 @@
                   <date>1970</date>
                </imprint>
                <biblScope unit="vol">21 No. 1</biblScope>
-               <biblScope unit="page">83 (88 ff.)</biblScope>
+               <biblScope unit="page" from="83">83</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1795,7 +1802,7 @@
                <imprint>
                   <date>1975</date>
                </imprint>
-               <biblScope unit="page">196 ff</biblScope>
+               <biblScope unit="page" from="196">196</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1813,7 +1820,7 @@
                   <date>1977</date>
                   <pubPlace>Den Haag</pubPlace>
                </imprint>
-               <biblScope unit="page">85 (88 ff.)</biblScope>
+               <biblScope unit="page" from="85">85</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1857,7 +1864,7 @@
                   <date>1973</date>
                   <pubPlace>Bristol</pubPlace>
                </imprint>
-               <biblScope unit="page">101 (126)</biblScope>
+               <biblScope unit="page" from="101">101</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1894,7 +1901,7 @@
                   <date>1974</date>
                </imprint>
                <biblScope unit="vol">Bd. 4 (3. Aufl</biblScope>
-               <biblScope unit="page">405 (414 f.)</biblScope>
+               <biblScope unit="page" from="405">405</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1912,7 +1919,7 @@
                   <date>1979</date>
                </imprint>
                <biblScope unit="vol">Son derheft 2</biblScope>
-               <biblScope unit="page">5 ff</biblScope>
+               <biblScope unit="page" from="5">5</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1933,7 +1940,7 @@
                <imprint>
                   <date>1976</date>
                </imprint>
-               <biblScope unit="page">37 ff</biblScope>
+               <biblScope unit="page" from="37">37</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1966,7 +1973,7 @@
                   <date>1973</date>
                </imprint>
                <biblScope unit="vol">1</biblScope>
-               <biblScope unit="page">151 (152)</biblScope>
+               <biblScope unit="page" from="151">151</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -1982,7 +1989,8 @@
                <imprint>
                   <date>1972</date>
                </imprint>
-               <biblScope unit="page">9 ff</biblScope>
+               <biblScope unit="page" from="9">9</biblScope>
+               <biblScope unit="page"/>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -2006,7 +2014,7 @@
                   </persName>
                </editor>
                <imprint/>
-               <biblScope unit="page">49 ff</biblScope>
+               <biblScope unit="page" from="49">49</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -2042,7 +2050,7 @@
                   <date>1977</date>
                   <pubPlace>Budapest</pubPlace>
                </imprint>
-               <biblScope unit="page">97 (99 ff.)</biblScope>
+               <biblScope unit="page" from="97">97</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -2059,7 +2067,7 @@
                <imprint>
                   <date>1973</date>
                </imprint>
-               <biblScope unit="page">403 ff</biblScope>
+               <biblScope unit="page" from="403">403</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -2076,7 +2084,7 @@
                <imprint>
                   <date>1979</date>
                </imprint>
-               <biblScope unit="page">377 ff</biblScope>
+               <biblScope unit="page" from="377">377</biblScope>
             </monogr>
          </biblStruct>
          <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#">
@@ -2094,7 +2102,7 @@
                   <date>1979</date>
                </imprint>
                <biblScope unit="vol">12</biblScope>
-               <biblScope unit="page">159 ff</biblScope>
+               <biblScope unit="page" from="159">159</biblScope>
             </monogr>
          </biblStruct>
       </listBibl>
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
index e6a92d4..6f69ee6 100644
--- 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
@@ -25,7 +25,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>77</start>
                <end/>
             </extent>
          </part>
@@ -64,7 +64,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>27<extent unit="pages">
-               <start/>
+               <start>183</start>
                <end/>
             </extent>
          </part>
@@ -138,7 +138,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>20<extent unit="pages">
-               <start/>
+               <start>1072</start>
                <end/>
             </extent>
          </part>
@@ -169,7 +169,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>28<extent unit="pages">
-               <start/>
+               <start>379</start>
                <end/>
             </extent>
          </part>
@@ -200,7 +200,11 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>125</start>
+               <end>6</end>
+            </extent>
+            <extent unit="pages">
+               <start>146</start>
                <end/>
             </extent>
          </part>
@@ -231,7 +235,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>75</start>
                <end/>
             </extent>
          </part>
@@ -294,7 +298,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>442</start>
                <end/>
             </extent>
          </part>
@@ -316,7 +320,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>196</start>
                <end/>
             </extent>
          </part>
@@ -347,7 +351,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>20<extent unit="pages">
-               <start/>
+               <start>56</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>61</start>
                <end/>
             </extent>
          </part>
@@ -394,7 +402,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>145</start>
                <end/>
             </extent>
          </part>
@@ -424,7 +432,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>98</start>
                <end/>
             </extent>
          </part>
@@ -455,7 +463,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>3<extent unit="pages">
-               <start/>
+               <start>30</start>
                <end/>
             </extent>
          </part>
@@ -485,7 +493,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>174</start>
                <end/>
             </extent>
          </part>
@@ -515,7 +523,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>160</start>
                <end/>
             </extent>
          </part>
@@ -545,7 +553,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>ix</start>
                <end/>
             </extent>
          </part>
@@ -574,7 +582,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>4<extent unit="pages">
-               <start/>
+               <start>220</start>
                <end/>
             </extent>
          </part>
@@ -605,7 +613,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>105<extent unit="pages">
-               <start/>
+               <start>2117</start>
                <end/>
             </extent>
          </part>
@@ -660,7 +668,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>especially</start>
                <end/>
             </extent>
          </part>
@@ -703,6 +711,10 @@
             <issuance>monographic</issuance>
          </originInfo>
          <part>
+            <extent unit="pages">
+               <start>74</start>
+               <end/>
+            </extent>
             <extent unit="pages">
                <start/>
                <end/>
@@ -734,7 +746,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>127</start>
                <end/>
             </extent>
          </part>
@@ -764,7 +776,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>3</start>
                <end/>
             </extent>
          </part>
@@ -848,7 +860,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>94<extent unit="pages">
-               <start/>
+               <start>997</start>
                <end/>
             </extent>
          </part>
@@ -879,7 +891,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>347</start>
                <end/>
             </extent>
          </part>
@@ -960,7 +972,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>59</start>
                <end/>
             </extent>
          </part>
@@ -990,7 +1002,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>5</start>
                <end/>
             </extent>
          </part>
@@ -1055,7 +1067,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>56<extent unit="pages">
-               <start/>
+               <start>99</start>
                <end/>
             </extent>
          </part>
@@ -1086,7 +1098,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>78<extent unit="pages">
-               <start/>
+               <start>59</start>
                <end/>
             </extent>
          </part>
@@ -1155,7 +1167,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>especially</start>
                <end/>
             </extent>
          </part>
@@ -1185,7 +1197,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>120</start>
                <end/>
             </extent>
          </part>
@@ -1216,7 +1228,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>4<extent unit="pages">
-               <start/>
+               <start>93</start>
                <end/>
             </extent>
          </part>
@@ -1247,7 +1259,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>13<extent unit="pages">
-               <start/>
+               <start>23</start>
                <end/>
             </extent>
          </part>
@@ -1278,7 +1290,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>57<extent unit="pages">
-               <start/>
+               <start>467</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>468</start>
                <end/>
             </extent>
          </part>
@@ -1309,7 +1325,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>16<extent unit="pages">
-               <start/>
+               <start>368</start>
                <end/>
             </extent>
          </part>
@@ -1340,7 +1356,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>59<extent unit="pages">
-               <start/>
+               <start>675</start>
                <end/>
             </extent>
          </part>
@@ -1391,7 +1407,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>94</start>
                <end/>
             </extent>
          </part>
@@ -1421,7 +1437,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>especially</start>
                <end/>
             </extent>
          </part>
@@ -1452,7 +1468,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>73<extent unit="pages">
-               <start/>
+               <start>733</start>
                <end/>
             </extent>
          </part>
@@ -1508,7 +1524,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>11<extent unit="pages">
-               <start/>
+               <start>100</start>
                <end/>
             </extent>
          </part>
@@ -1539,7 +1555,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>16<extent unit="pages">
-               <start/>
+               <start>412</start>
                <end/>
             </extent>
          </part>
@@ -1579,7 +1595,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>8<extent unit="pages">
-               <start/>
+               <start>111</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>133</start>
                <end/>
             </extent>
          </part>
@@ -1610,7 +1630,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>18<extent unit="pages">
-               <start/>
+               <start>206</start>
                <end/>
             </extent>
          </part>
@@ -1665,7 +1685,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>46</start>
                <end/>
             </extent>
          </part>
@@ -1696,8 +1716,8 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
-               <end/>
+               <start>262</start>
+               <end>4</end>
             </extent>
          </part>
       </relatedItem>
@@ -1727,7 +1747,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>19<extent unit="pages">
-               <start/>
+               <start>701</start>
                <end/>
             </extent>
          </part>
@@ -1758,7 +1778,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>11<extent unit="pages">
-               <start/>
+               <start>295</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>300</start>
                <end/>
             </extent>
          </part>
@@ -1789,7 +1813,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>7</start>
                <end/>
             </extent>
          </part>
@@ -1820,9 +1844,13 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>45<extent unit="pages">
-               <start/>
+               <start>424</start>
                <end/>
             </extent>
+            <extent unit="pages">
+               <start>431</start>
+               <end>3</end>
+            </extent>
          </part>
       </relatedItem>
       <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition>
@@ -1937,7 +1965,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>26</start>
                <end/>
             </extent>
          </part>
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
index 8448657..0bec2af 100644
--- 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
@@ -25,7 +25,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>14</start>
                <end/>
             </extent>
          </part>
@@ -56,7 +56,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>169<extent unit="pages">
-               <start/>
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -86,7 +86,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>20</start>
                <end/>
             </extent>
          </part>
@@ -142,7 +142,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>89<extent unit="pages">
-               <start/>
+               <start>1685</start>
                <end/>
             </extent>
          </part>
@@ -174,7 +174,11 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>470</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -205,7 +209,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>19</start>
                <end/>
             </extent>
          </part>
@@ -235,7 +239,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>296</start>
                <end/>
             </extent>
          </part>
@@ -384,7 +388,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>2<extent unit="pages">
-               <start/>
+               <start>15</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -424,7 +432,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>137<extent unit="pages">
-               <start/>
+               <start>835</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -454,7 +466,7 @@
             <issuance>monographic</issuance>
          </originInfo>
          <part>Volume III<extent unit="pages">
-               <start/>
+               <start>215</start>
                <end/>
             </extent>
          </part>
@@ -484,7 +496,7 @@
             <issuance>monographic</issuance>
          </originInfo>
          <part>XXI<extent unit="pages">
-               <start/>
+               <start>218</start>
                <end/>
             </extent>
          </part>
@@ -567,7 +579,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>106</start>
                <end/>
             </extent>
          </part>
@@ -598,7 +610,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>29<extent unit="pages">
-               <start/>
+               <start>121</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -628,7 +644,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -650,7 +666,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -680,7 +696,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>68</start>
                <end/>
             </extent>
          </part>
@@ -736,7 +752,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>I<extent unit="pages">
-               <start/>
+               <start>47</start>
                <end/>
             </extent>
          </part>
@@ -767,7 +783,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>VII<extent unit="pages">
-               <start/>
+               <start>173</start>
                <end/>
             </extent>
          </part>
@@ -798,7 +814,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>19<extent unit="pages">
-               <start/>
+               <start>427</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -829,7 +849,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>46<extent unit="pages">
-               <start/>
+               <start>1</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -860,7 +884,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>44<extent unit="pages">
-               <start/>
+               <start>256</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -899,7 +927,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>31<extent unit="pages">
-               <start/>
+               <start>38</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -930,7 +962,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>13<extent unit="pages">
-               <start/>
+               <start>143</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -995,7 +1031,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>29<extent unit="pages">
-               <start/>
+               <start>189</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -1026,7 +1066,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>19<extent unit="pages">
-               <start/>
+               <start>12</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -1057,7 +1101,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>28<extent unit="pages">
-               <start/>
+               <start>281</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -1096,7 +1144,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>24<extent unit="pages">
-               <start/>
+               <start>246</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -1127,8 +1179,8 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
-               <end/>
+               <start>10</start>
+               <end>24</end>
             </extent>
          </part>
       </relatedItem>
@@ -1158,7 +1210,11 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>20<extent unit="pages">
-               <start/>
+               <start>110</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
+               <start>at</start>
                <end/>
             </extent>
          </part>
@@ -1188,7 +1244,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>20</start>
                <end/>
             </extent>
          </part>
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
index 6a63d45..1f3af80 100644
--- 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
@@ -326,8 +326,8 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>vol. 9<extent unit="pages">
-               <start/>
-               <end/>
+               <start>675</start>
+               <end>694</end>
             </extent>
          </part>
       </relatedItem>
@@ -392,8 +392,8 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>vol. 9<extent unit="pages">
-               <start/>
-               <end/>
+               <start>63</start>
+               <end>94</end>
             </extent>
          </part>
       </relatedItem>
@@ -424,8 +424,8 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>vol. 9<extent unit="pages">
-               <start/>
-               <end/>
+               <start>695</start>
+               <end>706</end>
             </extent>
          </part>
       </relatedItem>
@@ -455,8 +455,8 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>vol. 9<extent unit="pages">
-               <start/>
-               <end/>
+               <start>95</start>
+               <end>160</end>
             </extent>
          </part>
       </relatedItem>
@@ -666,8 +666,8 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
-               <end/>
+               <start>IIM</start>
+               <end>dp</end>
             </extent>
          </part>
       </relatedItem>
@@ -696,8 +696,8 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
-               <end/>
+               <start>IIM</start>
+               <end>dp</end>
             </extent>
          </part>
       </relatedItem>
@@ -762,8 +762,8 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>vol. 10<extent unit="pages">
-               <start/>
-               <end/>
+               <start>339</start>
+               <end>375</end>
             </extent>
          </part>
       </relatedItem>
@@ -846,8 +846,8 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>vol. 9<extent unit="pages">
-               <start/>
-               <end/>
+               <start>293</start>
+               <end>306</end>
             </extent>
          </part>
       </relatedItem>
@@ -1055,8 +1055,8 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
-               <end/>
+               <start>83</start>
+               <end>98</end>
             </extent>
          </part>
       </relatedItem>
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
index 9419a6f..d7aa442 100644
--- 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
@@ -167,7 +167,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>III<extent unit="pages">
-               <start/>
+               <start>1</start>
                <end/>
             </extent>
          </part>
@@ -198,6 +198,10 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>26<extent unit="pages">
+               <start>174</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
                <start/>
                <end/>
             </extent>
@@ -228,7 +232,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>78<extent unit="pages">
-               <start/>
+               <start>51</start>
                <end/>
             </extent>
          </part>
@@ -259,7 +263,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>75</start>
                <end/>
             </extent>
          </part>
@@ -288,7 +292,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>3</start>
                <end/>
             </extent>
          </part>
@@ -317,7 +321,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>171</start>
                <end/>
             </extent>
          </part>
@@ -373,7 +377,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>22<extent unit="pages">
-               <start/>
+               <start>509</start>
                <end/>
             </extent>
          </part>
@@ -403,7 +407,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>11<extent unit="pages">
-               <start/>
+               <start>507</start>
                <end/>
             </extent>
          </part>
@@ -432,7 +436,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>3</start>
                <end/>
             </extent>
          </part>
@@ -462,7 +466,7 @@
             <issuance>monographic</issuance>
          </originInfo>
          <part>Vol. 1<extent unit="pages">
-               <start/>
+               <start>1</start>
                <end/>
             </extent>
          </part>
@@ -531,7 +535,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>375</start>
                <end/>
             </extent>
          </part>
@@ -561,7 +565,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>137</start>
                <end/>
             </extent>
          </part>
@@ -597,7 +601,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>24<extent unit="pages">
-               <start/>
+               <start>13</start>
                <end/>
             </extent>
          </part>
@@ -628,7 +632,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>Bd. 14<extent unit="pages">
-               <start/>
+               <start>421</start>
                <end/>
             </extent>
          </part>
@@ -664,7 +668,7 @@
             <issuance>monographic</issuance>
          </originInfo>
          <part>Bd. Vll 1 (2. Auf<extent unit="pages">
-               <start/>
+               <start>514</start>
                <end/>
             </extent>
          </part>
@@ -711,7 +715,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>267</start>
                <end/>
             </extent>
          </part>
@@ -740,7 +744,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>151</start>
                <end/>
             </extent>
          </part>
@@ -771,7 +775,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>81</start>
                <end/>
             </extent>
          </part>
@@ -801,7 +805,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>188</start>
                <end/>
             </extent>
          </part>
@@ -831,7 +835,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>3<extent unit="pages">
-               <start/>
+               <start>305</start>
                <end/>
             </extent>
          </part>
@@ -861,7 +865,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>79</start>
                <end/>
             </extent>
          </part>
@@ -898,7 +902,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>62<extent unit="pages">
-               <start/>
+               <start>163</start>
                <end/>
             </extent>
          </part>
@@ -930,7 +934,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>45</start>
                <end/>
             </extent>
          </part>
@@ -959,7 +963,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>56</start>
                <end/>
             </extent>
          </part>
@@ -988,7 +992,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>178</start>
                <end/>
             </extent>
          </part>
@@ -1045,7 +1049,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>26<extent unit="pages">
-               <start/>
+               <start>219</start>
                <end/>
             </extent>
          </part>
@@ -1082,7 +1086,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>6<extent unit="pages">
-               <start/>
+               <start>233</start>
                <end/>
             </extent>
          </part>
@@ -1112,7 +1116,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>25<extent unit="pages">
-               <start/>
+               <start>457</start>
                <end/>
             </extent>
          </part>
@@ -1142,7 +1146,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>1<extent unit="pages">
-               <start/>
+               <start>23</start>
                <end/>
             </extent>
          </part>
@@ -1179,7 +1183,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>395</start>
                <end/>
             </extent>
          </part>
@@ -1209,7 +1213,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>23<extent unit="pages">
-               <start/>
+               <start>5</start>
                <end/>
             </extent>
          </part>
@@ -1238,7 +1242,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>49</start>
                <end/>
             </extent>
          </part>
@@ -1268,7 +1272,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>30<extent unit="pages">
-               <start/>
+               <start>361</start>
                <end/>
             </extent>
          </part>
@@ -1304,7 +1308,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>131</start>
                <end/>
             </extent>
          </part>
@@ -1333,7 +1337,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>176</start>
                <end/>
             </extent>
          </part>
@@ -1362,7 +1366,7 @@
             <issuance>monographic</issuance>
          </originInfo>
          <part>Bd. 2<extent unit="pages">
-               <start/>
+               <start>113</start>
                <end/>
             </extent>
          </part>
@@ -1391,7 +1395,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>56</start>
                <end/>
             </extent>
          </part>
@@ -1420,7 +1424,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>123</start>
                <end/>
             </extent>
          </part>
@@ -1452,11 +1456,11 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>82</start>
                <end/>
             </extent>
             <extent unit="pages">
-               <start/>
+               <start>40</start>
                <end/>
             </extent>
          </part>
@@ -1511,7 +1515,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>13</start>
                <end/>
             </extent>
          </part>
@@ -1541,7 +1545,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>19<extent unit="pages">
-               <start/>
+               <start>161</start>
                <end/>
             </extent>
          </part>
@@ -1571,7 +1575,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>78<extent unit="pages">
-               <start/>
+               <start>154</start>
                <end/>
             </extent>
          </part>
@@ -1628,7 +1632,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>Chapter</start>
                <end/>
             </extent>
          </part>
@@ -1658,6 +1662,10 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>34<extent unit="pages">
+               <start>1</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
                <start/>
                <end/>
             </extent>
@@ -1688,7 +1696,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>34<extent unit="pages">
-               <start/>
+               <start>443</start>
                <end/>
             </extent>
          </part>
@@ -1744,7 +1752,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>97</start>
                <end/>
             </extent>
          </part>
@@ -1774,7 +1782,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>8<extent unit="pages">
-               <start/>
+               <start>362</start>
                <end/>
             </extent>
          </part>
@@ -1803,7 +1811,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>95</start>
                <end/>
             </extent>
          </part>
@@ -1889,7 +1897,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>6<extent unit="pages">
-               <start/>
+               <start>221</start>
                <end/>
             </extent>
          </part>
@@ -1958,6 +1966,10 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>7<extent unit="pages">
+               <start>228</start>
+               <end/>
+            </extent>
+            <extent unit="pages">
                <start/>
                <end/>
             </extent>
@@ -2002,7 +2014,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>5<extent unit="pages">
-               <start/>
+               <start>109</start>
                <end/>
             </extent>
          </part>
@@ -2032,7 +2044,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>21 No. 1<extent unit="pages">
-               <start/>
+               <start>83</start>
                <end/>
             </extent>
          </part>
@@ -2061,7 +2073,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>196</start>
                <end/>
             </extent>
          </part>
@@ -2093,7 +2105,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>85</start>
                <end/>
             </extent>
          </part>
@@ -2124,7 +2136,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>101</start>
                <end/>
             </extent>
          </part>
@@ -2178,7 +2190,7 @@
             <issuance>monographic</issuance>
          </originInfo>
          <part>Bd. 4 (3. Aufl<extent unit="pages">
-               <start/>
+               <start>405</start>
                <end/>
             </extent>
          </part>
@@ -2208,7 +2220,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>Son derheft 2<extent unit="pages">
-               <start/>
+               <start>5</start>
                <end/>
             </extent>
          </part>
@@ -2237,7 +2249,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>37</start>
                <end/>
             </extent>
          </part>
@@ -2267,7 +2279,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>1<extent unit="pages">
-               <start/>
+               <start>151</start>
                <end/>
             </extent>
          </part>
@@ -2295,6 +2307,10 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>
+            <extent unit="pages">
+               <start>9</start>
+               <end/>
+            </extent>
             <extent unit="pages">
                <start/>
                <end/>
@@ -2325,7 +2341,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>49</start>
                <end/>
             </extent>
          </part>
@@ -2356,7 +2372,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>97</start>
                <end/>
             </extent>
          </part>
@@ -2386,7 +2402,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>403</start>
                <end/>
             </extent>
          </part>
@@ -2417,7 +2433,7 @@
          </originInfo>
          <part>
             <extent unit="pages">
-               <start/>
+               <start>377</start>
                <end/>
             </extent>
          </part>
@@ -2447,7 +2463,7 @@
             <issuance>continuing</issuance>
          </originInfo>
          <part>12<extent unit="pages">
-               <start/>
+               <start>159</start>
                <end/>
             </extent>
          </part>
diff --git a/convert-anystyle-data/tei-to-bibformats.ipynb b/convert-anystyle-data/tei-to-bibformats.ipynb
index 637836f..48c77aa 100644
--- a/convert-anystyle-data/tei-to-bibformats.ipynb
+++ b/convert-anystyle-data/tei-to-bibformats.ipynb
@@ -109,8 +109,8 @@
   {
    "metadata": {
     "ExecuteTime": {
-     "end_time": "2024-08-22T09:27:09.176733Z",
-     "start_time": "2024-08-22T09:27:02.044382Z"
+     "end_time": "2024-08-22T10:59:08.912887Z",
+     "start_time": "2024-08-22T10:59:02.498353Z"
     }
    },
    "cell_type": "code",
@@ -142,12 +142,12 @@
        "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": 87,
+     "execution_count": 92,
      "metadata": {},
      "output_type": "execute_result"
     }
    ],
-   "execution_count": 87
+   "execution_count": 92
   },
   {
    "metadata": {},
diff --git a/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml b/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml
index 9fabb21..1bbbaae 100644
--- a/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml
+++ b/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml
@@ -38,7 +38,7 @@
           (
           <date>1991</date>
           )
-          <biblScope unit="page">77</biblScope>
+          <biblScope unit="page" from="77">77</biblScope>
           .
         </bibl>
       </note>
@@ -64,7 +64,7 @@
           )
           <biblScope unit="vol">27</biblScope>
           <title level="j">Political Studies</title>
-          <biblScope unit="page">183</biblScope>
+          <biblScope unit="page" from="183">183</biblScope>
           .
         </bibl>
       </note>
@@ -120,7 +120,7 @@
           <biblScope unit="vol">20</biblScope>
           <title level="j">Melbourne University Law Rev</title>
           .
-          <biblScope unit="page">1072</biblScope>
+          <biblScope unit="page" from="1072">1072</biblScope>
           .
         </bibl>
       </note>
@@ -139,7 +139,7 @@
           )
           <biblScope unit="vol">28</biblScope>
           <title level="j">Sociology</title>
-          <biblScope unit="page">379</biblScope>
+          <biblScope unit="page" from="379">379</biblScope>
         </bibl>
       </note>
       <note n="6" type="footnote" place="bottom">
@@ -159,7 +159,9 @@
           ,
           <date>1991</date>
           )
-          <biblScope unit="page">125–6, s. 146</biblScope>
+          <biblScope unit="page" from="125" to="6">125–6</biblScope>
+          s.
+          <biblScope unit="page" from="146">146</biblScope>
           .
         </bibl>
       </note>
@@ -185,7 +187,7 @@
           (
           <date>1994</date>
           )
-          <biblScope unit="page">75</biblScope>
+          <biblScope unit="page" from="75">75</biblScope>
           .
         </bibl>
       </note>
@@ -209,7 +211,7 @@
           ’
           <ref>in id.</ref>
           , p.
-          <citedRange unit="page">97</citedRange>
+          <citedRange unit="page" from="97">97</citedRange>
           .
         </bibl>
       </note>
@@ -223,7 +225,7 @@
           ,
           <ref>id.</ref>
           , p.
-          <citedRange unit="page">79</citedRange>
+          <citedRange unit="page" from="79">79</citedRange>
           .
         </bibl>
         <bibl>
@@ -240,7 +242,7 @@
           ,
           <date>1979</date>
           )
-          <biblScope unit="page">442</biblScope>
+          <biblScope unit="page" from="442">442</biblScope>
           .
         </bibl>
       </note>
@@ -254,7 +256,7 @@
           ,
           <ref>op. cit., n. 7</ref>
           , pp.
-          <citedRange unit="page">80–1</citedRange>
+          <citedRange unit="page" from="80" to="1">80–1</citedRange>
           .
         </bibl>
       </note>
@@ -271,7 +273,7 @@
           (
           <date>1987</date>
           )
-          <biblScope unit="page">196</biblScope>
+          <biblScope unit="page" from="196">196</biblScope>
           .
         </bibl>
       </note>
@@ -290,7 +292,8 @@
           )
           <biblScope unit="vol">20</biblScope>
           <title level="j">J. of Law and Society</title>
-          <biblScope unit="page">56, 61</biblScope>
+          <biblScope unit="page" from="56">56</biblScope>
+          <biblScope unit="page" from="61">61</biblScope>
           .
         </bibl>
       </note>
@@ -313,7 +316,7 @@
         <bibl>
           <title level="a">Inquiry 137</title>
           ,
-          <biblScope unit="page">145</biblScope>
+          <biblScope unit="page" from="145">145</biblScope>
           .
         </bibl>
         <bibl>
@@ -336,7 +339,7 @@
           (
           <date>1980</date>
           )
-          <biblScope unit="page">98</biblScope>
+          <biblScope unit="page" from="98">98</biblScope>
           .
         </bibl>
       </note>
@@ -356,7 +359,7 @@
           )
           <biblScope unit="vol">3</biblScope>
           <title level="j">Aust. J. of Law and Society</title>
-          <biblScope unit="page">30</biblScope>
+          <biblScope unit="page" from="30">30</biblScope>
           .
         </bibl>
       </note>
@@ -375,7 +378,7 @@
           ,
           <date>1912</date>
           )
-          <biblScope unit="page">174</biblScope>
+          <biblScope unit="page" from="174">174</biblScope>
           .
         </bibl>
       </note>
@@ -397,7 +400,7 @@
           (
           <date>1977</date>
           )
-          <biblScope unit="page">160</biblScope>
+          <biblScope unit="page" from="160">160</biblScope>
           .
         </bibl>
       </note>
@@ -414,7 +417,7 @@
           (
           <date>1985</date>
           )
-          <biblScope unit="page">ix</biblScope>
+          <biblScope unit="page" from="ix">ix</biblScope>
           .
         </bibl>
       </note>
@@ -441,7 +444,7 @@
           )
           <biblScope unit="vol">4</biblScope>
           ,
-          <biblScope unit="page">220</biblScope>
+          <biblScope unit="page" from="220">220</biblScope>
           .
         </bibl>
       </note>
@@ -466,7 +469,7 @@
           <biblScope unit="vol">105</biblScope>
           <title level="j">Yale Law J</title>
           .
-          <biblScope unit="page">2117</biblScope>
+          <biblScope unit="page" from="2117">2117</biblScope>
           .
         </bibl>
       </note>
@@ -497,7 +500,7 @@
           (
           <date>1993</date>
           ),
-          <biblScope unit="page">especially 43–59</biblScope>
+          <biblScope unit="page" from="especially">especially 43–59</biblScope>
           .
         </bibl>
       </note>
@@ -592,8 +595,8 @@
           (
           <date>1996</date>
           )
-          <biblScope unit="page">74</biblScope>
-          ;
+          <biblScope unit="page" from="74">74</biblScope>
+          <biblScope unit="page"/>
         </bibl>
         <bibl>
           <author>
@@ -607,7 +610,7 @@
           (
           <date>1995</date>
           )
-          <biblScope unit="page">127 and throughout</biblScope>
+          <biblScope unit="page" from="127">127 and throughout</biblScope>
           .
         </bibl>
         <bibl>
@@ -636,7 +639,7 @@
           ,
           <date>1995</date>
           )
-          <biblScope unit="page">3</biblScope>
+          <biblScope unit="page" from="3">3</biblScope>
           .
         </bibl>
       </note>
@@ -698,7 +701,7 @@
           <biblScope unit="vol">94</biblScope>
           <title level="j">Yale Law J</title>
           .
-          <biblScope unit="page">997</biblScope>
+          <biblScope unit="page" from="997">997</biblScope>
           .
         </bibl>
       </note>
@@ -716,8 +719,8 @@
           (
           <date>1981</date>
           )
-          <biblScope unit="page">347 ff</biblScope>
-          .
+          <biblScope unit="page" from="347">347</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="28" type="footnote" place="bottom">
@@ -730,7 +733,7 @@
           ,
           <ref>op. cit., n. 18</ref>
           , p.
-          <citedRange unit="page">52</citedRange>
+          <citedRange unit="page" from="52">52</citedRange>
           .
         </bibl>
       </note>
@@ -746,7 +749,7 @@
           [
           <date>1919</date>
           ]
-          <biblScope unit="page">2 K.B. 571</biblScope>
+          <biblScope unit="page" from="2">2 K.B. 571</biblScope>
           .
         </bibl>
       </note>
@@ -848,7 +851,7 @@
           ,
           <ref>op. cit., n. 18</ref>
           , p.
-          <citedRange unit="page">38</citedRange>
+          <citedRange unit="page" from="38">38</citedRange>
           .
         </bibl>
       </note>
@@ -882,7 +885,7 @@
           (
           <date>1991</date>
           )
-          <biblScope unit="page">59</biblScope>
+          <biblScope unit="page" from="59">59</biblScope>
           .
         </bibl>
       </note>
@@ -912,7 +915,7 @@
           (
           <date>1989</date>
           )
-          <biblScope unit="page">5</biblScope>
+          <biblScope unit="page" from="5">5</biblScope>
           .
         </bibl>
       </note>
@@ -970,7 +973,7 @@
           )
           <biblScope unit="vol">56</biblScope>
           <title level="j">Law and Contemporary Problems</title>
-          <biblScope unit="page">99</biblScope>
+          <biblScope unit="page" from="99">99</biblScope>
           .
         </bibl>
         <bibl>
@@ -989,7 +992,7 @@
           <biblScope unit="vol">78</biblScope>
           <title level="j">Michigan Law Rev</title>
           .
-          <biblScope unit="page">59</biblScope>
+          <biblScope unit="page" from="59">59</biblScope>
           .
         </bibl>
       </note>
@@ -1068,8 +1071,8 @@
           (
           <date>1990</date>
           )
-          <biblScope unit="page">especially 223 ff</biblScope>
-          .
+          <biblScope unit="page" from="especially">especially 223</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="42" type="footnote" place="bottom">
@@ -1085,7 +1088,7 @@
           (
           <date>1973</date>
           )
-          <biblScope unit="page">120</biblScope>
+          <biblScope unit="page" from="120">120</biblScope>
           .
         </bibl>
       </note>
@@ -1107,7 +1110,7 @@
           <biblScope unit="vol">4</biblScope>
           <title level="j">Aust. Feminist Law J</title>
           .
-          <biblScope unit="page">93</biblScope>
+          <biblScope unit="page" from="93">93</biblScope>
           .
         </bibl>
       </note>
@@ -1126,7 +1129,7 @@
           )
           <biblScope unit="vol">13</biblScope>
           <title level="j">Law in Context</title>
-          <biblScope unit="page">23</biblScope>
+          <biblScope unit="page" from="23">23</biblScope>
           .
         </bibl>
       </note>
@@ -1134,8 +1137,8 @@
         <bibl>
           <ref>id.</ref>
           , p.
-          <citedRange unit="page">24</citedRange>
-          ;
+          <citedRange unit="page" from="24">24</citedRange>
+          <citedRange unit="page"/>
           <author>
             <persName>
               <forename>B.</forename>
@@ -1150,7 +1153,8 @@
           <biblScope unit="vol">57</biblScope>
           <title level="j">Modern Law Rev</title>
           .
-          <biblScope unit="page">467, 468</biblScope>
+          <biblScope unit="page" from="467">467</biblScope>
+          <biblScope unit="page" from="468">468</biblScope>
           .
         </bibl>
         <bibl>
@@ -1166,8 +1170,8 @@
         <bibl>
           <ref type="legal">1 A.C. 180</ref>
           ,
-          <citedRange unit="page">at 185</citedRange>
-          ,
+          <citedRange unit="page" from="at">at 185</citedRange>
+          <citedRange unit="page"/>
           <author>
             <persName>
               <forename>per</forename>
@@ -1187,8 +1191,8 @@
           ,
           <ref>op. cit., n. 44</ref>
           , p.
-          <citedRange unit="page">34</citedRange>
-          ;
+          <citedRange unit="page" from="34">34</citedRange>
+          <citedRange unit="page"/>
         </bibl>
         <bibl>
           <author>
@@ -1205,7 +1209,7 @@
           )
           <biblScope unit="vol">16</biblScope>
           <title level="j">Legal Studies</title>
-          <biblScope unit="page">368</biblScope>
+          <biblScope unit="page" from="368">368</biblScope>
           .
         </bibl>
       </note>
@@ -1257,7 +1261,7 @@
           <biblScope unit="vol">59</biblScope>
           <title level="j">Modern Law Rev</title>
           .
-          <biblScope unit="page">675</biblScope>
+          <biblScope unit="page" from="675">675</biblScope>
           .
         </bibl>
       </note>
@@ -1299,8 +1303,8 @@
         <bibl>
           <ref type="legal">Trade Practices Act 1974 (Cwth.)</ref>
           , s.
-          <citedRange unit="page">52</citedRange>
-          ,
+          <citedRange unit="page" from="52">52</citedRange>
+          <citedRange unit="page"/>
           <seg type="comment">and the</seg>
         </bibl>
         <bibl>
@@ -1313,8 +1317,10 @@
           (
           <date>1994</date>
           )
-          <biblScope unit="page">A.S.C. 56–270 (N.S.W.C.A.)</biblScope>
-          .
+          <biblScope unit="page" from="A">A.S.C. 56–270</biblScope>
+          (
+          <citedRange unit="page" from="N">N.S.W.C.A</citedRange>
+          .)
         </bibl>
       </note>
       <note n="55" type="footnote" place="bottom">
@@ -1329,7 +1335,7 @@
           [
           <date>1994</date>
           ]
-          <biblScope unit="page">1 A.C. 180</biblScope>
+          <biblScope unit="page" from="1">1 A.C. 180</biblScope>
           .
         </bibl>
         <bibl>
@@ -1368,7 +1374,7 @@
           (
           <date>1984</date>
           )
-          <biblScope unit="page">94</biblScope>
+          <biblScope unit="page" from="94">94</biblScope>
           .
         </bibl>
       </note>
@@ -1386,7 +1392,7 @@
           (
           <date>1985</date>
           ),
-          <biblScope unit="page">especially 112–18</biblScope>
+          <biblScope unit="page" from="especially">especially 112–18</biblScope>
           .
         </bibl>
       </note>
@@ -1414,7 +1420,7 @@
           <biblScope unit="vol">73</biblScope>
           <title level="j">Yale Law J</title>
           .
-          <biblScope unit="page">733</biblScope>
+          <biblScope unit="page" from="733">733</biblScope>
           .
           <seg type="comment">Despite a greater sensitivity to the interests of women, as well as writing almost two decades later,
             Glendon also fails to address the question of unpaid work as a form of property.</seg>
@@ -1440,8 +1446,10 @@
         <bibl>
           <date>1992</date>
           )
-          <biblScope unit="page">29 N.S.W.L.R. 188 (C.A.)</biblScope>
-          .
+          <biblScope unit="page" from="29">29 N.S.W.L.R. 188</biblScope>
+          (
+          <citedRange unit="page" from="C">C.A</citedRange>
+          .)
         </bibl>
       </note>
       <note n="60" type="footnote" place="bottom">
@@ -1468,7 +1476,7 @@
           )
           <biblScope unit="vol">11</biblScope>
           <title level="j">Australian J. Family Law</title>
-          <biblScope unit="page">100</biblScope>
+          <biblScope unit="page" from="100">100</biblScope>
           .
         </bibl>
       </note>
@@ -1489,7 +1497,7 @@
           <biblScope unit="vol">16</biblScope>
           <title level="j">Sydney Law Rev</title>
           .
-          <biblScope unit="page">412</biblScope>
+          <biblScope unit="page" from="412">412</biblScope>
           .
         </bibl>
       </note>
@@ -1517,7 +1525,8 @@
           )
           <biblScope unit="vol">8</biblScope>
           <title level="j">Aust. J. Family Law</title>
-          <biblScope unit="page">111, 133</biblScope>
+          <biblScope unit="page" from="111">111</biblScope>
+          <biblScope unit="page" from="133">133</biblScope>
           .
         </bibl>
       </note>
@@ -1536,7 +1545,7 @@
           )
           <biblScope unit="vol">18</biblScope>
           <title level="j">J. of Law and Society</title>
-          <biblScope unit="page">206</biblScope>
+          <biblScope unit="page" from="206">206</biblScope>
           .
         </bibl>
       </note>
@@ -1599,7 +1608,7 @@
           (
           <date>1989</date>
           )
-          <biblScope unit="page">46</biblScope>
+          <biblScope unit="page" from="46">46</biblScope>
           .
         </bibl>
       </note>
@@ -1677,7 +1686,7 @@
           (
           <date>1989</date>
           )
-          <biblScope unit="page">262–4</biblScope>
+          <biblScope unit="page" from="262" to="4">262–4</biblScope>
           .
         </bibl>
       </note>
@@ -1698,7 +1707,7 @@
           <biblScope unit="vol">19</biblScope>
           <title level="j">Melbourne University Law Rev</title>
           .
-          <biblScope unit="page">701</biblScope>
+          <biblScope unit="page" from="701">701</biblScope>
           .
         </bibl>
       </note>
@@ -1717,7 +1726,8 @@
           )
           <biblScope unit="vol">11</biblScope>
           <title level="j">Aust. Feminist Studies</title>
-          <biblScope unit="page">295, 300</biblScope>
+          <biblScope unit="page" from="295">295</biblScope>
+          <biblScope unit="page" from="300">300</biblScope>
           .
         </bibl>
       </note>
@@ -1735,7 +1745,7 @@
           (
           <date>1995</date>
           )
-          <biblScope unit="page">7</biblScope>
+          <biblScope unit="page" from="7">7</biblScope>
           .
         </bibl>
       </note>
@@ -1756,7 +1766,8 @@
           <biblScope unit="vol">45</biblScope>
           <title level="j">Modern Law Rev</title>
           .
-          <biblScope unit="page">424, 431–3</biblScope>
+          <biblScope unit="page" from="424">424</biblScope>
+          <biblScope unit="page" from="431" to="3">431–3</biblScope>
           .
         </bibl>
       </note>
@@ -1825,7 +1836,7 @@
         </bibl>
         <bibl>
           <ref type="legal">Dean v. District of Columbia 653 U.S. App. D.C</ref>
-          <citedRange unit="page">307</citedRange>
+          <citedRange unit="page" from="307">307</citedRange>
           (
           <date>1995</date>
           );
@@ -1840,7 +1851,7 @@
           ’
           <title level="j">The Age</title>
           ,
-          <biblScope unit="page">26</biblScope>
+          <biblScope unit="page" from="26">26</biblScope>
           April
           <date>1997</date>
           .
@@ -1873,7 +1884,7 @@
         <bibl>
           <ref>id.</ref>
           , p.
-          <citedRange unit="page">3</citedRange>
+          <citedRange unit="page" from="3">3</citedRange>
           .
         </bibl>
       </note>
diff --git a/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml b/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml
index 84c0866..aed5a48 100644
--- a/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml
+++ b/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml
@@ -39,7 +39,7 @@
           (
           <date>1996</date>
           )
-          <biblScope unit="page">14</biblScope>
+          <biblScope unit="page" from="14">14</biblScope>
           .
         </bibl>
       </note>
@@ -59,7 +59,7 @@
           <title level="j">Proceeedings of the British Academy</title>
           <biblScope unit="vol">169</biblScope>
           ,
-          <biblScope unit="page">at 171</biblScope>
+          <biblScope unit="page" from="at">at 171</biblScope>
           .
           <seg type="comment">This is an amplification of Dicey’s remark that ‘[b]y adequate study and careful thought whole departments of law can . . . be reduced to order and exhibited under the form of a few principles which sum up the effect of a hundred cases . .</seg>
            .’.
@@ -76,7 +76,7 @@
           (
           <date>1883</date>
           )
-          <biblScope unit="page">20</biblScope>
+          <biblScope unit="page" from="20">20</biblScope>
           .
         </bibl>
       </note>
@@ -113,7 +113,7 @@
           <biblScope unit="vol">89</biblScope>
           <title level="j">Harvard Law Rev</title>
           .
-          <biblScope unit="page">1685</biblScope>
+          <biblScope unit="page" from="1685">1685</biblScope>
           .
         </bibl>
       </note>
@@ -132,7 +132,8 @@
           )
           <title level="j">Cambridge Law J</title>
           .
-          <biblScope unit="page">470, at 485 and 481</biblScope>
+          <biblScope unit="page" from="470">470</biblScope>
+          <biblScope unit="page" from="at">at 485 and 481</biblScope>
           .
         </bibl>
       </note>
@@ -158,7 +159,7 @@
           (
           <date>1997</date>
           )
-          <biblScope unit="page">19</biblScope>
+          <biblScope unit="page" from="19">19</biblScope>
           .
         </bibl>
       </note>
@@ -175,7 +176,7 @@
           (
           <date>1995</date>
           )
-          <biblScope unit="page">296</biblScope>
+          <biblScope unit="page" from="296">296</biblScope>
           .
         </bibl>
       </note>
@@ -200,7 +201,7 @@
           ,
           <ref>op. cit., n. 8</ref>
           ,
-          <citedRange unit="page">at p. 285</citedRange>
+          <citedRange unit="page" from="at">at p. 285</citedRange>
           .
         </bibl>
       </note>
@@ -230,7 +231,8 @@
         <bibl>
           <ref type="legal">Cmnd 4595)</ref>
            
-          <citedRange unit="page">ch. 9, recs. 40 and 23</citedRange>
+          <citedRange unit="page" from="ch">ch. 9</citedRange>
+          <citedRange unit="page" from="recs">recs. 40 and 23</citedRange>
           ).
           <seg type="comment">There were also other recommendations that were not implemented</seg>
           .
@@ -243,9 +245,11 @@
           <ref type="legal">Cmnd. 2154</ref>
           )
           <seg type="comment">took it is axiomatic that ‘courses of higher education should be available for all those who are qualified by ability and attainment to pursue them and wish to do so</seg>
-          ’ (
-          <biblScope unit="page">para. 31</biblScope>
-          ).
+          ’
+          <biblScope unit="page"/>
+          (
+          <citedRange unit="page" from="para">para. 31</citedRange>
+          )
           <seg type="comment">This has yet to happen</seg>
           .
         </bibl>
@@ -290,7 +294,7 @@
           ,
           <ref>id.</ref>
           ,
-          <citedRange unit="page">para 4.6</citedRange>
+          <citedRange unit="page" from="para">para 4.6</citedRange>
           .
         </bibl>
       </note>
@@ -321,7 +325,8 @@
           )
           <biblScope unit="vol">2</biblScope>
           <title level="j">Contemporary Issues in Law</title>
-          <biblScope unit="page">15, at 24–6</biblScope>
+          <biblScope unit="page" from="15">15</biblScope>
+          <biblScope unit="page" from="at">at 24–6</biblScope>
           ).
         </bibl>
       </note>
@@ -349,7 +354,8 @@
           <biblScope unit="vol">137</biblScope>
           <title level="j">New Law J</title>
           .
-          <biblScope unit="page">835, at 836</biblScope>
+          <biblScope unit="page" from="835">835</biblScope>
+          <biblScope unit="page" from="at">at 836</biblScope>
           .
         </bibl>
       </note>
@@ -370,7 +376,7 @@
           (
           <date>1905</date>
           )
-          <biblScope unit="page">215</biblScope>
+          <biblScope unit="page" from="215">215</biblScope>
           .
         </bibl>
       </note>
@@ -397,7 +403,7 @@
           (
           <date>1984</date>
           )
-          <biblScope unit="page">218</biblScope>
+          <biblScope unit="page" from="218">218</biblScope>
           .
         </bibl>
       </note>
@@ -411,7 +417,7 @@
           ,
           <ref>op. cit., n. 12</ref>
           ,
-          <citedRange unit="page">para. 9.32</citedRange>
+          <citedRange unit="page" from="para">para. 9.32</citedRange>
           .
         </bibl>
       </note>
@@ -419,7 +425,7 @@
         <bibl>
           <ref>id.</ref>
           ,
-          <citedRange unit="page">para. 5.11</citedRange>
+          <citedRange unit="page" from="para">para. 5.11</citedRange>
           .
         </bibl>
       </note>
@@ -474,12 +480,12 @@
           ’
           <ref>in Birks, op. cit., n. 1</ref>
           , p.
-          <citedRange unit="page">59. 23</citedRange>
+          <citedRange unit="page" from="59">59. 23</citedRange>
           <title level="j">S. Turow, One L</title>
           (
           <date>1977</date>
           )
-          <biblScope unit="page">106</biblScope>
+          <biblScope unit="page" from="106">106</biblScope>
           .
         </bibl>
       </note>
@@ -499,7 +505,8 @@
           <biblScope unit="vol">29</biblScope>
           <title level="j">Modern Law Rev</title>
           .
-          <biblScope unit="page">121, at 129</biblScope>
+          <biblScope unit="page" from="121">121</biblScope>
+          <biblScope unit="page" from="at">at 129</biblScope>
           .
         </bibl>
       </note>
@@ -526,7 +533,7 @@
           ,
           <ref>op. cit., n. 20</ref>
           , p.
-          <citedRange unit="page">120</citedRange>
+          <citedRange unit="page" from="120">120</citedRange>
           .
         </bibl>
       </note>
@@ -549,7 +556,7 @@
           (
           <date>1980</date>
           )
-          <biblScope unit="page">at 216–17</biblScope>
+          <biblScope unit="page" from="at">at 216–17</biblScope>
           .)
           <seg type="comment">Whatever the accuracy of these criticisms, they are criticisms of the application of the method rather than the method itself</seg>
           .
@@ -569,7 +576,7 @@
           .,
           <date>1947</date>
           )
-          <biblScope unit="page">at 256 and 257</biblScope>
+          <biblScope unit="page" from="at">at 256 and 257</biblScope>
           .
         </bibl>
       </note>
@@ -591,7 +598,7 @@
           (
           <date>1933</date>
           )
-          <biblScope unit="page">68</biblScope>
+          <biblScope unit="page" from="68">68</biblScope>
           .
         </bibl>
       </note>
@@ -627,7 +634,7 @@
           )
           <biblScope unit="vol">I</biblScope>
           <title level="j">Law and Critique</title>
-          <biblScope unit="page">47 at pp. 54–55</biblScope>
+          <biblScope unit="page" from="47">47 at pp. 54–55</biblScope>
           .
         </bibl>
         <bibl>
@@ -645,7 +652,7 @@
           )
           <biblScope unit="vol">VII</biblScope>
           <title level="j">Law and Critique</title>
-          <biblScope unit="page">173 at pp. 173–6</biblScope>
+          <biblScope unit="page" from="173">173 at pp. 173–6</biblScope>
           .
         </bibl>
       </note>
@@ -664,7 +671,8 @@
           )
           <biblScope unit="vol">19</biblScope>
           <title level="j">International J. of the Sociology of Law</title>
-          <biblScope unit="page">427, at 429</biblScope>
+          <biblScope unit="page" from="427">427</biblScope>
+          <biblScope unit="page" from="at">at 429</biblScope>
           .
         </bibl>
       </note>
@@ -684,7 +692,8 @@
           <biblScope unit="vol">46</biblScope>
           <title level="j">Modern Law Rev</title>
           .
-          <biblScope unit="page">1, at 8</biblScope>
+          <biblScope unit="page" from="1">1</biblScope>
+          <biblScope unit="page" from="at">at 8</biblScope>
           .
         </bibl>
       </note>
@@ -705,7 +714,7 @@
           ,
           <ref>op. cit, n. 32</ref>
           , pp.
-          <citedRange unit="page">71–5</citedRange>
+          <citedRange unit="page" from="71" to="5">71–5</citedRange>
           .
         </bibl>
       </note>
@@ -735,7 +744,8 @@
           )
           <biblScope unit="vol">44</biblScope>
           <title level="j">The Am. Scholar</title>
-          <biblScope unit="page">256, at 258</biblScope>
+          <biblScope unit="page" from="256">256</biblScope>
+          <biblScope unit="page" from="at">at 258</biblScope>
           .
         </bibl>
       </note>
@@ -761,7 +771,8 @@
           )
           <biblScope unit="vol">31</biblScope>
           <title level="j">The Law Teacher</title>
-          <biblScope unit="page">38, at 46</biblScope>
+          <biblScope unit="page" from="38">38</biblScope>
+          <biblScope unit="page" from="at">at 46</biblScope>
           .
         </bibl>
       </note>
@@ -780,7 +791,8 @@
           )
           <biblScope unit="vol">13</biblScope>
           <title level="j">Legal Studies</title>
-          <biblScope unit="page">143, at 152</biblScope>
+          <biblScope unit="page" from="143">143</biblScope>
+          <biblScope unit="page" from="at">at 152</biblScope>
           .
         </bibl>
       </note>
@@ -799,7 +811,7 @@
           ,
           <ref>op. cit., n. 40</ref>
           ,
-          <citedRange unit="page">at p. 54</citedRange>
+          <citedRange unit="page" from="at">at p. 54</citedRange>
           ).
         </bibl>
       </note>
@@ -832,7 +844,7 @@
           .
           <ref>44 id.</ref>
           ,
-          <citedRange unit="page">p 35</citedRange>
+          <citedRange unit="page" from="p">p 35</citedRange>
         </bibl>
       </note>
       <note n="45" type="footnote" place="bottom">
@@ -850,7 +862,8 @@
           )
           <biblScope unit="vol">29</biblScope>
           <title level="j">The Law Teacher</title>
-          <biblScope unit="page">189, at 189</biblScope>
+          <biblScope unit="page" from="189">189</biblScope>
+          <biblScope unit="page" from="at">at 189</biblScope>
           .
         </bibl>
       </note>
@@ -869,7 +882,8 @@
           )
           <biblScope unit="vol">19</biblScope>
           <title level="j">The Law Teacher</title>
-          <biblScope unit="page">12, at 13</biblScope>
+          <biblScope unit="page" from="12">12</biblScope>
+          <biblScope unit="page" from="at">at 13</biblScope>
           .
         </bibl>
       </note>
@@ -888,7 +902,8 @@
           )
           <biblScope unit="vol">28</biblScope>
           <title level="j">The Law Teacher</title>
-          <biblScope unit="page">281, at 282</biblScope>
+          <biblScope unit="page" from="281">281</biblScope>
+          <biblScope unit="page" from="at">at 282</biblScope>
           .
         </bibl>
       </note>
@@ -914,7 +929,8 @@
           )
           <biblScope unit="vol">24</biblScope>
           <title level="j">The Law Teacher</title>
-          <biblScope unit="page">246, at 248</biblScope>
+          <biblScope unit="page" from="246">246</biblScope>
+          <biblScope unit="page" from="at">at 248</biblScope>
           .
         </bibl>
       </note>
@@ -928,7 +944,7 @@
           ,
           <ref>op. cit., n. 47</ref>
           ,
-          <citedRange unit="page">at p. 284</citedRange>
+          <citedRange unit="page" from="at">at p. 284</citedRange>
           .
         </bibl>
       </note>
@@ -960,7 +976,7 @@
           (
           <date>1994</date>
           )
-          <biblScope unit="page">10–24</biblScope>
+          <biblScope unit="page" from="10" to="24">10–24</biblScope>
           .
         </bibl>
       </note>
@@ -974,7 +990,7 @@
           ,
           <ref>op. cit., n. 47</ref>
           , p.
-          <citedRange unit="page">283</citedRange>
+          <citedRange unit="page" from="283">283</citedRange>
           .
         </bibl>
       </note>
@@ -993,7 +1009,7 @@
           ,
           <ref>op. cit., n. 48</ref>
           , p.
-          <citedRange unit="page">248</citedRange>
+          <citedRange unit="page" from="248">248</citedRange>
           .
         </bibl>
       </note>
@@ -1012,7 +1028,8 @@
           )
           <biblScope unit="vol">20</biblScope>
           <title level="j">The Law Teacher</title>
-          <biblScope unit="page">110, at 112</biblScope>
+          <biblScope unit="page" from="110">110</biblScope>
+          <biblScope unit="page" from="at">at 112</biblScope>
           .
         </bibl>
       </note>
@@ -1026,7 +1043,7 @@
           ,
           <ref>op. cit., n. 12</ref>
           ,
-          <citedRange unit="page">para 9.3</citedRange>
+          <citedRange unit="page" from="para">para 9.3</citedRange>
           .
         </bibl>
       </note>
@@ -1043,7 +1060,7 @@
           (
           <date>1997</date>
           )
-          <biblScope unit="page">20</biblScope>
+          <biblScope unit="page" from="20">20</biblScope>
           .
         </bibl>
       </note>
diff --git a/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml b/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml
index 9935c59..0146baf 100644
--- a/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml
+++ b/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml
@@ -260,7 +260,7 @@
           ,
           <biblScope unit="vol">vol. 9</biblScope>
           , pp.
-          <biblScope unit="page">675—694</biblScope>
+          <biblScope unit="page" from="675" to="694">675—694</biblScope>
           .
         </bibl>
         <bibl>
@@ -301,7 +301,7 @@
           ,
           <biblScope unit="vol">vol. 9</biblScope>
           , pp.
-          <biblScope unit="page">63—94</biblScope>
+          <biblScope unit="page" from="63" to="94">63—94</biblScope>
           .
         </bibl>
         <bibl>
@@ -321,7 +321,7 @@
           ,
           <biblScope unit="vol">vol. 9</biblScope>
           , pp.
-          <biblScope unit="page">695-706</biblScope>
+          <biblScope unit="page" from="695" to="706">695-706</biblScope>
           .
         </bibl>
         <bibl>
@@ -340,7 +340,7 @@
           ,
           <biblScope unit="vol">vol. 9</biblScope>
           , pp.
-          <biblScope unit="page">95—160</biblScope>
+          <biblScope unit="page" from="95" to="160">95—160</biblScope>
           .
         </bibl>
         <bibl>
@@ -511,7 +511,7 @@
           :
           <title level="a">Rechtshilfebedürfnis und Verrechtlichung am Beispiel einer Berliner Mieterinitiative</title>
           ,
-          <biblScope unit="page">IIM-dp/78—70</biblScope>
+          <biblScope unit="page" from="IIM" to="dp">IIM-dp/78—70</biblScope>
           .
         </bibl>
         <bibl>
@@ -525,7 +525,7 @@
           <date>1979</date>
           :
           <title level="a">Gewerkschaftlicher Rechtsschutz — Geschichte des freigewerkschaftlichen Rechtsschutzes und der Rechtsberatung der Deutschen Arbeitsfront von 1894—1945.</title>
-          <biblScope unit="page">IIM-dp/79—104</biblScope>
+          <biblScope unit="page" from="IIM" to="dp">IIM-dp/79—104</biblScope>
           .
         </bibl>
         <bibl>
@@ -591,7 +591,7 @@
           ,
           <biblScope unit="vol">vol. 10</biblScope>
           , pp.
-          <biblScope unit="page">339—375</biblScope>
+          <biblScope unit="page" from="339" to="375">339—375</biblScope>
           .
         </bibl>
         <bibl>
@@ -649,7 +649,7 @@
           ,
           <biblScope unit="vol">vol. 9</biblScope>
           , pp.
-          <biblScope unit="page">293-306</biblScope>
+          <biblScope unit="page" from="293" to="306">293-306</biblScope>
           .
         </bibl>
       </listBibl>
@@ -662,7 +662,7 @@
           </author>
           <date>1964</date>
           ,
-          <biblScope unit="page">insbesondere S. 65—83</biblScope>
+          <biblScope unit="page" from="insbesondere">insbesondere S. 65—83</biblScope>
           .
         </bibl>
       </note>
@@ -766,7 +766,7 @@
           ,
           <date>1978</date>
           , S.
-          <biblScope unit="page">66-85</biblScope>
+          <biblScope unit="page" from="66" to="85">66-85</biblScope>
           .
         </bibl>
       </note>
@@ -779,8 +779,8 @@
           </author>
           <date>1973</date>
           , S.
-          <biblScope unit="page">125 ff</biblScope>
-          .
+          <biblScope unit="page" from="125">125</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="6" type="footnote" place="bottom">
@@ -793,7 +793,7 @@
           </author>
           <date>1976</date>
           ,
-          <biblScope unit="page">insbesondere S. 170—183</biblScope>
+          <biblScope unit="page" from="insbesondere">insbesondere S. 170—183</biblScope>
           .
         </bibl>
       </note>
@@ -808,7 +808,7 @@
           </author>
           <date>1980</date>
           , S.
-          <biblScope unit="page">99—112</biblScope>
+          <biblScope unit="page" from="99" to="112">99—112</biblScope>
           .
         </bibl>
       </note>
@@ -855,8 +855,8 @@
           </author>
           <date>1979</date>
           , S.
-          <biblScope unit="page">64 ff</biblScope>
-          .
+          <biblScope unit="page" from="64">64</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="11" type="footnote" place="bottom">
@@ -868,8 +868,8 @@
           </author>
           <date>1976</date>
           , S.
-          <biblScope unit="page">64 ff</biblScope>
-          .
+          <biblScope unit="page" from="64">64</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="12" type="footnote" place="bottom">
@@ -881,8 +881,8 @@
           </author>
           <date>1975</date>
           , S.
-          <biblScope unit="page">75</biblScope>
-          ,
+          <biblScope unit="page" from="75">75</biblScope>
+          <biblScope unit="page"/>
           <seg type="comment">der allerdings nur streitige Urteile und Vergleiche untersucht hat.</seg>
            
         </bibl>
@@ -925,8 +925,8 @@
           </author>
           <date>1979</date>
           , S.
-          <biblScope unit="page">78 ff</biblScope>
-          .
+          <biblScope unit="page" from="78">78</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="15" type="footnote" place="bottom">
@@ -945,8 +945,8 @@
           <date>1979</date>
           <seg type="comment">berichtet von dem erfolgreichen Versuch einer Unfall-Schadensregulierung ohne Berücksichtigung einer Schuldzuschreibung in Neuseeland (no fault accident compensation)</seg>
           , S.
-          <biblScope unit="page">90 ff</biblScope>
-          .
+          <biblScope unit="page" from="90">90</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="17" type="footnote" place="bottom">
@@ -958,8 +958,9 @@
           </author>
           <date>1979</date>
           , S.
-          <biblScope unit="page">66 ff</biblScope>
-          .;
+          <biblScope unit="page" from="66">66</biblScope>
+           ff.
+          <biblScope unit="page"/>
         </bibl>
         <bibl>
           <author>
@@ -979,8 +980,8 @@
           </author>
           <date>1972</date>
           , S.
-          <biblScope unit="page">82 ff</biblScope>
-          .
+          <biblScope unit="page" from="82">82</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="18" type="footnote" place="bottom">
@@ -1026,7 +1027,7 @@
           </author>
           <date>1976</date>
           , S.
-          <biblScope unit="page">113-128</biblScope>
+          <biblScope unit="page" from="113" to="128">113-128</biblScope>
           .
         </bibl>
       </note>
@@ -1116,7 +1117,7 @@
           </author>
           <date>1974</date>
           , S.
-          <biblScope unit="page">95—160</biblScope>
+          <biblScope unit="page" from="95" to="160">95—160</biblScope>
           .
           <seg type="comment">Die grösseren Chancen von Firmen, insbesondere bei der großen Zahl von vorstreitigen Erledigungen zeigt</seg>
            
@@ -1129,7 +1130,7 @@
           </author>
           <date>1976</date>
           , S.
-          <biblScope unit="page">339-375</biblScope>
+          <biblScope unit="page" from="339" to="375">339-375</biblScope>
           .
         </bibl>
       </note>
@@ -1147,7 +1148,7 @@
           </author>
           <date>1980</date>
           , S.
-          <biblScope unit="page">138</biblScope>
+          <biblScope unit="page" from="138">138</biblScope>
           .
         </bibl>
       </note>
@@ -1160,8 +1161,8 @@
           </author>
           <date>1979</date>
           , S.
-          <biblScope unit="page">96 ff</biblScope>
-          ,
+          <biblScope unit="page" from="96">96 ff</biblScope>
+          <biblScope unit="page"/>
         </bibl>
         <bibl>
           <seg type="signal">vgl. auch</seg>
@@ -1182,8 +1183,9 @@
           </author>
           <date>1972</date>
           , S.
-          <biblScope unit="page">89, Fn. 17</biblScope>
-          ,
+          <biblScope unit="page" from="89">89</biblScope>
+          <biblScope unit="page" from="Fn">Fn. 17</biblScope>
+          <biblScope unit="page"/>
         </bibl>
       </note>
       <note n="28" type="footnote" place="bottom">
@@ -1216,8 +1218,8 @@
           </author>
           <date>1979</date>
           , S.
-          <biblScope unit="page">102 ff</biblScope>
-          .
+          <biblScope unit="page" from="102">102</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="30" type="footnote" place="bottom">
@@ -1227,7 +1229,7 @@
           <title level="a">Recht als gradualisiertes Konzept</title>
           <date>1980</date>
           , S.
-          <biblScope unit="page">83—98</biblScope>
+          <biblScope unit="page" from="83" to="98">83—98</biblScope>
           .
         </bibl>
       </note>
@@ -1240,8 +1242,8 @@
           </author>
           <date>1979</date>
           , S.
-          <biblScope unit="page">35</biblScope>
-          ;
+          <biblScope unit="page" from="35">35</biblScope>
+          <biblScope unit="page"/>
         </bibl>
         <bibl>
           <author>
@@ -1256,7 +1258,7 @@
           </author>
           <date>1980</date>
           , S.
-          <biblScope unit="page">24 und S. 49</biblScope>
+          <biblScope unit="page" from="24">24 und S. 49</biblScope>
           .
         </bibl>
       </note>
@@ -1269,7 +1271,7 @@
           </author>
           <date>1975</date>
           , S.
-          <biblScope unit="page">293—306</biblScope>
+          <biblScope unit="page" from="293" to="306">293—306</biblScope>
           <seg type="comment">hebt dies deutlich hervor</seg>
           ,
         </bibl>
@@ -1287,8 +1289,10 @@
           </author>
           <date>1980</date>
           ,  S.
-          <biblScope unit="page">72 ff</biblScope>
-          .; 
+          <biblScope unit="page" from="72">72</biblScope>
+           ff.
+          <biblScope unit="page"/>
+           
         </bibl>
         <bibl>
           <seg type="signal">sowie</seg>
@@ -1329,15 +1333,15 @@
           </author>
           <date>1979</date>
           , S.
-          <biblScope unit="page">78 ff</biblScope>
-          .
+          <biblScope unit="page" from="78">78</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="34" type="footnote" place="bottom">
         <bibl>
           <ref>Ebenda</ref>
           , S.
-          <citedRange unit="page">138-186</citedRange>
+          <citedRange unit="page" from="138" to="186">138-186</citedRange>
           .
         </bibl>
       </note>
diff --git a/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml b/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml
index 4f0c741..1f35fbf 100644
--- a/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml
+++ b/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml
@@ -158,8 +158,8 @@
             </persName>
           </author>
           <biblScope unit="vol">I</biblScope>
-          <biblScope unit="page">12 ff</biblScope>
-          .
+          <biblScope unit="page" from="12">12</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="2" type="footnote" place="bottom">
@@ -195,8 +195,10 @@
           ,
           <date>1967</date>
           )
-          <biblScope unit="page">1 (3)</biblScope>
-          .
+          <biblScope unit="page" from="1">1</biblScope>
+          (
+          <citedRange unit="page" from="3">3</citedRange>
+          )
         </bibl>
       </note>
       <note n="3" type="footnote" place="bottom">
@@ -233,8 +235,9 @@
           (
           <date>1973</date>
           )
-          <biblScope unit="page">174 ff</biblScope>
-          .;
+          <biblScope unit="page" from="174">174</biblScope>
+           ff.
+          <biblScope unit="page"/>
         </bibl>
         <bibl>
           <author>
@@ -250,8 +253,8 @@
           (
           <date>1979</date>
           )
-          <biblScope unit="page">51 ff</biblScope>
-          .
+          <biblScope unit="page" from="51">51</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="5" type="footnote" place="bottom">
@@ -269,8 +272,10 @@
           <pubPlace>Paris</pubPlace>
           <date>1969</date>
           )
-          <biblScope unit="page">75 (83)</biblScope>
-          .
+          <biblScope unit="page" from="75">75</biblScope>
+          (
+          <citedRange unit="page" from="83">83</citedRange>
+          )
         </bibl>
       </note>
       <note n="6" type="footnote" place="bottom">
@@ -304,8 +309,10 @@
               <surname>Petrella</surname>
             </persName>
           </editor>
-          <biblScope unit="page">3 (9 ff.)</biblScope>
-          :
+          <biblScope unit="page" from="3">3</biblScope>
+          (
+          <citedRange unit="page" from="9">9 ff</citedRange>
+          .)
         </bibl>
         <bibl>
           <author>
@@ -326,8 +333,8 @@
               <surname>Rehbinder</surname>
             </persName>
           </editor>
-          <biblScope unit="page">171 ff</biblScope>
-          .
+          <biblScope unit="page" from="171">171</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="8" type="footnote" place="bottom">
@@ -363,8 +370,10 @@
           (
           <date>1970</date>
           )
-          <biblScope unit="page">509 (526)</biblScope>
-          .
+          <biblScope unit="page" from="509">509</biblScope>
+          (
+          <citedRange unit="page" from="526">526</citedRange>
+          )
         </bibl>
       </note>
       <note n="9" type="footnote" place="bottom">
@@ -383,8 +392,8 @@
           (
           <date>1977</date>
           )
-          <biblScope unit="page">507 ff</biblScope>
-          .
+          <biblScope unit="page" from="507">507</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="10" type="footnote" place="bottom">
@@ -397,7 +406,7 @@
           (
           <ref>oben N. 7</ref>
           )
-          <citedRange unit="page">175</citedRange>
+          <citedRange unit="page" from="175">175</citedRange>
           .
         </bibl>
       </note>
@@ -422,8 +431,10 @@
               <surname>Grimshaw</surname>
             </persName>
           </editor>
-          <biblScope unit="page">3 (18)</biblScope>
-          .
+          <biblScope unit="page" from="3">3</biblScope>
+          (
+          <citedRange unit="page" from="18">18</citedRange>
+          )
           <seg type="comment">Auch der Oberbegriff „cross System comparison&quot; wird vorgeschlagen</seg>
           ,
         </bibl>
@@ -449,7 +460,7 @@
           .
           <date>1978</date>
           )
-          <biblScope unit="page">1</biblScope>
+          <biblScope unit="page" from="1">1</biblScope>
           . —
           <seg type="comment">Über die Methoden interkultureller und internationaler Vergleiche ist inzwischen so viel geschrieben worden, daß nicht nur die Fülle des Materials schon wieder abschreckend wirkt, sondern daß es auch genügt, im Rahmen dieses Aufsatzes nur einige wichtige Aspekte anzusprechen</seg>
           .
@@ -476,8 +487,9 @@
               <surname>Almasy</surname>
             </persName>
           </author>
-          <biblScope unit="page">117 ff</biblScope>
-          .;
+          <biblScope unit="page" from="117">117</biblScope>
+           ff.
+          <biblScope unit="page"/>
         </bibl>
         <bibl>
           <author>
@@ -485,8 +497,9 @@
               <surname>Vallier</surname>
             </persName>
           </author>
-          <biblScope unit="page">423 ff</biblScope>
-          .;
+          <biblScope unit="page" from="423">423</biblScope>
+           ff.
+          <biblScope unit="page"/>
         </bibl>
         <bibl>
           <author>
@@ -524,8 +537,8 @@
           <pubPlace>New York, Chicago, San Francisco, Atlanta</pubPlace>
           <date>1967</date>
           )
-          <biblScope unit="page">375 ff</biblScope>
-          .
+          <biblScope unit="page" from="375">375</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="12" type="footnote" place="bottom">
@@ -541,7 +554,7 @@
           <pubPlace>Paris</pubPlace>
           <date>1977</date>
           )
-          <biblScope unit="page">137</biblScope>
+          <biblScope unit="page" from="137">137</biblScope>
           .
         </bibl>
       </note>
@@ -553,8 +566,8 @@
             </persName>
           </author>
            
-          <biblScope unit="page">2 f</biblScope>
-          .
+          <biblScope unit="page" from="2">2</biblScope>
+           f.
         </bibl>
         <bibl>
           <author>
@@ -575,8 +588,10 @@
           (
           <date>1973</date>
           )
-          <biblScope unit="page">13 (15 ff.).</biblScope>
-           -
+          <biblScope unit="page" from="13">13</biblScope>
+          (
+          <citedRange unit="page" from="15">15 ff</citedRange>
+          .)
         </bibl>
         <bibl>
           <seg type="signal">Ähnlich auch</seg>
@@ -594,8 +609,10 @@
           <pubPlace>London</pubPlace>
           <date>1968</date>
           )
-          <biblScope unit="page">421 (423)</biblScope>
-          .
+          <biblScope unit="page" from="421">421</biblScope>
+          (
+          <citedRange unit="page" from="423">423</citedRange>
+          )
         </bibl>
       </note>
       <note n="14" type="footnote" place="bottom">
@@ -625,8 +642,10 @@
           ],
           <date>1969</date>
           )
-          <biblScope unit="page">514 (520 ff.)</biblScope>
-          . —
+          <biblScope unit="page" from="514">514</biblScope>
+          (
+          <citedRange unit="page" from="520">520 ff</citedRange>
+          .) —
           <seg type="comment">Zur „cultunit“, die vor allem durch die gemeinsame Sprache und die Zugehörigkeit zu einem Staat bzw. einer interpersonellen Kontaktgruppe gekennzeichnet ist</seg>
           ,
         </bibl>
@@ -657,8 +676,9 @@
               <surname>Smelser</surname>
             </persName>
           </author>
-          <biblScope unit="page">168 f</biblScope>
-          .;
+          <biblScope unit="page" from="168">168</biblScope>
+           f.
+          <biblScope unit="page"/>
         </bibl>
         <bibl>
           <author>
@@ -669,7 +689,7 @@
           (
           <ref>oben N. 8</ref>
           )
-          <citedRange unit="page">115</citedRange>
+          <citedRange unit="page" from="115">115</citedRange>
           .
         </bibl>
       </note>
@@ -689,8 +709,10 @@
               <surname>Vallier</surname>
             </persName>
           </editor>
-          <biblScope unit="page">267 (270 ff.)</biblScope>
-          .
+          <biblScope unit="page" from="267">267</biblScope>
+          (
+          <citedRange unit="page" from="270">270 ff</citedRange>
+          .)
         </bibl>
       </note>
       <note n="16" type="footnote" place="bottom">
@@ -703,7 +725,7 @@
           (
           <ref>oben N. 5</ref>
           )
-          <citedRange unit="page">80</citedRange>
+          <citedRange unit="page" from="80">80</citedRange>
           .
         </bibl>
       </note>
@@ -728,8 +750,10 @@
               <surname>Rebbinder</surname>
             </persName>
           </editor>
-          <biblScope unit="page">151 (159)</biblScope>
-          .
+          <biblScope unit="page" from="151">151</biblScope>
+          (
+          <citedRange unit="page" from="159">159</citedRange>
+          )
         </bibl>
       </note>
       <note n="18" type="footnote" place="bottom">
@@ -748,8 +772,10 @@
           <pubPlace>Brüssel</pubPlace>
           <date>1974</date>
           )
-          <biblScope unit="page">81 (89 ff.)</biblScope>
-          .
+          <biblScope unit="page" from="81">81</biblScope>
+          (
+          <citedRange unit="page" from="89">89 ff</citedRange>
+          .)
         </bibl>
       </note>
       <note n="19" type="footnote" place="bottom">
@@ -766,7 +792,7 @@
           <pubPlace>Paris</pubPlace>
           <date>1972</date>
           )
-          <biblScope unit="page">188 N. 1</biblScope>
+          <biblScope unit="page" from="188">188 N. 1</biblScope>
           .
         </bibl>
       </note>
@@ -786,8 +812,10 @@
           (
           <date>1972</date>
           )
-          <biblScope unit="page">305 (330 ff.)</biblScope>
-          .
+          <biblScope unit="page" from="305">305</biblScope>
+          (
+          <citedRange unit="page" from="330">330 ff</citedRange>
+          .)
         </bibl>
       </note>
       <note n="21" type="footnote" place="bottom">
@@ -801,8 +829,8 @@
           (
           <ref>oben N. 17</ref>
           )
-          <citedRange unit="page">157 ff</citedRange>
-          .
+          <citedRange unit="page" from="157">157</citedRange>
+           ff.
         </bibl>
       </note>
       <note n="22" type="footnote" place="bottom">
@@ -830,8 +858,8 @@
           (
           <date>1975</date>
           )
-          <biblScope unit="page">79 ff</biblScope>
-          .
+          <biblScope unit="page" from="79">79</biblScope>
+           ff.
         </bibl>
         <bibl>
           <seg type="signal">Siehe auch</seg>
@@ -854,8 +882,8 @@
           (
           <date>1979</date>
           )
-          <biblScope unit="page">163 ff</biblScope>
-          .
+          <biblScope unit="page" from="163">163</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="23" type="footnote" place="bottom">
@@ -875,8 +903,10 @@
           (
           <date>1976</date>
           )
-          <biblScope unit="page">45 (48)</biblScope>
-          .
+          <biblScope unit="page" from="45">45</biblScope>
+          (
+          <citedRange unit="page" from="48">48</citedRange>
+          )
         </bibl>
       </note>
       <note n="24" type="footnote" place="bottom">
@@ -900,8 +930,8 @@
               <surname>Rehbinder</surname>
             </persName>
           </editor>
-          <biblScope unit="page">56 ff</biblScope>
-          .
+          <biblScope unit="page" from="56">56</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="25" type="footnote" place="bottom">
@@ -915,8 +945,8 @@
           (
           <ref>oben N. 18</ref>
           )
-          <citedRange unit="page">101 ff</citedRange>
-          .
+          <citedRange unit="page" from="101">101</citedRange>
+           ff.
         </bibl>
       </note>
       <note n="26" type="footnote" place="bottom">
@@ -939,8 +969,10 @@
               <surname>Rehbinder</surname>
             </persName>
           </editor>
-          <biblScope unit="page">178 (186 ff.)</biblScope>
-          .
+          <biblScope unit="page" from="178">178</biblScope>
+          (
+          <citedRange unit="page" from="186">186 ff</citedRange>
+          .)
         </bibl>
       </note>
       <note n="27" type="footnote" place="bottom">
@@ -978,7 +1010,7 @@
           (
           <ref>oben N. 24</ref>
           )
-          <citedRange unit="page">60</citedRange>
+          <citedRange unit="page" from="60">60</citedRange>
           .
         </bibl>
       </note>
@@ -1000,8 +1032,10 @@
           (
           <date>1978</date>
           )
-          <biblScope unit="page">219 (224 ff.)</biblScope>
-          .
+          <biblScope unit="page" from="219">219</biblScope>
+          (
+          <citedRange unit="page" from="224">224 ff</citedRange>
+          .)
         </bibl>
       </note>
       <note n="30" type="footnote" place="bottom">
@@ -1012,8 +1046,8 @@
               <surname>Smelser</surname>
             </persName>
           </author>
-          <biblScope unit="page">175 f</biblScope>
-          .
+          <biblScope unit="page" from="175">175</biblScope>
+           f.
         </bibl>
         <bibl>
           <seg type="signal">Für die Kriminologie siehe</seg>
@@ -1025,7 +1059,7 @@
           (
           <ref>oben N. 22</ref>
           )
-          <citedRange unit="page">89</citedRange>
+          <citedRange unit="page" from="89">89</citedRange>
         </bibl>
         <bibl>
           <seg type="signal">sowie</seg>
@@ -1047,8 +1081,10 @@
           (
           <date>1978</date>
           )
-          <biblScope unit="page">233 (240)</biblScope>
-          .
+          <biblScope unit="page" from="233">233</biblScope>
+          (
+          <citedRange unit="page" from="240">240</citedRange>
+          )
           <seg type="comment">Als besonders gefährlich hat sich die unkritische Übertragung solcher Konzepte auf Länder der Dritten Welt erwiesen. So kam man etwa zu dem Ergebnis: „The U. S. law and development movement was largely a parochial expression of the American legal style</seg>
           “,
         </bibl>
@@ -1067,8 +1103,10 @@
           (
           <date>1977</date>
           )
-          <biblScope unit="page">457 (479)</biblScope>
-          .
+          <biblScope unit="page" from="457">457</biblScope>
+          (
+          <citedRange unit="page" from="479">479</citedRange>
+          )
         </bibl>
       </note>
       <note n="31" type="footnote" place="bottom">
@@ -1081,8 +1119,9 @@
           (
           <ref>oben N. 13</ref>
           )
-          <citedRange unit="page">15, 25 f</citedRange>
-          .
+          <citedRange unit="page" from="15">15</citedRange>
+          <citedRange unit="page" from="25">25</citedRange>
+           f.
         </bibl>
       </note>
       <note n="32" type="footnote" place="bottom">
@@ -1100,8 +1139,10 @@
           /
           <biblScope unit="vol">1</biblScope>
           S.
-          <biblScope unit="page">23 (31 ff.).</biblScope>
-           -
+          <biblScope unit="page" from="23">23</biblScope>
+          (
+          <citedRange unit="page" from="31">31 ff</citedRange>
+          .)
         </bibl>
         <bibl>
           <seg type="signal">Zum Vergleich mit den sozialistischen Ländern siehe auch</seg>
@@ -1133,8 +1174,10 @@
           (
           <date>1978</date>
           )
-          <biblScope unit="page">395 (402 ff.)</biblScope>
-          .
+          <biblScope unit="page" from="395">395</biblScope>
+          (
+          <citedRange unit="page" from="402">402 ff</citedRange>
+          .)
         </bibl>
       </note>
       <note n="33" type="footnote" place="bottom">
@@ -1152,8 +1195,8 @@
           —
           <biblScope unit="vol">23</biblScope>
           )
-          <biblScope unit="page">5 ff</biblScope>
-          .
+          <biblScope unit="page" from="5">5</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="34" type="footnote" place="bottom">
@@ -1169,8 +1212,8 @@
             </persName>
           </author>
           <biblScope unit="vol">I</biblScope>
-          <biblScope unit="page">30 f</biblScope>
-          .
+          <biblScope unit="page" from="30">30</biblScope>
+           f.
         </bibl>
       </note>
       <note n="35" type="footnote" place="bottom">
@@ -1194,8 +1237,10 @@
               <surname>Grimsbaw</surname>
             </persName>
           </editor>
-          <biblScope unit="page">49 (50 ff.)</biblScope>
-          ;
+          <biblScope unit="page" from="49">49</biblScope>
+          (
+          <citedRange unit="page" from="50">50 ff</citedRange>
+          .)
         </bibl>
         <bibl>
           <author>
@@ -1203,8 +1248,9 @@
               <surname>Smelser</surname>
             </persName>
           </author>
-          <biblScope unit="page">182 f</biblScope>
-          .;
+          <biblScope unit="page" from="182">182</biblScope>
+           f.
+          <biblScope unit="page"/>
         </bibl>
         <bibl>
           <author>
@@ -1220,8 +1266,10 @@
           (
           <date>1978</date>
           )
-          <biblScope unit="page">361 (364 ff.)</biblScope>
-          .
+          <biblScope unit="page" from="361">361</biblScope>
+          (
+          <citedRange unit="page" from="364">364 ff</citedRange>
+          .)
         </bibl>
       </note>
       <note n="36" type="footnote" place="bottom">
@@ -1254,8 +1302,10 @@
               <surname>Petrella</surname>
             </persName>
           </editor>
-          <biblScope unit="page">131 (157 f.)</biblScope>
-          .
+          <biblScope unit="page" from="131">131</biblScope>
+          (
+          <citedRange unit="page" from="157">157 f</citedRange>
+          .)
         </bibl>
       </note>
       <note n="37" type="footnote" place="bottom">
@@ -1274,8 +1324,10 @@
               <surname>Rokkan</surname>
             </persName>
           </editor>
-          <biblScope unit="page">176 (185)</biblScope>
-          ;
+          <biblScope unit="page" from="176">176</biblScope>
+          (
+          <citedRange unit="page" from="185">185</citedRange>
+          )
         </bibl>
         <bibl>
           <author>
@@ -1305,8 +1357,10 @@
           (
           <date>1975</date>
           )
-          <biblScope unit="page">113 (124 ff.)</biblScope>
-          .
+          <biblScope unit="page" from="113">113</biblScope>
+          (
+          <citedRange unit="page" from="124">124 ff</citedRange>
+          .)
         </bibl>
       </note>
       <note n="38" type="footnote" place="bottom">
@@ -1339,8 +1393,10 @@
               <surname>Almasy</surname>
             </persName>
           </editor>
-          <biblScope unit="page">56 (80)</biblScope>
-          .
+          <biblScope unit="page" from="56">56</biblScope>
+          (
+          <citedRange unit="page" from="80">80</citedRange>
+          )
         </bibl>
       </note>
       <note n="39" type="footnote" place="bottom">
@@ -1363,8 +1419,10 @@
               <surname>Rehbinder</surname>
             </persName>
           </editor>
-          <biblScope unit="page">123 (134 ff.)</biblScope>
-          .
+          <biblScope unit="page" from="123">123</biblScope>
+          (
+          <citedRange unit="page" from="134">134 ff</citedRange>
+          .)
         </bibl>
       </note>
       <note n="40" type="footnote" place="bottom">
@@ -1377,7 +1435,7 @@
           (
           <ref>oben N. 7</ref>
           )
-          <citedRange unit="page">42</citedRange>
+          <citedRange unit="page" from="42">42</citedRange>
           .
         </bibl>
       </note>
@@ -1400,7 +1458,7 @@
           <edition>erweiterte Aufl.</edition>
           <date>1968</date>
           , S.
-          <biblScope unit="page">82 ff</biblScope>
+          <biblScope unit="page" from="82">82 ff</biblScope>
           .):
           <seg type="comment">Eine gemeinsame Religion erfüllt im allgemeinen data</seg>
           &quot;.
@@ -1415,7 +1473,7 @@
           <pubPlace>Paris</pubPlace>
           <date>1977</date>
           )
-          <biblScope unit="page">40</biblScope>
+          <biblScope unit="page" from="40">40</biblScope>
           .
         </bibl>
       </note>
@@ -1444,7 +1502,9 @@
           (
           <ref>oben N. 4</ref>
           )
-          <citedRange unit="page">194 ff., 221 f.</citedRange>
+          <citedRange unit="page" from="194">194</citedRange>
+          ff.
+          <citedRange unit="page" from="221">221 f.</citedRange>
            -
         </bibl>
         <bibl>
@@ -1464,8 +1524,8 @@
           </publisher>
           <date>1979</date>
           —
-          <biblScope unit="page">13) 2 ff</biblScope>
-          .
+          <biblScope unit="page" from="13">13) 2</biblScope>
+           ff.
         </bibl>
         <bibl>
           <seg type="signal">Zur Behandlung der „Kultur&quot; in vergleichenden Untersuchungen näher</seg>
@@ -1477,8 +1537,8 @@
           (
           <ref>oben N. 37</ref>
           )
-          <citedRange unit="page">197 ff</citedRange>
-          .
+          <citedRange unit="page" from="197">197</citedRange>
+           ff.
         </bibl>
       </note>
       <note n="45" type="footnote" place="bottom">
@@ -1491,8 +1551,8 @@
           (
           <ref>oben N. 4</ref>
           )
-          <citedRange unit="page">207 ff</citedRange>
-          .
+          <citedRange unit="page" from="207">207</citedRange>
+           ff.
         </bibl>
         <bibl>
           <seg type="signal">Siehe auch</seg>
@@ -1509,8 +1569,8 @@
           (
           <date>1978</date>
           )
-          <biblScope unit="page">161 ff</biblScope>
-          .
+          <biblScope unit="page" from="161">161</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="46" type="footnote" place="bottom">
@@ -1524,8 +1584,8 @@
           (
           <ref>oben N. 33</ref>
           )
-          <citedRange unit="page">3 ff</citedRange>
-          .
+          <citedRange unit="page" from="3">3</citedRange>
+           ff.
         </bibl>
       </note>
       <note n="47" type="footnote" place="bottom">
@@ -1538,7 +1598,7 @@
           (
           <ref>oben N. 7</ref>
           )
-          <citedRange unit="page">176</citedRange>
+          <citedRange unit="page" from="176">176</citedRange>
           .
         </bibl>
       </note>
@@ -1553,8 +1613,9 @@
           (
           <ref>oben N. 4</ref>
           )
-          <citedRange unit="page">55 ff</citedRange>
-          .;
+          <citedRange unit="page" from="55">55</citedRange>
+           ff.
+          <citedRange unit="page"/>
         </bibl>
         <bibl>
           <author>
@@ -1570,8 +1631,8 @@
           (
           <date>1979</date>
           )
-          <biblScope unit="page">154 ff</biblScope>
-          .
+          <biblScope unit="page" from="154">154</biblScope>
+           ff.
           <seg type="comment">mwNachw. — Eine vergleichbare Debatte über „ähnliche“ und „unähnliche Gesellschaften“ wird seit Dürkheim auch in der Soziologie geführt</seg>
           .
         </bibl>
@@ -1585,8 +1646,8 @@
           (
           <ref>oben N. 13</ref>
           )
-          <citedRange unit="page">16 ff</citedRange>
-          .
+          <citedRange unit="page" from="16">16</citedRange>
+           ff.
         </bibl>
       </note>
       <note n="49" type="footnote" place="bottom">
@@ -1603,7 +1664,7 @@
             </persName>
           </author>
           <biblScope unit="vol">I</biblScope>
-          <biblScope unit="page">70</biblScope>
+          <biblScope unit="page" from="70">70</biblScope>
           .
         </bibl>
       </note>
@@ -1635,8 +1696,8 @@
           (
           <ref>oben N. 32</ref>
           )
-          <citedRange unit="page">33</citedRange>
-          ,
+          <citedRange unit="page" from="33">33</citedRange>
+          <citedRange unit="page"/>
           <seg type="comment">der auch die skandinavischen Länder in diese Gruppe aufnimmt</seg>
           .
         </bibl>
@@ -1655,8 +1716,8 @@
             </persName>
           </author>
           <biblScope unit="vol">1</biblScope>
-          <biblScope unit="page">110 f</biblScope>
-          . —
+          <biblScope unit="page" from="110">110</biblScope>
+          f. —
           <seg type="comment">Kritisch</seg>
         </bibl>
         <bibl>
@@ -1668,8 +1729,8 @@
           (
           <ref>oben N. 4</ref>
           )
-          <citedRange unit="page">58 ff</citedRange>
-          .
+          <citedRange unit="page" from="58">58</citedRange>
+           ff.
         </bibl>
       </note>
       <note n="52" type="footnote" place="bottom">
@@ -1688,7 +1749,7 @@
           <pubPlace>London</pubPlace>
           <date>1980</date>
           )
-          <biblScope unit="page">Chapter VIII</biblScope>
+          <biblScope unit="page" from="Chapter">Chapter VIII</biblScope>
           .
         </bibl>
       </note>
@@ -1705,7 +1766,7 @@
             </persName>
           </author>
           <biblScope unit="vol">I</biblScope>
-          <biblScope unit="page">78</biblScope>
+          <biblScope unit="page" from="78">78</biblScope>
           .
         </bibl>
       </note>
@@ -1721,7 +1782,7 @@
           (
           <ref>oben N. 52</ref>
           )
-          <citedRange unit="page">Chapter VIII</citedRange>
+          <citedRange unit="page" from="Chapter">Chapter VIII</citedRange>
           .
         </bibl>
       </note>
@@ -1736,7 +1797,7 @@
           (
           <ref>oben N. 32</ref>
           )
-          <citedRange unit="page">33</citedRange>
+          <citedRange unit="page" from="33">33</citedRange>
           . 
         </bibl>
       </note>
@@ -1756,8 +1817,9 @@
           (
           <date>1970</date>
           )
-          <biblScope unit="page">1 ff</biblScope>
-          .;
+          <biblScope unit="page" from="1">1</biblScope>
+           ff.
+          <biblScope unit="page"/>
         </bibl>
         <bibl>
           <author>
@@ -1773,8 +1835,8 @@
           (
           <date>1970</date>
           )
-          <biblScope unit="page">443 ff</biblScope>
-          .
+          <biblScope unit="page" from="443">443</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="57" type="footnote" place="bottom">
@@ -1815,8 +1877,8 @@
           <pubPlace>San Francisco, Washington, London</pubPlace>
           <date>1978</date>
           )
-          <biblScope unit="page">97 ff</biblScope>
-          .
+          <biblScope unit="page" from="97">97</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="58" type="footnote" place="bottom">
@@ -1834,8 +1896,8 @@
           (
           <date>1979</date>
           )
-          <biblScope unit="page">362 ff</biblScope>
-          .
+          <biblScope unit="page" from="362">362</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="59" type="footnote" place="bottom">
@@ -1849,8 +1911,10 @@
           (
           <ref>oben N. 7</ref>
           )
-          <citedRange unit="page">23 ff</citedRange>
-          .; 
+          <citedRange unit="page" from="23">23</citedRange>
+           ff.
+          <citedRange unit="page"/>
+           
         </bibl>
         <bibl>
           <author>
@@ -1858,8 +1922,8 @@
               <surname>Smelser</surname>
             </persName>
           </author>
-          <biblScope unit="page">167 ff</biblScope>
-          .
+          <biblScope unit="page" from="167">167</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="60" type="footnote" place="bottom">
@@ -1883,8 +1947,10 @@
               <surname>Petrella</surname>
             </persName>
           </editor>
-          <biblScope unit="page">95 (101) ff</biblScope>
-          .
+          <biblScope unit="page" from="95">95</biblScope>
+          (
+          <citedRange unit="page" from="101">101</citedRange>
+          )
         </bibl>
       </note>
       <note n="61" type="footnote" place="bottom">
@@ -1921,7 +1987,7 @@
           (
           <ref>oben N. 22</ref>
           )
-          <citedRange unit="page">88</citedRange>
+          <citedRange unit="page" from="88">88</citedRange>
         </bibl>
         <bibl>
           <seg type="signal">mwNachw</seg>
@@ -1943,7 +2009,9 @@
           (
           <ref>oben N. 30</ref>
           )
-          <citedRange unit="page">235 f., 242</citedRange>
+          <citedRange unit="page" from="235">235</citedRange>
+          f.
+          <citedRange unit="page" from="242">242</citedRange>
           .
         </bibl>
       </note>
@@ -1963,8 +2031,8 @@
           (
           <date>1978</date>
           )
-          <biblScope unit="page">221 ff</biblScope>
-          .
+          <biblScope unit="page" from="221">221</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="64" type="footnote" place="bottom">
@@ -2006,8 +2074,9 @@
           (
           <date>1978</date>
           )
-          <biblScope unit="page">228 ff</biblScope>
-          .;
+          <biblScope unit="page" from="228">228</biblScope>
+           ff.
+          <biblScope unit="page"/>
         </bibl>
         <bibl>
           <author>
@@ -2033,8 +2102,8 @@
           (
           <date>1978</date>
           )
-          <biblScope unit="page">109 ff</biblScope>
-          . 
+          <biblScope unit="page" from="109">109</biblScope>
+           ff. 
         </bibl>
       </note>
       <note n="65" type="footnote" place="bottom">
@@ -2054,8 +2123,10 @@
           (
           <date>1970</date>
           )
-          <biblScope unit="page">83 (88 ff.)</biblScope>
-          .
+          <biblScope unit="page" from="83">83</biblScope>
+          (
+          <citedRange unit="page" from="88">88 ff</citedRange>
+          .)
         </bibl>
         <bibl>
           <seg type="signal">Siehe auch</seg>
@@ -2070,8 +2141,8 @@
           (
           <date>1975</date>
           )
-          <biblScope unit="page">196 ff</biblScope>
-          .
+          <biblScope unit="page" from="196">196</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="66" type="footnote" place="bottom">
@@ -2090,8 +2161,10 @@
           <pubPlace>Den Haag</pubPlace>
           <date>1977</date>
           )
-          <biblScope unit="page">85 (88 ff.)</biblScope>
-          .
+          <biblScope unit="page" from="85">85</biblScope>
+          (
+          <citedRange unit="page" from="88">88 ff</citedRange>
+          .)
         </bibl>
       </note>
       <note n="67" type="footnote" place="bottom">
@@ -2137,8 +2210,10 @@
           <pubPlace>Bristol</pubPlace>
           <date>1973</date>
           )
-          <biblScope unit="page">101 (126)</biblScope>
-          .
+          <biblScope unit="page" from="101">101</biblScope>
+          (
+          <citedRange unit="page" from="126">126</citedRange>
+          )
         </bibl>
       </note>
       <note n="68" type="footnote" place="bottom">
@@ -2155,7 +2230,7 @@
           (
           <ref>vorige N.</ref>
           )
-          <citedRange unit="page">65 (84 ff.)</citedRange>
+          <citedRange unit="page" from="65">65 (84 ff.)</citedRange>
           .
         </bibl>
       </note>
@@ -2181,8 +2256,10 @@
           .
           <date>1974</date>
           )
-          <biblScope unit="page">405 (414 f.)</biblScope>
-          .
+          <biblScope unit="page" from="405">405</biblScope>
+          (
+          <citedRange unit="page" from="414">414 f</citedRange>
+          .)
         </bibl>
       </note>
       <note n="70" type="footnote" place="bottom">
@@ -2202,8 +2279,8 @@
           ,
           <biblScope unit="vol">Son derheft 2</biblScope>
           , S.
-          <biblScope unit="page">5 ff</biblScope>
-          .
+          <biblScope unit="page" from="5">5</biblScope>
+           ff.
         </bibl>
         <bibl>
           <seg type="signal">mwNachw</seg>
@@ -2223,8 +2300,8 @@
           (
           <date>1976</date>
           )
-          <biblScope unit="page">37 ff</biblScope>
-          .
+          <biblScope unit="page" from="37">37</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="72" type="footnote" place="bottom">
@@ -2239,7 +2316,7 @@
           (
           <ref>oben N. 69</ref>
           )
-          <citedRange unit="page">407</citedRange>
+          <citedRange unit="page" from="407">407</citedRange>
           .
         </bibl>
       </note>
@@ -2264,8 +2341,10 @@
           (
           <date>1973</date>
           )
-          <biblScope unit="page">151 (152)</biblScope>
-          .
+          <biblScope unit="page" from="151">151</biblScope>
+          (
+          <citedRange unit="page" from="152">152</citedRange>
+          )
         </bibl>
       </note>
       <note n="74" type="footnote" place="bottom">
@@ -2281,8 +2360,9 @@
           (
           <date>1972</date>
           )
-          <biblScope unit="page">9 ff</biblScope>
-          .;
+          <biblScope unit="page" from="9">9</biblScope>
+           ff.
+          <biblScope unit="page"/>
         </bibl>
         <bibl>
           <author>
@@ -2303,8 +2383,8 @@
               <surname>Petrella</surname>
             </persName>
           </editor>
-          <biblScope unit="page">49 ff</biblScope>
-          .
+          <biblScope unit="page" from="49">49</biblScope>
+           ff.
         </bibl>
         <bibl>
           <seg type="signal">sowie</seg>
@@ -2318,7 +2398,7 @@
           (
           <ref>oben N. 52</ref>
           )
-          <citedRange unit="page">Chapter I</citedRange>
+          <citedRange unit="page" from="Chapter">Chapter I</citedRange>
           .
         </bibl>
       </note>
@@ -2344,8 +2424,10 @@
           <pubPlace>Budapest</pubPlace>
           <date>1977</date>
           )
-          <biblScope unit="page">97 (99 ff.)</biblScope>
-          .
+          <biblScope unit="page" from="97">97</biblScope>
+          (
+          <citedRange unit="page" from="99">99 ff</citedRange>
+          .)
         </bibl>
       </note>
       <note n="76" type="footnote" place="bottom">
@@ -2363,8 +2445,8 @@
           (
           <date>1973</date>
           )
-          <biblScope unit="page">403 ff</biblScope>
-          .
+          <biblScope unit="page" from="403">403</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="77" type="footnote" place="bottom">
@@ -2381,8 +2463,8 @@
           <title level="j">Interview und Analyse</title>
           <date>1979</date>
           ,
-          <biblScope unit="page">377 ff</biblScope>
-          .
+          <biblScope unit="page" from="377">377</biblScope>
+           ff.
         </bibl>
       </note>
       <note n="78" type="footnote" place="bottom">
@@ -2401,8 +2483,8 @@
           (
           <date>1979</date>
           ),
-          <biblScope unit="page">159 ff</biblScope>
-          .
+          <biblScope unit="page" from="159">159</biblScope>
+           ff.
         </bibl>
       </note>
     </body>
-- 
GitLab