From 5ed1efbb3a473ec81f1cb1c05e1726e62f6056f2 Mon Sep 17 00:00:00 2001 From: Christian Boulanger <info@bibliograph.org> Date: Thu, 22 Aug 2024 14:46:24 +0200 Subject: [PATCH] Fix <biblScope unit="volume"> --- convert-anystyle-data/anystyle-to-tei.ipynb | 25 ++- ..._1467-6478.00057-bibl_biblStruct.TEIP5.xml | 52 ++--- ..._1467-6478.00080-bibl_biblStruct.TEIP5.xml | 40 ++-- ...5_zfrs-1980-0103-bibl_biblStruct.TEIP5.xml | 24 +-- ...5_zfrs-1980-0104-bibl_biblStruct.TEIP5.xml | 78 +++---- .../10.1111_1467-6478.00057-bibl.MODS.xml | 150 ++++++++++--- .../10.1111_1467-6478.00080-bibl.MODS.xml | 120 +++++++++-- .../10.1515_zfrs-1980-0103-bibl.MODS.xml | 72 +++++-- .../10.1515_zfrs-1980-0104-bibl.MODS.xml | 204 +++++++++++++++--- .../ris/10.1111_1467-6478.00057.ris | 25 +++ .../ris/10.1111_1467-6478.00080.ris | 20 ++ .../ris/10.1515_zfrs-1980-0103.ris | 12 ++ .../ris/10.1515_zfrs-1980-0104.ris | 34 +++ convert-anystyle-data/tei-to-bibformats.ipynb | 14 +- .../tei/10.1111_1467-6478.00057.xml | 80 ++++--- .../tei/10.1111_1467-6478.00080.xml | 56 +++-- .../tei/10.1515_zfrs-1980-0103.xml | 70 +++--- .../tei/10.1515_zfrs-1980-0104.xml | 116 +++++----- 18 files changed, 817 insertions(+), 375 deletions(-) diff --git a/convert-anystyle-data/anystyle-to-tei.ipynb b/convert-anystyle-data/anystyle-to-tei.ipynb index 939dd82..e09eb82 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-22T12:08:13.019445Z", - "start_time": "2024-08-22T12:08:12.690308Z" + "end_time": "2024-08-22T12:45:14.058291Z", + "start_time": "2024-08-22T12:45:13.744822Z" } }, "cell_type": "code", @@ -441,8 +441,14 @@ " 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", + "\n", + "def clean_volume(text):\n", + " text = re.sub(r'(vol\\.|bd\\.)', '', text.strip(), flags=re.IGNORECASE)\n", + " text = re.sub(r'(issue\\.|heft\\.)$', '', text.strip(), flags=re.IGNORECASE)\n", + " text = remove_punctuation(text)\n", + " return text, {\"from\": text, \"to\": text}\n", + "\n", + "def extract_text_in_parentheses(text):\n", " match = re.search(r'(.*?)\\s*(\\(.*?\\))', text)\n", " if match:\n", " return match.group(1), match.group(2)\n", @@ -603,18 +609,21 @@ " if bibl[-1].tag == \"ref\":\n", " handle_pages(text, bibl, 'citedRange', preserve=preserve)\n", " else:\n", - " pages, cited_range = extract_cited_range(text)\n", + " pages, cited_range = extract_text_in_parentheses(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", + " add_node(bibl, 'seg', text, {'type': 'signal'})\n", " case 'title':\n", " add_node(bibl, 'title', text, {'level': 'a'}, clean_func=remove_punctuation2, preserve=preserve)\n", " case 'url':\n", " add_node(bibl, 'ptr', text, {'type':'web'}, clean_func=remove_punctuation, preserve=preserve) \n", " case 'volume':\n", - " add_node(bibl, 'biblScope', text, {'unit': 'vol'}, clean_func = remove_punctuation, preserve=preserve)\n", + " volume, issue = extract_text_in_parentheses(text)\n", + " add_node(bibl, 'biblScope', volume, {'unit': 'volume'}, clean_func = clean_volume, preserve=preserve)\n", + " if issue:\n", + " add_node(bibl, 'biblScope', issue, {'unit': 'issue'}, clean_func = clean_volume, preserve=preserve)\n", " if len(bibl) == 0:\n", " node.remove(bibl)\n", " if len(listBibl) == 0:\n", @@ -658,7 +667,7 @@ ] } ], - "execution_count": 18 + "execution_count": 24 }, { "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 b508020..27a9bc6 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 @@ -63,7 +63,7 @@ <imprint> <date>1979</date> </imprint> - <biblScope unit="vol">27</biblScope> + <biblScope unit="volume" from="27" to="27">27</biblScope> <biblScope unit="page" from="183">183</biblScope> </monogr> </biblStruct> @@ -115,7 +115,7 @@ <imprint> <date>1996</date> </imprint> - <biblScope unit="vol">20</biblScope> + <biblScope unit="volume" from="20" to="20">20</biblScope> <biblScope unit="page" from="1072">1072</biblScope> </monogr> </biblStruct> @@ -134,7 +134,7 @@ <imprint> <date>1994</date> </imprint> - <biblScope unit="vol">28</biblScope> + <biblScope unit="volume" from="28" to="28">28</biblScope> <biblScope unit="page" from="379">379</biblScope> </monogr> </biblStruct> @@ -270,7 +270,7 @@ <imprint> <date>1993</date> </imprint> - <biblScope unit="vol">20</biblScope> + <biblScope unit="volume" from="20" to="20">20</biblScope> <biblScope unit="page" from="56">56</biblScope> <biblScope unit="page" from="61">61</biblScope> </monogr> @@ -338,7 +338,7 @@ <imprint> <date>1986</date> </imprint> - <biblScope unit="vol">3</biblScope> + <biblScope unit="volume" from="3" to="3">3</biblScope> <biblScope unit="page" from="30">30</biblScope> </monogr> </biblStruct> @@ -417,7 +417,7 @@ <imprint> <date>1990</date> </imprint> - <biblScope unit="vol">4</biblScope> + <biblScope unit="volume" from="4" to="4">4</biblScope> <biblScope unit="page" from="220">220</biblScope> </monogr> </biblStruct> @@ -441,7 +441,7 @@ <imprint> <date>1996</date> </imprint> - <biblScope unit="vol">105</biblScope> + <biblScope unit="volume" from="105" to="105">105</biblScope> <biblScope unit="page" from="2117">2117</biblScope> </monogr> </biblStruct> @@ -546,7 +546,7 @@ <imprint> <date>1991</date> </imprint> - <biblScope unit="vol">2</biblScope> + <biblScope unit="volume" from="2" to="2">2</biblScope> </monogr> </biblStruct> <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#"> @@ -677,7 +677,7 @@ <imprint> <date>1985</date> </imprint> - <biblScope unit="vol">94</biblScope> + <biblScope unit="volume" from="94" to="94">94</biblScope> <biblScope unit="page" from="997">997</biblScope> </monogr> </biblStruct> @@ -928,7 +928,7 @@ <imprint> <date>1993</date> </imprint> - <biblScope unit="vol">56</biblScope> + <biblScope unit="volume" from="56" to="56">56</biblScope> <biblScope unit="page" from="99">99</biblScope> </monogr> </biblStruct> @@ -947,7 +947,7 @@ <imprint> <date>1979</date> </imprint> - <biblScope unit="vol">78</biblScope> + <biblScope unit="volume" from="78" to="78">78</biblScope> <biblScope unit="page" from="59">59</biblScope> </monogr> </biblStruct> @@ -1055,7 +1055,7 @@ <imprint> <date>1995</date> </imprint> - <biblScope unit="vol">4</biblScope> + <biblScope unit="volume" from="4" to="4">4</biblScope> <biblScope unit="page" from="93">93</biblScope> </monogr> </biblStruct> @@ -1074,7 +1074,7 @@ <imprint> <date>1995</date> </imprint> - <biblScope unit="vol">13</biblScope> + <biblScope unit="volume" from="13" to="13">13</biblScope> <biblScope unit="page" from="23">23</biblScope> </monogr> </biblStruct> @@ -1093,7 +1093,7 @@ <imprint> <date>1994</date> </imprint> - <biblScope unit="vol">57</biblScope> + <biblScope unit="volume" from="57" to="57">57</biblScope> <biblScope unit="page" from="467">467</biblScope> <biblScope unit="page" from="468">468</biblScope> </monogr> @@ -1148,7 +1148,7 @@ <imprint> <date>1996</date> </imprint> - <biblScope unit="vol">16</biblScope> + <biblScope unit="volume" from="16" to="16">16</biblScope> <biblScope unit="page" from="368">368</biblScope> </monogr> </biblStruct> @@ -1194,7 +1194,7 @@ <imprint> <date>1996</date> </imprint> - <biblScope unit="vol">59</biblScope> + <biblScope unit="volume" from="59" to="59">59</biblScope> <biblScope unit="page" from="675">675</biblScope> </monogr> </biblStruct> @@ -1204,7 +1204,7 @@ <imprint> <date>1996</date> </imprint> - <biblScope unit="vol">39</biblScope> + <biblScope unit="volume" from="39" to="39">39</biblScope> </monogr> </biblStruct> <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml#"> @@ -1248,7 +1248,7 @@ <date>1994</date> <pubPlace>N.S.W</pubPlace> </imprint> - <biblScope unit="vol">54</biblScope> + <biblScope unit="volume" from="54" to="54">54</biblScope> <biblScope unit="page" from="A">A.S.C. 56–270</biblScope> </monogr> </biblStruct> @@ -1342,7 +1342,7 @@ <imprint> <date>1964</date> </imprint> - <biblScope unit="vol">73</biblScope> + <biblScope unit="volume" from="73" to="73">73</biblScope> <biblScope unit="page" from="733">733</biblScope> </monogr> </biblStruct> @@ -1390,7 +1390,7 @@ <imprint> <date>1997</date> </imprint> - <biblScope unit="vol">11</biblScope> + <biblScope unit="volume" from="11" to="11">11</biblScope> <biblScope unit="page" from="100">100</biblScope> </monogr> </biblStruct> @@ -1409,7 +1409,7 @@ <imprint> <date>1994</date> </imprint> - <biblScope unit="vol">16</biblScope> + <biblScope unit="volume" from="16" to="16">16</biblScope> <biblScope unit="page" from="412">412</biblScope> </monogr> </biblStruct> @@ -1435,7 +1435,7 @@ <imprint> <date>1994</date> </imprint> - <biblScope unit="vol">8</biblScope> + <biblScope unit="volume" from="8" to="8">8</biblScope> <biblScope unit="page" from="111">111</biblScope> <biblScope unit="page" from="133">133</biblScope> </monogr> @@ -1455,7 +1455,7 @@ <imprint> <date>1991</date> </imprint> - <biblScope unit="vol">18</biblScope> + <biblScope unit="volume" from="18" to="18">18</biblScope> <biblScope unit="page" from="206">206</biblScope> </monogr> </biblStruct> @@ -1606,7 +1606,7 @@ <imprint> <date>1994</date> </imprint> - <biblScope unit="vol">19</biblScope> + <biblScope unit="volume" from="19" to="19">19</biblScope> <biblScope unit="page" from="701">701</biblScope> </monogr> </biblStruct> @@ -1625,7 +1625,7 @@ <imprint> <date>1996</date> </imprint> - <biblScope unit="vol">11</biblScope> + <biblScope unit="volume" from="11" to="11">11</biblScope> <biblScope unit="page" from="295">295</biblScope> <biblScope unit="page" from="300">300</biblScope> </monogr> @@ -1663,7 +1663,7 @@ <imprint> <date>1982</date> </imprint> - <biblScope unit="vol">45</biblScope> + <biblScope unit="volume" from="45" to="45">45</biblScope> <biblScope unit="page" from="424">424</biblScope> <biblScope unit="page" from="431" to="3">431–3</biblScope> </monogr> 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 ff956c4..57e518e 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 @@ -57,7 +57,7 @@ <imprint> <date>1983</date> </imprint> - <biblScope unit="vol">169</biblScope> + <biblScope unit="volume" from="169" to="169">169</biblScope> <biblScope unit="page" from="at">at 171</biblScope> </monogr> </biblStruct> @@ -109,7 +109,7 @@ <imprint> <date>1976</date> </imprint> - <biblScope unit="vol">89</biblScope> + <biblScope unit="volume" from="89" to="89">89</biblScope> <biblScope unit="page" from="1685">1685</biblScope> </monogr> </biblStruct> @@ -295,7 +295,7 @@ <imprint> <date>1996</date> </imprint> - <biblScope unit="vol">2</biblScope> + <biblScope unit="volume" from="2" to="2">2</biblScope> <biblScope unit="page" from="15">15</biblScope> <biblScope unit="page" from="at">at 24–6</biblScope> </monogr> @@ -322,7 +322,7 @@ <imprint> <date>1987</date> </imprint> - <biblScope unit="vol">137</biblScope> + <biblScope unit="volume" from="137" to="137">137</biblScope> <biblScope unit="page" from="835">835</biblScope> <biblScope unit="page" from="at">at 836</biblScope> </monogr> @@ -342,7 +342,7 @@ <imprint> <date>1905</date> </imprint> - <biblScope unit="vol">Volume III</biblScope> + <biblScope unit="volume" from="Volume III" to="Volume III">Volume III</biblScope> <biblScope unit="page" from="215">215</biblScope> </monogr> </biblStruct> @@ -367,7 +367,7 @@ <imprint> <date>1984</date> </imprint> - <biblScope unit="vol">XXI</biblScope> + <biblScope unit="volume" from="XXI" to="XXI">XXI</biblScope> <biblScope unit="page" from="218">218</biblScope> </monogr> </biblStruct> @@ -400,7 +400,7 @@ <imprint> <date>1948</date> </imprint> - <biblScope unit="vol">28</biblScope> + <biblScope unit="volume" from="28" to="28">28</biblScope> </monogr> </biblStruct> <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml#"> @@ -451,7 +451,7 @@ <imprint> <date>1966</date> </imprint> - <biblScope unit="vol">29</biblScope> + <biblScope unit="volume" from="29" to="29">29</biblScope> <biblScope unit="page" from="121">121</biblScope> <biblScope unit="page" from="at">at 129</biblScope> </monogr> @@ -569,7 +569,7 @@ <imprint> <date>1990</date> </imprint> - <biblScope unit="vol">I</biblScope> + <biblScope unit="volume" from="I" to="I">I</biblScope> <biblScope unit="page" from="47">47 at pp. 54–55</biblScope> </monogr> </biblStruct> @@ -588,7 +588,7 @@ <imprint> <date>1996</date> </imprint> - <biblScope unit="vol">VII</biblScope> + <biblScope unit="volume" from="VII" to="VII">VII</biblScope> <biblScope unit="page" from="173">173 at pp. 173–6</biblScope> </monogr> </biblStruct> @@ -607,7 +607,7 @@ <imprint> <date>1991</date> </imprint> - <biblScope unit="vol">19</biblScope> + <biblScope unit="volume" from="19" to="19">19</biblScope> <biblScope unit="page" from="427">427</biblScope> <biblScope unit="page" from="at">at 429</biblScope> </monogr> @@ -627,7 +627,7 @@ <imprint> <date>1983</date> </imprint> - <biblScope unit="vol">46</biblScope> + <biblScope unit="volume" from="46" to="46">46</biblScope> <biblScope unit="page" from="1">1</biblScope> <biblScope unit="page" from="at">at 8</biblScope> </monogr> @@ -673,7 +673,7 @@ <imprint> <date>1975</date> </imprint> - <biblScope unit="vol">44</biblScope> + <biblScope unit="volume" from="44" to="44">44</biblScope> <biblScope unit="page" from="256">256</biblScope> <biblScope unit="page" from="at">at 258</biblScope> </monogr> @@ -699,7 +699,7 @@ <imprint> <date>1997</date> </imprint> - <biblScope unit="vol">31</biblScope> + <biblScope unit="volume" from="31" to="31">31</biblScope> <biblScope unit="page" from="38">38</biblScope> <biblScope unit="page" from="at">at 46</biblScope> </monogr> @@ -719,7 +719,7 @@ <imprint> <date>1993</date> </imprint> - <biblScope unit="vol">13</biblScope> + <biblScope unit="volume" from="13" to="13">13</biblScope> <biblScope unit="page" from="143">143</biblScope> <biblScope unit="page" from="at">at 152</biblScope> </monogr> @@ -782,7 +782,7 @@ <imprint> <date>1995</date> </imprint> - <biblScope unit="vol">29</biblScope> + <biblScope unit="volume" from="29" to="29">29</biblScope> <biblScope unit="page" from="189">189</biblScope> <biblScope unit="page" from="at">at 189</biblScope> </monogr> @@ -802,7 +802,7 @@ <imprint> <date>1985</date> </imprint> - <biblScope unit="vol">19</biblScope> + <biblScope unit="volume" from="19" to="19">19</biblScope> <biblScope unit="page" from="12">12</biblScope> <biblScope unit="page" from="at">at 13</biblScope> </monogr> @@ -822,7 +822,7 @@ <imprint> <date>1994</date> </imprint> - <biblScope unit="vol">28</biblScope> + <biblScope unit="volume" from="28" to="28">28</biblScope> <biblScope unit="page" from="281">281</biblScope> <biblScope unit="page" from="at">at 282</biblScope> </monogr> @@ -848,7 +848,7 @@ <imprint> <date>1990</date> </imprint> - <biblScope unit="vol">24</biblScope> + <biblScope unit="volume" from="24" to="24">24</biblScope> <biblScope unit="page" from="246">246</biblScope> <biblScope unit="page" from="at">at 248</biblScope> </monogr> @@ -932,7 +932,7 @@ <imprint> <date>1986</date> </imprint> - <biblScope unit="vol">20</biblScope> + <biblScope unit="volume" from="20" to="20">20</biblScope> <biblScope unit="page" from="110">110</biblScope> <biblScope unit="page" from="at">at 112</biblScope> </monogr> 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 2168a8d..f2d2251 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 @@ -732,7 +732,7 @@ <imprint> <date>1974</date> </imprint> - <biblScope unit="vol">vol. 9</biblScope> + <biblScope unit="volume" from="9" to="9">9</biblScope> </monogr> </biblStruct> </listBibl> @@ -792,7 +792,7 @@ <imprint> <date>1973</date> </imprint> - <biblScope unit="vol">2</biblScope> + <biblScope unit="volume" from="2" to="2">2</biblScope> </monogr> </biblStruct> <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#"> @@ -940,7 +940,7 @@ <imprint> <date>1980</date> </imprint> - <biblScope unit="vol">Bd. 6. Opladen</biblScope> + <biblScope unit="volume" from="6. Opladen" to="6. Opladen">6. Opladen</biblScope> </monogr> </biblStruct> <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#"> @@ -986,7 +986,7 @@ <imprint> <date>1974</date> </imprint> - <biblScope unit="vol">vol. 9</biblScope> + <biblScope unit="volume" from="9" to="9">9</biblScope> <biblScope unit="page" from="675" to="694">675—694</biblScope> </monogr> </biblStruct> @@ -1029,7 +1029,7 @@ <imprint> <date>1974</date> </imprint> - <biblScope unit="vol">vol. 9</biblScope> + <biblScope unit="volume" from="9" to="9">9</biblScope> <biblScope unit="page" from="63" to="94">63—94</biblScope> </monogr> </biblStruct> @@ -1049,7 +1049,7 @@ <imprint> <date>1974</date> </imprint> - <biblScope unit="vol">vol. 9</biblScope> + <biblScope unit="volume" from="9" to="9">9</biblScope> <biblScope unit="page" from="695" to="706">695-706</biblScope> </monogr> </biblStruct> @@ -1068,7 +1068,7 @@ <imprint> <date>1974</date> </imprint> - <biblScope unit="vol">vol. 9</biblScope> + <biblScope unit="volume" from="9" to="9">9</biblScope> <biblScope unit="page" from="95" to="160">95—160</biblScope> </monogr> </biblStruct> @@ -1148,7 +1148,7 @@ <imprint> <date>1979</date> </imprint> - <biblScope unit="vol">Bd. III</biblScope> + <biblScope unit="volume" from="III" to="III">III</biblScope> </monogr> </biblStruct> <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#"> @@ -1239,7 +1239,7 @@ <imprint> <date>1980</date> </imprint> - <biblScope unit="vol">Bd. 6. Opladen</biblScope> + <biblScope unit="volume" from="6. Opladen" to="6. Opladen">6. Opladen</biblScope> </monogr> </biblStruct> <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#"> @@ -1316,7 +1316,7 @@ <imprint> <date>1980</date> </imprint> - <biblScope unit="vol">Bd. 6. Opladen</biblScope> + <biblScope unit="volume" from="6. Opladen" to="6. Opladen">6. Opladen</biblScope> </monogr> </biblStruct> <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml#"> @@ -1334,7 +1334,7 @@ <imprint> <date>1976</date> </imprint> - <biblScope unit="vol">vol. 10</biblScope> + <biblScope unit="volume" from="10" to="10">10</biblScope> <biblScope unit="page" from="339" to="375">339—375</biblScope> </monogr> </biblStruct> @@ -1395,7 +1395,7 @@ <imprint> <date>1975</date> </imprint> - <biblScope unit="vol">vol. 9</biblScope> + <biblScope unit="volume" from="9" to="9">9</biblScope> <biblScope unit="page" from="293" to="306">293-306</biblScope> </monogr> </biblStruct> 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 cb305fe..2bea7c0 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 @@ -31,7 +31,7 @@ </persName> </author> <imprint/> - <biblScope unit="vol">I</biblScope> + <biblScope unit="volume" from="I" to="I">I</biblScope> <biblScope unit="page" from="12">12</biblScope> </monogr> </biblStruct> @@ -68,7 +68,7 @@ <imprint> <date>1967</date> </imprint> - <biblScope unit="vol">III</biblScope> + <biblScope unit="volume" from="III" to="III">III</biblScope> <biblScope unit="page" from="1">1</biblScope> </monogr> </biblStruct> @@ -102,7 +102,7 @@ <imprint> <date>1973</date> </imprint> - <biblScope unit="vol">26</biblScope> + <biblScope unit="volume" from="26" to="26">26</biblScope> <biblScope unit="page" from="174">174</biblScope> <biblScope unit="page"/> </monogr> @@ -121,7 +121,7 @@ <imprint> <date>1979</date> </imprint> - <biblScope unit="vol">78</biblScope> + <biblScope unit="volume" from="78" to="78">78</biblScope> <biblScope unit="page" from="51">51</biblScope> </monogr> </biblStruct> @@ -215,7 +215,7 @@ <imprint> <date>1975</date> </imprint> - <biblScope unit="vol">25</biblScope> + <biblScope unit="volume" from="25" to="25">25</biblScope> </monogr> </biblStruct> <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#"> @@ -232,7 +232,7 @@ <imprint> <date>1970</date> </imprint> - <biblScope unit="vol">22</biblScope> + <biblScope unit="volume" from="22" to="22">22</biblScope> <biblScope unit="page" from="509">509</biblScope> </monogr> </biblStruct> @@ -250,7 +250,7 @@ <imprint> <date>1977</date> </imprint> - <biblScope unit="vol">11</biblScope> + <biblScope unit="volume" from="11" to="11">11</biblScope> <biblScope unit="page" from="507">507</biblScope> </monogr> </biblStruct> @@ -308,7 +308,7 @@ <date>1978</date> <pubPlace>Greenwich, Conn</pubPlace> </imprint> - <biblScope unit="vol">Vol. 1</biblScope> + <biblScope unit="volume" from="1" to="1">1</biblScope> <biblScope unit="page" from="1">1</biblScope> </monogr> </biblStruct> @@ -439,7 +439,7 @@ <imprint> <date>1973</date> </imprint> - <biblScope unit="vol">24</biblScope> + <biblScope unit="volume" from="24" to="24">24</biblScope> <biblScope unit="page" from="13">13</biblScope> </monogr> </biblStruct> @@ -458,7 +458,7 @@ <date>1968</date> <pubPlace>London</pubPlace> </imprint> - <biblScope unit="vol">Bd. 14</biblScope> + <biblScope unit="volume" from="14" to="14">14</biblScope> <biblScope unit="page" from="421">421</biblScope> </monogr> </biblStruct> @@ -486,7 +486,7 @@ <imprint> <date>1969</date> </imprint> - <biblScope unit="vol">Bd. Vll 1 (2. Auf</biblScope> + <biblScope unit="volume" from="Vll 1 (2. Auf" to="Vll 1 (2. Auf">Vll 1 (2. Auf</biblScope> <biblScope unit="page" from="514">514</biblScope> </monogr> </biblStruct> @@ -635,7 +635,7 @@ <imprint> <date>1972</date> </imprint> - <biblScope unit="vol">3</biblScope> + <biblScope unit="volume" from="3" to="3">3</biblScope> <biblScope unit="page" from="305">305</biblScope> </monogr> </biblStruct> @@ -695,7 +695,7 @@ <imprint> <date>1979</date> </imprint> - <biblScope unit="vol">62</biblScope> + <biblScope unit="volume" from="62" to="62">62</biblScope> <biblScope unit="page" from="163">163</biblScope> </monogr> </biblStruct> @@ -823,7 +823,7 @@ <imprint> <date>1978</date> </imprint> - <biblScope unit="vol">26</biblScope> + <biblScope unit="volume" from="26" to="26">26</biblScope> <biblScope unit="page" from="219">219</biblScope> </monogr> </biblStruct> @@ -867,7 +867,7 @@ <imprint> <date>1978</date> </imprint> - <biblScope unit="vol">6</biblScope> + <biblScope unit="volume" from="6" to="6">6</biblScope> <biblScope unit="page" from="233">233</biblScope> </monogr> </biblStruct> @@ -885,7 +885,7 @@ <imprint> <date>1977</date> </imprint> - <biblScope unit="vol">25</biblScope> + <biblScope unit="volume" from="25" to="25">25</biblScope> <biblScope unit="page" from="457">457</biblScope> </monogr> </biblStruct> @@ -913,7 +913,7 @@ <imprint> <date>1979</date> </imprint> - <biblScope unit="vol">1</biblScope> + <biblScope unit="volume" from="1" to="1">1</biblScope> <biblScope unit="page" from="23">23</biblScope> </monogr> </biblStruct> @@ -963,7 +963,7 @@ <imprint> <date>1978</date> </imprint> - <biblScope unit="vol">23</biblScope> + <biblScope unit="volume" from="23" to="23">23</biblScope> <biblScope unit="page" from="5">5</biblScope> </monogr> </biblStruct> @@ -980,7 +980,7 @@ </persName> </author> <imprint/> - <biblScope unit="vol">I</biblScope> + <biblScope unit="volume" from="I" to="I">I</biblScope> <biblScope unit="page" from="30">30</biblScope> </monogr> </biblStruct> @@ -1034,7 +1034,7 @@ <imprint> <date>1978</date> </imprint> - <biblScope unit="vol">30</biblScope> + <biblScope unit="volume" from="30" to="30">30</biblScope> <biblScope unit="page" from="361">361</biblScope> </monogr> </biblStruct> @@ -1116,7 +1116,7 @@ <imprint> <date>1975</date> </imprint> - <biblScope unit="vol">Bd. 2</biblScope> + <biblScope unit="volume" from="2" to="2">2</biblScope> <biblScope unit="page" from="113">113</biblScope> </monogr> </biblStruct> @@ -1295,7 +1295,7 @@ <imprint> <date>1978</date> </imprint> - <biblScope unit="vol">19</biblScope> + <biblScope unit="volume" from="19" to="19">19</biblScope> <biblScope unit="page" from="161">161</biblScope> </monogr> </biblStruct> @@ -1343,7 +1343,7 @@ <imprint> <date>1979</date> </imprint> - <biblScope unit="vol">78</biblScope> + <biblScope unit="volume" from="78" to="78">78</biblScope> <biblScope unit="page" from="154">154</biblScope> </monogr> </biblStruct> @@ -1370,7 +1370,7 @@ </persName> </author> <imprint/> - <biblScope unit="vol">I</biblScope> + <biblScope unit="volume" from="I" to="I">I</biblScope> <biblScope unit="page" from="70">70</biblScope> </monogr> </biblStruct> @@ -1388,7 +1388,7 @@ <imprint> <date>1977</date> </imprint> - <biblScope unit="vol">8</biblScope> + <biblScope unit="volume" from="8" to="8">8</biblScope> </monogr> </biblStruct> <biblStruct source="file:/C:/Users/Boulanger/DataspellProjects/experiments/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml#"> @@ -1414,7 +1414,7 @@ </persName> </author> <imprint/> - <biblScope unit="vol">1</biblScope> + <biblScope unit="volume" from="1" to="1">1</biblScope> <biblScope unit="page" from="110">110</biblScope> </monogr> </biblStruct> @@ -1460,7 +1460,7 @@ </persName> </author> <imprint/> - <biblScope unit="vol">I</biblScope> + <biblScope unit="volume" from="I" to="I">I</biblScope> <biblScope unit="page" from="78">78</biblScope> </monogr> </biblStruct> @@ -1501,7 +1501,7 @@ <imprint> <date>1970</date> </imprint> - <biblScope unit="vol">34</biblScope> + <biblScope unit="volume" from="34" to="34">34</biblScope> <biblScope unit="page" from="1">1</biblScope> <biblScope unit="page"/> </monogr> @@ -1520,7 +1520,7 @@ <imprint> <date>1970</date> </imprint> - <biblScope unit="vol">34</biblScope> + <biblScope unit="volume" from="34" to="34">34</biblScope> <biblScope unit="page" from="443">443</biblScope> </monogr> </biblStruct> @@ -1579,7 +1579,7 @@ <imprint> <date>1979</date> </imprint> - <biblScope unit="vol">8</biblScope> + <biblScope unit="volume" from="8" to="8">8</biblScope> <biblScope unit="page" from="362">362</biblScope> </monogr> </biblStruct> @@ -1694,7 +1694,7 @@ <imprint> <date>1978</date> </imprint> - <biblScope unit="vol">6</biblScope> + <biblScope unit="volume" from="6" to="6">6</biblScope> <biblScope unit="page" from="221">221</biblScope> </monogr> </biblStruct> @@ -1738,7 +1738,7 @@ <imprint> <date>1978</date> </imprint> - <biblScope unit="vol">7</biblScope> + <biblScope unit="volume" from="7" to="7">7</biblScope> <biblScope unit="page" from="228">228</biblScope> <biblScope unit="page"/> </monogr> @@ -1767,7 +1767,7 @@ <imprint> <date>1978</date> </imprint> - <biblScope unit="vol">5</biblScope> + <biblScope unit="volume" from="5" to="5">5</biblScope> <biblScope unit="page" from="109">109</biblScope> </monogr> </biblStruct> @@ -1785,7 +1785,7 @@ <imprint> <date>1970</date> </imprint> - <biblScope unit="vol">21 No. 1</biblScope> + <biblScope unit="volume" from="21 No. 1" to="21 No. 1">21 No. 1</biblScope> <biblScope unit="page" from="83">83</biblScope> </monogr> </biblStruct> @@ -1900,7 +1900,7 @@ <imprint> <date>1974</date> </imprint> - <biblScope unit="vol">Bd. 4 (3. Aufl</biblScope> + <biblScope unit="volume" from="4 (3. Aufl" to="4 (3. Aufl">4 (3. Aufl</biblScope> <biblScope unit="page" from="405">405</biblScope> </monogr> </biblStruct> @@ -1918,7 +1918,7 @@ <imprint> <date>1979</date> </imprint> - <biblScope unit="vol">Son derheft 2</biblScope> + <biblScope unit="volume" from="Son derheft 2" to="Son derheft 2">Son derheft 2</biblScope> <biblScope unit="page" from="5">5</biblScope> </monogr> </biblStruct> @@ -1972,7 +1972,7 @@ <imprint> <date>1973</date> </imprint> - <biblScope unit="vol">1</biblScope> + <biblScope unit="volume" from="1" to="1">1</biblScope> <biblScope unit="page" from="151">151</biblScope> </monogr> </biblStruct> @@ -2101,7 +2101,7 @@ <imprint> <date>1979</date> </imprint> - <biblScope unit="vol">12</biblScope> + <biblScope unit="volume" from="12" to="12">12</biblScope> <biblScope unit="page" from="159">159</biblScope> </monogr> </biblStruct> @@ -2238,7 +2238,7 @@ <date>1971</date> <pubPlace>Berkeley, Los Angeles, London</pubPlace> </imprint> - <biblScope unit="vol">Bd. I</biblScope> + <biblScope unit="volume" from="I" to="I">I</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 6f69ee6..8ecce6e 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 @@ -63,7 +63,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>27<extent unit="pages"> + <part> + <detail type="volume"> + <number>27</number> + </detail> + <extent unit="pages"> <start>183</start> <end/> </extent> @@ -137,7 +141,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>20<extent unit="pages"> + <part> + <detail type="volume"> + <number>20</number> + </detail> + <extent unit="pages"> <start>1072</start> <end/> </extent> @@ -168,7 +176,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>28<extent unit="pages"> + <part> + <detail type="volume"> + <number>28</number> + </detail> + <extent unit="pages"> <start>379</start> <end/> </extent> @@ -350,7 +362,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>20<extent unit="pages"> + <part> + <detail type="volume"> + <number>20</number> + </detail> + <extent unit="pages"> <start>56</start> <end/> </extent> @@ -462,7 +478,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>3<extent unit="pages"> + <part> + <detail type="volume"> + <number>3</number> + </detail> + <extent unit="pages"> <start>30</start> <end/> </extent> @@ -581,7 +601,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>4<extent unit="pages"> + <part> + <detail type="volume"> + <number>4</number> + </detail> + <extent unit="pages"> <start>220</start> <end/> </extent> @@ -612,7 +636,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>105<extent unit="pages"> + <part> + <detail type="volume"> + <number>105</number> + </detail> + <extent unit="pages"> <start>2117</start> <end/> </extent> @@ -685,7 +713,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>2</part> + <part> + <detail type="volume"> + <number>2</number> + </detail> + </part> <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition> </mods> <mods> @@ -859,7 +891,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>94<extent unit="pages"> + <part> + <detail type="volume"> + <number>94</number> + </detail> + <extent unit="pages"> <start>997</start> <end/> </extent> @@ -1066,7 +1102,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>56<extent unit="pages"> + <part> + <detail type="volume"> + <number>56</number> + </detail> + <extent unit="pages"> <start>99</start> <end/> </extent> @@ -1097,7 +1137,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>78<extent unit="pages"> + <part> + <detail type="volume"> + <number>78</number> + </detail> + <extent unit="pages"> <start>59</start> <end/> </extent> @@ -1227,7 +1271,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>4<extent unit="pages"> + <part> + <detail type="volume"> + <number>4</number> + </detail> + <extent unit="pages"> <start>93</start> <end/> </extent> @@ -1258,7 +1306,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>13<extent unit="pages"> + <part> + <detail type="volume"> + <number>13</number> + </detail> + <extent unit="pages"> <start>23</start> <end/> </extent> @@ -1289,7 +1341,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>57<extent unit="pages"> + <part> + <detail type="volume"> + <number>57</number> + </detail> + <extent unit="pages"> <start>467</start> <end/> </extent> @@ -1324,7 +1380,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>16<extent unit="pages"> + <part> + <detail type="volume"> + <number>16</number> + </detail> + <extent unit="pages"> <start>368</start> <end/> </extent> @@ -1355,7 +1415,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>59<extent unit="pages"> + <part> + <detail type="volume"> + <number>59</number> + </detail> + <extent unit="pages"> <start>675</start> <end/> </extent> @@ -1373,7 +1437,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>39</part> + <part> + <detail type="volume"> + <number>39</number> + </detail> + </part> <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition> </mods> <mods> @@ -1467,7 +1535,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>73<extent unit="pages"> + <part> + <detail type="volume"> + <number>73</number> + </detail> + <extent unit="pages"> <start>733</start> <end/> </extent> @@ -1523,7 +1595,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>11<extent unit="pages"> + <part> + <detail type="volume"> + <number>11</number> + </detail> + <extent unit="pages"> <start>100</start> <end/> </extent> @@ -1554,7 +1630,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>16<extent unit="pages"> + <part> + <detail type="volume"> + <number>16</number> + </detail> + <extent unit="pages"> <start>412</start> <end/> </extent> @@ -1594,7 +1674,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>8<extent unit="pages"> + <part> + <detail type="volume"> + <number>8</number> + </detail> + <extent unit="pages"> <start>111</start> <end/> </extent> @@ -1629,7 +1713,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>18<extent unit="pages"> + <part> + <detail type="volume"> + <number>18</number> + </detail> + <extent unit="pages"> <start>206</start> <end/> </extent> @@ -1746,7 +1834,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>19<extent unit="pages"> + <part> + <detail type="volume"> + <number>19</number> + </detail> + <extent unit="pages"> <start>701</start> <end/> </extent> @@ -1777,7 +1869,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>11<extent unit="pages"> + <part> + <detail type="volume"> + <number>11</number> + </detail> + <extent unit="pages"> <start>295</start> <end/> </extent> @@ -1843,7 +1939,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>45<extent unit="pages"> + <part> + <detail type="volume"> + <number>45</number> + </detail> + <extent unit="pages"> <start>424</start> <end/> </extent> 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 0bec2af..5cc202c 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 @@ -55,7 +55,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>169<extent unit="pages"> + <part> + <detail type="volume"> + <number>169</number> + </detail> + <extent unit="pages"> <start>at</start> <end/> </extent> @@ -141,7 +145,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>89<extent unit="pages"> + <part> + <detail type="volume"> + <number>89</number> + </detail> + <extent unit="pages"> <start>1685</start> <end/> </extent> @@ -387,7 +395,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>2<extent unit="pages"> + <part> + <detail type="volume"> + <number>2</number> + </detail> + <extent unit="pages"> <start>15</start> <end/> </extent> @@ -431,7 +443,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>137<extent unit="pages"> + <part> + <detail type="volume"> + <number>137</number> + </detail> + <extent unit="pages"> <start>835</start> <end/> </extent> @@ -465,7 +481,11 @@ <originInfo> <issuance>monographic</issuance> </originInfo> - <part>Volume III<extent unit="pages"> + <part> + <detail type="volume"> + <number>Volume III</number> + </detail> + <extent unit="pages"> <start>215</start> <end/> </extent> @@ -495,7 +515,11 @@ <originInfo> <issuance>monographic</issuance> </originInfo> - <part>XXI<extent unit="pages"> + <part> + <detail type="volume"> + <number>XXI</number> + </detail> + <extent unit="pages"> <start>218</start> <end/> </extent> @@ -524,7 +548,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>28</part> + <part> + <detail type="volume"> + <number>28</number> + </detail> + </part> </relatedItem> <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition> </mods> @@ -609,7 +637,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>29<extent unit="pages"> + <part> + <detail type="volume"> + <number>29</number> + </detail> + <extent unit="pages"> <start>121</start> <end/> </extent> @@ -751,7 +783,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>I<extent unit="pages"> + <part> + <detail type="volume"> + <number>I</number> + </detail> + <extent unit="pages"> <start>47</start> <end/> </extent> @@ -782,7 +818,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>VII<extent unit="pages"> + <part> + <detail type="volume"> + <number>VII</number> + </detail> + <extent unit="pages"> <start>173</start> <end/> </extent> @@ -813,7 +853,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>19<extent unit="pages"> + <part> + <detail type="volume"> + <number>19</number> + </detail> + <extent unit="pages"> <start>427</start> <end/> </extent> @@ -848,7 +892,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>46<extent unit="pages"> + <part> + <detail type="volume"> + <number>46</number> + </detail> + <extent unit="pages"> <start>1</start> <end/> </extent> @@ -883,7 +931,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>44<extent unit="pages"> + <part> + <detail type="volume"> + <number>44</number> + </detail> + <extent unit="pages"> <start>256</start> <end/> </extent> @@ -926,7 +978,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>31<extent unit="pages"> + <part> + <detail type="volume"> + <number>31</number> + </detail> + <extent unit="pages"> <start>38</start> <end/> </extent> @@ -961,7 +1017,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>13<extent unit="pages"> + <part> + <detail type="volume"> + <number>13</number> + </detail> + <extent unit="pages"> <start>143</start> <end/> </extent> @@ -1030,7 +1090,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>29<extent unit="pages"> + <part> + <detail type="volume"> + <number>29</number> + </detail> + <extent unit="pages"> <start>189</start> <end/> </extent> @@ -1065,7 +1129,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>19<extent unit="pages"> + <part> + <detail type="volume"> + <number>19</number> + </detail> + <extent unit="pages"> <start>12</start> <end/> </extent> @@ -1100,7 +1168,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>28<extent unit="pages"> + <part> + <detail type="volume"> + <number>28</number> + </detail> + <extent unit="pages"> <start>281</start> <end/> </extent> @@ -1143,7 +1215,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>24<extent unit="pages"> + <part> + <detail type="volume"> + <number>24</number> + </detail> + <extent unit="pages"> <start>246</start> <end/> </extent> @@ -1209,7 +1285,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>20<extent unit="pages"> + <part> + <detail type="volume"> + <number>20</number> + </detail> + <extent unit="pages"> <start>110</start> <end/> </extent> 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 2dc472b..d63d561 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 @@ -84,7 +84,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>2</part> + <part> + <detail type="volume"> + <number>2</number> + </detail> + </part> </relatedItem> <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition> </mods> @@ -257,7 +261,11 @@ <originInfo> <issuance>monographic</issuance> </originInfo> - <part>Bd. 6. Opladen</part> + <part> + <detail type="volume"> + <number>6. Opladen</number> + </detail> + </part> </relatedItem> <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition> </mods> @@ -325,7 +333,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>vol. 9<extent unit="pages"> + <part> + <detail type="volume"> + <number>9</number> + </detail> + <extent unit="pages"> <start>675</start> <end>694</end> </extent> @@ -391,7 +403,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>vol. 9<extent unit="pages"> + <part> + <detail type="volume"> + <number>9</number> + </detail> + <extent unit="pages"> <start>63</start> <end>94</end> </extent> @@ -423,7 +439,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>vol. 9<extent unit="pages"> + <part> + <detail type="volume"> + <number>9</number> + </detail> + <extent unit="pages"> <start>695</start> <end>706</end> </extent> @@ -454,7 +474,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>vol. 9<extent unit="pages"> + <part> + <detail type="volume"> + <number>9</number> + </detail> + <extent unit="pages"> <start>95</start> <end>160</end> </extent> @@ -560,7 +584,11 @@ <originInfo> <issuance>monographic</issuance> </originInfo> - <part>Bd. III</part> + <part> + <detail type="volume"> + <number>III</number> + </detail> + </part> </relatedItem> <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition> </mods> @@ -639,7 +667,11 @@ <originInfo> <issuance>monographic</issuance> </originInfo> - <part>Bd. 6. Opladen</part> + <part> + <detail type="volume"> + <number>6. Opladen</number> + </detail> + </part> </relatedItem> <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition> </mods> @@ -734,7 +766,11 @@ <originInfo> <issuance>monographic</issuance> </originInfo> - <part>Bd. 6. Opladen</part> + <part> + <detail type="volume"> + <number>6. Opladen</number> + </detail> + </part> </relatedItem> <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition> </mods> @@ -761,7 +797,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>vol. 10<extent unit="pages"> + <part> + <detail type="volume"> + <number>10</number> + </detail> + <extent unit="pages"> <start>339</start> <end>375</end> </extent> @@ -845,7 +885,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>vol. 9<extent unit="pages"> + <part> + <detail type="volume"> + <number>9</number> + </detail> + <extent unit="pages"> <start>293</start> <end>306</end> </extent> @@ -1093,7 +1137,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>vol. 9</part> + <part> + <detail type="volume"> + <number>9</number> + </detail> + </part> <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition> </mods> </modsCollection> diff --git a/convert-anystyle-data/mods/metadata/10.1515_zfrs-1980-0104-bibl.MODS.xml b/convert-anystyle-data/mods/metadata/10.1515_zfrs-1980-0104-bibl.MODS.xml index d7aa442..4ec894d 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 @@ -118,7 +118,11 @@ <place/> <issuance>continuing</issuance> </originInfo> - <part>Bd. I</part> + <part> + <detail type="volume"> + <number>I</number> + </detail> + </part> </relatedItem> <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition> </mods> @@ -166,7 +170,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>III<extent unit="pages"> + <part> + <detail type="volume"> + <number>III</number> + </detail> + <extent unit="pages"> <start>1</start> <end/> </extent> @@ -197,7 +205,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>26<extent unit="pages"> + <part> + <detail type="volume"> + <number>26</number> + </detail> + <extent unit="pages"> <start>174</start> <end/> </extent> @@ -231,7 +243,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>78<extent unit="pages"> + <part> + <detail type="volume"> + <number>78</number> + </detail> + <extent unit="pages"> <start>51</start> <end/> </extent> @@ -350,7 +366,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>25</part> + <part> + <detail type="volume"> + <number>25</number> + </detail> + </part> </relatedItem> <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition> </mods> @@ -376,7 +396,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>22<extent unit="pages"> + <part> + <detail type="volume"> + <number>22</number> + </detail> + <extent unit="pages"> <start>509</start> <end/> </extent> @@ -406,7 +430,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>11<extent unit="pages"> + <part> + <detail type="volume"> + <number>11</number> + </detail> + <extent unit="pages"> <start>507</start> <end/> </extent> @@ -465,7 +493,11 @@ <place/> <issuance>monographic</issuance> </originInfo> - <part>Vol. 1<extent unit="pages"> + <part> + <detail type="volume"> + <number>1</number> + </detail> + <extent unit="pages"> <start>1</start> <end/> </extent> @@ -600,7 +632,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>24<extent unit="pages"> + <part> + <detail type="volume"> + <number>24</number> + </detail> + <extent unit="pages"> <start>13</start> <end/> </extent> @@ -631,7 +667,11 @@ <place/> <issuance>continuing</issuance> </originInfo> - <part>Bd. 14<extent unit="pages"> + <part> + <detail type="volume"> + <number>14</number> + </detail> + <extent unit="pages"> <start>421</start> <end/> </extent> @@ -667,7 +707,11 @@ <originInfo> <issuance>monographic</issuance> </originInfo> - <part>Bd. Vll 1 (2. Auf<extent unit="pages"> + <part> + <detail type="volume"> + <number>Vll 1 (2. Auf</number> + </detail> + <extent unit="pages"> <start>514</start> <end/> </extent> @@ -834,7 +878,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>3<extent unit="pages"> + <part> + <detail type="volume"> + <number>3</number> + </detail> + <extent unit="pages"> <start>305</start> <end/> </extent> @@ -901,7 +949,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>62<extent unit="pages"> + <part> + <detail type="volume"> + <number>62</number> + </detail> + <extent unit="pages"> <start>163</start> <end/> </extent> @@ -1048,7 +1100,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>26<extent unit="pages"> + <part> + <detail type="volume"> + <number>26</number> + </detail> + <extent unit="pages"> <start>219</start> <end/> </extent> @@ -1085,7 +1141,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>6<extent unit="pages"> + <part> + <detail type="volume"> + <number>6</number> + </detail> + <extent unit="pages"> <start>233</start> <end/> </extent> @@ -1115,7 +1175,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>25<extent unit="pages"> + <part> + <detail type="volume"> + <number>25</number> + </detail> + <extent unit="pages"> <start>457</start> <end/> </extent> @@ -1145,7 +1209,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>1<extent unit="pages"> + <part> + <detail type="volume"> + <number>1</number> + </detail> + <extent unit="pages"> <start>23</start> <end/> </extent> @@ -1212,7 +1280,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>23<extent unit="pages"> + <part> + <detail type="volume"> + <number>23</number> + </detail> + <extent unit="pages"> <start>5</start> <end/> </extent> @@ -1271,7 +1343,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>30<extent unit="pages"> + <part> + <detail type="volume"> + <number>30</number> + </detail> + <extent unit="pages"> <start>361</start> <end/> </extent> @@ -1365,7 +1441,11 @@ <originInfo> <issuance>monographic</issuance> </originInfo> - <part>Bd. 2<extent unit="pages"> + <part> + <detail type="volume"> + <number>2</number> + </detail> + <extent unit="pages"> <start>113</start> <end/> </extent> @@ -1544,7 +1624,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>19<extent unit="pages"> + <part> + <detail type="volume"> + <number>19</number> + </detail> + <extent unit="pages"> <start>161</start> <end/> </extent> @@ -1574,7 +1658,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>78<extent unit="pages"> + <part> + <detail type="volume"> + <number>78</number> + </detail> + <extent unit="pages"> <start>154</start> <end/> </extent> @@ -1603,7 +1691,11 @@ <originInfo> <issuance>monographic</issuance> </originInfo> - <part>8</part> + <part> + <detail type="volume"> + <number>8</number> + </detail> + </part> </relatedItem> <accessCondition valueURI="http://creativecommons.org/licenses/by-sa/4.0/">http://creativecommons.org/licenses/by-sa/4.0/</accessCondition> </mods> @@ -1661,7 +1753,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>34<extent unit="pages"> + <part> + <detail type="volume"> + <number>34</number> + </detail> + <extent unit="pages"> <start>1</start> <end/> </extent> @@ -1695,7 +1791,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>34<extent unit="pages"> + <part> + <detail type="volume"> + <number>34</number> + </detail> + <extent unit="pages"> <start>443</start> <end/> </extent> @@ -1781,7 +1881,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>8<extent unit="pages"> + <part> + <detail type="volume"> + <number>8</number> + </detail> + <extent unit="pages"> <start>362</start> <end/> </extent> @@ -1896,7 +2000,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>6<extent unit="pages"> + <part> + <detail type="volume"> + <number>6</number> + </detail> + <extent unit="pages"> <start>221</start> <end/> </extent> @@ -1965,7 +2073,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>7<extent unit="pages"> + <part> + <detail type="volume"> + <number>7</number> + </detail> + <extent unit="pages"> <start>228</start> <end/> </extent> @@ -2013,7 +2125,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>5<extent unit="pages"> + <part> + <detail type="volume"> + <number>5</number> + </detail> + <extent unit="pages"> <start>109</start> <end/> </extent> @@ -2043,7 +2159,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>21 No. 1<extent unit="pages"> + <part> + <detail type="volume"> + <number>21 No. 1</number> + </detail> + <extent unit="pages"> <start>83</start> <end/> </extent> @@ -2189,7 +2309,11 @@ <originInfo> <issuance>monographic</issuance> </originInfo> - <part>Bd. 4 (3. Aufl<extent unit="pages"> + <part> + <detail type="volume"> + <number>4 (3. Aufl</number> + </detail> + <extent unit="pages"> <start>405</start> <end/> </extent> @@ -2219,7 +2343,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>Son derheft 2<extent unit="pages"> + <part> + <detail type="volume"> + <number>Son derheft 2</number> + </detail> + <extent unit="pages"> <start>5</start> <end/> </extent> @@ -2278,7 +2406,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>1<extent unit="pages"> + <part> + <detail type="volume"> + <number>1</number> + </detail> + <extent unit="pages"> <start>151</start> <end/> </extent> @@ -2462,7 +2594,11 @@ <originInfo> <issuance>continuing</issuance> </originInfo> - <part>12<extent unit="pages"> + <part> + <detail type="volume"> + <number>12</number> + </detail> + <extent unit="pages"> <start>159</start> <end/> </extent> diff --git a/convert-anystyle-data/ris/10.1111_1467-6478.00057.ris b/convert-anystyle-data/ris/10.1111_1467-6478.00057.ris index 5ced869..2cea946 100644 --- a/convert-anystyle-data/ris/10.1111_1467-6478.00057.ris +++ b/convert-anystyle-data/ris/10.1111_1467-6478.00057.ris @@ -11,6 +11,7 @@ AU - Pateman, C. Pateman C. TI - Mere Auxiliaries to the Commonwealthâ€: Women and the Origins of Liberalism JO - Political Studies SP - 183 +VL - 27 ID - ref2 ER - TY - JOUR @@ -28,6 +29,7 @@ TY - JOUR TI - Historicising Citizenship: Remembering Broken Promises JO - Melbourne University Law Rev SP - 1072 +VL - 20 ID - ref5 ER - TY - JOUR @@ -35,6 +37,7 @@ AU - Walby, S. Walby S. TI - Is Citizenship Gendered? JO - Sociology SP - 379 +VL - 28 ID - ref6 ER - TY - CHAP @@ -74,6 +77,7 @@ AU - Bottomley, A. Bottomley A. TI - Self and Subjectivities: Languages of Claim in Property Law JO - J. of Law and Society SP - 56 +VL - 20 ID - ref12 ER - TY - JOUR @@ -97,6 +101,7 @@ AU - Mossman, M.J. Mossman M.J. TI - Feminism, and Legal Method: The Difference it Makes JO - Aust. J. of Law and Society SP - 30 +VL - 3 ID - ref16 ER - TY - JOUR @@ -121,6 +126,7 @@ TY - JOUR AU - Staves, S. Staves S. TI - Married Women’s Separate Property in England, 1660–1833 SP - 220 +VL - 4 ID - ref20 ER - TY - JOUR @@ -128,6 +134,7 @@ AU - Siegel, R.B. Siegel R.B. TI - The Rule of Loveâ€: Wife Beating as Prerogative and Privacy JO - Yale Law J SP - 2117 +VL - 105 ID - ref21 ER - TY - JOUR @@ -143,6 +150,7 @@ ID - ref23 ER - TY - JOUR TI - All E.R +VL - 2 ID - ref24 ER - TY - CHAP @@ -181,6 +189,7 @@ AU - Dalton, C. Dalton C. TI - An Essay in the Deconstruction of Contract Doctrine JO - Yale Law J SP - 997 +VL - 94 ID - ref30 ER - TY - JOUR @@ -223,6 +232,7 @@ AU - Oldham, J.T. Oldham J.T. TI - Management of the Community Estate during an Intact Marriage JO - Law and Contemporary Problems SP - 99 +VL - 56 ID - ref37 ER - TY - JOUR @@ -230,6 +240,7 @@ AU - Donahue, C. Donahue C. TI - What Causes Fundamental Legal Ideas? Marital Property in England and France in the Thirteenth Century’ JO - Michigan Law Rev SP - 59 +VL - 78 ID - ref38 ER - TY - JOUR @@ -258,6 +269,7 @@ AU - Howell, N. Howell N. TI - Sexually Transmitted Debtâ€: A Feminist Analysis of Laws Regulating Guarantors and Co-Borrowers JO - Aust. Feminist Law J SP - 93 +VL - 4 ID - ref43 ER - TY - JOUR @@ -265,6 +277,7 @@ AU - Baron, P. Baron P. TI - The Free Exercise of Her Will: Women and Emotionally Transmitted Debt JO - Law in Context SP - 23 +VL - 13 ID - ref44 ER - TY - JOUR @@ -272,6 +285,7 @@ AU - Fehlberg, B. Fehlberg B. TI - The Husband, the Bank, the Wife and Her Signature JO - Modern Law Rev SP - 467 +VL - 57 ID - ref45 ER - TY - JOUR @@ -279,6 +293,7 @@ AU - Richardson, M. Richardson M. TI - Protecting Women who provide Security for a Husband’s, Partner’s or Child’s Debts. The Value and Limits of an Economic Perspective’ JO - Legal Studies SP - 368 +VL - 16 ID - ref46 ER - TY - JOUR @@ -286,10 +301,12 @@ AU - Fehlberg, B. Fehlberg B. TI - The Husband, the Bank, the Wife and Her Signature – the Sequel JO - Modern Law Rev SP - 675 +VL - 59 ID - ref47 ER - TY - JOUR TI - N.S.W.L.R +VL - 39 ID - ref48 ER - TY - JOUR @@ -310,6 +327,7 @@ AU - Reich, C.A. Reich C.A. TI - The New Property JO - Yale Law J SP - 733 +VL - 73 ID - ref51 ER - TY - JOUR @@ -322,6 +340,7 @@ AU - Parkinson, P. Parkinson P. TI - Property Rights and Third Party Creditors – the Scope and Limitations of Equitable Doctrines JO - Australian J. Family Law SP - 100 +VL - 11 ID - ref53 ER - TY - JOUR @@ -329,6 +348,7 @@ AU - Riley, J. Riley J. TI - The Property Rights of Home-Makers under General Law: Bryson v. Bryant JO - Sydney Law Rev SP - 412 +VL - 16 ID - ref54 ER - TY - JOUR @@ -337,6 +357,7 @@ AU - Doolan, P.A. Doolan P.A. TI - When Bankruptcy and Family Law Collide JO - Aust. J. Family Law SP - 111 +VL - 8 ID - ref55 ER - TY - JOUR @@ -344,6 +365,7 @@ AU - Bennett, B. Bennett B. TI - The Economics of Wifing Services: Law and Economics on the Family JO - J. of Law and Society SP - 206 +VL - 18 ID - ref56 ER - TY - JOUR @@ -370,6 +392,7 @@ AU - Sarmas, L. Sarmas L. TI - Storytelling and the Law: A Case Study of Louth v. Diprose JO - Melbourne University Law Rev SP - 701 +VL - 19 ID - ref60 ER - TY - JOUR @@ -377,6 +400,7 @@ AU - Colebrook, C. Colebrook C. TI - Feminist Ethics and Historicism JO - Aust. Feminist Studies SP - 295 +VL - 11 ID - ref61 ER - TY - JOUR @@ -391,6 +415,7 @@ TI - Should all Maintenance of Spouses be abolished? JO - Modern Law Rev SP - 424 EP - 3 +VL - 45 ID - ref63 ER - TY - JOUR diff --git a/convert-anystyle-data/ris/10.1111_1467-6478.00080.ris b/convert-anystyle-data/ris/10.1111_1467-6478.00080.ris index a174012..05f4a72 100644 --- a/convert-anystyle-data/ris/10.1111_1467-6478.00080.ris +++ b/convert-anystyle-data/ris/10.1111_1467-6478.00080.ris @@ -10,6 +10,7 @@ AU - Goff, R. Goff R. TI - The Search for Principle JO - Proceeedings of the British Academy SP - at +VL - 169 ID - ref2 ER - TY - JOUR @@ -28,6 +29,7 @@ AU - Kennedy, D. Kennedy D. TI - Form and substance in Private Law Ajudication JO - Harvard Law Rev SP - 1685 +VL - 89 ID - ref5 ER - TY - JOUR @@ -80,6 +82,7 @@ AU - Cownie, F. Cownie F. TI - Working on the Chain Gang? JO - Contemporary Issues in Law SP - 15 +VL - 2 ID - ref14 ER - TY - JOUR @@ -88,6 +91,7 @@ AU - Boon, A. Boon A. TI - Education for Life or for Work? JO - New Law J SP - 835 +VL - 137 ID - ref15 ER - TY - CHAP @@ -95,6 +99,7 @@ AU - Huxley, T.H. Huxley T.H. TI - Universities: Actual and Ideal BT - T.H. Huxley, Collected Essays SP - 215 +VL - Volume III ID - ref16 ER - TY - CHAP @@ -102,11 +107,13 @@ AU - Mill, J.S. Mill J.S. TI - Inaugural address to the University of St Andrews BT - Collected Work of John Stuart Mill: Volume SP - 218 +VL - XXI ID - ref17 ER - TY - JOUR AU - Leavis, F.R. Leavis F.R. TI - Education and the University +VL - 28 ID - ref18 ER - TY - CHAP @@ -127,6 +134,7 @@ AU - Kahn-Freund, O. Kahn-Freund O. TI - Reflections on Legal Education JO - Modern Law Rev SP - 121 +VL - 29 ID - ref21 ER - TY - JOUR @@ -156,6 +164,7 @@ TY - JOUR TI - Define and Empower: Women Students Consider Feminist Learning JO - Law and Critique SP - 47 +VL - I ID - ref26 ER - TY - JOUR @@ -163,6 +172,7 @@ AU - Conklin, W. Conklin W. TI - The Invisible Author of Legal Authority JO - Law and Critique SP - 173 +VL - VII ID - ref27 ER - TY - JOUR @@ -170,6 +180,7 @@ AU - Collier, R. Collier R. TI - Masculinism, Law and Law Teaching JO - International J. of the Sociology of Law SP - 427 +VL - 19 ID - ref28 ER - TY - JOUR @@ -177,6 +188,7 @@ AU - McAuslan, P. McAuslan P. TI - Administrative Law, Collective Consumption and Judicial Policy JO - Modern Law Rev SP - 1 +VL - 46 ID - ref29 ER - TY - JOUR @@ -184,6 +196,7 @@ AU - Samuelson, P. Samuelson P. TI - The Convergence of the Law School and the University JO - The Am. Scholar SP - 256 +VL - 44 ID - ref30 ER - TY - JOUR @@ -192,6 +205,7 @@ AU - Jones, M. Jones M. TI - A Survey of Law Schools in the United Kingdom, 1996 JO - The Law Teacher SP - 38 +VL - 31 ID - ref31 ER - TY - JOUR @@ -199,6 +213,7 @@ AU - Wilson, J. Wilson J. TI - A third survey of university legal education JO - Legal Studies SP - 143 +VL - 13 ID - ref32 ER - TY - JOUR @@ -212,6 +227,7 @@ AU - Skwarok, L. Skwarok L. TI - Business Law for Non-Lawyers: Setting the Stage for Teaching, Learning and Assessment at Hong Kong Polytechnic University JO - The Law Teacher SP - 189 +VL - 29 ID - ref34 ER - TY - JOUR @@ -219,6 +235,7 @@ AU - Bastin, N. Bastin N. TI - Law, Law Staff and CNAA Business Studies Degree Courses JO - The Law Teacher SP - 12 +VL - 19 ID - ref35 ER - TY - JOUR @@ -226,6 +243,7 @@ AU - Ridley, A. Ridley A. TI - Legal Skills for Non-Law Students: Added Value or Irrelevant Diversion? JO - The Law Teacher SP - 281 +VL - 28 ID - ref36 ER - TY - JOUR @@ -234,6 +252,7 @@ AU - Vilkinas, T. Vilkinas T. TI - Legal Literacy for Managers: The Role of the Educator JO - The Law Teacher SP - 246 +VL - 24 ID - ref37 ER - TY - CHAP @@ -249,6 +268,7 @@ AU - Harris, P. Harris P. TI - Curriculum Development in Legal Studies JO - The Law Teacher SP - 110 +VL - 20 ID - ref39 ER - TY - JOUR diff --git a/convert-anystyle-data/ris/10.1515_zfrs-1980-0103.ris b/convert-anystyle-data/ris/10.1515_zfrs-1980-0103.ris index 83e17fe..7690609 100644 --- a/convert-anystyle-data/ris/10.1515_zfrs-1980-0103.ris +++ b/convert-anystyle-data/ris/10.1515_zfrs-1980-0103.ris @@ -13,6 +13,7 @@ TY - JOUR AU - Black, Donald Black Donald TI - The Mobilization of Law JO - Journal of Legal Studies +VL - 2 ID - ref3 ER - TY - CHAP @@ -45,6 +46,7 @@ TY - CHAP AU - Blankenburg, Erhard Blankenburg Erhard TI - Recht als gradualisiertes Konzept BT - Alternative Rechtsformen und Alternativen zum Recht Jahrbuch für Rechtssoziologie und Rechtstheorie +VL - 6. Opladen ID - ref8 ER - TY - JOUR @@ -60,6 +62,7 @@ TI - Everday Disputes and Mediation in the United States: A Reply to Professor JO - Law and Society Review SP - 675 EP - 694 +VL - 9 ID - ref10 ER - TY - JOUR @@ -74,6 +77,7 @@ TI - Influences of Social Organization on Dispute processing JO - Law and Society Review SP - 63 EP - 94 +VL - 9 ID - ref12 ER - TY - JOUR @@ -82,6 +86,7 @@ TI - Avoidance as Dispute Processing: An Elaboration JO - Law and Society Review SP - 695 EP - 706 +VL - 9 ID - ref13 ER - TY - JOUR @@ -90,6 +95,7 @@ TI - Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change JO - Law and Society Review SP - 95 EP - 160 +VL - 9 ID - ref14 ER - TY - JOUR @@ -111,6 +117,7 @@ TY - CHAP AU - Johnson, Earl Johnson Earl TI - Thinking about Access: A Preliminary Typology of Possible Strategies. BT - Access to Justice +VL - III ID - ref18 ER - TY - JOUR @@ -127,6 +134,7 @@ TY - CHAP AU - Luhmann, Niklas Luhmann Niklas TI - Kommunikation über Recht in Interaktionssystemen BT - Alternative Rechtsformen und Alternativen zum Recht Jahrbuch für Rechtssoziologie und Rechtstheorie +VL - 6. Opladen ID - ref21 ER - TY - JOUR @@ -148,6 +156,7 @@ AU - Reifner, Udo Reifner Udo AU - Gorges, Irmela Gorges Irmela TI - Alternativen der Rechtsberatung: Dienstleistung, Fürsorge und kollektive Selbsthilfe BT - Alternative Rechtsformen und Alternativen zum Recht Jahrbuch für Rechtssoziologie und Rechtstheorie +VL - 6. Opladen ID - ref24 ER - TY - JOUR @@ -156,6 +165,7 @@ TI - Alternatives in Dispute Processing in a Small Claim Court JO - Law and Society Review SP - 339 EP - 375 +VL - 10 ID - ref25 ER - TY - CHAP @@ -175,6 +185,7 @@ TI - The Public Ordering of Private Cases; Winning Civil Court Cases JO - Law and Society Review SP - 293 EP - 306 +VL - 9 ID - ref28 ER - TY - JOUR @@ -223,5 +234,6 @@ AU - Felstiner, Felstiner AU - Danzig, Danzig AU - Lowy, Lowy TI - Law and Society Review +VL - 9 ID - ref36 ER - diff --git a/convert-anystyle-data/ris/10.1515_zfrs-1980-0104.ris b/convert-anystyle-data/ris/10.1515_zfrs-1980-0104.ris index 1c2da71..1429dad 100644 --- a/convert-anystyle-data/ris/10.1515_zfrs-1980-0104.ris +++ b/convert-anystyle-data/ris/10.1515_zfrs-1980-0104.ris @@ -20,6 +20,7 @@ TY - JOUR AU - Zweigert, Zweigert AU - Kötz, Kötz TI - Comparative Methods in Sociology Einführung in die Rechtsvergleichung +VL - I ID - ref5 ER - TY - JOUR @@ -31,6 +32,7 @@ TY - JOUR AU - Rabel, Rabel TI - Gesammelte Aufsätze SP - 1 +VL - III ID - ref7 ER - TY - JOUR @@ -38,6 +40,7 @@ AU - Abel, R. Abel R. TI - Law Books and Books About Law JO - Stanford Law Rev SP - 174 +VL - 26 ID - ref8 ER - TY - JOUR @@ -45,6 +48,7 @@ AU - Benda-Beckmann, Benda-Beckmann TI - Einige Anmerkungen über die Beziehung zwischen Rechtssoziologie und Rechtsvergleichung JO - ZvglRW SP - 51 +VL - 78 ID - ref9 ER - TY - CHAP @@ -70,6 +74,7 @@ TY - JOUR AU - Wirsing, Wirsing TI - Probleme des interkulturellen Vergleichs in der Ethnologie JO - Sociologus +VL - 25 ID - ref13 ER - TY - JOUR @@ -77,6 +82,7 @@ AU - Poirier, Poirier TI - Situation actuelle et Programme de travail de Techno logie juridique JO - Rev. int. Sc. Soc SP - 509 +VL - 22 ID - ref14 ER - TY - JOUR @@ -84,6 +90,7 @@ AU - Macaulay, Macaulay TI - Elegant Models, Empirical Pictures, and the Complexities of Contract JO - Law & Soc. Rev SP - 507 +VL - 11 ID - ref15 ER - TY - JOUR @@ -97,6 +104,7 @@ AU - Tomasson, Tomasson TI - Introduction; Comparative Sociology — The State of the Art BT - Comparative Studies in Sociology SP - 1 +VL - 1 ID - ref17 ER - TY - JOUR @@ -123,6 +131,7 @@ AU - Payne, Payne TI - Comparative Sociology — Some Problems of Theory and Method JO - Brit. J. Soc SP - 13 +VL - 24 ID - ref21 ER - TY - JOUR @@ -130,6 +139,7 @@ AU - Eisenstadt, Eisenstadt TI - Social Institutions - Comparative Method JO - International Encyclopedia of the Social Sciences SP - 421 +VL - 14 ID - ref22 ER - TY - CHAP @@ -138,6 +148,7 @@ AU - Eckensberger, Eckensberger TI - Methodische Probleme des interkulturellen Vergleichs BT - Handbuch der Psychologie SP - 514 +VL - Vll 1 (2. Auf ID - ref23 ER - TY - JOUR @@ -174,6 +185,7 @@ AU - Heidrich, Heidrich TI - Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels JO - Jahr buch für Rechtssoziologie und Rechtstheorie SP - 305 +VL - 3 ID - ref29 ER - TY - CHAP @@ -189,6 +201,7 @@ AU - Albrecht, Albrecht TI - Die Vergleichung als Methode der Strafrechtswissenschaft und der Kriminologie JO - MschrKrim SP - 163 +VL - 62 ID - ref31 ER - TY - CHAP @@ -221,6 +234,7 @@ AU - Abel, R. Abel R. TI - Comparative Law and Social Theory JO - Am. J. Comp. L SP - 219 +VL - 26 ID - ref36 ER - TY - JOUR @@ -229,6 +243,7 @@ AU - Janeksela, Janeksela TI - Some Comments on Comparative Methodologies in Criminal Justice JO - Int. J. Crim. Pen SP - 233 +VL - 6 ID - ref37 ER - TY - JOUR @@ -236,6 +251,7 @@ AU - Merryman, Merryman TI - Comparative Law and Social Change - On the Origins, Style, Decline and Revival of the Law and Development Movement JO - Am. J. Comp. L SP - 457 +VL - 25 ID - ref38 ER - TY - JOUR @@ -243,6 +259,7 @@ AU - Däubler, Däubler TI - Systemvergleich im Arbeitsrecht? Vorüberlegungen zu einigen Methodenfragen JO - Demokratie und Recht SP - 23 +VL - 1 ID - ref39 ER - TY - CHAP @@ -258,6 +275,7 @@ AU - Blankenburg, Blankenburg TI - Task Contingencies and National Administrative Culture as Determinants for Labour Market Administration JO - HM discussion papers SP - 5 +VL - 23 ID - ref41 ER - TY - JOUR @@ -271,6 +289,7 @@ AU - Trommsdorf, Trommsdorf TI - Möglichkeiten und Probleme des Kulturvergleichs am Beispiel einer Agressionsstudie JO - KZfSS SP - 361 +VL - 30 ID - ref43 ER - TY - JOUR @@ -291,6 +310,7 @@ AU - Biervert, Biervert TI - Der internationale Vergleich BT - Techniken empirischer Sozialforschung SP - 113 +VL - 2 ID - ref46 ER - TY - JOUR @@ -329,6 +349,7 @@ AU - Constantinesco, Constantinesco TI - Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise JO - Zeitschrift für Rechtsvergleichung SP - 161 +VL - 19 ID - ref52 ER - TY - JOUR @@ -336,12 +357,14 @@ AU - Constantinesco, Constantinesco TI - Ãœber den Stil der „Stilthe orie" in der Rechtsvergleichung JO - ZvglRW SP - 154 +VL - 78 ID - ref53 ER - TY - CHAP AU - Hofstede, Hofstede TI - Cultural Determinants of the Exercise of Power in a Hierarchy BT - European Institute for Advanced Studies in Management Working Paper +VL - 8 ID - ref54 ER - TY - JOUR @@ -355,6 +378,7 @@ AU - Rheinstein, Rheinstein TI - Die Rechtshonoratioren und ihr Einfluß auf Charakter und Funk tion der Rechtsordnungen JO - RabelsZ SP - 1 +VL - 34 ID - ref56 ER - TY - JOUR @@ -362,6 +386,7 @@ AU - Bernstein, Bernstein TI - Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der Rechtsvergleichung JO - RabelsZ SP - 443 +VL - 34 ID - ref57 ER - TY - JOUR @@ -381,6 +406,7 @@ AU - Klausa, Klausa TI - Politische Inhaltsanalyse von Rechtslehrertexten JO - ZfS SP - 362 +VL - 8 ID - ref60 ER - TY - JOUR @@ -405,6 +431,7 @@ AU - Clinard, Clinard TI - Comparative Crime Victimization Surveys — Some Problems and Results JO - Int. J. Crim, and Pen SP - 221 +VL - 6 ID - ref64 ER - TY - JOUR @@ -419,6 +446,7 @@ AU - Rokumoto, Rokumoto TI - Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in International Comparison JO - ZfS SP - 228 +VL - 7 ID - ref66 ER - TY - JOUR @@ -428,6 +456,7 @@ AU - Sloot, Sloot TI - Rechtspro bleme oder private Schwierigkeiten — Die Inanspruchnahme von Rechtshilfe in den Nieder landen JO - Jahrbuch für Rechtssoziologie und Rechtstheorie SP - 109 +VL - 5 ID - ref67 ER - TY - JOUR @@ -435,6 +464,7 @@ AU - Podgdrecki, Podgdrecki TI - Comparative Studies on the Attitudes Towards Various Legal Systems JO - Polish Sociological Bulletin SP - 83 +VL - 21 No. 1 ID - ref68 ER - TY - JOUR @@ -468,6 +498,7 @@ AU - Heintz, Heintz TI - Interkultureller Vergleich BT - Handbuch der empirischen Sozialfor schung SP - 405 +VL - 4 (3. Aufl ID - ref73 ER - TY - JOUR @@ -475,6 +506,7 @@ AU - Hegenbarth, Hegenbarth TI - Ãœber methodische und organisatorische Grenzen der empirischen Rechts forschung in Entwicklungsländern JO - Informationsbrief für Rechtssoziologie SP - 5 +VL - Son derheft 2 ID - ref74 ER - TY - JOUR @@ -488,6 +520,7 @@ AU - Friday, Friday TI - Problems in Comparative Criminology JO - Int. J. Crim SP - 151 +VL - 1 ID - ref76 ER - TY - JOUR @@ -528,5 +561,6 @@ AU - Bryde, Bryde TI - Recht und Konflikt — Mexiko und Afrika JO - Verfassung und Recht in Obersee SP - 159 +VL - 12 ID - ref82 ER - diff --git a/convert-anystyle-data/tei-to-bibformats.ipynb b/convert-anystyle-data/tei-to-bibformats.ipynb index e96bbcc..12472cf 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-22T12:08:25.850412Z", - "start_time": "2024-08-22T12:08:18.677298Z" + "end_time": "2024-08-22T12:45:23.927129Z", + "start_time": "2024-08-22T12:45:18.468566Z" } }, "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": 93, + "execution_count": 99, "metadata": {}, "output_type": "execute_result" } ], - "execution_count": 93 + "execution_count": 99 }, { "metadata": {}, @@ -163,8 +163,8 @@ { "metadata": { "ExecuteTime": { - "end_time": "2024-08-22T12:10:49.372868Z", - "start_time": "2024-08-22T12:10:49.094486Z" + "end_time": "2024-08-22T12:45:37.064334Z", + "start_time": "2024-08-22T12:45:36.815463Z" } }, "cell_type": "code", @@ -196,7 +196,7 @@ ] } ], - "execution_count": 94 + "execution_count": 100 }, { "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 1bbbaae..3eaca14 100644 --- a/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml +++ b/convert-anystyle-data/tei/10.1111_1467-6478.00057.xml @@ -62,7 +62,7 @@ ’ ( <date>1979</date> ) - <biblScope unit="vol">27</biblScope> + <biblScope unit="volume" from="27" to="27">27</biblScope> <title level="j">Political Studies</title> <biblScope unit="page" from="183">183</biblScope> . @@ -117,7 +117,7 @@ ’ ( <date>1996</date> ) - <biblScope unit="vol">20</biblScope> + <biblScope unit="volume" from="20" to="20">20</biblScope> <title level="j">Melbourne University Law Rev</title> . <biblScope unit="page" from="1072">1072</biblScope> @@ -137,7 +137,7 @@ ’ ( <date>1994</date> ) - <biblScope unit="vol">28</biblScope> + <biblScope unit="volume" from="28" to="28">28</biblScope> <title level="j">Sociology</title> <biblScope unit="page" from="379">379</biblScope> </bibl> @@ -290,7 +290,7 @@ ’ ( <date>1993</date> ) - <biblScope unit="vol">20</biblScope> + <biblScope unit="volume" from="20" to="20">20</biblScope> <title level="j">J. of Law and Society</title> <biblScope unit="page" from="56">56</biblScope> <biblScope unit="page" from="61">61</biblScope> @@ -357,7 +357,7 @@ ’ ( <date>1986</date> ) - <biblScope unit="vol">3</biblScope> + <biblScope unit="volume" from="3" to="3">3</biblScope> <title level="j">Aust. J. of Law and Society</title> <biblScope unit="page" from="30">30</biblScope> . @@ -442,7 +442,7 @@ ( <date>1990</date> ) - <biblScope unit="vol">4</biblScope> + <biblScope unit="volume" from="4" to="4">4</biblScope> , <biblScope unit="page" from="220">220</biblScope> . @@ -466,7 +466,7 @@ ’ ( <date>1996</date> ) - <biblScope unit="vol">105</biblScope> + <biblScope unit="volume" from="105" to="105">105</biblScope> <title level="j">Yale Law J</title> . <biblScope unit="page" from="2117">2117</biblScope> @@ -542,7 +542,7 @@ <seg type="comment">The High Court upheld the validity of the South Australian law in 1991</seg> </bibl> <bibl> - <seg type="signal">see</seg> + <seg type="signal">(see</seg> </bibl> <bibl> <ref type="legal">R. v. L</ref> @@ -564,7 +564,7 @@ . [ <date>1991</date> ] - <biblScope unit="vol">2</biblScope> + <biblScope unit="volume" from="2" to="2">2</biblScope> <title level="j">All E.R</title> . </bibl> @@ -698,7 +698,7 @@ ’ ( <date>1985</date> ) - <biblScope unit="vol">94</biblScope> + <biblScope unit="volume" from="94" to="94">94</biblScope> <title level="j">Yale Law J</title> . <biblScope unit="page" from="997">997</biblScope> @@ -891,8 +891,7 @@ </note> <note n="35" type="footnote" place="bottom"> <bibl> - <seg type="signal">See, for example</seg> - , + <seg type="signal">See, for example,</seg> </bibl> <bibl> <ref type="legal">Bradwell v. Illinois 83 U.S. (16 Wall) 130</ref> @@ -971,7 +970,7 @@ ’ ( <date>1993</date> ) - <biblScope unit="vol">56</biblScope> + <biblScope unit="volume" from="56" to="56">56</biblScope> <title level="j">Law and Contemporary Problems</title> <biblScope unit="page" from="99">99</biblScope> . @@ -989,7 +988,7 @@ ( <date>1979</date> ) - <biblScope unit="vol">78</biblScope> + <biblScope unit="volume" from="78" to="78">78</biblScope> <title level="j">Michigan Law Rev</title> . <biblScope unit="page" from="59">59</biblScope> @@ -1094,8 +1093,7 @@ </note> <note n="43" type="footnote" place="bottom"> <bibl> - <seg type="signal">For example</seg> - , + <seg type="signal">For example,</seg> <author> <persName> <forename>N.</forename> @@ -1107,7 +1105,7 @@ ’ ( <date>1995</date> ) - <biblScope unit="vol">4</biblScope> + <biblScope unit="volume" from="4" to="4">4</biblScope> <title level="j">Aust. Feminist Law J</title> . <biblScope unit="page" from="93">93</biblScope> @@ -1127,7 +1125,7 @@ ’ ( <date>1995</date> ) - <biblScope unit="vol">13</biblScope> + <biblScope unit="volume" from="13" to="13">13</biblScope> <title level="j">Law in Context</title> <biblScope unit="page" from="23">23</biblScope> . @@ -1150,7 +1148,7 @@ ’ ( <date>1994</date> ) - <biblScope unit="vol">57</biblScope> + <biblScope unit="volume" from="57" to="57">57</biblScope> <title level="j">Modern Law Rev</title> . <biblScope unit="page" from="467">467</biblScope> @@ -1158,8 +1156,7 @@ . </bibl> <bibl> - <seg type="signal">See, also</seg> - , + <seg type="signal">See, also,</seg> </bibl> <bibl> <ref type="legal">Barclays Bank v. O’Brien</ref> @@ -1207,7 +1204,7 @@ ( <date>1996</date> ) - <biblScope unit="vol">16</biblScope> + <biblScope unit="volume" from="16" to="16">16</biblScope> <title level="j">Legal Studies</title> <biblScope unit="page" from="368">368</biblScope> . @@ -1216,9 +1213,8 @@ <note n="47" type="footnote" place="bottom"> <bibl> <seg type="signal">Examples are legion, and by no means confined to the more sensational criminal law cases picked up by - the media, such as</seg> - - + the media, such as + </seg> </bibl> <bibl> <ref type="legal">R. v. Johns</ref> @@ -1258,7 +1254,7 @@ ’ ( <date>1996</date> ) - <biblScope unit="vol">59</biblScope> + <biblScope unit="volume" from="59" to="59">59</biblScope> <title level="j">Modern Law Rev</title> . <biblScope unit="page" from="675">675</biblScope> @@ -1271,7 +1267,7 @@ ( <date>1996</date> ) - <biblScope unit="vol">39</biblScope> + <biblScope unit="volume" from="39" to="39">39</biblScope> <title level="j">N.S.W.L.R</title> . </bibl> @@ -1313,7 +1309,7 @@ ( <pubPlace>N.S.W</pubPlace> .). - <biblScope unit="vol">54</biblScope> + <biblScope unit="volume" from="54" to="54">54</biblScope> ( <date>1994</date> ) @@ -1339,8 +1335,7 @@ . </bibl> <bibl> - <seg type="signal">See, also</seg> - , + <seg type="signal">See, also,</seg> </bibl> <bibl> <ref type="legal">Banco Exterior Internacional v. Mann</ref> @@ -1417,7 +1412,7 @@ ’ ( <date>1964</date> ) - <biblScope unit="vol">73</biblScope> + <biblScope unit="volume" from="73" to="73">73</biblScope> <title level="j">Yale Law J</title> . <biblScope unit="page" from="733">733</biblScope> @@ -1474,7 +1469,7 @@ ’ ( <date>1997</date> ) - <biblScope unit="vol">11</biblScope> + <biblScope unit="volume" from="11" to="11">11</biblScope> <title level="j">Australian J. Family Law</title> <biblScope unit="page" from="100">100</biblScope> . @@ -1494,7 +1489,7 @@ ’ ( <date>1994</date> ) - <biblScope unit="vol">16</biblScope> + <biblScope unit="volume" from="16" to="16">16</biblScope> <title level="j">Sydney Law Rev</title> . <biblScope unit="page" from="412">412</biblScope> @@ -1523,7 +1518,7 @@ ’ ( <date>1994</date> ) - <biblScope unit="vol">8</biblScope> + <biblScope unit="volume" from="8" to="8">8</biblScope> <title level="j">Aust. J. Family Law</title> <biblScope unit="page" from="111">111</biblScope> <biblScope unit="page" from="133">133</biblScope> @@ -1543,7 +1538,7 @@ ’ ( <date>1991</date> ) - <biblScope unit="vol">18</biblScope> + <biblScope unit="volume" from="18" to="18">18</biblScope> <title level="j">J. of Law and Society</title> <biblScope unit="page" from="206">206</biblScope> . @@ -1618,8 +1613,7 @@ . </bibl> <bibl> - <seg type="signal">See, for example</seg> - , + <seg type="signal">See, for example,</seg> <author> <persName> <surname>Freeman</surname> @@ -1704,7 +1698,7 @@ ’ ( <date>1994</date> ) - <biblScope unit="vol">19</biblScope> + <biblScope unit="volume" from="19" to="19">19</biblScope> <title level="j">Melbourne University Law Rev</title> . <biblScope unit="page" from="701">701</biblScope> @@ -1724,7 +1718,7 @@ ’ ( <date>1996</date> ) - <biblScope unit="vol">11</biblScope> + <biblScope unit="volume" from="11" to="11">11</biblScope> <title level="j">Aust. Feminist Studies</title> <biblScope unit="page" from="295">295</biblScope> <biblScope unit="page" from="300">300</biblScope> @@ -1763,7 +1757,7 @@ ’ ( <date>1982</date> ) - <biblScope unit="vol">45</biblScope> + <biblScope unit="volume" from="45" to="45">45</biblScope> <title level="j">Modern Law Rev</title> . <biblScope unit="page" from="424">424</biblScope> @@ -1773,8 +1767,7 @@ </note> <note n="74" type="footnote" place="bottom"> <bibl> - <seg type="signal">For example</seg> - , + <seg type="signal">For example,</seg> </bibl> <bibl> <ref type="legal">De Facto Relationships Act</ref> @@ -1859,8 +1852,7 @@ </note> <note n="76" type="footnote" place="bottom"> <bibl> - <seg type="signal">For example</seg> - , + <seg type="signal">For example,</seg> <author> <persName> <surname>Lesbian</surname> 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 aed5a48..9ecae6d 100644 --- a/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml +++ b/convert-anystyle-data/tei/10.1111_1467-6478.00080.xml @@ -57,7 +57,7 @@ <date>1983</date> ) <title level="j">Proceeedings of the British Academy</title> - <biblScope unit="vol">169</biblScope> + <biblScope unit="volume" from="169" to="169">169</biblScope> , <biblScope unit="page" from="at">at 171</biblScope> . @@ -97,8 +97,7 @@ </note> <note n="6" type="footnote" place="bottom"> <bibl> - <seg type="signal">See, for example</seg> - , + <seg type="signal">See, for example,</seg> <author> <persName> <forename>D.</forename> @@ -110,7 +109,7 @@ ’ ( <date>1976</date> ) - <biblScope unit="vol">89</biblScope> + <biblScope unit="volume" from="89" to="89">89</biblScope> <title level="j">Harvard Law Rev</title> . <biblScope unit="page" from="1685">1685</biblScope> @@ -304,7 +303,7 @@ . </bibl> <bibl> - <seg type="signal">See</seg> + <seg type="signal">(See</seg> <author> <persName> <forename>A.</forename> @@ -323,7 +322,7 @@ ’ ( <date>1996</date> ) - <biblScope unit="vol">2</biblScope> + <biblScope unit="volume" from="2" to="2">2</biblScope> <title level="j">Contemporary Issues in Law</title> <biblScope unit="page" from="15">15</biblScope> <biblScope unit="page" from="at">at 24–6</biblScope> @@ -351,7 +350,7 @@ ’ ( <date>1987</date> ) - <biblScope unit="vol">137</biblScope> + <biblScope unit="volume" from="137" to="137">137</biblScope> <title level="j">New Law J</title> . <biblScope unit="page" from="835">835</biblScope> @@ -372,7 +371,7 @@ ’ in <title level="m">T.H. Huxley, Collected Essays</title> : - <biblScope unit="vol">Volume III</biblScope> + <biblScope unit="volume" from="Volume III" to="Volume III">Volume III</biblScope> ( <date>1905</date> ) @@ -392,7 +391,7 @@ <title level="a">Inaugural address to the University of St Andrews</title> ’ in <title level="m">Collected Work of John Stuart Mill: Volume</title> - <biblScope unit="vol">XXI</biblScope> + <biblScope unit="volume" from="XXI" to="XXI">XXI</biblScope> , ed. <editor> <persName> @@ -442,7 +441,7 @@ ( <date>1948</date> ) - <biblScope unit="vol">28</biblScope> + <biblScope unit="volume" from="28" to="28">28</biblScope> . <seg type="comment">Leavis’s view was narrowly nationalistic. For ‘centre’ it would be better to substitute ‘centres</seg> ’. @@ -450,8 +449,7 @@ </note> <note n="21" type="footnote" place="bottom"> <bibl> - <seg type="signal">See, further</seg> - , + <seg type="signal">See, further,</seg> <author> <persName> <forename>A.</forename> @@ -502,7 +500,7 @@ ’ ( <date>1966</date> ) - <biblScope unit="vol">29</biblScope> + <biblScope unit="volume" from="29" to="29">29</biblScope> <title level="j">Modern Law Rev</title> . <biblScope unit="page" from="121">121</biblScope> @@ -543,8 +541,7 @@ . </bibl> <bibl> - <seg type="signal">See, for example</seg> - , + <seg type="signal">(See, for example,</seg> <author> <persName> <forename>M.</forename> @@ -586,8 +583,7 @@ . </bibl> <bibl> - <seg type="signal">See, for example</seg> - , + <seg type="signal">See, for example,</seg> <author> <persName> <forename>E.</forename> @@ -632,7 +628,7 @@ ’ ( <date>1990</date> ) - <biblScope unit="vol">I</biblScope> + <biblScope unit="volume" from="I" to="I">I</biblScope> <title level="j">Law and Critique</title> <biblScope unit="page" from="47">47 at pp. 54–55</biblScope> . @@ -650,7 +646,7 @@ ’ ( <date>1996</date> ) - <biblScope unit="vol">VII</biblScope> + <biblScope unit="volume" from="VII" to="VII">VII</biblScope> <title level="j">Law and Critique</title> <biblScope unit="page" from="173">173 at pp. 173–6</biblScope> . @@ -669,7 +665,7 @@ ’ ( <date>1991</date> ) - <biblScope unit="vol">19</biblScope> + <biblScope unit="volume" from="19" to="19">19</biblScope> <title level="j">International J. of the Sociology of Law</title> <biblScope unit="page" from="427">427</biblScope> <biblScope unit="page" from="at">at 429</biblScope> @@ -689,7 +685,7 @@ ’ ( <date>1983</date> ) - <biblScope unit="vol">46</biblScope> + <biblScope unit="volume" from="46" to="46">46</biblScope> <title level="j">Modern Law Rev</title> . <biblScope unit="page" from="1">1</biblScope> @@ -742,7 +738,7 @@ ’ ( <date>1975</date> ) - <biblScope unit="vol">44</biblScope> + <biblScope unit="volume" from="44" to="44">44</biblScope> <title level="j">The Am. Scholar</title> <biblScope unit="page" from="256">256</biblScope> <biblScope unit="page" from="at">at 258</biblScope> @@ -769,7 +765,7 @@ ’ ( <date>1997</date> ) - <biblScope unit="vol">31</biblScope> + <biblScope unit="volume" from="31" to="31">31</biblScope> <title level="j">The Law Teacher</title> <biblScope unit="page" from="38">38</biblScope> <biblScope unit="page" from="at">at 46</biblScope> @@ -789,7 +785,7 @@ ’ ( <date>1993</date> ) - <biblScope unit="vol">13</biblScope> + <biblScope unit="volume" from="13" to="13">13</biblScope> <title level="j">Legal Studies</title> <biblScope unit="page" from="143">143</biblScope> <biblScope unit="page" from="at">at 152</biblScope> @@ -802,7 +798,7 @@ . </bibl> <bibl> - <seg type="signal">Harris and</seg> + <seg type="signal">(Harris and</seg> <author> <persName> <surname>Jones</surname> @@ -860,7 +856,7 @@ ’ ( <date>1995</date> ) - <biblScope unit="vol">29</biblScope> + <biblScope unit="volume" from="29" to="29">29</biblScope> <title level="j">The Law Teacher</title> <biblScope unit="page" from="189">189</biblScope> <biblScope unit="page" from="at">at 189</biblScope> @@ -880,7 +876,7 @@ ’ ( <date>1985</date> ) - <biblScope unit="vol">19</biblScope> + <biblScope unit="volume" from="19" to="19">19</biblScope> <title level="j">The Law Teacher</title> <biblScope unit="page" from="12">12</biblScope> <biblScope unit="page" from="at">at 13</biblScope> @@ -900,7 +896,7 @@ ’ ( <date>1994</date> ) - <biblScope unit="vol">28</biblScope> + <biblScope unit="volume" from="28" to="28">28</biblScope> <title level="j">The Law Teacher</title> <biblScope unit="page" from="281">281</biblScope> <biblScope unit="page" from="at">at 282</biblScope> @@ -927,7 +923,7 @@ ’ ( <date>1990</date> ) - <biblScope unit="vol">24</biblScope> + <biblScope unit="volume" from="24" to="24">24</biblScope> <title level="j">The Law Teacher</title> <biblScope unit="page" from="246">246</biblScope> <biblScope unit="page" from="at">at 248</biblScope> @@ -1026,7 +1022,7 @@ ’ ( <date>1986</date> ) - <biblScope unit="vol">20</biblScope> + <biblScope unit="volume" from="20" to="20">20</biblScope> <title level="j">The Law Teacher</title> <biblScope unit="page" from="110">110</biblScope> <biblScope unit="page" from="at">at 112</biblScope> diff --git a/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml b/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml index 70d3490..f306052 100644 --- a/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml +++ b/convert-anystyle-data/tei/10.1515_zfrs-1980-0103.xml @@ -66,7 +66,7 @@ <title level="a">The Mobilization of Law</title> , in: <title level="j">Journal of Legal Studies</title> - <biblScope unit="vol">2</biblScope> + <biblScope unit="volume" from="2" to="2">2</biblScope> . </bibl> <bibl> @@ -214,7 +214,8 @@ <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title> , <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> - <biblScope unit="vol">Bd. 6. Opladen</biblScope> + Bd. + <biblScope unit="volume" from="6. Opladen" to="6. Opladen">6. Opladen</biblScope> . </bibl> <bibl> @@ -257,8 +258,8 @@ <title level="a">Everday Disputes and Mediation in the United States: A Reply to Professor Felstiner</title> , <title level="j">Law and Society Review</title> - , - <biblScope unit="vol">vol. 9</biblScope> + , vol. + <biblScope unit="volume" from="9" to="9">9</biblScope> , pp. <biblScope unit="page" from="675" to="694">675—694</biblScope> . @@ -298,8 +299,8 @@ <title level="a">Influences of Social Organization on Dispute processing</title> , in: <title level="j">Law and Society Review</title> - , - <biblScope unit="vol">vol. 9</biblScope> + , vol. + <biblScope unit="volume" from="9" to="9">9</biblScope> , pp. <biblScope unit="page" from="63" to="94">63—94</biblScope> . @@ -318,8 +319,8 @@ <title level="a">Avoidance as Dispute Processing: An Elaboration</title> , in: <title level="j">Law and Society Review</title> - , - <biblScope unit="vol">vol. 9</biblScope> + , vol. + <biblScope unit="volume" from="9" to="9">9</biblScope> , pp. <biblScope unit="page" from="695" to="706">695-706</biblScope> . @@ -337,8 +338,8 @@ <title level="a">Why the ,Haves* Come out Ahead: Speculations on the Limits of Legal Change</title> , in: <title level="j">Law and Society Review</title> - , - <biblScope unit="vol">vol. 9</biblScope> + , vol. + <biblScope unit="volume" from="9" to="9">9</biblScope> , pp. <biblScope unit="page" from="95" to="160">95—160</biblScope> . @@ -408,8 +409,8 @@ </editor> (Hrsg.): <title level="m">Access to Justice</title> - , - <biblScope unit="vol">Bd. III</biblScope> + , Bd. + <biblScope unit="volume" from="III" to="III">III</biblScope> . </bibl> <bibl> @@ -496,7 +497,8 @@ <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title> , <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> - <biblScope unit="vol">Bd. 6. Opladen</biblScope> + Bd. + <biblScope unit="volume" from="6. Opladen" to="6. Opladen">6. Opladen</biblScope> . </bibl> <bibl> @@ -571,7 +573,8 @@ <title level="m">Alternative Rechtsformen und Alternativen zum Recht</title> , <title level="s">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> - <biblScope unit="vol">Bd. 6. Opladen</biblScope> + Bd. + <biblScope unit="volume" from="6. Opladen" to="6. Opladen">6. Opladen</biblScope> . </bibl> <bibl> @@ -587,8 +590,8 @@ <title level="a">Alternatives in Dispute Processing in a Small Claim Court</title> , in: <title level="j">Law and Society Review</title> - , - <biblScope unit="vol">vol. 10</biblScope> + , vol. + <biblScope unit="volume" from="10" to="10">10</biblScope> , pp. <biblScope unit="page" from="339" to="375">339—375</biblScope> . @@ -645,8 +648,8 @@ <title level="a">The Public Ordering of Private Cases; Winning Civil Court Cases</title> , in: <title level="j">Law and Society Review</title> - , - <biblScope unit="vol">vol. 9</biblScope> + , vol. + <biblScope unit="volume" from="9" to="9">9</biblScope> , pp. <biblScope unit="page" from="293" to="306">293-306</biblScope> . @@ -667,8 +670,7 @@ </note> <note n="2" type="footnote" place="bottom"> <bibl> - <seg type="signal">Vgl</seg> - . + <seg type="signal">Vgl.</seg> <author> <persName> <surname>Feest</surname> @@ -700,8 +702,7 @@ </note> <note n="3" type="footnote" place="bottom"> <bibl> - <seg type="signal">Angaben aus einer Befragung von</seg> - + <seg type="signal">Angaben aus einer Befragung von </seg> <author> <persName> <forename>Peter</forename> @@ -725,8 +726,7 @@ . </bibl> <bibl> - <seg type="signal">Der ausführliche Forschungsbericht von</seg> - + <seg type="signal">Der ausführliche Forschungsbericht von </seg> <author> <persName> <forename>Richard</forename> @@ -745,8 +745,7 @@ </note> <note n="4" type="footnote" place="bottom"> <bibl> - <seg type="signal">Vgl</seg> - . + <seg type="signal">Vgl.</seg> <author> <persName> <surname>Blankenburg</surname> @@ -798,8 +797,7 @@ </note> <note n="7" type="footnote" place="bottom"> <bibl> - <seg type="signal">Zum Konzept der 'Thematisierung von Recht' vgl</seg> - . + <seg type="signal">Zum Konzept der 'Thematisierung von Recht' vgl.</seg> <author> <persName> <surname>Luhmann</surname> @@ -824,8 +822,7 @@ </note> <note n="9" type="footnote" place="bottom"> <bibl> - <seg type="signal">Vgl</seg> - . + <seg type="signal">Vgl.</seg> <author> <persName> <surname>Schönholz</surname> @@ -888,8 +885,7 @@ </note> <note n="13" type="footnote" place="bottom"> <bibl> - <seg type="signal">Für Angaben der Zählkartenstatistik für die Familiengerichte siehe</seg> - : + <seg type="signal">Für Angaben der Zählkartenstatistik für die Familiengerichte siehe:</seg> <author> <persName> <forename>Statistisches</forename> @@ -1223,8 +1219,7 @@ </note> <note n="30" type="footnote" place="bottom"> <bibl> - <seg type="signal">Vgl. zum Verrechtlichungsbegriff meinen Beitrag über:</seg> - + <seg type="signal">Vgl. zum Verrechtlichungsbegriff meinen Beitrag über: </seg> <title level="a">Recht als gradualisiertes Konzept</title> <date>1980</date> , S. @@ -1357,8 +1352,7 @@ </note> <note n="36" type="footnote" place="bottom"> <bibl> - <seg type="signal">Für eine überaus positive Bewertung des .Vermeidens1 vgl</seg> - . + <seg type="signal">Für eine überaus positive Bewertung des .Vermeidens1 vgl.</seg> <author> <persName> <surname>Felstiner</surname> @@ -1376,8 +1370,8 @@ </author> in <title level="j">Law and Society Review</title> - , - <biblScope unit="vol">vol. 9</biblScope> + , vol. + <biblScope unit="volume" from="9" to="9">9</biblScope> , <date>1974</date> /75. 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 1f35fbf..2fabe12 100644 --- a/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml +++ b/convert-anystyle-data/tei/10.1515_zfrs-1980-0104.xml @@ -138,7 +138,8 @@ </author> . <title level="a">Einführung in die Rechtsvergleichung</title> - <biblScope unit="vol">Bd. I</biblScope> + Bd. + <biblScope unit="volume" from="I" to="I">I</biblScope> ( <date>1971</date> ). @@ -157,7 +158,7 @@ <surname>Kötz</surname> </persName> </author> - <biblScope unit="vol">I</biblScope> + <biblScope unit="volume" from="I" to="I">I</biblScope> <biblScope unit="page" from="12">12</biblScope> ff. </bibl> @@ -176,8 +177,7 @@ ), </bibl> <bibl> - <seg type="signal">abgedruckt in</seg> - : + <seg type="signal">abgedruckt in:</seg> <author> <persName> <surname>Rabel</surname> @@ -185,7 +185,7 @@ </author> , <title level="a">Gesammelte Aufsätze</title> - <biblScope unit="vol">III</biblScope> + <biblScope unit="volume" from="III" to="III">III</biblScope> (Hrsg. <editor> <persName> @@ -231,7 +231,7 @@ , <title level="j">Stanford Law Rev</title> . - <biblScope unit="vol">26</biblScope> + <biblScope unit="volume" from="26" to="26">26</biblScope> ( <date>1973</date> ) @@ -249,7 +249,7 @@ <title level="a">Einige Anmerkungen über die Beziehung zwischen Rechtssoziologie und Rechtsvergleichung</title> , <title level="j">ZvglRW</title> - <biblScope unit="vol">78</biblScope> + <biblScope unit="volume" from="78" to="78">78</biblScope> ( <date>1979</date> ) @@ -349,7 +349,7 @@ <title level="a">Probleme des interkulturellen Vergleichs in der Ethnologie</title> , <title level="j">Sociologus</title> - <biblScope unit="vol">25</biblScope> + <biblScope unit="volume" from="25" to="25">25</biblScope> ( <date>1975</date> ) 97 ff. - @@ -366,7 +366,7 @@ , <title level="j">Rev. int. Sc. Soc</title> . - <biblScope unit="vol">22</biblScope> + <biblScope unit="volume" from="22" to="22">22</biblScope> ( <date>1970</date> ) @@ -388,7 +388,7 @@ , <title level="j">Law & Soc. Rev</title> . - <biblScope unit="vol">11</biblScope> + <biblScope unit="volume" from="11" to="11">11</biblScope> ( <date>1977</date> ) @@ -454,7 +454,8 @@ </editor> (Hrsg.), <title level="m">Comparative Studies in Sociology</title> - <biblScope unit="vol">Vol. 1</biblScope> + Vol. + <biblScope unit="volume" from="1" to="1">1</biblScope> ( <pubPlace>Greenwich, Conn</pubPlace> . @@ -584,7 +585,7 @@ , <title level="j">Brit. J. Soc</title> . - <biblScope unit="vol">24</biblScope> + <biblScope unit="volume" from="24" to="24">24</biblScope> ( <date>1973</date> ) @@ -604,7 +605,8 @@ <title level="a">Social Institutions - Comparative Method</title> , in: <title level="j">International Encyclopedia of the Social Sciences</title> - <biblScope unit="vol">Bd. 14</biblScope> + Bd. + <biblScope unit="volume" from="14" to="14">14</biblScope> ( <pubPlace>London</pubPlace> <date>1968</date> @@ -637,8 +639,8 @@ </editor> (Hrsg.), <title level="m">Handbuch der Psychologie</title> - , - <biblScope unit="vol">Bd. Vll 1 (2. Auf</biblScope> + , Bd. + <biblScope unit="volume" from="Vll 1 (2. Auf" to="Vll 1 (2. Auf">Vll 1 (2. Auf</biblScope> ], <date>1969</date> ) @@ -650,8 +652,7 @@ , </bibl> <bibl> - <seg type="signal">s</seg> - . + <seg type="signal">s.</seg> <editor> <persName> <surname>Naroll</surname> @@ -808,7 +809,7 @@ <title level="a">Höchstrichterliche Rechtsprechung als Triebfehier sozialen Wandels</title> , <title level="s">Jahr buch für Rechtssoziologie und Rechtstheorie</title> - <biblScope unit="vol">3</biblScope> + <biblScope unit="volume" from="3" to="3">3</biblScope> ( <date>1972</date> ) @@ -862,7 +863,7 @@ ff. </bibl> <bibl> - <seg type="signal">Siehe auch</seg> + <seg type="signal">— Siehe auch</seg> <author> <persName> <surname>Villmow</surname> @@ -878,7 +879,7 @@ , <title level="j">MschrKrim</title> . - <biblScope unit="vol">62</biblScope> + <biblScope unit="volume" from="62" to="62">62</biblScope> ( <date>1979</date> ) @@ -1028,7 +1029,7 @@ , <title level="s">Am. J. Comp. L</title> . - <biblScope unit="vol">26</biblScope> + <biblScope unit="volume" from="26" to="26">26</biblScope> ( <date>1978</date> ) @@ -1050,7 +1051,7 @@ f. </bibl> <bibl> - <seg type="signal">Für die Kriminologie siehe</seg> + <seg type="signal">— Für die Kriminologie siehe</seg> <author> <persName> <surname>Kaiser</surname> @@ -1077,7 +1078,7 @@ <title level="a">Some Comments on Comparative Methodologies in Criminal Justice</title> , <title level="j">Int. J. Crim. Pen</title> - <biblScope unit="vol">6</biblScope> + <biblScope unit="volume" from="6" to="6">6</biblScope> ( <date>1978</date> ) @@ -1099,7 +1100,7 @@ , <title level="j">Am. J. Comp. L</title> . - <biblScope unit="vol">25</biblScope> + <biblScope unit="volume" from="25" to="25">25</biblScope> ( <date>1977</date> ) @@ -1137,7 +1138,7 @@ <title level="j">Demokratie und Recht</title> <date>1979</date> / - <biblScope unit="vol">1</biblScope> + <biblScope unit="volume" from="1" to="1">1</biblScope> S. <biblScope unit="page" from="23">23</biblScope> ( @@ -1193,7 +1194,7 @@ <title level="j">HM discussion papers</title> <date>1978</date> — - <biblScope unit="vol">23</biblScope> + <biblScope unit="volume" from="23" to="23">23</biblScope> ) <biblScope unit="page" from="5">5</biblScope> ff. @@ -1211,7 +1212,7 @@ <surname>Kötz</surname> </persName> </author> - <biblScope unit="vol">I</biblScope> + <biblScope unit="volume" from="I" to="I">I</biblScope> <biblScope unit="page" from="30">30</biblScope> f. </bibl> @@ -1262,7 +1263,7 @@ <title level="a">Möglichkeiten und Probleme des Kulturvergleichs am Beispiel einer Agressionsstudie</title> , <title level="j">KZfSS</title> - <biblScope unit="vol">30</biblScope> + <biblScope unit="volume" from="30" to="30">30</biblScope> ( <date>1978</date> ) @@ -1352,8 +1353,8 @@ </editor> (Hrsg.), <title level="m">Techniken empirischer Sozialforschung</title> - , - <biblScope unit="vol">Bd. 2</biblScope> + , Bd. + <biblScope unit="volume" from="2" to="2">2</biblScope> ( <date>1975</date> ) @@ -1528,7 +1529,7 @@ ff. </bibl> <bibl> - <seg type="signal">Zur Behandlung der „Kultur" in vergleichenden Untersuchungen näher</seg> + <seg type="signal">- Zur Behandlung der „Kultur" in vergleichenden Untersuchungen näher</seg> <author> <persName> <surname>Scheuch</surname> @@ -1555,7 +1556,7 @@ ff. </bibl> <bibl> - <seg type="signal">Siehe auch</seg> + <seg type="signal">— Siehe auch</seg> <author> <persName> <surname>Constantinesco</surname> @@ -1565,7 +1566,7 @@ <title level="a">Ideologie als determinierendes Ele ment zur Bildung der Rechtskreise</title> , <title level="j">Zeitschrift für Rechtsvergleichung</title> - <biblScope unit="vol">19</biblScope> + <biblScope unit="volume" from="19" to="19">19</biblScope> ( <date>1978</date> ) @@ -1627,7 +1628,7 @@ <title level="a">Ãœber den Stil der „Stilthe orie" in der Rechtsvergleichung</title> , <title level="j">ZvglRW</title> - <biblScope unit="vol">78</biblScope> + <biblScope unit="volume" from="78" to="78">78</biblScope> ( <date>1979</date> ) @@ -1663,7 +1664,7 @@ <surname>Kötz</surname> </persName> </author> - <biblScope unit="vol">I</biblScope> + <biblScope unit="volume" from="I" to="I">I</biblScope> <biblScope unit="page" from="70">70</biblScope> . </bibl> @@ -1683,7 +1684,7 @@ <title level="m">European Institute for Advanced Studies in Management Working Paper</title> <date>1977</date> - - <biblScope unit="vol">8</biblScope> + <biblScope unit="volume" from="8" to="8">8</biblScope> ). </bibl> <bibl> @@ -1715,7 +1716,7 @@ <surname>Kötz</surname> </persName> </author> - <biblScope unit="vol">1</biblScope> + <biblScope unit="volume" from="1" to="1">1</biblScope> <biblScope unit="page" from="110">110</biblScope> f. — <seg type="comment">Kritisch</seg> @@ -1765,7 +1766,7 @@ <surname>Kötz</surname> </persName> </author> - <biblScope unit="vol">I</biblScope> + <biblScope unit="volume" from="I" to="I">I</biblScope> <biblScope unit="page" from="78">78</biblScope> . </bibl> @@ -1813,7 +1814,7 @@ <title level="a">Die Rechtshonoratioren und ihr Einfluß auf Charakter und Funk tion der Rechtsordnungen</title> , <title level="j">RabelsZ</title> - <biblScope unit="vol">34</biblScope> + <biblScope unit="volume" from="34" to="34">34</biblScope> ( <date>1970</date> ) @@ -1831,7 +1832,7 @@ <title level="a">Rechtsstile und Rechtshono ratioren. Ein Beitrag zur Methode der Rechtsvergleichung</title> , <title level="j">RabelsZ</title> - <biblScope unit="vol">34</biblScope> + <biblScope unit="volume" from="34" to="34">34</biblScope> ( <date>1970</date> ) @@ -1892,7 +1893,7 @@ <title level="a">Politische Inhaltsanalyse von Rechtslehrertexten</title> , <title level="j">ZfS</title> - <biblScope unit="vol">8</biblScope> + <biblScope unit="volume" from="8" to="8">8</biblScope> ( <date>1979</date> ) @@ -1990,8 +1991,7 @@ <citedRange unit="page" from="88">88</citedRange> </bibl> <bibl> - <seg type="signal">mwNachw</seg> - . + <seg type="signal">mwNachw.</seg> <author> <persName/> </author> @@ -2027,7 +2027,7 @@ , <title level="j">Int. J. Crim, and Pen</title> . - <biblScope unit="vol">6</biblScope> + <biblScope unit="volume" from="6" to="6">6</biblScope> ( <date>1978</date> ) @@ -2070,7 +2070,7 @@ <title level="a">Legal Problems and the Use of Law in Tokio and London - A Preliminary Study in International Comparison</title> , <title level="j">ZfS</title> - <biblScope unit="vol">7</biblScope> + <biblScope unit="volume" from="7" to="7">7</biblScope> ( <date>1978</date> ) @@ -2098,7 +2098,7 @@ <title level="a">Rechtspro bleme oder private Schwierigkeiten — Die Inanspruchnahme von Rechtshilfe in den Nieder landen</title> , in: <title level="j">Jahrbuch für Rechtssoziologie und Rechtstheorie</title> - <biblScope unit="vol">5</biblScope> + <biblScope unit="volume" from="5" to="5">5</biblScope> ( <date>1978</date> ) @@ -2108,8 +2108,7 @@ </note> <note n="65" type="footnote" place="bottom"> <bibl> - <seg type="signal">Dazu</seg> - + <seg type="signal">Dazu </seg> <author> <persName> <surname>Podgdrecki</surname> @@ -2119,7 +2118,7 @@ <title level="a">Comparative Studies on the Attitudes Towards Various Legal Systems</title> , <title level="j">Polish Sociological Bulletin</title> - <biblScope unit="vol">21 No. 1</biblScope> + <biblScope unit="volume" from="21 No. 1" to="21 No. 1">21 No. 1</biblScope> ( <date>1970</date> ) @@ -2129,8 +2128,7 @@ .) </bibl> <bibl> - <seg type="signal">Siehe auch</seg> - + <seg type="signal">— Siehe auch </seg> <author> <persName> <surname>Ziegen</surname> @@ -2251,8 +2249,8 @@ </editor> (Hrsg.), <title level="m">Handbuch der empirischen Sozialfor schung</title> - , - <biblScope unit="vol">Bd. 4 (3. Aufl</biblScope> + , Bd. + <biblScope unit="volume" from="4 (3. Aufl" to="4 (3. Aufl">4 (3. Aufl</biblScope> . <date>1974</date> ) @@ -2277,14 +2275,13 @@ April <date>1979</date> , - <biblScope unit="vol">Son derheft 2</biblScope> + <biblScope unit="volume" from="Son derheft 2" to="Son derheft 2">Son derheft 2</biblScope> , S. <biblScope unit="page" from="5">5</biblScope> ff. </bibl> <bibl> - <seg type="signal">mwNachw</seg> - . + <seg type="signal">mwNachw.</seg> </bibl> </note> <note n="71" type="footnote" place="bottom"> @@ -2306,8 +2303,7 @@ </note> <note n="72" type="footnote" place="bottom"> <bibl> - <seg type="signal">Vgl</seg> - . + <seg type="signal">Vgl.</seg> <author> <persName> <surname>Heintz</surname> @@ -2337,7 +2333,7 @@ , <title level="j">Int. J. Crim</title> . - <biblScope unit="vol">1</biblScope> + <biblScope unit="volume" from="1" to="1">1</biblScope> ( <date>1973</date> ) @@ -2479,7 +2475,7 @@ <title level="a">Recht und Konflikt — Mexiko und Afrika</title> , <title level="j">Verfassung und Recht in Obersee</title> - <biblScope unit="vol">12</biblScope> + <biblScope unit="volume" from="12" to="12">12</biblScope> ( <date>1979</date> ), -- GitLab