|
93 | 93 | {% for x in man.publicationHistory %} |
94 | 94 | {% if man.id not in x.id %} |
95 | 95 | <biblStruct xml:id="bibl-{{ x.signature|replace("/", "-") }}"> |
96 | | - {% if man.type == "Monographie" or man.type == "Werkausgabe" or man.type == "Periodikum (Heft)" or man.type == "Periodikum (Jahrgang)" or man.type == "Periodiukum" %} |
| 96 | + {% if x.type == "Monographie" or x.type == "Werkausgabe" or x.type == "Periodikum (Heft)" or x.type == "Periodikum (Jahrgang)" or x.type == "Periodiukum" %} |
97 | 97 | <monogr> |
98 | | - <title type="manifestation">{{ man.man_title }}</title> |
99 | | - <title type="manifestation-short">{{ man.man_shorttitle }}</title> |
100 | | - <author ref="#{{ man.author.id }}">{{ man.author.name }}</author> |
101 | | - {% if man.publication.id %} |
| 98 | + <title type="manifestation">{{ x.man_title }}</title> |
| 99 | + <title type="manifestation-short">{{ x.man_shorttitle }}</title> |
| 100 | + <author ref="#{{ x.author.id }}">{{ x.author.name }}</author> |
| 101 | + {% if x.publication.id %} |
102 | 102 | <imprint> |
103 | | - {% if man.publication.publisher %} |
104 | | - {% for pub in man.publication.publisher %} |
| 103 | + {% if x.publication.publisher %} |
| 104 | + {% for pub in x.publication.publisher %} |
105 | 105 | <publisher ref="#{{ pub.id }}">{{ pub.name }}</publisher> |
106 | 106 | {% endfor %} |
107 | 107 | {% endif %} |
108 | | - {% if man.publication.places %} |
109 | | - {% for place in man.publication.places %} |
| 108 | + {% if x.publication.places %} |
| 109 | + {% for place in x.publication.places %} |
110 | 110 | <pubPlace>{{ place.name }}</pubPlace> |
111 | 111 | {% endfor %} |
112 | 112 | {% endif %} |
113 | | - {% if man.publication.date %} |
114 | | - <date when="{{ man.publication.date }}">{{ man.publication.date }}</date> |
| 113 | + {% if x.publication.date %} |
| 114 | + <date when="{{ x.publication.date }}">{{ x.publication.date }}</date> |
115 | 115 | {% endif %} |
116 | 116 | </imprint> |
117 | 117 | {% endif %} |
118 | | - {% if man.page_num %} |
119 | | - <extent>{% if man.page_num.start %}{{ man.page_num.start }}{% endif %}{% if man.page_num.start and man.page_num.end %} - {% endif %}{% if man.page_num.end %}{{ man.page_num.end }} Seiten{% endif %}</extent> |
| 118 | + {% if x.page_num %} |
| 119 | + <extent>{% if x.page_num.start %}{{ x.page_num.start }}{% endif %}{% if x.page_num.start and x.page_num.end %} - {% endif %}{% if x.page_num.end %}{{ x.page_num.end }} Seiten{% endif %}</extent> |
120 | 120 | {% endif %} |
121 | 121 | </monogr> |
122 | | - {% if man.publication.id %} |
| 122 | + {% if x.publication.id %} |
123 | 123 | <series> |
124 | | - {% if man.publication.title_main %} |
125 | | - <title type="publication" level="s">{{ man.publication.title_main }}</title> |
| 124 | + {% if x.publication.title_main %} |
| 125 | + <title type="publication" level="s">{{ x.publication.title_main }}</title> |
126 | 126 | {% endif %} |
127 | | - <title type="publication-short" level="s">{{ man.man_shorttitle }}</title> |
128 | | - {% if man.publication.herausgeber %} |
| 127 | + <title type="publication-short" level="s">{{ x.man_shorttitle }}</title> |
| 128 | + {% if x.publication.herausgeber %} |
129 | 129 | <respStmt> |
130 | 130 | <resp>Herausgegeben von</resp> |
131 | | - {% for pub in man.publication.herausgeber %} |
| 131 | + {% for pub in x.publication.herausgeber %} |
132 | 132 | <name type="person" ref="#{{ pub.id }}">{{ pub.name }}</name> |
133 | 133 | {% endfor %} |
134 | 134 | </respStmt> |
135 | 135 | {% endif %} |
136 | | - {% if man.publication.editor %} |
| 136 | + {% if x.publication.editor %} |
137 | 137 | <respStmt> |
138 | 138 | <resp>Editiert von</resp> |
139 | | - {% for pub in man.publication.editor %} |
| 139 | + {% for pub in x.publication.editor %} |
140 | 140 | <name ref="#{{ pub.id }}">{{ pub.name }}</name> |
141 | 141 | {% endfor %} |
142 | 142 | </respStmt> |
143 | 143 | {% endif %} |
144 | | - {% if man.publication.advisor %} |
| 144 | + {% if x.publication.advisor %} |
145 | 145 | <respStmt> |
146 | 146 | <resp>Editiert von</resp> |
147 | | - {% for pub in man.publication.advisor %} |
| 147 | + {% for pub in x.publication.advisor %} |
148 | 148 | <name ref="#{{ pub.id }}">{{ pub.name }}</name> |
149 | 149 | {% endfor %} |
150 | 150 | </respStmt> |
151 | 151 | {% endif %} |
152 | | - {% if man.publication.band %} |
153 | | - <biblScope unit="volume">{{ man.publication.band.name }}</biblScope> |
| 152 | + {% if x.publication.band %} |
| 153 | + <biblScope unit="volume">{{ x.publication.band.name }}</biblScope> |
154 | 154 | {% endif %} |
155 | | - {% if man.publication.reihe.name %} |
156 | | - <biblScope unit="series">{{ man.publication.reihe.name }}</biblScope> |
| 155 | + {% if x.publication.reihe.name %} |
| 156 | + <biblScope unit="series">{{ x.publication.reihe.name }}</biblScope> |
157 | 157 | {% endif %} |
158 | | - {% if man.publication.edition %} |
159 | | - <biblScope unit="issue">{{ man.publication.edition.name }}</biblScope> |
| 158 | + {% if x.publication.edition %} |
| 159 | + <biblScope unit="issue">{{ x.publication.edition.name }}</biblScope> |
160 | 160 | {% endif %} |
161 | | - {% if man.publication.jahrgang %} |
162 | | - <biblScope unit="year">{{ man.publication.jahrgang }}</biblScope> |
| 161 | + {% if x.publication.jahrgang %} |
| 162 | + <biblScope unit="year">{{ x.publication.jahrgang }}</biblScope> |
163 | 163 | {% endif %} |
164 | 164 | </series> |
165 | 165 | {% endif %} |
166 | 166 | {% else %} |
167 | 167 | <analytic> |
168 | | - <title type="manifestation">{{ man.man_title }}</title> |
169 | | - <author ref="#{{ man.author.id }}">{{ man.author.name }}</author> |
| 168 | + <title type="manifestation">{{ x.man_title }}</title> |
| 169 | + <author ref="#{{ x.author.id }}">{{ x.author.name }}</author> |
170 | 170 | </analytic> |
171 | | - {% if man.publication.id %} |
| 171 | + {% if x.publication.id %} |
172 | 172 | <monogr> |
173 | | - <title type="publication">{{ man.publication.title_main }}</title> |
174 | | - <title type="publication-sub">{{ man.publication.title_sub }}</title> |
175 | | - <title type="publication-short">{{ man.publication.title_short }}</title> |
176 | | - {% if man.publication.herausgeber %} |
| 173 | + <title type="publication">{{ x.publication.title_main }}</title> |
| 174 | + <title type="publication-sub">{{ x.publication.title_sub }}</title> |
| 175 | + <title type="publication-short">{{ x.publication.title_short }}</title> |
| 176 | + {% if x.publication.herausgeber %} |
177 | 177 | <respStmt> |
178 | 178 | <resp>Herausgegeben von</resp> |
179 | | - {% for pub in man.publication.herausgeber %} |
| 179 | + {% for pub in x.publication.herausgeber %} |
180 | 180 | <name type="person" ref="#{{ pub.id }}">{{ pub.name }}</name> |
181 | 181 | {% endfor %} |
182 | 182 | </respStmt> |
183 | 183 | {% endif %} |
184 | | - {% if man.publication.editor %} |
| 184 | + {% if x.publication.editor %} |
185 | 185 | <respStmt> |
186 | 186 | <resp>Editiert von</resp> |
187 | | - {% for pub in man.publication.editor %} |
| 187 | + {% for pub in x.publication.editor %} |
188 | 188 | <name ref="#{{ pub.id }}">{{ pub.name }}</name> |
189 | 189 | {% endfor %} |
190 | 190 | </respStmt> |
191 | 191 | {% endif %} |
192 | | - {% if man.publication.advisor %} |
| 192 | + {% if x.publication.advisor %} |
193 | 193 | <respStmt> |
194 | 194 | <resp>Editiert von</resp> |
195 | | - {% for pub in man.publication.advisor %} |
| 195 | + {% for pub in x.publication.advisor %} |
196 | 196 | <name ref="#{{ pub.id }}">{{ pub.name }}</name> |
197 | 197 | {% endfor %} |
198 | 198 | </respStmt> |
199 | 199 | {% endif %} |
200 | | - {% if man.publication.id %} |
| 200 | + {% if x.publication.id %} |
201 | 201 | <imprint> |
202 | | - {% if man.publication.places %} |
203 | | - {% for place in man.publication.places %} |
| 202 | + {% if x.publication.places %} |
| 203 | + {% for place in x.publication.places %} |
204 | 204 | <pubPlace>{{ place.name }}</pubPlace> |
205 | 205 | {% endfor %} |
206 | 206 | {% endif %} |
207 | | - {% if man.publication.date %} |
208 | | - <date when="{{ man.publication.date }}">{{ man.publication.date }}</date> |
| 207 | + {% if x.publication.date %} |
| 208 | + <date when="{{ x.publication.date }}">{{ x.publication.date }}</date> |
209 | 209 | {% endif %} |
210 | 210 | </imprint> |
211 | 211 | {% endif %} |
212 | | - {% if man.page_num %}<extent>{% if man.page_num.start %}{{ man.page_num.start }}{% endif %}{% if man.page_num.start and man.page_num.end %} - {% endif %}{% if man.page_num.end %}{{ man.page_num.end }} Seiten{% endif %}</extent>{% endif %} |
213 | | - {% if man.publication.band %} |
214 | | - <biblScope unit="volume">{{ man.publication.band.name }}</biblScope> |
| 212 | + {% if x.page_num %}<extent>{% if x.page_num.start %}{{ x.page_num.start }}{% endif %}{% if x.page_num.start and x.page_num.end %} - {% endif %}{% if x.page_num.end %}{{ x.page_num.end }} Seiten{% endif %}</extent>{% endif %} |
| 213 | + {% if x.publication.band %} |
| 214 | + <biblScope unit="volume">{{ x.publication.band.name }}</biblScope> |
215 | 215 | {% endif %} |
216 | | - {% if man.publication.reihe.name %} |
217 | | - <biblScope unit="series">{{ man.publication.reihe.name }}</biblScope> |
| 216 | + {% if x.publication.reihe.name %} |
| 217 | + <biblScope unit="series">{{ x.publication.reihe.name }}</biblScope> |
218 | 218 | {% endif %} |
219 | | - {% if man.publication.edition %} |
220 | | - <biblScope unit="issue">{{ man.publication.edition.name }}</biblScope> |
| 219 | + {% if x.publication.edition %} |
| 220 | + <biblScope unit="issue">{{ x.publication.edition.name }}</biblScope> |
221 | 221 | {% endif %} |
222 | | - {% if man.publication.jahrgang %} |
223 | | - <biblScope unit="year">{{ man.publication.jahrgang }}</biblScope> |
| 222 | + {% if x.publication.jahrgang %} |
| 223 | + <biblScope unit="year">{{ x.publication.jahrgang }}</biblScope> |
224 | 224 | {% endif %} |
225 | 225 | </monogr> |
226 | 226 | {% endif %} |
|
0 commit comments