Codebase list citation-style-language-locales / aad0a9c
New upstream version 0~20230122.9b9366b gregor herrmann 1 year, 3 months ago
58 changed file(s) with 1418 addition(s) and 1559 deletion(s). Raw diff Collapse all Expand all
0 name: 'Automated tagging for PRs and issues'
1
2 on:
3 issues:
4 types: [opened, edited, closed]
5 issue_comment:
6 types: [created, edited, closed]
7
8 permissions: {}
9 jobs:
10 label:
11 permissions:
12 issues: write # to add label to an issues (retorquere/label-gun)
13 pull-requests: write # to add label, comment on pull request (retorquere/label-gun)
14
15 runs-on: ubuntu-latest
16 steps:
17 - uses: retorquere/label-gun@main
18 with:
19 token: ${{ github.token }}
20 label.awaiting: "waiting-for-response-from-contributor"
1111 description: Commit message
1212 required: true
1313
14 permissions: {}
1415 jobs:
1516 release:
17 permissions:
18 contents: write # to create a release
19 pull-requests: read # to read pull requests (dorny/paths-filter)
20
1621 runs-on: ubuntu-latest
1722 env:
1823 GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
1924 DISTRIBUTION_UPDATER_TOKEN: "${{ secrets.DISTRIBUTION_UPDATER_TOKEN }}"
2025 steps:
21 - uses: actions/checkout@v2
26 - uses: actions/checkout@v3
2227 if: github.event_name == 'push'
23 - uses: actions/checkout@v2
28 - uses: actions/checkout@v3
2429 if: github.event_name == 'workflow_dispatch'
2530 with:
2631 fetch-depth: 0
2934 id: release
3035 run: echo ::set-output name=branch::v1.0.2
3136 - name: Checkout release branch
32 uses: actions/checkout@v2
37 uses: actions/checkout@v3
3338 with:
3439 ref: ${{ steps.release.outputs.branch }}
3540 path: './release'
4752 - deleted: [ '*.csl', 'dependent/*.csl', '*.xml' ]
4853 workflows:
4954 - added|modified: .github/workflows/*.yaml
55 updated_composer:
56 - added|modified: composer.json
57 deleted_composer:
58 - deleted: composer.json
5059
5160 - name: Changed files
5261 if: github.event_name == 'push'
6271 ruby-version: 3.0.2
6372 - name: but use cache to speed that up
6473 if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true'))
65 uses: actions/cache@v2
74 uses: actions/cache@v3
6675 with:
6776 path: vendor/bundle
6877 key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
8695 run: cd release && git rm ${{ steps.update.outputs.deleted_files }}
8796 if: github.event_name == 'push' && steps.update.outputs.deleted == 'true'
8897
98 - name: Update composer.json
99 if: steps.update.outputs.updated_composer == 'true'
100 run: |
101 cp composer.json release/composer.json
102 cd release
103 git add composer.json
104
105 - name: Delete composer.json
106 if: steps.update.outputs.deleted_composer == 'true'
107 run: |
108 cd release
109 git rm composer.json
110
89111 - uses: stefanzweifel/git-auto-commit-action@v4
90112 with:
91113 repository: 'release'
92 commit_message: Releasing ${{ steps.update.outputs.updated_files }} ${{ steps.update.outputs.deleted_files }}
93 if: github.event_name == 'push' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true')
114 commit_message: Releasing ${{ steps.update.outputs.updated_files }} ${{ steps.update.outputs.deleted_files }} ${{ steps.update.outputs.updated_composer_files }} ${{ steps.update.outputs.deleted_composer_files }}
115 if: github.event_name == 'push' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true' || steps.update.outputs.updated_composer == 'true' || steps.update.outputs.deleted_composer == 'true')
94116
95117 - uses: stefanzweifel/git-auto-commit-action@v4
96118 with:
115137 git-user: "csl-bot"
116138 git-user-email: github@citationstyles.org
117139 git-commit-message: copied ${{ steps.update.outputs.workflows_files }} from styles
140
141 - name: Bump version and push tag
142 id: tag_version
143 uses: mathieudutour/github-tag-action@v6.1
144 with:
145 github_token: ${{ secrets.GITHUB_TOKEN }}
146 default_bump: patch
147 if: github.event_name == 'push' && hashFiles('composer.json') != '' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true')
148
149 - name: Create a GitHub release
150 uses: softprops/action-gh-release@v1
151 env:
152 github_token: ${{ secrets.GITHUB_TOKEN }}
153 with:
154 tag_name: ${{ steps.tag_version.outputs.new_tag }}
155 name: Release ${{ steps.tag_version.outputs.new_tag }}
156 body: Released ${{ steps.update.outputs.updated_files }} ${{ steps.update.outputs.deleted_files }} ${{ steps.update.outputs.updated_composer_files }} ${{ steps.update.outputs.deleted_composer_files }}
157 if: github.event_name == 'push' && hashFiles('composer.json') != '' && (steps.update.outputs.updated == 'true' || steps.update.outputs.deleted == 'true')
11
22 on:
33 pull_request_target:
4 types: [ opened, synchronize, labeled ]
4 types: [ opened, synchronize, workflow_dispatch]
55
6 permissions: {}
67 jobs:
78 test:
9 permissions:
10 contents: write # to push code in repo (stefanzweifel/git-auto-commit-action)
11 pull-requests: write # to comment on pull requests
12
813 runs-on: ubuntu-latest
914 env:
1015 GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
1419 # labels to a PR
1520 # https://securitylab.github.com/research/github-actions-preventing-pwn-requests
1621 - name: Checkout repo for OWNER TEST
17 uses: actions/checkout@v2
22 uses: actions/checkout@v3
1823 if: contains(github.event.pull_request.labels.*.name, 'safe to test')
1924 with:
2025 ref: ${{ github.event.pull_request.head.ref }}
2126
2227 # otherwise, checkout the current master, and the pr to the subdirectory 'pull-request'
2328 - name: Checkout base repo for pull-request test
24 uses: actions/checkout@v2
29 uses: actions/checkout@v3
2530 if: "! contains(github.event.pull_request.labels.*.name, 'safe to test')"
2631 - name: Checkout pull-request
27 uses: actions/checkout@v2
32 uses: actions/checkout@v3
2833 if: "! contains(github.event.pull_request.labels.*.name, 'safe to test')"
2934 with:
3035 repository: ${{ github.event.pull_request.head.repo.full_name }}
5358 with:
5459 ruby-version: 3.0.2
5560 - name: but use cache to speed that up
56 uses: actions/cache@v2
61 uses: actions/cache@v3
5762 with:
5863 path: vendor/bundle
5964 key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
3232 csl-styles (2.0.0)
3333 csl (~> 2.0)
3434 diff-lcs (1.5.0)
35 diffy (3.4.0)
35 diffy (3.4.2)
3636 dotenv (2.7.6)
3737 erubis (2.7.0)
3838 faraday (1.8.0)
6565 <term name="in">in</term>
6666 <term name="in press">in press</term>
6767 <term name="internet">internet</term>
68 <term name="interview">interview</term>
6968 <term name="letter">brief</term>
7069 <term name="no date">no date</term>
7170 <term name="no date" form="short">n.d.</term>
8988 <term name="article-magazine">magazine article</term>
9089 <term name="article-newspaper">newspaper article</term>
9190 <term name="bill">bill</term>
92 <term name="book">book</term>
91 <!-- book is in the list of locator terms -->
9392 <term name="broadcast">broadcast</term>
94 <term name="chapter">book chapter</term>
93 <!-- chapter is in the list of locator terms -->
9594 <term name="classic">classic</term>
9695 <term name="collection">collection</term>
9796 <term name="dataset">dataset</term>
134133 <term name="article-journal" form="short">journal art.</term>
135134 <term name="article-magazine" form="short">mag. art.</term>
136135 <term name="article-newspaper" form="short">newspaper art.</term>
137 <term name="book" form="short">bk.</term>
138 <term name="chapter" form="short">bk. chap.</term>
136 <!-- book is in the list of locator terms -->
137 <!-- chapter is in the list of locator terms -->
139138 <term name="document" form="short">doc.</term>
140139 <!-- figure is in the list of locator terms -->
141140 <term name="graphic" form="short">graph.</term>
299298 </term>
300299
301300 <!-- SHORT LOCATOR FORMS -->
302 <term name="appendix">
301 <term name="appendix" form="short">
303302 <single>app.</single>
304303 <multiple>apps.</multiple>
305304 </term>
306 <term name="article-locator">
305 <term name="article-locator" form="short">
307306 <single>art.</single>
308307 <multiple>arts.</multiple>
309308 </term>
310 <term name="elocation">
309 <term name="elocation" form="short">
311310 <single>loc.</single>
312311 <multiple>locs.</multiple>
313312 </term>
314 <term name="equation">
313 <term name="equation" form="short">
315314 <single>eq.</single>
316315 <multiple>eqs.</multiple>
317316 </term>
318 <term name="rule">
317 <term name="rule" form="short">
319318 <single>r.</single>
320319 <multiple>rr.</multiple>
321320 </term>
322 <term name="scene">
321 <term name="scene" form="short">
323322 <single>sc.</single>
324323 <multiple>scs.</multiple>
325324 </term>
326 <term name="table">
325 <term name="table" form="short">
327326 <single>tbl.</single>
328327 <multiple>tbls.</multiple>
329328 </term>
330 <term name="timestamp"> <!-- generally blank -->
329 <term name="timestamp" form="short"> <!-- generally blank -->
331330 <single></single>
332331 <multiple></multiple>
333332 </term>
334 <term name="title-locator">
333 <term name="title-locator" form="short">
335334 <single>tit.</single>
336335 <multiple>tits.</multiple>
337336 </term>
7171 <term name="in">في</term>
7272 <term name="in press">قيد النشر</term>
7373 <term name="internet">انترنت</term>
74 <term name="interview">مقابلة</term>
7574 <term name="letter">خطاب</term>
7675 <term name="no date">دون تاريخ</term>
7776 <term name="no date" form="short">د.ت</term>
9594 <term name="article-magazine">magazine article</term>
9695 <term name="article-newspaper">newspaper article</term>
9796 <term name="bill">bill</term>
98 <term name="book">book</term>
97 <!-- book is in the list of locator terms -->
9998 <term name="broadcast">broadcast</term>
100 <term name="chapter">book chapter</term>
99 <!-- chapter is in the list of locator terms -->
101100 <term name="classic">classic</term>
102101 <term name="collection">collection</term>
103102 <term name="dataset">dataset</term>
109108 <!-- figure is in the list of locator terms -->
110109 <term name="graphic">graphic</term>
111110 <term name="hearing">hearing</term>
112 <term name="interview">interview</term>
111 <term name="interview">مقابلة</term>
113112 <term name="legal_case">legal case</term>
114113 <term name="legislation">legislation</term>
115114 <term name="manuscript">manuscript</term>
140139 <term name="article-journal" form="short">journal art.</term>
141140 <term name="article-magazine" form="short">mag. art.</term>
142141 <term name="article-newspaper" form="short">newspaper art.</term>
143 <term name="book" form="short">bk.</term>
144 <term name="chapter" form="short">bk. chap.</term>
142 <!-- book is in the list of locator terms -->
143 <!-- chapter is in the list of locator terms -->
145144 <term name="document" form="short">doc.</term>
146145 <!-- figure is in the list of locator terms -->
147146 <term name="graphic" form="short">graph.</term>
299298 </term>
300299
301300 <!-- SHORT LOCATOR FORMS -->
302 <term name="appendix">
301 <term name="appendix" form="short">
303302 <single>app.</single>
304303 <multiple>apps.</multiple>
305304 </term>
306 <term name="article-locator">
305 <term name="article-locator" form="short">
307306 <single>art.</single>
308307 <multiple>arts.</multiple>
309308 </term>
310 <term name="elocation">
309 <term name="elocation" form="short">
311310 <single>loc.</single>
312311 <multiple>locs.</multiple>
313312 </term>
314 <term name="equation">
313 <term name="equation" form="short">
315314 <single>eq.</single>
316315 <multiple>eqs.</multiple>
317316 </term>
318 <term name="rule">
317 <term name="rule" form="short">
319318 <single>r.</single>
320319 <multiple>rr.</multiple>
321320 </term>
322 <term name="scene">
321 <term name="scene" form="short">
323322 <single>sc.</single>
324323 <multiple>scs.</multiple>
325324 </term>
326 <term name="table">
325 <term name="table" form="short">
327326 <single>tbl.</single>
328327 <multiple>tbls.</multiple>
329328 </term>
330 <term name="timestamp"> <!-- generally blank -->
329 <term name="timestamp" form="short"> <!-- generally blank -->
331330 <single></single>
332331 <multiple></multiple>
333332 </term>
334 <term name="title-locator">
333 <term name="title-locator" form="short">
335334 <single>tit.</single>
336335 <multiple>tits.</multiple>
337336 </term>
7070 <term name="in">в</term>
7171 <term name="in press">под печат</term>
7272 <term name="internet">интернет</term>
73 <term name="interview">интервю</term>
7473 <term name="letter">писмо</term>
7574 <term name="no date">без дата</term>
7675 <term name="no date" form="short">б.д.</term>
9493 <term name="article-magazine">magazine article</term>
9594 <term name="article-newspaper">newspaper article</term>
9695 <term name="bill">bill</term>
97 <term name="book">book</term>
96 <!-- book is in the list of locator terms -->
9897 <term name="broadcast">broadcast</term>
99 <term name="chapter">book chapter</term>
98 <!-- chapter is in the list of locator terms -->
10099 <term name="classic">classic</term>
101100 <term name="collection">collection</term>
102101 <term name="dataset">dataset</term>
108107 <!-- figure is in the list of locator terms -->
109108 <term name="graphic">graphic</term>
110109 <term name="hearing">hearing</term>
111 <term name="interview">interview</term>
110 <term name="interview">интервю</term>
112111 <term name="legal_case">legal case</term>
113112 <term name="legislation">legislation</term>
114113 <term name="manuscript">manuscript</term>
139138 <term name="article-journal" form="short">journal art.</term>
140139 <term name="article-magazine" form="short">mag. art.</term>
141140 <term name="article-newspaper" form="short">newspaper art.</term>
142 <term name="book" form="short">bk.</term>
143 <term name="chapter" form="short">bk. chap.</term>
141 <!-- book is in the list of locator terms -->
142 <!-- chapter is in the list of locator terms -->
144143 <term name="document" form="short">doc.</term>
145144 <!-- figure is in the list of locator terms -->
146145 <term name="graphic" form="short">graph.</term>
335334 </term>
336335
337336 <!-- SHORT LOCATOR FORMS -->
338 <term name="appendix">
337 <term name="appendix" form="short">
339338 <single>app.</single>
340339 <multiple>apps.</multiple>
341340 </term>
342 <term name="article-locator">
341 <term name="article-locator" form="short">
343342 <single>art.</single>
344343 <multiple>arts.</multiple>
345344 </term>
346 <term name="elocation">
345 <term name="elocation" form="short">
347346 <single>loc.</single>
348347 <multiple>locs.</multiple>
349348 </term>
350 <term name="equation">
349 <term name="equation" form="short">
351350 <single>eq.</single>
352351 <multiple>eqs.</multiple>
353352 </term>
354 <term name="rule">
353 <term name="rule" form="short">
355354 <single>r.</single>
356355 <multiple>rr.</multiple>
357356 </term>
358 <term name="scene">
357 <term name="scene" form="short">
359358 <single>sc.</single>
360359 <multiple>scs.</multiple>
361360 </term>
362 <term name="table">
361 <term name="table" form="short">
363362 <single>tbl.</single>
364363 <multiple>tbls.</multiple>
365364 </term>
366 <term name="timestamp"> <!-- generally blank -->
365 <term name="timestamp" form="short"> <!-- generally blank -->
367366 <single></single>
368367 <multiple></multiple>
369368 </term>
370 <term name="title-locator">
369 <term name="title-locator" form="short">
371370 <single>tit.</single>
372371 <multiple>tits.</multiple>
373372 </term>
7171 <term name="in">en</term>
7272 <term name="in press">en impremta</term>
7373 <term name="internet">internet</term>
74 <term name="interview">entrevista</term>
7574 <term name="letter">carta</term>
7675 <term name="no date">sense data</term>
7776 <term name="no date" form="short">s.d.</term>
9594 <term name="article-magazine">magazine article</term>
9695 <term name="article-newspaper">newspaper article</term>
9796 <term name="bill">bill</term>
98 <term name="book">book</term>
97 <!-- book is in the list of locator terms -->
9998 <term name="broadcast">broadcast</term>
100 <term name="chapter">book chapter</term>
99 <!-- chapter is in the list of locator terms -->
101100 <term name="classic">classic</term>
102101 <term name="collection">collection</term>
103102 <term name="dataset">dataset</term>
109108 <!-- figure is in the list of locator terms -->
110109 <term name="graphic">graphic</term>
111110 <term name="hearing">hearing</term>
112 <term name="interview">interview</term>
111 <term name="interview">entrevista</term>
113112 <term name="legal_case">legal case</term>
114113 <term name="legislation">legislation</term>
115114 <term name="manuscript">manuscript</term>
140139 <term name="article-journal" form="short">journal art.</term>
141140 <term name="article-magazine" form="short">mag. art.</term>
142141 <term name="article-newspaper" form="short">newspaper art.</term>
143 <term name="book" form="short">bk.</term>
144 <term name="chapter" form="short">bk. chap.</term>
142 <!-- book is in the list of locator terms -->
143 <!-- chapter is in the list of locator terms -->
145144 <term name="document" form="short">doc.</term>
146145 <!-- figure is in the list of locator terms -->
147146 <term name="graphic" form="short">graph.</term>
299298 </term>
300299
301300 <!-- SHORT LOCATOR FORMS -->
302 <term name="appendix">
301 <term name="appendix" form="short">
303302 <single>app.</single>
304303 <multiple>apps.</multiple>
305304 </term>
306 <term name="article-locator">
305 <term name="article-locator" form="short">
307306 <single>art.</single>
308307 <multiple>arts.</multiple>
309308 </term>
310 <term name="elocation">
309 <term name="elocation" form="short">
311310 <single>loc.</single>
312311 <multiple>locs.</multiple>
313312 </term>
314 <term name="equation">
313 <term name="equation" form="short">
315314 <single>eq.</single>
316315 <multiple>eqs.</multiple>
317316 </term>
318 <term name="rule">
317 <term name="rule" form="short">
319318 <single>r.</single>
320319 <multiple>rr.</multiple>
321320 </term>
322 <term name="scene">
321 <term name="scene" form="short">
323322 <single>sc.</single>
324323 <multiple>scs.</multiple>
325324 </term>
326 <term name="table">
325 <term name="table" form="short">
327326 <single>tbl.</single>
328327 <multiple>tbls.</multiple>
329328 </term>
330 <term name="timestamp"> <!-- generally blank -->
329 <term name="timestamp" form="short"> <!-- generally blank -->
331330 <single></single>
332331 <multiple></multiple>
333332 </term>
334 <term name="title-locator">
333 <term name="title-locator" form="short">
335334 <single>tit.</single>
336335 <multiple>tits.</multiple>
337336 </term>
7878 <term name="in">in</term>
7979 <term name="in press">v tisku</term>
8080 <term name="internet">internet</term>
81 <term name="interview">interview</term>
8281 <term name="letter">dopis</term>
8382 <term name="no date">nedatováno</term>
8483 <term name="no date" form="short">b.r.</term>
102101 <term name="article-magazine">magazine article</term>
103102 <term name="article-newspaper">newspaper article</term>
104103 <term name="bill">bill</term>
105 <term name="book">book</term>
104 <!-- book is in the list of locator terms -->
106105 <term name="broadcast">broadcast</term>
107 <term name="chapter">book chapter</term>
106 <!-- chapter is in the list of locator terms -->
108107 <term name="classic">classic</term>
109108 <term name="collection">collection</term>
110109 <term name="dataset">dataset</term>
147146 <term name="article-journal" form="short">journal art.</term>
148147 <term name="article-magazine" form="short">mag. art.</term>
149148 <term name="article-newspaper" form="short">newspaper art.</term>
150 <term name="book" form="short">bk.</term>
151 <term name="chapter" form="short">bk. chap.</term>
149 <!-- book is in the list of locator terms -->
150 <!-- chapter is in the list of locator terms -->
152151 <term name="document" form="short">doc.</term>
153152 <!-- figure is in the list of locator terms -->
154153 <term name="graphic" form="short">graph.</term>
306305 </term>
307306
308307 <!-- SHORT LOCATOR FORMS -->
309 <term name="appendix">
308 <term name="appendix" form="short">
310309 <single>app.</single>
311310 <multiple>apps.</multiple>
312311 </term>
313 <term name="article-locator">
312 <term name="article-locator" form="short">
314313 <single>art.</single>
315314 <multiple>arts.</multiple>
316315 </term>
317 <term name="elocation">
316 <term name="elocation" form="short">
318317 <single>loc.</single>
319318 <multiple>locs.</multiple>
320319 </term>
321 <term name="equation">
320 <term name="equation" form="short">
322321 <single>eq.</single>
323322 <multiple>eqs.</multiple>
324323 </term>
325 <term name="rule">
324 <term name="rule" form="short">
326325 <single>r.</single>
327326 <multiple>rr.</multiple>
328327 </term>
329 <term name="scene">
328 <term name="scene" form="short">
330329 <single>sc.</single>
331330 <multiple>scs.</multiple>
332331 </term>
333 <term name="table">
332 <term name="table" form="short">
334333 <single>tbl.</single>
335334 <multiple>tbls.</multiple>
336335 </term>
337 <term name="timestamp"> <!-- generally blank -->
336 <term name="timestamp" form="short"> <!-- generally blank -->
338337 <single></single>
339338 <multiple></multiple>
340339 </term>
341 <term name="title-locator">
340 <term name="title-locator" form="short">
342341 <single>tit.</single>
343342 <multiple>tits.</multiple>
344343 </term>
6565 <term name="in">yn</term>
6666 <term name="in press">yn y wasg</term>
6767 <term name="internet">rhyngrwyd</term>
68 <term name="interview">cyfweliad</term>
6968 <term name="letter">llythyr</term>
7069 <term name="no date">dim dyddiad</term>
7170 <term name="no date" form="short">d.d.</term>
8988 <term name="article-magazine">magazine article</term>
9089 <term name="article-newspaper">newspaper article</term>
9190 <term name="bill">bill</term>
92 <term name="book">book</term>
91 <!-- book is in the list of locator terms -->
9392 <term name="broadcast">broadcast</term>
94 <term name="chapter">book chapter</term>
93 <!-- chapter is in the list of locator terms -->
9594 <term name="classic">classic</term>
9695 <term name="collection">collection</term>
9796 <term name="dataset">dataset</term>
103102 <!-- figure is in the list of locator terms -->
104103 <term name="graphic">graphic</term>
105104 <term name="hearing">hearing</term>
106 <term name="interview">interview</term>
105 <term name="interview">cyfweliad</term>
107106 <term name="legal_case">legal case</term>
108107 <term name="legislation">legislation</term>
109108 <term name="manuscript">manuscript</term>
134133 <term name="article-journal" form="short">journal art.</term>
135134 <term name="article-magazine" form="short">mag. art.</term>
136135 <term name="article-newspaper" form="short">newspaper art.</term>
137 <term name="book" form="short">bk.</term>
138 <term name="chapter" form="short">bk. chap.</term>
136 <!-- book is in the list of locator terms -->
137 <!-- chapter is in the list of locator terms -->
139138 <term name="document" form="short">doc.</term>
140139 <!-- figure is in the list of locator terms -->
141140 <term name="graphic" form="short">graph.</term>
299298 </term>
300299
301300 <!-- SHORT LOCATOR FORMS -->
302 <term name="appendix">
301 <term name="appendix" form="short">
303302 <single>app.</single>
304303 <multiple>apps.</multiple>
305304 </term>
306 <term name="article-locator">
305 <term name="article-locator" form="short">
307306 <single>art.</single>
308307 <multiple>arts.</multiple>
309308 </term>
310 <term name="elocation">
309 <term name="elocation" form="short">
311310 <single>loc.</single>
312311 <multiple>locs.</multiple>
313312 </term>
314 <term name="equation">
313 <term name="equation" form="short">
315314 <single>eq.</single>
316315 <multiple>eqs.</multiple>
317316 </term>
318 <term name="rule">
317 <term name="rule" form="short">
319318 <single>r.</single>
320319 <multiple>rr.</multiple>
321320 </term>
322 <term name="scene">
321 <term name="scene" form="short">
323322 <single>sc.</single>
324323 <multiple>scs.</multiple>
325324 </term>
326 <term name="table">
325 <term name="table" form="short">
327326 <single>tbl.</single>
328327 <multiple>tbls.</multiple>
329328 </term>
330 <term name="timestamp"> <!-- generally blank -->
329 <term name="timestamp" form="short"> <!-- generally blank -->
331330 <single></single>
332331 <multiple></multiple>
333332 </term>
334 <term name="title-locator">
333 <term name="title-locator" form="short">
335334 <single>tit.</single>
336335 <multiple>tits.</multiple>
337336 </term>
7474 <term name="in">i</term>
7575 <term name="in press">i trykken</term>
7676 <term name="internet">internet</term>
77 <term name="interview">interview</term>
7877 <term name="letter">brev</term>
7978 <term name="no date">uden år</term>
8079 <term name="no date" form="short">u.å.</term>
9897 <term name="article-magazine">magazine article</term>
9998 <term name="article-newspaper">newspaper article</term>
10099 <term name="bill">bill</term>
101 <term name="book">book</term>
100 <!-- book is in the list of locator terms -->
102101 <term name="broadcast">broadcast</term>
103 <term name="chapter">book chapter</term>
102 <!-- chapter is in the list of locator terms -->
104103 <term name="classic">classic</term>
105104 <term name="collection">collection</term>
106105 <term name="dataset">dataset</term>
143142 <term name="article-journal" form="short">journal art.</term>
144143 <term name="article-magazine" form="short">mag. art.</term>
145144 <term name="article-newspaper" form="short">newspaper art.</term>
146 <term name="book" form="short">bk.</term>
147 <term name="chapter" form="short">bk. chap.</term>
145 <!-- book is in the list of locator terms -->
146 <!-- chapter is in the list of locator terms -->
148147 <term name="document" form="short">doc.</term>
149148 <!-- figure is in the list of locator terms -->
150149 <term name="graphic" form="short">graph.</term>
302301 </term>
303302
304303 <!-- SHORT LOCATOR FORMS -->
305 <term name="appendix">
304 <term name="appendix" form="short">
306305 <single>app.</single>
307306 <multiple>apps.</multiple>
308307 </term>
309 <term name="article-locator">
308 <term name="article-locator" form="short">
310309 <single>art.</single>
311310 <multiple>arts.</multiple>
312311 </term>
313 <term name="elocation">
312 <term name="elocation" form="short">
314313 <single>loc.</single>
315314 <multiple>locs.</multiple>
316315 </term>
317 <term name="equation">
316 <term name="equation" form="short">
318317 <single>eq.</single>
319318 <multiple>eqs.</multiple>
320319 </term>
321 <term name="rule">
320 <term name="rule" form="short">
322321 <single>r.</single>
323322 <multiple>rr.</multiple>
324323 </term>
325 <term name="scene">
324 <term name="scene" form="short">
326325 <single>sc.</single>
327326 <multiple>scs.</multiple>
328327 </term>
329 <term name="table">
328 <term name="table" form="short">
330329 <single>tbl.</single>
331330 <multiple>tbls.</multiple>
332331 </term>
333 <term name="timestamp"> <!-- generally blank -->
332 <term name="timestamp" form="short"> <!-- generally blank -->
334333 <single></single>
335334 <multiple></multiple>
336335 </term>
337 <term name="title-locator">
336 <term name="title-locator" form="short">
338337 <single>tit.</single>
339338 <multiple>tits.</multiple>
340339 </term>
8383 <term name="in">in</term>
8484 <term name="in press">im Druck</term>
8585 <term name="internet">Internet</term>
86 <term name="interview">Interview</term>
8786 <term name="letter">Brief</term>
8887 <term name="no date">ohne Datum</term>
8988 <term name="no date" form="short">o.&#160;J.</term>
107106 <term name="article-magazine">magazine article</term>
108107 <term name="article-newspaper">newspaper article</term>
109108 <term name="bill">bill</term>
110 <term name="book">book</term>
109 <!-- book is in the list of locator terms -->
111110 <term name="broadcast">broadcast</term>
112 <term name="chapter">book chapter</term>
111 <!-- chapter is in the list of locator terms -->
113112 <term name="classic">classic</term>
114113 <term name="collection">collection</term>
115114 <term name="dataset">dataset</term>
121120 <!-- figure is in the list of locator terms -->
122121 <term name="graphic">graphic</term>
123122 <term name="hearing">hearing</term>
124 <term name="interview">interview</term>
123 <term name="interview">Interview</term>
125124 <term name="legal_case">legal case</term>
126125 <term name="legislation">legislation</term>
127126 <term name="manuscript">manuscript</term>
152151 <term name="article-journal" form="short">journal art.</term>
153152 <term name="article-magazine" form="short">mag. art.</term>
154153 <term name="article-newspaper" form="short">newspaper art.</term>
155 <term name="book" form="short">bk.</term>
156 <term name="chapter" form="short">bk. chap.</term>
154 <!-- book is in the list of locator terms -->
155 <!-- chapter is in the list of locator terms -->
157156 <term name="document" form="short">doc.</term>
158157 <!-- figure is in the list of locator terms -->
159158 <term name="graphic" form="short">graph.</term>
311310 </term>
312311
313312 <!-- SHORT LOCATOR FORMS -->
314 <term name="appendix">
313 <term name="appendix" form="short">
315314 <single>app.</single>
316315 <multiple>apps.</multiple>
317316 </term>
318 <term name="article-locator">
317 <term name="article-locator" form="short">
319318 <single>art.</single>
320319 <multiple>arts.</multiple>
321320 </term>
322 <term name="elocation">
321 <term name="elocation" form="short">
323322 <single>loc.</single>
324323 <multiple>locs.</multiple>
325324 </term>
326 <term name="equation">
325 <term name="equation" form="short">
327326 <single>eq.</single>
328327 <multiple>eqs.</multiple>
329328 </term>
330 <term name="rule">
329 <term name="rule" form="short">
331330 <single>r.</single>
332331 <multiple>rr.</multiple>
333332 </term>
334 <term name="scene">
333 <term name="scene" form="short">
335334 <single>sc.</single>
336335 <multiple>scs.</multiple>
337336 </term>
338 <term name="table">
337 <term name="table" form="short">
339338 <single>tbl.</single>
340339 <multiple>tbls.</multiple>
341340 </term>
342 <term name="timestamp"> <!-- generally blank -->
341 <term name="timestamp" form="short"> <!-- generally blank -->
343342 <single></single>
344343 <multiple></multiple>
345344 </term>
346 <term name="title-locator">
345 <term name="title-locator" form="short">
347346 <single>tit.</single>
348347 <multiple>tits.</multiple>
349348 </term>
7777 <term name="in">in</term>
7878 <term name="in press">im Druck</term>
7979 <term name="internet">Internet</term>
80 <term name="interview">Interview</term>
8180 <term name="letter">Brief</term>
8281 <term name="no date">ohne Datum</term>
8382 <term name="no date" form="short">o.&#160;J.</term>
101100 <term name="article-magazine">magazine article</term>
102101 <term name="article-newspaper">newspaper article</term>
103102 <term name="bill">bill</term>
104 <term name="book">book</term>
103 <!-- book is in the list of locator terms -->
105104 <term name="broadcast">broadcast</term>
106 <term name="chapter">book chapter</term>
105 <!-- chapter is in the list of locator terms -->
107106 <term name="classic">classic</term>
108107 <term name="collection">collection</term>
109108 <term name="dataset">dataset</term>
115114 <!-- figure is in the list of locator terms -->
116115 <term name="graphic">graphic</term>
117116 <term name="hearing">hearing</term>
118 <term name="interview">interview</term>
117 <term name="interview">Interview</term>
119118 <term name="legal_case">legal case</term>
120119 <term name="legislation">legislation</term>
121120 <term name="manuscript">manuscript</term>
146145 <term name="article-journal" form="short">journal art.</term>
147146 <term name="article-magazine" form="short">mag. art.</term>
148147 <term name="article-newspaper" form="short">newspaper art.</term>
149 <term name="book" form="short">bk.</term>
150 <term name="chapter" form="short">bk. chap.</term>
148 <!-- book is in the list of locator terms -->
149 <!-- chapter is in the list of locator terms -->
151150 <term name="document" form="short">doc.</term>
152151 <!-- figure is in the list of locator terms -->
153152 <term name="graphic" form="short">graph.</term>
305304 </term>
306305
307306 <!-- SHORT LOCATOR FORMS -->
308 <term name="appendix">
307 <term name="appendix" form="short">
309308 <single>app.</single>
310309 <multiple>apps.</multiple>
311310 </term>
312 <term name="article-locator">
311 <term name="article-locator" form="short">
313312 <single>art.</single>
314313 <multiple>arts.</multiple>
315314 </term>
316 <term name="elocation">
315 <term name="elocation" form="short">
317316 <single>loc.</single>
318317 <multiple>locs.</multiple>
319318 </term>
320 <term name="equation">
319 <term name="equation" form="short">
321320 <single>eq.</single>
322321 <multiple>eqs.</multiple>
323322 </term>
324 <term name="rule">
323 <term name="rule" form="short">
325324 <single>r.</single>
326325 <multiple>rr.</multiple>
327326 </term>
328 <term name="scene">
327 <term name="scene" form="short">
329328 <single>sc.</single>
330329 <multiple>scs.</multiple>
331330 </term>
332 <term name="table">
331 <term name="table" form="short">
333332 <single>tbl.</single>
334333 <multiple>tbls.</multiple>
335334 </term>
336 <term name="timestamp"> <!-- generally blank -->
335 <term name="timestamp" form="short"> <!-- generally blank -->
337336 <single></single>
338337 <multiple></multiple>
339338 </term>
340 <term name="title-locator">
339 <term name="title-locator" form="short">
341340 <single>tit.</single>
342341 <multiple>tits.</multiple>
343342 </term>
8080 <term name="in">in</term>
8181 <term name="in press">im Druck</term>
8282 <term name="internet">Internet</term>
83 <term name="interview">Interview</term>
8483 <term name="letter">Brief</term>
8584 <term name="no date">ohne Datum</term>
8685 <term name="no date" form="short">o.&#160;J.</term>
104103 <term name="article-magazine">magazine article</term>
105104 <term name="article-newspaper">newspaper article</term>
106105 <term name="bill">bill</term>
107 <term name="book">book</term>
106 <!-- book is in the list of locator terms -->
108107 <term name="broadcast">broadcast</term>
109 <term name="chapter">book chapter</term>
108 <!-- chapter is in the list of locator terms -->
110109 <term name="classic">classic</term>
111110 <term name="collection">collection</term>
112111 <term name="dataset">dataset</term>
118117 <!-- figure is in the list of locator terms -->
119118 <term name="graphic">graphic</term>
120119 <term name="hearing">hearing</term>
121 <term name="interview">interview</term>
120 <term name="interview">Interview</term>
122121 <term name="legal_case">legal case</term>
123122 <term name="legislation">legislation</term>
124123 <term name="manuscript">manuscript</term>
149148 <term name="article-journal" form="short">journal art.</term>
150149 <term name="article-magazine" form="short">mag. art.</term>
151150 <term name="article-newspaper" form="short">newspaper art.</term>
152 <term name="book" form="short">bk.</term>
153 <term name="chapter" form="short">bk. chap.</term>
151 <!-- book is in the list of locator terms -->
152 <!-- chapter is in the list of locator terms -->
154153 <term name="document" form="short">doc.</term>
155154 <!-- figure is in the list of locator terms -->
156155 <term name="graphic" form="short">graph.</term>
308307 </term>
309308
310309 <!-- SHORT LOCATOR FORMS -->
311 <term name="appendix">
310 <term name="appendix" form="short">
312311 <single>app.</single>
313312 <multiple>apps.</multiple>
314313 </term>
315 <term name="article-locator">
314 <term name="article-locator" form="short">
316315 <single>art.</single>
317316 <multiple>arts.</multiple>
318317 </term>
319 <term name="elocation">
318 <term name="elocation" form="short">
320319 <single>loc.</single>
321320 <multiple>locs.</multiple>
322321 </term>
323 <term name="equation">
322 <term name="equation" form="short">
324323 <single>eq.</single>
325324 <multiple>eqs.</multiple>
326325 </term>
327 <term name="rule">
326 <term name="rule" form="short">
328327 <single>r.</single>
329328 <multiple>rr.</multiple>
330329 </term>
331 <term name="scene">
330 <term name="scene" form="short">
332331 <single>sc.</single>
333332 <multiple>scs.</multiple>
334333 </term>
335 <term name="table">
334 <term name="table" form="short">
336335 <single>tbl.</single>
337336 <multiple>tbls.</multiple>
338337 </term>
339 <term name="timestamp"> <!-- generally blank -->
338 <term name="timestamp" form="short"> <!-- generally blank -->
340339 <single></single>
341340 <multiple></multiple>
342341 </term>
343 <term name="title-locator">
342 <term name="title-locator" form="short">
344343 <single>tit.</single>
345344 <multiple>tits.</multiple>
346345 </term>
7171 <term name="in">στο</term>
7272 <term name="in press">υπό έκδοση</term>
7373 <term name="internet">διαδίκτυο</term>
74 <term name="interview">συνέντευξη</term>
7574 <term name="letter">επιστολή</term>
7675 <term name="no date">χωρίς χρονολογία</term>
7776 <term name="no date" form="short">χ.χ.</term>
9594 <term name="article-magazine">magazine article</term>
9695 <term name="article-newspaper">newspaper article</term>
9796 <term name="bill">bill</term>
98 <term name="book">book</term>
97 <!-- book is in the list of locator terms -->
9998 <term name="broadcast">broadcast</term>
100 <term name="chapter">book chapter</term>
99 <!-- chapter is in the list of locator terms -->
101100 <term name="classic">classic</term>
102101 <term name="collection">collection</term>
103102 <term name="dataset">dataset</term>
109108 <!-- figure is in the list of locator terms -->
110109 <term name="graphic">graphic</term>
111110 <term name="hearing">hearing</term>
112 <term name="interview">interview</term>
111 <term name="interview">συνέντευξη</term>
113112 <term name="legal_case">legal case</term>
114113 <term name="legislation">legislation</term>
115114 <term name="manuscript">manuscript</term>
140139 <term name="article-journal" form="short">journal art.</term>
141140 <term name="article-magazine" form="short">mag. art.</term>
142141 <term name="article-newspaper" form="short">newspaper art.</term>
143 <term name="book" form="short">bk.</term>
144 <term name="chapter" form="short">bk. chap.</term>
142 <!-- book is in the list of locator terms -->
143 <!-- chapter is in the list of locator terms -->
145144 <term name="document" form="short">doc.</term>
146145 <!-- figure is in the list of locator terms -->
147146 <term name="graphic" form="short">graph.</term>
301300 </term>
302301
303302 <!-- SHORT LOCATOR FORMS -->
304 <term name="appendix">
303 <term name="appendix" form="short">
305304 <single>app.</single>
306305 <multiple>apps.</multiple>
307306 </term>
308 <term name="article-locator">
307 <term name="article-locator" form="short">
309308 <single>art.</single>
310309 <multiple>arts.</multiple>
311310 </term>
312 <term name="elocation">
311 <term name="elocation" form="short">
313312 <single>loc.</single>
314313 <multiple>locs.</multiple>
315314 </term>
316 <term name="equation">
315 <term name="equation" form="short">
317316 <single>eq.</single>
318317 <multiple>eqs.</multiple>
319318 </term>
320 <term name="rule">
319 <term name="rule" form="short">
321320 <single>r.</single>
322321 <multiple>rr.</multiple>
323322 </term>
324 <term name="scene">
323 <term name="scene" form="short">
325324 <single>sc.</single>
326325 <multiple>scs.</multiple>
327326 </term>
328 <term name="table">
327 <term name="table" form="short">
329328 <single>tbl.</single>
330329 <multiple>tbls.</multiple>
331330 </term>
332 <term name="timestamp"> <!-- generally blank -->
331 <term name="timestamp" form="short"> <!-- generally blank -->
333332 <single></single>
334333 <multiple></multiple>
335334 </term>
336 <term name="title-locator">
335 <term name="title-locator" form="short">
337336 <single>tit.</single>
338337 <multiple>tits.</multiple>
339338 </term>
7474 <term name="in">in</term>
7575 <term name="in press">in press</term>
7676 <term name="internet">internet</term>
77 <term name="interview">interview</term>
7877 <term name="letter">letter</term>
7978 <term name="no date">no date</term>
8079 <term name="no date" form="short">n.d.</term>
9897 <term name="article-magazine">magazine article</term>
9998 <term name="article-newspaper">newspaper article</term>
10099 <term name="bill">bill</term>
101 <term name="book">book</term>
100 <!-- book is in the list of locator terms -->
102101 <term name="broadcast">broadcast</term>
103 <term name="chapter">book chapter</term>
102 <!-- chapter is in the list of locator terms -->
104103 <term name="classic">classic</term>
105104 <term name="collection">collection</term>
106105 <term name="dataset">dataset</term>
143142 <term name="article-journal" form="short">journal art.</term>
144143 <term name="article-magazine" form="short">mag. art.</term>
145144 <term name="article-newspaper" form="short">newspaper art.</term>
146 <term name="book" form="short">bk.</term>
147 <term name="chapter" form="short">bk. chap.</term>
145 <!-- book is in the list of locator terms -->
146 <!-- chapter is in the list of locator terms -->
148147 <term name="document" form="short">doc.</term>
149148 <!-- figure is in the list of locator terms -->
150149 <term name="graphic" form="short">graph.</term>
8080 <term name="in">in</term>
8181 <term name="in press">in press</term>
8282 <term name="internet">internet</term>
83 <term name="interview">interview</term>
8483 <term name="letter">letter</term>
8584 <term name="no date">no date</term>
8685 <term name="no date" form="short">n.d.</term>
104103 <term name="article-magazine">magazine article</term>
105104 <term name="article-newspaper">newspaper article</term>
106105 <term name="bill">bill</term>
107 <term name="book">book</term>
106 <!-- book is in the list of locator terms -->
108107 <term name="broadcast">broadcast</term>
109 <term name="chapter">book chapter</term>
108 <!-- chapter is in the list of locator terms -->
110109 <term name="classic">classic</term>
111110 <term name="collection">collection</term>
112111 <term name="dataset">dataset</term>
149148 <term name="article-journal" form="short">journal art.</term>
150149 <term name="article-magazine" form="short">mag. art.</term>
151150 <term name="article-newspaper" form="short">newspaper art.</term>
152 <term name="book" form="short">bk.</term>
153 <term name="chapter" form="short">bk. chap.</term>
151 <!-- book is in the list of locator terms -->
152 <!-- chapter is in the list of locator terms -->
154153 <term name="document" form="short">doc.</term>
155154 <!-- figure is in the list of locator terms -->
156155 <term name="graphic" form="short">graph.</term>
6969 <term name="in">en</term>
7070 <term name="in press">en imprenta</term>
7171 <term name="internet">internet</term>
72 <term name="interview">entrevista</term>
7372 <term name="letter">carta</term>
7473 <term name="no date">sin fecha</term>
7574 <term name="no date" form="short">s.&#160;f.</term>
9392 <term name="article-magazine">magazine article</term>
9493 <term name="article-newspaper">newspaper article</term>
9594 <term name="bill">bill</term>
96 <term name="book">book</term>
95 <!-- book is in the list of locator terms -->
9796 <term name="broadcast">broadcast</term>
98 <term name="chapter">book chapter</term>
97 <!-- chapter is in the list of locator terms -->
9998 <term name="classic">classic</term>
10099 <term name="collection">collection</term>
101100 <term name="dataset">dataset</term>
107106 <!-- figure is in the list of locator terms -->
108107 <term name="graphic">graphic</term>
109108 <term name="hearing">hearing</term>
110 <term name="interview">interview</term>
109 <term name="interview">entrevista</term>
111110 <term name="legal_case">legal case</term>
112111 <term name="legislation">legislation</term>
113112 <term name="manuscript">manuscript</term>
138137 <term name="article-journal" form="short">journal art.</term>
139138 <term name="article-magazine" form="short">mag. art.</term>
140139 <term name="article-newspaper" form="short">newspaper art.</term>
141 <term name="book" form="short">bk.</term>
142 <term name="chapter" form="short">bk. chap.</term>
140 <!-- book is in the list of locator terms -->
141 <!-- chapter is in the list of locator terms -->
143142 <term name="document" form="short">doc.</term>
144143 <!-- figure is in the list of locator terms -->
145144 <term name="graphic" form="short">graph.</term>
297296 </term>
298297
299298 <!-- SHORT LOCATOR FORMS -->
300 <term name="appendix">
299 <term name="appendix" form="short">
301300 <single>app.</single>
302301 <multiple>apps.</multiple>
303302 </term>
304 <term name="article-locator">
303 <term name="article-locator" form="short">
305304 <single>art.</single>
306305 <multiple>arts.</multiple>
307306 </term>
308 <term name="elocation">
307 <term name="elocation" form="short">
309308 <single>loc.</single>
310309 <multiple>locs.</multiple>
311310 </term>
312 <term name="equation">
311 <term name="equation" form="short">
313312 <single>eq.</single>
314313 <multiple>eqs.</multiple>
315314 </term>
316 <term name="rule">
315 <term name="rule" form="short">
317316 <single>r.</single>
318317 <multiple>rr.</multiple>
319318 </term>
320 <term name="scene">
319 <term name="scene" form="short">
321320 <single>sc.</single>
322321 <multiple>scs.</multiple>
323322 </term>
324 <term name="table">
323 <term name="table" form="short">
325324 <single>tbl.</single>
326325 <multiple>tbls.</multiple>
327326 </term>
328 <term name="timestamp"> <!-- generally blank -->
327 <term name="timestamp" form="short"> <!-- generally blank -->
329328 <single></single>
330329 <multiple></multiple>
331330 </term>
332 <term name="title-locator">
331 <term name="title-locator" form="short">
333332 <single>tit.</single>
334333 <multiple>tits.</multiple>
335334 </term>
6868 <term name="in">en</term>
6969 <term name="in press">en imprenta</term>
7070 <term name="internet">internet</term>
71 <term name="interview">entrevista</term>
7271 <term name="letter">carta</term>
7372 <term name="no date">sin fecha</term>
7473 <term name="no date" form="short">s.&#160;f.</term>
9291 <term name="article-magazine">magazine article</term>
9392 <term name="article-newspaper">newspaper article</term>
9493 <term name="bill">bill</term>
95 <term name="book">book</term>
94 <!-- book is in the list of locator terms -->
9695 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
96 <!-- chapter is in the list of locator terms -->
9897 <term name="classic">classic</term>
9998 <term name="collection">collection</term>
10099 <term name="dataset">dataset</term>
106105 <!-- figure is in the list of locator terms -->
107106 <term name="graphic">graphic</term>
108107 <term name="hearing">hearing</term>
109 <term name="interview">interview</term>
108 <term name="interview">entrevista</term>
110109 <term name="legal_case">legal case</term>
111110 <term name="legislation">legislation</term>
112111 <term name="manuscript">manuscript</term>
137136 <term name="article-journal" form="short">journal art.</term>
138137 <term name="article-magazine" form="short">mag. art.</term>
139138 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
139 <!-- book is in the list of locator terms -->
140 <!-- chapter is in the list of locator terms -->
142141 <term name="document" form="short">doc.</term>
143142 <!-- figure is in the list of locator terms -->
144143 <term name="graphic" form="short">graph.</term>
296295 </term>
297296
298297 <!-- SHORT LOCATOR FORMS -->
299 <term name="appendix">
298 <term name="appendix" form="short">
300299 <single>app.</single>
301300 <multiple>apps.</multiple>
302301 </term>
303 <term name="article-locator">
302 <term name="article-locator" form="short">
304303 <single>art.</single>
305304 <multiple>arts.</multiple>
306305 </term>
307 <term name="elocation">
306 <term name="elocation" form="short">
308307 <single>loc.</single>
309308 <multiple>locs.</multiple>
310309 </term>
311 <term name="equation">
310 <term name="equation" form="short">
312311 <single>eq.</single>
313312 <multiple>eqs.</multiple>
314313 </term>
315 <term name="rule">
314 <term name="rule" form="short">
316315 <single>r.</single>
317316 <multiple>rr.</multiple>
318317 </term>
319 <term name="scene">
318 <term name="scene" form="short">
320319 <single>sc.</single>
321320 <multiple>scs.</multiple>
322321 </term>
323 <term name="table">
322 <term name="table" form="short">
324323 <single>tbl.</single>
325324 <multiple>tbls.</multiple>
326325 </term>
327 <term name="timestamp"> <!-- generally blank -->
326 <term name="timestamp" form="short"> <!-- generally blank -->
328327 <single></single>
329328 <multiple></multiple>
330329 </term>
331 <term name="title-locator">
330 <term name="title-locator" form="short">
332331 <single>tit.</single>
333332 <multiple>tits.</multiple>
334333 </term>
7272 <term name="in">en</term>
7373 <term name="in press">en imprenta</term>
7474 <term name="internet">internet</term>
75 <term name="interview">entrevista</term>
7675 <term name="letter">carta</term>
7776 <term name="no date">sin fecha</term>
7877 <term name="no date" form="short">s/f</term>
9695 <term name="article-magazine">magazine article</term>
9796 <term name="article-newspaper">newspaper article</term>
9897 <term name="bill">bill</term>
99 <term name="book">book</term>
98 <!-- book is in the list of locator terms -->
10099 <term name="broadcast">broadcast</term>
101 <term name="chapter">book chapter</term>
100 <!-- chapter is in the list of locator terms -->
102101 <term name="classic">classic</term>
103102 <term name="collection">collection</term>
104103 <term name="dataset">dataset</term>
110109 <!-- figure is in the list of locator terms -->
111110 <term name="graphic">graphic</term>
112111 <term name="hearing">hearing</term>
113 <term name="interview">interview</term>
112 <term name="interview">entrevista</term>
114113 <term name="legal_case">legal case</term>
115114 <term name="legislation">legislation</term>
116115 <term name="manuscript">manuscript</term>
141140 <term name="article-journal" form="short">journal art.</term>
142141 <term name="article-magazine" form="short">mag. art.</term>
143142 <term name="article-newspaper" form="short">newspaper art.</term>
144 <term name="book" form="short">bk.</term>
145 <term name="chapter" form="short">bk. chap.</term>
143 <!-- book is in the list of locator terms -->
144 <!-- chapter is in the list of locator terms -->
146145 <term name="document" form="short">doc.</term>
147146 <!-- figure is in the list of locator terms -->
148147 <term name="graphic" form="short">graph.</term>
302301 </term>
303302
304303 <!-- SHORT LOCATOR FORMS -->
305 <term name="appendix">
304 <term name="appendix" form="short">
306305 <single>app.</single>
307306 <multiple>apps.</multiple>
308307 </term>
309 <term name="article-locator">
308 <term name="article-locator" form="short">
310309 <single>art.</single>
311310 <multiple>arts.</multiple>
312311 </term>
313 <term name="elocation">
312 <term name="elocation" form="short">
314313 <single>loc.</single>
315314 <multiple>locs.</multiple>
316315 </term>
317 <term name="equation">
316 <term name="equation" form="short">
318317 <single>eq.</single>
319318 <multiple>eqs.</multiple>
320319 </term>
321 <term name="rule">
320 <term name="rule" form="short">
322321 <single>r.</single>
323322 <multiple>rr.</multiple>
324323 </term>
325 <term name="scene">
324 <term name="scene" form="short">
326325 <single>sc.</single>
327326 <multiple>scs.</multiple>
328327 </term>
329 <term name="table">
328 <term name="table" form="short">
330329 <single>tbl.</single>
331330 <multiple>tbls.</multiple>
332331 </term>
333 <term name="timestamp"> <!-- generally blank -->
332 <term name="timestamp" form="short"> <!-- generally blank -->
334333 <single></single>
335334 <multiple></multiple>
336335 </term>
337 <term name="title-locator">
336 <term name="title-locator" form="short">
338337 <single>tit.</single>
339338 <multiple>tits.</multiple>
340339 </term>
6868 <term name="in"></term>
6969 <term name="in press">trükis</term>
7070 <term name="internet">internet</term>
71 <term name="interview">intervjuu</term>
7271 <term name="letter">kiri</term>
7372 <term name="no date">s.a.</term>
7473 <term name="no date" form="short">s.a.</term>
9291 <term name="article-magazine">magazine article</term>
9392 <term name="article-newspaper">newspaper article</term>
9493 <term name="bill">bill</term>
95 <term name="book">book</term>
94 <!-- book is in the list of locator terms -->
9695 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
96 <!-- chapter is in the list of locator terms -->
9897 <term name="classic">classic</term>
9998 <term name="collection">collection</term>
10099 <term name="dataset">dataset</term>
106105 <!-- figure is in the list of locator terms -->
107106 <term name="graphic">graphic</term>
108107 <term name="hearing">hearing</term>
109 <term name="interview">interview</term>
108 <term name="interview">intervjuu</term>
110109 <term name="legal_case">legal case</term>
111110 <term name="legislation">legislation</term>
112111 <term name="manuscript">manuscript</term>
137136 <term name="article-journal" form="short">journal art.</term>
138137 <term name="article-magazine" form="short">mag. art.</term>
139138 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
139 <!-- book is in the list of locator terms -->
140 <!-- chapter is in the list of locator terms -->
142141 <term name="document" form="short">doc.</term>
143142 <!-- figure is in the list of locator terms -->
144143 <term name="graphic" form="short">graph.</term>
296295 </term>
297296
298297 <!-- SHORT LOCATOR FORMS -->
299 <term name="appendix">
298 <term name="appendix" form="short">
300299 <single>app.</single>
301300 <multiple>apps.</multiple>
302301 </term>
303 <term name="article-locator">
302 <term name="article-locator" form="short">
304303 <single>art.</single>
305304 <multiple>arts.</multiple>
306305 </term>
307 <term name="elocation">
306 <term name="elocation" form="short">
308307 <single>loc.</single>
309308 <multiple>locs.</multiple>
310309 </term>
311 <term name="equation">
310 <term name="equation" form="short">
312311 <single>eq.</single>
313312 <multiple>eqs.</multiple>
314313 </term>
315 <term name="rule">
314 <term name="rule" form="short">
316315 <single>r.</single>
317316 <multiple>rr.</multiple>
318317 </term>
319 <term name="scene">
318 <term name="scene" form="short">
320319 <single>sc.</single>
321320 <multiple>scs.</multiple>
322321 </term>
323 <term name="table">
322 <term name="table" form="short">
324323 <single>tbl.</single>
325324 <multiple>tbls.</multiple>
326325 </term>
327 <term name="timestamp"> <!-- generally blank -->
326 <term name="timestamp" form="short"> <!-- generally blank -->
328327 <single></single>
329328 <multiple></multiple>
330329 </term>
331 <term name="title-locator">
330 <term name="title-locator" form="short">
332331 <single>tit.</single>
333332 <multiple>tits.</multiple>
334333 </term>
6868 <term name="in">in</term>
6969 <term name="in press">moldiztegian</term>
7070 <term name="internet">internet</term>
71 <term name="interview">elkarrizketa</term>
7271 <term name="letter">gutuna</term>
7372 <term name="no date">datarik gabe</term>
7473 <term name="no date" form="short">d. g.</term>
9291 <term name="article-magazine">magazine article</term>
9392 <term name="article-newspaper">newspaper article</term>
9493 <term name="bill">bill</term>
95 <term name="book">book</term>
94 <!-- book is in the list of locator terms -->
9695 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
96 <!-- chapter is in the list of locator terms -->
9897 <term name="classic">classic</term>
9998 <term name="collection">collection</term>
10099 <term name="dataset">dataset</term>
106105 <!-- figure is in the list of locator terms -->
107106 <term name="graphic">graphic</term>
108107 <term name="hearing">hearing</term>
109 <term name="interview">interview</term>
108 <term name="interview">elkarrizketa</term>
110109 <term name="legal_case">legal case</term>
111110 <term name="legislation">legislation</term>
112111 <term name="manuscript">manuscript</term>
137136 <term name="article-journal" form="short">journal art.</term>
138137 <term name="article-magazine" form="short">mag. art.</term>
139138 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
139 <!-- book is in the list of locator terms -->
140 <!-- chapter is in the list of locator terms -->
142141 <term name="document" form="short">doc.</term>
143142 <!-- figure is in the list of locator terms -->
144143 <term name="graphic" form="short">graph.</term>
296295 </term>
297296
298297 <!-- SHORT LOCATOR FORMS -->
299 <term name="appendix">
298 <term name="appendix" form="short">
300299 <single>app.</single>
301300 <multiple>apps.</multiple>
302301 </term>
303 <term name="article-locator">
302 <term name="article-locator" form="short">
304303 <single>art.</single>
305304 <multiple>arts.</multiple>
306305 </term>
307 <term name="elocation">
306 <term name="elocation" form="short">
308307 <single>loc.</single>
309308 <multiple>locs.</multiple>
310309 </term>
311 <term name="equation">
310 <term name="equation" form="short">
312311 <single>eq.</single>
313312 <multiple>eqs.</multiple>
314313 </term>
315 <term name="rule">
314 <term name="rule" form="short">
316315 <single>r.</single>
317316 <multiple>rr.</multiple>
318317 </term>
319 <term name="scene">
318 <term name="scene" form="short">
320319 <single>sc.</single>
321320 <multiple>scs.</multiple>
322321 </term>
323 <term name="table">
322 <term name="table" form="short">
324323 <single>tbl.</single>
325324 <multiple>tbls.</multiple>
326325 </term>
327 <term name="timestamp"> <!-- generally blank -->
326 <term name="timestamp" form="short"> <!-- generally blank -->
328327 <single></single>
329328 <multiple></multiple>
330329 </term>
331 <term name="title-locator">
330 <term name="title-locator" form="short">
332331 <single>tit.</single>
333332 <multiple>tits.</multiple>
334333 </term>
7171 <term name="in">در</term>
7272 <term name="in press">زیر چاپ</term>
7373 <term name="internet">اینترنت</term>
74 <term name="interview">مصاحبه</term>
7574 <term name="letter">نامه</term>
7675 <term name="no date">بدون تاریخ</term>
7776 <term name="no date" form="short">بدون تاریخ</term>
9594 <term name="article-magazine">magazine article</term>
9695 <term name="article-newspaper">newspaper article</term>
9796 <term name="bill">bill</term>
98 <term name="book">book</term>
97 <!-- book is in the list of locator terms -->
9998 <term name="broadcast">broadcast</term>
100 <term name="chapter">book chapter</term>
99 <!-- chapter is in the list of locator terms -->
101100 <term name="classic">classic</term>
102101 <term name="collection">collection</term>
103102 <term name="dataset">dataset</term>
109108 <!-- figure is in the list of locator terms -->
110109 <term name="graphic">graphic</term>
111110 <term name="hearing">hearing</term>
112 <term name="interview">interview</term>
111 <term name="interview">مصاحبه</term>
113112 <term name="legal_case">legal case</term>
114113 <term name="legislation">legislation</term>
115114 <term name="manuscript">manuscript</term>
140139 <term name="article-journal" form="short">journal art.</term>
141140 <term name="article-magazine" form="short">mag. art.</term>
142141 <term name="article-newspaper" form="short">newspaper art.</term>
143 <term name="book" form="short">bk.</term>
144 <term name="chapter" form="short">bk. chap.</term>
142 <!-- book is in the list of locator terms -->
143 <!-- chapter is in the list of locator terms -->
145144 <term name="document" form="short">doc.</term>
146145 <!-- figure is in the list of locator terms -->
147146 <term name="graphic" form="short">graph.</term>
299298 </term>
300299
301300 <!-- SHORT LOCATOR FORMS -->
302 <term name="appendix">
301 <term name="appendix" form="short">
303302 <single>app.</single>
304303 <multiple>apps.</multiple>
305304 </term>
306 <term name="article-locator">
305 <term name="article-locator" form="short">
307306 <single>art.</single>
308307 <multiple>arts.</multiple>
309308 </term>
310 <term name="elocation">
309 <term name="elocation" form="short">
311310 <single>loc.</single>
312311 <multiple>locs.</multiple>
313312 </term>
314 <term name="equation">
313 <term name="equation" form="short">
315314 <single>eq.</single>
316315 <multiple>eqs.</multiple>
317316 </term>
318 <term name="rule">
317 <term name="rule" form="short">
319318 <single>r.</single>
320319 <multiple>rr.</multiple>
321320 </term>
322 <term name="scene">
321 <term name="scene" form="short">
323322 <single>sc.</single>
324323 <multiple>scs.</multiple>
325324 </term>
326 <term name="table">
325 <term name="table" form="short">
327326 <single>tbl.</single>
328327 <multiple>tbls.</multiple>
329328 </term>
330 <term name="timestamp"> <!-- generally blank -->
329 <term name="timestamp" form="short"> <!-- generally blank -->
331330 <single></single>
332331 <multiple></multiple>
333332 </term>
334 <term name="title-locator">
333 <term name="title-locator" form="short">
335334 <single>tit.</single>
336335 <multiple>tits.</multiple>
337336 </term>
7777 <term name="in">teoksessa</term>
7878 <term name="in press">painossa</term>
7979 <term name="internet">internet</term>
80 <term name="interview">haastattelu</term>
8180 <term name="letter">kirje</term>
8281 <term name="no date">ei päivämäärää</term>
8382 <term name="no date" form="short">ei pvm.</term>
101100 <term name="article-magazine">magazine article</term>
102101 <term name="article-newspaper">newspaper article</term>
103102 <term name="bill">bill</term>
104 <term name="book">book</term>
103 <!-- book is in the list of locator terms -->
105104 <term name="broadcast">broadcast</term>
106 <term name="chapter">book chapter</term>
105 <!-- chapter is in the list of locator terms -->
107106 <term name="classic">classic</term>
108107 <term name="collection">collection</term>
109108 <term name="dataset">dataset</term>
115114 <!-- figure is in the list of locator terms -->
116115 <term name="graphic">graphic</term>
117116 <term name="hearing">hearing</term>
118 <term name="interview">interview</term>
117 <term name="interview">haastattelu</term>
119118 <term name="legal_case">legal case</term>
120119 <term name="legislation">legislation</term>
121120 <term name="manuscript">manuscript</term>
146145 <term name="article-journal" form="short">journal art.</term>
147146 <term name="article-magazine" form="short">mag. art.</term>
148147 <term name="article-newspaper" form="short">newspaper art.</term>
149 <term name="book" form="short">bk.</term>
150 <term name="chapter" form="short">bk. chap.</term>
148 <!-- book is in the list of locator terms -->
149 <!-- chapter is in the list of locator terms -->
151150 <term name="document" form="short">doc.</term>
152151 <!-- figure is in the list of locator terms -->
153152 <term name="graphic" form="short">graph.</term>
305304 </term>
306305
307306 <!-- SHORT LOCATOR FORMS -->
308 <term name="appendix">
307 <term name="appendix" form="short">
309308 <single>app.</single>
310309 <multiple>apps.</multiple>
311310 </term>
312 <term name="article-locator">
311 <term name="article-locator" form="short">
313312 <single>art.</single>
314313 <multiple>arts.</multiple>
315314 </term>
316 <term name="elocation">
315 <term name="elocation" form="short">
317316 <single>loc.</single>
318317 <multiple>locs.</multiple>
319318 </term>
320 <term name="equation">
319 <term name="equation" form="short">
321320 <single>eq.</single>
322321 <multiple>eqs.</multiple>
323322 </term>
324 <term name="rule">
323 <term name="rule" form="short">
325324 <single>r.</single>
326325 <multiple>rr.</multiple>
327326 </term>
328 <term name="scene">
327 <term name="scene" form="short">
329328 <single>sc.</single>
330329 <multiple>scs.</multiple>
331330 </term>
332 <term name="table">
331 <term name="table" form="short">
333332 <single>tbl.</single>
334333 <multiple>tbls.</multiple>
335334 </term>
336 <term name="timestamp"> <!-- generally blank -->
335 <term name="timestamp" form="short"> <!-- generally blank -->
337336 <single></single>
338337 <multiple></multiple>
339338 </term>
340 <term name="title-locator">
339 <term name="title-locator" form="short">
341340 <single>tit.</single>
342341 <multiple>tits.</multiple>
343342 </term>
6868 <term name="in">dans</term>
6969 <term name="in press">sous presse</term>
7070 <term name="internet">Internet</term>
71 <term name="interview">entretien</term>
7271 <term name="letter">lettre</term>
7372 <term name="no date">sans date</term>
7473 <term name="no date" form="short">s.&#160;d.</term>
9291 <term name="article-magazine">magazine article</term>
9392 <term name="article-newspaper">newspaper article</term>
9493 <term name="bill">bill</term>
95 <term name="book">book</term>
94 <!-- book is in the list of locator terms -->
9695 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
96 <!-- chapter is in the list of locator terms -->
9897 <term name="classic">classic</term>
9998 <term name="collection">collection</term>
10099 <term name="dataset">dataset</term>
106105 <!-- figure is in the list of locator terms -->
107106 <term name="graphic">graphic</term>
108107 <term name="hearing">hearing</term>
109 <term name="interview">interview</term>
108 <term name="interview">entretien</term>
110109 <term name="legal_case">legal case</term>
111110 <term name="legislation">legislation</term>
112111 <term name="manuscript">manuscript</term>
137136 <term name="article-journal" form="short">journal art.</term>
138137 <term name="article-magazine" form="short">mag. art.</term>
139138 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
139 <!-- book is in the list of locator terms -->
140 <!-- chapter is in the list of locator terms -->
142141 <term name="document" form="short">doc.</term>
143142 <!-- figure is in the list of locator terms -->
144143 <term name="graphic" form="short">graph.</term>
298297 </term>
299298
300299 <!-- SHORT LOCATOR FORMS -->
301 <term name="appendix">
300 <term name="appendix" form="short">
302301 <single>app.</single>
303302 <multiple>apps.</multiple>
304303 </term>
305 <term name="article-locator">
304 <term name="article-locator" form="short">
306305 <single>art.</single>
307306 <multiple>arts.</multiple>
308307 </term>
309 <term name="elocation">
308 <term name="elocation" form="short">
310309 <single>loc.</single>
311310 <multiple>locs.</multiple>
312311 </term>
313 <term name="equation">
312 <term name="equation" form="short">
314313 <single>eq.</single>
315314 <multiple>eqs.</multiple>
316315 </term>
317 <term name="rule">
316 <term name="rule" form="short">
318317 <single>r.</single>
319318 <multiple>rr.</multiple>
320319 </term>
321 <term name="scene">
320 <term name="scene" form="short">
322321 <single>sc.</single>
323322 <multiple>scs.</multiple>
324323 </term>
325 <term name="table">
324 <term name="table" form="short">
326325 <single>tbl.</single>
327326 <multiple>tbls.</multiple>
328327 </term>
329 <term name="timestamp"> <!-- generally blank -->
328 <term name="timestamp" form="short"> <!-- generally blank -->
330329 <single></single>
331330 <multiple></multiple>
332331 </term>
333 <term name="title-locator">
332 <term name="title-locator" form="short">
334333 <single>tit.</single>
335334 <multiple>tits.</multiple>
336335 </term>
7171 <term name="in">in</term>
7272 <term name="in press">sous presse</term>
7373 <term name="internet">Internet</term>
74 <term name="interview">entretien</term>
7574 <term name="letter">lettre</term>
7675 <term name="no date">sans date</term>
7776 <term name="no date" form="short">s.&#160;d.</term>
9594 <term name="article-magazine">article de magazine</term>
9695 <term name="article-newspaper">article de presse</term>
9796 <term name="bill">projet de loi</term>
98 <term name="book">livre</term>
97 <!-- book is in the list of locator terms -->
9998 <term name="broadcast">émission</term>
100 <term name="chapter">chapitre de livre</term>
99 <!-- chapter is in the list of locator terms -->
101100 <term name="classic">classique</term>
102101 <term name="collection">collection</term>
103102 <term name="dataset">jeu de données</term>
109108 <!-- figure is in the list of locator terms -->
110109 <term name="graphic">image</term>
111110 <term name="hearing">audience</term>
112 <term name="interview">interview</term>
111 <term name="interview">entretien</term>
113112 <term name="legal_case">affaire</term>
114113 <term name="legislation">acte juridique</term>
115114 <term name="manuscript">manuscrit</term>
140139 <term name="article-journal" form="short">art. de revue</term>
141140 <term name="article-magazine" form="short">art. de mag.</term>
142141 <term name="article-newspaper" form="short">art. de presse</term>
143 <term name="book" form="short">liv.</term>
144 <term name="chapter" form="short">chap. de liv.</term>
142 <!-- book is in the list of locator terms -->
143 <!-- chapter is in the list of locator terms -->
145144 <term name="document" form="short">doc.</term>
146145 <!-- figure is in the list of locator terms -->
147146 <term name="graphic" form="short">graph.</term>
301300 </term>
302301
303302 <!-- SHORT LOCATOR FORMS -->
304 <term name="appendix">
303 <term name="appendix" form="short">
305304 <single>append.</single>
306305 <multiple>append.</multiple>
307306 </term>
308 <term name="article-locator">
307 <term name="article-locator" form="short">
309308 <single>art.</single>
310309 <multiple>art.</multiple>
311310 </term>
312 <term name="elocation">
311 <term name="elocation" form="short">
313312 <single>emplact</single>
314313 <multiple>emplact</multiple>
315314 </term>
316 <term name="equation">
315 <term name="equation" form="short">
317316 <single>eq.</single>
318317 <multiple>eq.</multiple>
319318 </term>
320 <term name="rule">
319 <term name="rule" form="short">
321320 <single>règle</single>
322321 <multiple>règles</multiple>
323322 </term>
324 <term name="scene">
323 <term name="scene" form="short">
325324 <single>sc.</single>
326325 <multiple>sc.</multiple>
327326 </term>
328 <term name="table">
327 <term name="table" form="short">
329328 <single>tab.</single>
330329 <multiple>tab.</multiple>
331330 </term>
332 <term name="timestamp"> <!-- generally blank -->
331 <term name="timestamp" form="short"> <!-- generally blank -->
333332 <single></single>
334333 <multiple></multiple>
335334 </term>
336 <term name="title-locator">
335 <term name="title-locator" form="short">
337336 <single>tit.</single>
338337 <multiple>tit.</multiple>
339338 </term>
6868 <term name="in">בתוך</term>
6969 <term name="in press">בהדפסה</term>
7070 <term name="internet">אינטרנט</term>
71 <term name="interview">ראיון</term>
7271 <term name="letter">מכתב</term>
7372 <term name="no date">אין נתונים</term>
7473 <term name="no date" form="short">nd</term>
9291 <term name="article-magazine">magazine article</term>
9392 <term name="article-newspaper">newspaper article</term>
9493 <term name="bill">bill</term>
95 <term name="book">book</term>
94 <!-- book is in the list of locator terms -->
9695 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
96 <!-- chapter is in the list of locator terms -->
9897 <term name="classic">classic</term>
9998 <term name="collection">collection</term>
10099 <term name="dataset">dataset</term>
106105 <!-- figure is in the list of locator terms -->
107106 <term name="graphic">graphic</term>
108107 <term name="hearing">hearing</term>
109 <term name="interview">interview</term>
108 <term name="interview">ראיון</term>
110109 <term name="legal_case">legal case</term>
111110 <term name="legislation">legislation</term>
112111 <term name="manuscript">manuscript</term>
137136 <term name="article-journal" form="short">journal art.</term>
138137 <term name="article-magazine" form="short">mag. art.</term>
139138 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
139 <!-- book is in the list of locator terms -->
140 <!-- chapter is in the list of locator terms -->
142141 <term name="document" form="short">doc.</term>
143142 <!-- figure is in the list of locator terms -->
144143 <term name="graphic" form="short">graph.</term>
302301 </term>
303302
304303 <!-- SHORT LOCATOR FORMS -->
305 <term name="appendix">
304 <term name="appendix" form="short">
306305 <single>app.</single>
307306 <multiple>apps.</multiple>
308307 </term>
309 <term name="article-locator">
308 <term name="article-locator" form="short">
310309 <single>art.</single>
311310 <multiple>arts.</multiple>
312311 </term>
313 <term name="elocation">
312 <term name="elocation" form="short">
314313 <single>loc.</single>
315314 <multiple>locs.</multiple>
316315 </term>
317 <term name="equation">
316 <term name="equation" form="short">
318317 <single>eq.</single>
319318 <multiple>eqs.</multiple>
320319 </term>
321 <term name="rule">
320 <term name="rule" form="short">
322321 <single>r.</single>
323322 <multiple>rr.</multiple>
324323 </term>
325 <term name="scene">
324 <term name="scene" form="short">
326325 <single>sc.</single>
327326 <multiple>scs.</multiple>
328327 </term>
329 <term name="table">
328 <term name="table" form="short">
330329 <single>tbl.</single>
331330 <multiple>tbls.</multiple>
332331 </term>
333 <term name="timestamp"> <!-- generally blank -->
332 <term name="timestamp" form="short"> <!-- generally blank -->
334333 <single></single>
335334 <multiple></multiple>
336335 </term>
337 <term name="title-locator">
336 <term name="title-locator" form="short">
338337 <single>tit.</single>
339338 <multiple>tits.</multiple>
340339 </term>
6969 <term name="in">में</term>
7070 <term name="in press">मुद्रण में</term>
7171 <term name="internet">इंटर्नेट</term>
72 <term name="interview">साक्षात्कार</term>
7372 <term name="letter">पत्र</term>
7473 <term name="no date">दिनांक अज्ञात</term>
7574 <term name="no date" form="short">n.d.</term>
9392 <term name="article-magazine">magazine article</term>
9493 <term name="article-newspaper">newspaper article</term>
9594 <term name="bill">bill</term>
96 <term name="book">book</term>
95 <!-- book is in the list of locator terms -->
9796 <term name="broadcast">broadcast</term>
98 <term name="chapter">book chapter</term>
97 <!-- chapter is in the list of locator terms -->
9998 <term name="classic">classic</term>
10099 <term name="collection">collection</term>
101100 <term name="dataset">dataset</term>
107106 <!-- figure is in the list of locator terms -->
108107 <term name="graphic">graphic</term>
109108 <term name="hearing">hearing</term>
110 <term name="interview">interview</term>
109 <term name="interview">साक्षात्कार</term>
111110 <term name="legal_case">legal case</term>
112111 <term name="legislation">legislation</term>
113112 <term name="manuscript">manuscript</term>
138137 <term name="article-journal" form="short">journal art.</term>
139138 <term name="article-magazine" form="short">mag. art.</term>
140139 <term name="article-newspaper" form="short">newspaper art.</term>
141 <term name="book" form="short">bk.</term>
142 <term name="chapter" form="short">bk. chap.</term>
140 <!-- book is in the list of locator terms -->
141 <!-- chapter is in the list of locator terms -->
143142 <term name="document" form="short">doc.</term>
144143 <!-- figure is in the list of locator terms -->
145144 <term name="graphic" form="short">graph.</term>
179178 <term name="long-ordinal-01">पहला</term>
180179 <term name="long-ordinal-01" gender-form="feminine">पहली</term>
181180 <term name="long-ordinal-02">दूसरा</term>
182 <term name="long-ordinal-01" gender-form="feminine">दूसरी</term>
181 <term name="long-ordinal-02" gender-form="feminine">दूसरी</term>
183182 <term name="long-ordinal-03">तीसरा</term>
184183 <term name="long-ordinal-03" gender-form="feminine">तीसरी</term>
185184 <term name="long-ordinal-04">चौथा</term>
312311 </term>
313312
314313 <!-- SHORT LOCATOR FORMS -->
315 <term name="appendix">
314 <term name="appendix" form="short">
316315 <single>app.</single>
317316 <multiple>apps.</multiple>
318317 </term>
319 <term name="article-locator">
318 <term name="article-locator" form="short">
320319 <single>art.</single>
321320 <multiple>arts.</multiple>
322321 </term>
323 <term name="elocation">
322 <term name="elocation" form="short">
324323 <single>loc.</single>
325324 <multiple>locs.</multiple>
326325 </term>
327 <term name="equation">
326 <term name="equation" form="short">
328327 <single>eq.</single>
329328 <multiple>eqs.</multiple>
330329 </term>
331 <term name="rule">
330 <term name="rule" form="short">
332331 <single>r.</single>
333332 <multiple>rr.</multiple>
334333 </term>
335 <term name="scene">
334 <term name="scene" form="short">
336335 <single>sc.</single>
337336 <multiple>scs.</multiple>
338337 </term>
339 <term name="table">
338 <term name="table" form="short">
340339 <single>tbl.</single>
341340 <multiple>tbls.</multiple>
342341 </term>
343 <term name="timestamp"> <!-- generally blank -->
342 <term name="timestamp" form="short"> <!-- generally blank -->
344343 <single></single>
345344 <multiple></multiple>
346345 </term>
347 <term name="title-locator">
346 <term name="title-locator" form="short">
348347 <single>tit.</single>
349348 <multiple>tits.</multiple>
350349 </term>
6868 <term name="in">u</term>
6969 <term name="in press">u tisku</term>
7070 <term name="internet">internet</term>
71 <term name="interview">intervju</term>
7271 <term name="letter">pismo</term>
7372 <term name="no date">bez datuma</term>
7473 <term name="no date" form="short">bez dat.</term>
9291 <term name="article-magazine">magazine article</term>
9392 <term name="article-newspaper">newspaper article</term>
9493 <term name="bill">bill</term>
95 <term name="book">book</term>
94 <!-- book is in the list of locator terms -->
9695 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
96 <!-- chapter is in the list of locator terms -->
9897 <term name="classic">classic</term>
9998 <term name="collection">collection</term>
10099 <term name="dataset">dataset</term>
106105 <!-- figure is in the list of locator terms -->
107106 <term name="graphic">graphic</term>
108107 <term name="hearing">hearing</term>
109 <term name="interview">interview</term>
108 <term name="interview">intervju</term>
110109 <term name="legal_case">legal case</term>
111110 <term name="legislation">legislation</term>
112111 <term name="manuscript">manuscript</term>
137136 <term name="article-journal" form="short">journal art.</term>
138137 <term name="article-magazine" form="short">mag. art.</term>
139138 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
139 <!-- book is in the list of locator terms -->
140 <!-- chapter is in the list of locator terms -->
142141 <term name="document" form="short">doc.</term>
143142 <!-- figure is in the list of locator terms -->
144143 <term name="graphic" form="short">graph.</term>
296295 </term>
297296
298297 <!-- SHORT LOCATOR FORMS -->
299 <term name="appendix">
298 <term name="appendix" form="short">
300299 <single>app.</single>
301300 <multiple>apps.</multiple>
302301 </term>
303 <term name="article-locator">
302 <term name="article-locator" form="short">
304303 <single>art.</single>
305304 <multiple>arts.</multiple>
306305 </term>
307 <term name="elocation">
306 <term name="elocation" form="short">
308307 <single>loc.</single>
309308 <multiple>locs.</multiple>
310309 </term>
311 <term name="equation">
310 <term name="equation" form="short">
312311 <single>eq.</single>
313312 <multiple>eqs.</multiple>
314313 </term>
315 <term name="rule">
314 <term name="rule" form="short">
316315 <single>r.</single>
317316 <multiple>rr.</multiple>
318317 </term>
319 <term name="scene">
318 <term name="scene" form="short">
320319 <single>sc.</single>
321320 <multiple>scs.</multiple>
322321 </term>
323 <term name="table">
322 <term name="table" form="short">
324323 <single>tbl.</single>
325324 <multiple>tbls.</multiple>
326325 </term>
327 <term name="timestamp"> <!-- generally blank -->
326 <term name="timestamp" form="short"> <!-- generally blank -->
328327 <single></single>
329328 <multiple></multiple>
330329 </term>
331 <term name="title-locator">
330 <term name="title-locator" form="short">
332331 <single>tit.</single>
333332 <multiple>tits.</multiple>
334333 </term>
6868 <term name="in">in</term>
6969 <term name="in press">nyomtatás alatt</term>
7070 <term name="internet">internet</term>
71 <term name="interview">interjú</term>
7271 <term name="letter">levél</term>
7372 <term name="no date">évszám nélkül</term>
7473 <term name="no date" form="short">é. n.</term>
9291 <term name="article-magazine">magazine article</term>
9392 <term name="article-newspaper">newspaper article</term>
9493 <term name="bill">bill</term>
95 <term name="book">book</term>
94 <!-- book is in the list of locator terms -->
9695 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
96 <!-- chapter is in the list of locator terms -->
9897 <term name="classic">classic</term>
9998 <term name="collection">collection</term>
10099 <term name="dataset">dataset</term>
106105 <!-- figure is in the list of locator terms -->
107106 <term name="graphic">graphic</term>
108107 <term name="hearing">hearing</term>
109 <term name="interview">interview</term>
108 <term name="interview">interjú</term>
110109 <term name="legal_case">legal case</term>
111110 <term name="legislation">legislation</term>
112111 <term name="manuscript">manuscript</term>
137136 <term name="article-journal" form="short">journal art.</term>
138137 <term name="article-magazine" form="short">mag. art.</term>
139138 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
139 <!-- book is in the list of locator terms -->
140 <!-- chapter is in the list of locator terms -->
142141 <term name="document" form="short">doc.</term>
143142 <!-- figure is in the list of locator terms -->
144143 <term name="graphic" form="short">graph.</term>
296295 </term>
297296
298297 <!-- SHORT LOCATOR FORMS -->
299 <term name="appendix">
298 <term name="appendix" form="short">
300299 <single>app.</single>
301300 <multiple>apps.</multiple>
302301 </term>
303 <term name="article-locator">
302 <term name="article-locator" form="short">
304303 <single>art.</single>
305304 <multiple>arts.</multiple>
306305 </term>
307 <term name="elocation">
306 <term name="elocation" form="short">
308307 <single>loc.</single>
309308 <multiple>locs.</multiple>
310309 </term>
311 <term name="equation">
310 <term name="equation" form="short">
312311 <single>eq.</single>
313312 <multiple>eqs.</multiple>
314313 </term>
315 <term name="rule">
314 <term name="rule" form="short">
316315 <single>r.</single>
317316 <multiple>rr.</multiple>
318317 </term>
319 <term name="scene">
318 <term name="scene" form="short">
320319 <single>sc.</single>
321320 <multiple>scs.</multiple>
322321 </term>
323 <term name="table">
322 <term name="table" form="short">
324323 <single>tbl.</single>
325324 <multiple>tbls.</multiple>
326325 </term>
327 <term name="timestamp"> <!-- generally blank -->
326 <term name="timestamp" form="short"> <!-- generally blank -->
328327 <single></single>
329328 <multiple></multiple>
330329 </term>
331 <term name="title-locator">
330 <term name="title-locator" form="short">
332331 <single>tit.</single>
333332 <multiple>tits.</multiple>
334333 </term>
7474 <term name="in">dalam</term>
7575 <term name="in press">dalam proses cetakan</term>
7676 <term name="internet">internet</term>
77 <term name="interview">wawancara</term>
7877 <term name="letter">surat</term>
7978 <term name="no date">tanpa tanggal</term>
8079 <term name="no date" form="short">t.t.</term>
9897 <term name="article-magazine">magazine article</term>
9998 <term name="article-newspaper">newspaper article</term>
10099 <term name="bill">bill</term>
101 <term name="book">book</term>
100 <!-- book is in the list of locator terms -->
102101 <term name="broadcast">broadcast</term>
103 <term name="chapter">book chapter</term>
102 <!-- chapter is in the list of locator terms -->
104103 <term name="classic">classic</term>
105104 <term name="collection">collection</term>
106105 <term name="dataset">dataset</term>
112111 <!-- figure is in the list of locator terms -->
113112 <term name="graphic">graphic</term>
114113 <term name="hearing">hearing</term>
115 <term name="interview">interview</term>
114 <term name="interview">wawancara</term>
116115 <term name="legal_case">legal case</term>
117116 <term name="legislation">legislation</term>
118117 <term name="manuscript">manuscript</term>
143142 <term name="article-journal" form="short">journal art.</term>
144143 <term name="article-magazine" form="short">mag. art.</term>
145144 <term name="article-newspaper" form="short">newspaper art.</term>
146 <term name="book" form="short">bk.</term>
147 <term name="chapter" form="short">bk. chap.</term>
145 <!-- book is in the list of locator terms -->
146 <!-- chapter is in the list of locator terms -->
148147 <term name="document" form="short">doc.</term>
149148 <!-- figure is in the list of locator terms -->
150149 <term name="graphic" form="short">graph.</term>
308307 </term>
309308
310309 <!-- SHORT LOCATOR FORMS -->
311 <term name="appendix">
310 <term name="appendix" form="short">
312311 <single>app.</single>
313312 <multiple>apps.</multiple>
314313 </term>
315 <term name="article-locator">
314 <term name="article-locator" form="short">
316315 <single>art.</single>
317316 <multiple>arts.</multiple>
318317 </term>
319 <term name="elocation">
318 <term name="elocation" form="short">
320319 <single>loc.</single>
321320 <multiple>locs.</multiple>
322321 </term>
323 <term name="equation">
322 <term name="equation" form="short">
324323 <single>eq.</single>
325324 <multiple>eqs.</multiple>
326325 </term>
327 <term name="rule">
326 <term name="rule" form="short">
328327 <single>r.</single>
329328 <multiple>rr.</multiple>
330329 </term>
331 <term name="scene">
330 <term name="scene" form="short">
332331 <single>sc.</single>
333332 <multiple>scs.</multiple>
334333 </term>
335 <term name="table">
334 <term name="table" form="short">
336335 <single>tbl.</single>
337336 <multiple>tbls.</multiple>
338337 </term>
339 <term name="timestamp"> <!-- generally blank -->
338 <term name="timestamp" form="short"> <!-- generally blank -->
340339 <single></single>
341340 <multiple></multiple>
342341 </term>
343 <term name="title-locator">
342 <term name="title-locator" form="short">
344343 <single>tit.</single>
345344 <multiple>tits.</multiple>
346345 </term>
7171 <term name="in">í</term>
7272 <term name="in press">í prentun</term>
7373 <term name="internet">rafrænt</term>
74 <term name="interview">viðtal</term>
7574 <term name="letter">bréf</term>
7675 <term name="no date">engin dagsetning</term>
7776 <term name="no date" form="short">e.d.</term>
9594 <term name="article-magazine">magazine article</term>
9695 <term name="article-newspaper">newspaper article</term>
9796 <term name="bill">bill</term>
98 <term name="book">book</term>
97 <!-- book is in the list of locator terms -->
9998 <term name="broadcast">broadcast</term>
100 <term name="chapter">book chapter</term>
99 <!-- chapter is in the list of locator terms -->
101100 <term name="classic">classic</term>
102101 <term name="collection">collection</term>
103102 <term name="dataset">dataset</term>
109108 <!-- figure is in the list of locator terms -->
110109 <term name="graphic">graphic</term>
111110 <term name="hearing">hearing</term>
112 <term name="interview">interview</term>
111 <term name="interview">viðtal</term>
113112 <term name="legal_case">legal case</term>
114113 <term name="legislation">legislation</term>
115114 <term name="manuscript">manuscript</term>
140139 <term name="article-journal" form="short">journal art.</term>
141140 <term name="article-magazine" form="short">mag. art.</term>
142141 <term name="article-newspaper" form="short">newspaper art.</term>
143 <term name="book" form="short">bk.</term>
144 <term name="chapter" form="short">bk. chap.</term>
142 <!-- book is in the list of locator terms -->
143 <!-- chapter is in the list of locator terms -->
145144 <term name="document" form="short">doc.</term>
146145 <!-- figure is in the list of locator terms -->
147146 <term name="graphic" form="short">graph.</term>
299298 </term>
300299
301300 <!-- SHORT LOCATOR FORMS -->
302 <term name="appendix">
301 <term name="appendix" form="short">
303302 <single>app.</single>
304303 <multiple>apps.</multiple>
305304 </term>
306 <term name="article-locator">
305 <term name="article-locator" form="short">
307306 <single>art.</single>
308307 <multiple>arts.</multiple>
309308 </term>
310 <term name="elocation">
309 <term name="elocation" form="short">
311310 <single>loc.</single>
312311 <multiple>locs.</multiple>
313312 </term>
314 <term name="equation">
313 <term name="equation" form="short">
315314 <single>eq.</single>
316315 <multiple>eqs.</multiple>
317316 </term>
318 <term name="rule">
317 <term name="rule" form="short">
319318 <single>r.</single>
320319 <multiple>rr.</multiple>
321320 </term>
322 <term name="scene">
321 <term name="scene" form="short">
323322 <single>sc.</single>
324323 <multiple>scs.</multiple>
325324 </term>
326 <term name="table">
325 <term name="table" form="short">
327326 <single>tbl.</single>
328327 <multiple>tbls.</multiple>
329328 </term>
330 <term name="timestamp"> <!-- generally blank -->
329 <term name="timestamp" form="short"> <!-- generally blank -->
331330 <single></single>
332331 <multiple></multiple>
333332 </term>
334 <term name="title-locator">
333 <term name="title-locator" form="short">
335334 <single>tit.</single>
336335 <multiple>tits.</multiple>
337336 </term>
11 <locale xmlns="http://purl.org/net/xbiblio/csl" version="1.0" xml:lang="it-IT">
22 <info>
33 <translator>
4 <name>FI App Development</name>
5 </translator>
6 <translator>
7 <name>Monica Thuegaz</name>
4 <name>Filippo Vomiero</name>
5 <email>filippo.vomiero@unipd.it</email>
86 </translator>
97 <rights license="http://creativecommons.org/licenses/by-sa/3.0/">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 License</rights>
10 <updated>2012-07-04T23:31:02+00:00</updated>
8 <updated>2022-07-07T17:56:02+01:00</updated>
119 </info>
1210 <style-options punctuation-in-quote="false"/>
1311 <date form="text">
2119 <date-part name="year"/>
2220 </date>
2321 <terms>
24 <term name="advance-online-publication">advance online publication</term>
22 <term name="advance-online-publication">pubblicazione online ad accesso anticipato</term>
2523 <term name="album">album</term>
26 <term name="audio-recording">audio recording</term>
24 <term name="audio-recording">registrazione audio</term>
2725 <term name="film">film</term>
28 <term name="henceforth">henceforth</term>
26 <term name="henceforth">d'ora in poi</term>
2927 <term name="loc-cit">loc. cit.</term> <!-- like ibid., the abbreviated form is the regular form -->
30 <term name="no-place">no place</term>
31 <term name="no-place" form="short">n.p.</term>
32 <term name="no-publisher">no publisher</term> <!-- sine nomine -->
33 <term name="no-publisher" form="short">n.p.</term>
34 <term name="on">on</term>
28 <term name="no-place">sine loco</term>
29 <term name="no-place" form="short">s.l.</term>
30 <term name="no-publisher">sine nomine</term> <!-- sine nomine -->
31 <term name="no-publisher" form="short">s.n.</term>
32 <term name="on">su</term>
3533 <term name="op-cit">op. cit.</term> <!-- like ibid., the abbreviated form is the regular form -->
36 <term name="original-work-published">original work published</term>
34 <term name="original-work-published">opera originale pubblicata</term>
3735 <term name="personal-communication">comunicazione personale</term>
3836 <term name="podcast">podcast</term>
39 <term name="podcast-episode">podcast episode</term>
37 <term name="podcast-episode">episodio di podcast</term>
4038 <term name="preprint">preprint</term>
41 <term name="radio-broadcast">radio broadcast</term>
42 <term name="radio-series">radio series</term>
43 <term name="radio-series-episode">radio series episode</term>
44 <term name="special-issue">special issue</term>
45 <term name="special-section">special section</term>
46 <term name="television-broadcast">television broadcast</term>
47 <term name="television-series">television series</term>
48 <term name="television-series-episode">television series episode</term>
39 <term name="radio-broadcast">trasmissione radiofonica</term>
40 <term name="radio-series">serie radiofonica</term>
41 <term name="radio-series-episode">episodio di serie radiofonica</term>
42 <term name="special-issue">edizione speciale</term>
43 <term name="special-section">sezione speciale</term>
44 <term name="television-broadcast">trasmissione televisiva</term>
45 <term name="television-series">serie televisiva</term>
46 <term name="television-series-episode">episodio di serie televisiva</term>
4947 <term name="video">video</term>
50 <term name="working-paper">working paper</term>
48 <term name="working-paper">documento di lavoro</term>
5149 <term name="accessed">consultato</term>
5250 <term name="and">e</term>
5351 <term name="and others">e altri</term>
6664 </term>
6765 <term name="edition" form="short">ed.</term>
6866 <term name="et-al">et al.</term>
69 <term name="forthcoming">futuro</term>
67 <term name="forthcoming">in corso di pubblicazione</term>
7068 <term name="from">da</term>
71 <term name="ibid">ibid.</term>
7269 <term name="ibid">ibidem</term>
7370 <term name="ibid" form="short">ibid.</term>
7471 <term name="in">in</term>
7572 <term name="in press">in stampa</term>
7673 <term name="internet">internet</term>
77 <term name="interview">intervista</term>
7874 <term name="letter">lettera</term>
79 <term name="no date">senza data</term>
75 <term name="no date">sine data</term>
8076 <term name="no date" form="short">s.d.</term>
8177 <term name="online">online</term>
8278 <term name="presented at">presentato al</term>
8379 <term name="reference">
84 <single>reference</single>
85 <multiple>references</multiple>
80 <single>riferimento</single>
81 <multiple>riferimenti</multiple>
8682 </term>
8783 <term name="reference" form="short">
88 <single>ref.</single>
89 <multiple>refs.</multiple>
84 <single>rif.</single>
85 <multiple>rif.</multiple>
9086 </term>
9187 <term name="retrieved">recuperato</term>
9288 <term name="scale">scala</term>
9490
9591 <!-- LONG ITEM TYPE FORMS -->
9692 <term name="article">preprint</term>
97 <term name="article-journal">journal article</term>
98 <term name="article-magazine">magazine article</term>
99 <term name="article-newspaper">newspaper article</term>
100 <term name="bill">bill</term>
101 <term name="book">book</term>
93 <term name="article-journal">articolo di rivista</term>
94 <term name="article-magazine">articolo di rivista generalista</term>
95 <term name="article-newspaper">articolo di giornale</term>
96 <term name="bill">proposta di legge</term>
97 <!-- book is in the list of locator terms -->
10298 <term name="broadcast">broadcast</term>
103 <term name="chapter">book chapter</term>
104 <term name="classic">classic</term>
105 <term name="collection">collection</term>
99 <!-- chapter is in the list of locator terms -->
100 <term name="classic">classico</term>
101 <term name="collection">collezione</term>
106102 <term name="dataset">dataset</term>
107 <term name="document">document</term>
108 <term name="entry">entry</term>
109 <term name="entry-dictionary">dictionary entry</term>
110 <term name="entry-encyclopedia">encyclopedia entry</term>
111 <term name="event">event</term>
103 <term name="document">documento</term>
104 <term name="entry">voce</term>
105 <term name="entry-dictionary">voce di dizionario</term>
106 <term name="entry-encyclopedia">voce di enciclopedia</term>
107 <term name="event">evento</term>
112108 <!-- figure is in the list of locator terms -->
113 <term name="graphic">graphic</term>
114 <term name="hearing">hearing</term>
115 <term name="interview">interview</term>
116 <term name="legal_case">legal case</term>
117 <term name="legislation">legislation</term>
118 <term name="manuscript">manuscript</term>
119 <term name="map">map</term>
120 <term name="motion_picture">video recording</term>
121 <term name="musical_score">musical score</term>
122 <term name="pamphlet">pamphlet</term>
123 <term name="paper-conference">conference paper</term>
124 <term name="patent">patent</term>
125 <term name="performance">performance</term>
126 <term name="periodical">periodical</term>
109 <term name="graphic">opera d'arte</term>
110 <term name="hearing">udienza</term>
111 <term name="interview">intervista</term>
112 <term name="legal_case">causa</term>
113 <term name="legislation">legislazione</term>
114 <term name="manuscript">manoscritto</term>
115 <term name="map">mappa</term>
116 <term name="motion_picture">film</term>
117 <term name="musical_score">spartito musicale</term>
118 <term name="pamphlet">opuscolo</term>
119 <term name="paper-conference">atto di convegno</term>
120 <term name="patent">brevetto</term>
121 <term name="performance">esecuzione</term>
122 <term name="periodical">periodico</term>
127123 <term name="personal_communication">comunicazione personale</term>
128 <term name="post">post</term>
129 <term name="post-weblog">blog post</term>
130 <term name="regulation">regulation</term>
124 <term name="post">messaggio</term>
125 <term name="post-weblog">messaggio di blog</term>
126 <term name="regulation">decreto</term>
131127 <term name="report">report</term>
132128 <term name="review">review</term>
133 <term name="review-book">book review</term>
129 <term name="review-book">recensione di libro</term>
134130 <term name="software">software</term>
135 <term name="song">audio recording</term>
136 <term name="speech">presentation</term>
137 <term name="standard">standard</term>
138 <term name="thesis">thesis</term>
139 <term name="treaty">treaty</term>
140 <term name="webpage">webpage</term>
131 <term name="song">registrazione audio</term>
132 <term name="speech">presentazione</term>
133 <term name="standard">norma</term>
134 <term name="thesis">tesi</term>
135 <term name="treaty">trattato</term>
136 <term name="webpage">pagina web</term>
141137
142138 <!-- SHORT ITEM TYPE FORMS -->
143 <term name="article-journal" form="short">journal art.</term>
144 <term name="article-magazine" form="short">mag. art.</term>
145 <term name="article-newspaper" form="short">newspaper art.</term>
146 <term name="book" form="short">bk.</term>
147 <term name="chapter" form="short">bk. chap.</term>
139 <term name="article-journal" form="short">art. di riv.</term>
140 <term name="article-magazine" form="short">art. di riv</term>
141 <term name="article-newspaper" form="short">art. di g.</term>
142 <!-- book is in the list of locator terms -->
143 <!-- chapter is in the list of locator terms -->
148144 <term name="document" form="short">doc.</term>
149145 <!-- figure is in the list of locator terms -->
150 <term name="graphic" form="short">graph.</term>
146 <term name="graphic" form="short">op. d'arte</term>
151147 <term name="interview" form="short">interv.</term>
152 <term name="manuscript" form="short">MS</term>
153 <term name="motion_picture" form="short">video rec.</term>
148 <term name="manuscript" form="short">ms.</term>
149 <term name="motion_picture" form="short">film</term>
154150 <term name="report" form="short">rep.</term>
155151 <term name="review" form="short">rev.</term>
156 <term name="review-book" form="short">bk. rev.</term>
157 <term name="song" form="short">audio rec.</term>
152 <term name="review-book" form="short">rec. di l.</term>
153 <term name="song" form="short">reg. audio</term>
158154
159155 <!-- HISTORICAL ERA TERMS -->
160156 <term name="ad">d.C.</term>
211207
212208 <!-- LONG LOCATOR FORMS -->
213209 <term name="act">
214 <single>act</single>
215 <multiple>acts</multiple>
210 <single>atto</single>
211 <multiple>atto</multiple>
216212 </term>
217213 <term name="appendix">
218 <single>appendix</single>
219 <multiple>appendices</multiple>
214 <single>appendice</single>
215 <multiple>appendici</multiple>
220216 </term>
221217 <term name="article-locator">
222 <single>article</single>
223 <multiple>articles</multiple>
218 <single>articolo</single>
219 <multiple>articoli</multiple>
224220 </term>
225221 <term name="canon">
226 <single>canon</single>
227 <multiple>canons</multiple>
222 <single>canone</single>
223 <multiple>canoni</multiple>
228224 </term>
229225 <term name="elocation">
230 <single>location</single>
231 <multiple>locations</multiple>
226 <single>indirizzo</single>
227 <multiple>indirizzi</multiple>
232228 </term>
233229 <term name="equation">
234 <single>equation</single>
235 <multiple>equations</multiple>
230 <single>equazione</single>
231 <multiple>equazioni</multiple>
236232 </term>
237233 <term name="rule">
238 <single>rule</single>
239 <multiple>rules</multiple>
234 <single>regola</single>
235 <multiple>regole</multiple>
240236 </term>
241237 <term name="scene">
242 <single>scene</single>
243 <multiple>scenes</multiple>
238 <single>scena</single>
239 <multiple>scene</multiple>
244240 </term>
245241 <term name="table">
246 <single>table</single>
247 <multiple>tables</multiple>
242 <single>tavola</single>
243 <multiple>tavole</multiple>
248244 </term>
249245 <term name="timestamp"> <!-- generally blank -->
250246 <single></single>
251247 <multiple></multiple>
252248 </term>
253249 <term name="title-locator">
254 <single>title</single>
255 <multiple>titles</multiple>
250 <single>titolo</single>
251 <multiple>titoli</multiple>
256252 </term>
257253 <term name="book">
258254 <single>libro</single>
275271 <multiple>fogli</multiple>
276272 </term>
277273 <term name="issue" gender="masculine">
278 <single>numero</single>
279 <multiple>numeri</multiple>
274 <single>fascicolo</single>
275 <multiple>fascicoli</multiple>
280276 </term>
281277 <term name="line">
282278 <single>riga</single>
299295 <multiple>pagine</multiple>
300296 </term>
301297 <term name="paragraph">
302 <single>capoverso</single>
303 <multiple>capoversi</multiple>
298 <single>paragrafo</single>
299 <multiple>paragrafi</multiple>
304300 </term>
305301 <term name="part">
306302 <single>parte</single>
307303 <multiple>parti</multiple>
308304 </term>
309305 <term name="section">
310 <single>paragrafo</single>
311 <multiple>paragrafi</multiple>
306 <single>sezione</single>
307 <multiple>sezioni</multiple>
312308 </term>
313309 <term name="sub-verbo">
314310 <single>sub verbo</single>
324320 </term>
325321
326322 <!-- SHORT LOCATOR FORMS -->
327 <term name="appendix">
323 <term name="appendix" form="short">
328324 <single>app.</single>
329 <multiple>apps.</multiple>
330 </term>
331 <term name="article-locator">
325 <multiple>app.</multiple>
326 </term>
327 <term name="article-locator" form="short">
332328 <single>art.</single>
333 <multiple>arts.</multiple>
334 </term>
335 <term name="elocation">
329 <multiple>art.</multiple>
330 </term>
331 <term name="elocation" form="short">
336332 <single>loc.</single>
337333 <multiple>locs.</multiple>
338334 </term>
339 <term name="equation">
335 <term name="equation" form="short">
340336 <single>eq.</single>
341 <multiple>eqs.</multiple>
342 </term>
343 <term name="rule">
337 <multiple>eq.</multiple>
338 </term>
339 <term name="rule" form="short">
344340 <single>r.</single>
345 <multiple>rr.</multiple>
346 </term>
347 <term name="scene">
341 <multiple>r.</multiple>
342 </term>
343 <term name="scene" form="short">
348344 <single>sc.</single>
349 <multiple>scs.</multiple>
350 </term>
351 <term name="table">
352 <single>tbl.</single>
353 <multiple>tbls.</multiple>
354 </term>
355 <term name="timestamp"> <!-- generally blank -->
345 <multiple>sc.</multiple>
346 </term>
347 <term name="table" form="short">
348 <single>tab.</single>
349 <multiple>tab.</multiple>
350 </term>
351 <term name="timestamp" form="short"> <!-- generally blank -->
356352 <single></single>
357353 <multiple></multiple>
358354 </term>
359 <term name="title-locator">
355 <term name="title-locator" form="short">
360356 <single>tit.</single>
361357 <multiple>tits.</multiple>
362358 </term>
368364 <term name="column" form="short">col.</term>
369365 <term name="figure" form="short">fig.</term>
370366 <term name="folio" form="short">fgl.</term>
371 <term name="issue" form="short">n.</term>
372 <term name="line" form="short">l.</term>
367 <term name="issue" form="short">fasc.</term>
368 <term name="line" form="short">r.</term>
373369 <term name="note" form="short">n.</term>
374370 <term name="opus" form="short">op.</term>
375371 <term name="page" form="short">
376 <single>pag.</single>
377 <multiple>pagg.</multiple>
372 <single>p.</single>
373 <multiple>pp.</multiple>
378374 </term>
379375 <term name="number-of-pages" form="short">
380 <single>pag.</single>
381 <multiple>pagg.</multiple>
382 </term>
383 <term name="paragraph" form="short">cpv.</term>
376 <single>p.</single>
377 <multiple>pp.</multiple>
378 </term>
379 <term name="paragraph" form="short">par.</term>
384380 <term name="part" form="short">pt.</term>
385 <term name="section" form="short">par.</term>
381 <term name="section" form="short">sez.</term>
386382 <term name="sub-verbo" form="short">
387383 <single>s.v.</single>
388384 <multiple>s.vv.</multiple>
408404
409405 <!-- LONG ROLE FORMS -->
410406 <term name="chair">
411 <single>chair</single>
412 <multiple>chairs</multiple>
407 <single>presidente</single>
408 <multiple>presidenti</multiple>
413409 </term>
414410 <term name="compiler">
415 <single>compiler</single>
416 <multiple>compilers</multiple>
411 <single>compilatore</single>
412 <multiple>compilatori</multiple>
417413 </term>
418414 <term name="contributor">
419 <single>contributor</single>
420 <multiple>contributors</multiple>
415 <single>collaboratore</single>
416 <multiple>collaboratori</multiple>
421417 </term>
422418 <term name="curator">
423 <single>curator</single>
424 <multiple>curators</multiple>
419 <single>curatore</single>
420 <multiple>curatori</multiple>
425421 </term>
426422 <term name="executive-producer">
427 <single>executive producer</single>
428 <multiple>executive producers</multiple>
423 <single>produttore esecutivo</single>
424 <multiple>produttori esecutivi</multiple>
429425 </term>
430426 <term name="guest">
431 <single>guest</single>
432 <multiple>guests</multiple>
427 <single>ospite</single>
428 <multiple>ospiti</multiple>
433429 </term>
434430 <term name="host">
435 <single>host</single>
436 <multiple>hosts</multiple>
431 <single>conduttore</single>
432 <multiple>conduttori</multiple>
437433 </term>
438434 <term name="narrator">
439 <single>narrator</single>
440 <multiple>narrators</multiple>
435 <single>narratore</single>
436 <multiple>narratori</multiple>
441437 </term>
442438 <term name="organizer">
443 <single>organizer</single>
444 <multiple>organizers</multiple>
439 <single>organizzatore</single>
440 <multiple>organizzatori</multiple>
445441 </term>
446442 <term name="performer">
447 <single>performer</single>
448 <multiple>performers</multiple>
443 <single>esecutore</single>
444 <multiple>esecutori</multiple>
449445 </term>
450446 <term name="producer">
451 <single>producer</single>
452 <multiple>producers</multiple>
447 <single>produttore</single>
448 <multiple>produttori</multiple>
453449 </term>
454450 <term name="script-writer">
455 <single>writer</single>
456 <multiple>writers</multiple>
451 <single>sceneggiatore</single>
452 <multiple>sceneggiatori</multiple>
457453 </term>
458454 <term name="series-creator">
459 <single>series creator</single>
460 <multiple>series creators</multiple>
455 <single>autore della serie</single>
456 <multiple>autori della serie</multiple>
461457 </term>
462458 <term name="director">
463 <single>director</single>
464 <multiple>directors</multiple>
459 <single>regista</single>
460 <multiple>registi</multiple>
465461 </term>
466462 <term name="editor">
467463 <single>curatore</single>
468464 <multiple>curatori</multiple>
469465 </term>
470466 <term name="editorial-director">
471 <single>editor</single>
472 <multiple>editors</multiple>
467 <single>direttore editoriale</single>
468 <multiple>direttori editoriali</multiple>
473469 </term>
474470 <term name="illustrator">
475471 <single>illustratore</single>
487483 <!-- SHORT ROLE FORMS -->
488484 <term name="compiler" form="short">
489485 <single>comp.</single>
490 <multiple>comps.</multiple>
486 <multiple>comp.</multiple>
491487 </term>
492488 <term name="contributor" form="short">
493 <single>contrib.</single>
494 <multiple>contribs.</multiple>
489 <single>collab.</single>
490 <multiple>collab.</multiple>
495491 </term>
496492 <term name="curator" form="short">
497493 <single>cur.</single>
498 <multiple>curs.</multiple>
494 <multiple>cur.</multiple>
499495 </term>
500496 <term name="executive-producer" form="short">
501 <single>exec. prod.</single>
502 <multiple>exec. prods.</multiple>
497 <single>prod.es.</single>
498 <multiple>prod. es.</multiple>
503499 </term>
504500 <term name="narrator" form="short">
505501 <single>narr.</single>
506 <multiple>narrs.</multiple>
502 <multiple>narr.</multiple>
507503 </term>
508504 <term name="organizer" form="short">
509505 <single>org.</single>
510 <multiple>orgs.</multiple>
506 <multiple>org.</multiple>
511507 </term>
512508 <term name="performer" form="short">
513 <single>perf.</single>
514 <multiple>perfs.</multiple>
509 <single>esec.</single>
510 <multiple>esec.</multiple>
515511 </term>
516512 <term name="producer" form="short">
517513 <single>prod.</single>
518 <multiple>prods.</multiple>
514 <multiple>prod.</multiple>
519515 </term>
520516 <term name="script-writer" form="short">
521 <single>writ.</single>
522 <multiple>writs.</multiple>
517 <single>scen.</single>
518 <multiple>scen.</multiple>
523519 </term>
524520 <term name="series-creator" form="short">
525 <single>cre.</single>
526 <multiple>cres.</multiple>
521 <single>aut. d. serie</single>
522 <multiple>aut. d. serie</multiple>
527523 </term>
528524 <term name="director" form="short">
529 <single>dir.</single>
530 <multiple>dir.</multiple>
525 <single>reg.</single>
526 <multiple>reg.</multiple>
531527 </term>
532528 <term name="editor" form="short">
533529 <single>a c. di</single>
534530 <multiple>a c. di</multiple>
535531 </term>
536532 <term name="editorial-director" form="short">
537 <single>ed.</single>
538 <multiple>ed.</multiple>
533 <single>dir. ed.</single>
534 <multiple>dir. ed.</multiple>
539535 </term>
540536 <term name="illustrator" form="short">
541537 <single>ill.</single>
546542 <multiple>trad.</multiple>
547543 </term>
548544 <term name="editortranslator" form="short">
549 <single>a c. di e trad. da</single>
550 <multiple>a c. di e trad. da</multiple>
545 <single>cur. e trad.</single>
546 <multiple>cur. e trad.</multiple>
551547 </term>
552548
553549 <!-- VERB ROLE FORMS -->
554 <term name="chair" form="verb">chaired by</term>
555 <term name="compiler" form="verb">compiled by</term>
556 <term name="contributor" form="verb">with</term>
557 <term name="curator" form="verb">curated by</term>
558 <term name="executive-producer" form="verb">executive produced by</term>
559 <term name="guest" form="verb">with guest</term>
560 <term name="host" form="verb">hosted by</term>
561 <term name="narrator" form="verb">narrated by</term>
562 <term name="organizer" form="verb">organized by</term>
563 <term name="performer" form="verb">performed by</term>
564 <term name="producer" form="verb">produced by</term>
565 <term name="script-writer" form="verb">written by</term>
566 <term name="series-creator" form="verb">created by</term>
550 <term name="chair" form="verb">presieduto da</term>
551 <term name="compiler" form="verb">compilato da</term>
552 <term name="contributor" form="verb">con un contributo di</term>
553 <term name="curator" form="verb">a cura di</term>
554 <term name="executive-producer" form="verb">produzione esecutiva di</term>
555 <term name="guest" form="verb">con ospite</term>
556 <term name="host" form="verb">condotto da</term>
557 <term name="narrator" form="verb">narrato da</term>
558 <term name="organizer" form="verb">organizzato da</term>
559 <term name="performer" form="verb">esecuzione di</term>
560 <term name="producer" form="verb">prodotto da</term>
561 <term name="script-writer" form="verb">scritto da</term>
562 <term name="series-creator" form="verb">creato da</term>
567563 <term name="container-author" form="verb">di</term>
568564 <term name="director" form="verb">diretto da</term>
569565 <term name="editor" form="verb">a cura di</term>
570 <term name="editorial-director" form="verb">edited by</term>
566 <term name="editorial-director" form="verb">direzione editoriale di</term>
571567 <term name="illustrator" form="verb">illustrato da</term>
572568 <term name="interviewer" form="verb">intervista di</term>
573569 <term name="recipient" form="verb">a</term>
576572 <term name="editortranslator" form="verb">a cura di e tradotto da</term>
577573
578574 <!-- SHORT VERB ROLE FORMS -->
579 <term name="compiler" form="verb-short">comp. by</term>
580 <term name="contributor" form="verb-short">w.</term>
581 <term name="curator" form="verb-short">cur. by</term>
582 <term name="executive-producer" form="verb-short">exec. prod. by</term>
583 <term name="guest" form="verb-short">w. guest</term>
584 <term name="host" form="verb-short">hosted by</term>
585 <term name="narrator" form="verb-short">narr. by</term>
586 <term name="organizer" form="verb-short">org. by</term>
587 <term name="performer" form="verb-short">perf. by</term>
588 <term name="producer" form="verb-short">prod. by</term>
589 <term name="script-writer" form="verb-short">writ. by</term>
590 <term name="series-creator" form="verb-short">cre. by</term>
575 <term name="compiler" form="verb-short">comp. da</term>
576 <term name="contributor" form="verb-short">con un contrib. di</term>
577 <term name="curator" form="verb-short">a c. di</term>
578 <term name="executive-producer" form="verb-short">prod. esec. di</term>
579 <term name="guest" form="verb-short">con osp.</term>
580 <term name="host" form="verb-short">cond. da</term>
581 <term name="narrator" form="verb-short">narr. da</term>
582 <term name="organizer" form="verb-short">org. da</term>
583 <term name="performer" form="verb-short">esec. di</term>
584 <term name="producer" form="verb-short">prod. da</term>
585 <term name="script-writer" form="verb-short">scr. da</term>
586 <term name="series-creator" form="verb-short">cre. da</term>
591587 <term name="director" form="verb-short">dir. da</term>
592588 <term name="editor" form="verb-short">a c. di</term>
593 <term name="editorial-director" form="verb-short">ed.</term>
589 <term name="editorial-director" form="verb-short">dir. ed. di</term>
594590 <term name="illustrator" form="verb-short">ill. da</term>
595591 <term name="translator" form="verb-short">trad. da</term>
596592 <term name="editortranslator" form="verb-short">a c. di e trad. da</term>
6868 <term name="in"></term>
6969 <term name="in press">in press</term>
7070 <term name="internet">internet</term>
71 <term name="interview">interview</term>
7271 <term name="letter">手紙</term>
7372 <term name="no date">no date</term>
7473 <term name="no date" form="short">日付なし</term>
9291 <term name="article-magazine">magazine article</term>
9392 <term name="article-newspaper">newspaper article</term>
9493 <term name="bill">bill</term>
95 <term name="book">book</term>
94 <!-- book is in the list of locator terms -->
9695 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
96 <!-- chapter is in the list of locator terms -->
9897 <term name="classic">classic</term>
9998 <term name="collection">collection</term>
10099 <term name="dataset">dataset</term>
137136 <term name="article-journal" form="short">journal art.</term>
138137 <term name="article-magazine" form="short">mag. art.</term>
139138 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
139 <!-- book is in the list of locator terms -->
140 <!-- chapter is in the list of locator terms -->
142141 <term name="document" form="short">doc.</term>
143142 <!-- figure is in the list of locator terms -->
144143 <term name="graphic" form="short">graph.</term>
302301 </term>
303302
304303 <!-- SHORT LOCATOR FORMS -->
305 <term name="appendix">
304 <term name="appendix" form="short">
306305 <single>app.</single>
307306 <multiple>apps.</multiple>
308307 </term>
309 <term name="article-locator">
308 <term name="article-locator" form="short">
310309 <single>art.</single>
311310 <multiple>arts.</multiple>
312311 </term>
313 <term name="elocation">
312 <term name="elocation" form="short">
314313 <single>loc.</single>
315314 <multiple>locs.</multiple>
316315 </term>
317 <term name="equation">
316 <term name="equation" form="short">
318317 <single>eq.</single>
319318 <multiple>eqs.</multiple>
320319 </term>
321 <term name="rule">
320 <term name="rule" form="short">
322321 <single>r.</single>
323322 <multiple>rr.</multiple>
324323 </term>
325 <term name="scene">
324 <term name="scene" form="short">
326325 <single>sc.</single>
327326 <multiple>scs.</multiple>
328327 </term>
329 <term name="table">
328 <term name="table" form="short">
330329 <single>tbl.</single>
331330 <multiple>tbls.</multiple>
332331 </term>
333 <term name="timestamp"> <!-- generally blank -->
332 <term name="timestamp" form="short"> <!-- generally blank -->
334333 <single></single>
335334 <multiple></multiple>
336335 </term>
337 <term name="title-locator">
336 <term name="title-locator" form="short">
338337 <single>tit.</single>
339338 <multiple>tits.</multiple>
340339 </term>
6565 <term name="in">in</term>
6666 <term name="in press">in press</term>
6767 <term name="internet">internet</term>
68 <term name="interview">interview</term>
6968 <term name="letter">letter</term>
7069 <term name="no date">no date</term>
7170 <term name="no date" form="short">n.d.</term>
8988 <term name="article-magazine">magazine article</term>
9089 <term name="article-newspaper">newspaper article</term>
9190 <term name="bill">bill</term>
92 <term name="book">book</term>
91 <!-- book is in the list of locator terms -->
9392 <term name="broadcast">broadcast</term>
94 <term name="chapter">book chapter</term>
93 <!-- chapter is in the list of locator terms -->
9594 <term name="classic">classic</term>
9695 <term name="collection">collection</term>
9796 <term name="dataset">dataset</term>
134133 <term name="article-journal" form="short">journal art.</term>
135134 <term name="article-magazine" form="short">mag. art.</term>
136135 <term name="article-newspaper" form="short">newspaper art.</term>
137 <term name="book" form="short">bk.</term>
138 <term name="chapter" form="short">bk. chap.</term>
136 <!-- book is in the list of locator terms -->
137 <!-- chapter is in the list of locator terms -->
139138 <term name="document" form="short">doc.</term>
140139 <!-- figure is in the list of locator terms -->
141140 <term name="graphic" form="short">graph.</term>
299298 </term>
300299
301300 <!-- SHORT LOCATOR FORMS -->
302 <term name="appendix">
301 <term name="appendix" form="short">
303302 <single>app.</single>
304303 <multiple>apps.</multiple>
305304 </term>
306 <term name="article-locator">
305 <term name="article-locator" form="short">
307306 <single>art.</single>
308307 <multiple>arts.</multiple>
309308 </term>
310 <term name="elocation">
309 <term name="elocation" form="short">
311310 <single>loc.</single>
312311 <multiple>locs.</multiple>
313312 </term>
314 <term name="equation">
313 <term name="equation" form="short">
315314 <single>eq.</single>
316315 <multiple>eqs.</multiple>
317316 </term>
318 <term name="rule">
317 <term name="rule" form="short">
319318 <single>r.</single>
320319 <multiple>rr.</multiple>
321320 </term>
322 <term name="scene">
321 <term name="scene" form="short">
323322 <single>sc.</single>
324323 <multiple>scs.</multiple>
325324 </term>
326 <term name="table">
325 <term name="table" form="short">
327326 <single>tbl.</single>
328327 <multiple>tbls.</multiple>
329328 </term>
330 <term name="timestamp"> <!-- generally blank -->
329 <term name="timestamp" form="short"> <!-- generally blank -->
331330 <single></single>
332331 <multiple></multiple>
333332 </term>
334 <term name="title-locator">
333 <term name="title-locator" form="short">
335334 <single>tit.</single>
336335 <multiple>tits.</multiple>
337336 </term>
6565 <term name="in">in</term>
6666 <term name="in press">in press</term>
6767 <term name="internet">internet</term>
68 <term name="interview">interview</term>
6968 <term name="letter">편지</term>
7069 <term name="no date">no date</term>
7170 <term name="no date" form="short">일자 없음</term>
8988 <term name="article-magazine">magazine article</term>
9089 <term name="article-newspaper">newspaper article</term>
9190 <term name="bill">bill</term>
92 <term name="book">book</term>
91 <!-- book is in the list of locator terms -->
9392 <term name="broadcast">broadcast</term>
94 <term name="chapter">book chapter</term>
93 <!-- chapter is in the list of locator terms -->
9594 <term name="classic">classic</term>
9695 <term name="collection">collection</term>
9796 <term name="dataset">dataset</term>
134133 <term name="article-journal" form="short">journal art.</term>
135134 <term name="article-magazine" form="short">mag. art.</term>
136135 <term name="article-newspaper" form="short">newspaper art.</term>
137 <term name="book" form="short">bk.</term>
138 <term name="chapter" form="short">bk. chap.</term>
136 <!-- book is in the list of locator terms -->
137 <!-- chapter is in the list of locator terms -->
139138 <term name="document" form="short">doc.</term>
140139 <!-- figure is in the list of locator terms -->
141140 <term name="graphic" form="short">graph.</term>
299298 </term>
300299
301300 <!-- SHORT LOCATOR FORMS -->
302 <term name="appendix">
301 <term name="appendix" form="short">
303302 <single>app.</single>
304303 <multiple>apps.</multiple>
305304 </term>
306 <term name="article-locator">
305 <term name="article-locator" form="short">
307306 <single>art.</single>
308307 <multiple>arts.</multiple>
309308 </term>
310 <term name="elocation">
309 <term name="elocation" form="short">
311310 <single>loc.</single>
312311 <multiple>locs.</multiple>
313312 </term>
314 <term name="equation">
313 <term name="equation" form="short">
315314 <single>eq.</single>
316315 <multiple>eqs.</multiple>
317316 </term>
318 <term name="rule">
317 <term name="rule" form="short">
319318 <single>r.</single>
320319 <multiple>rr.</multiple>
321320 </term>
322 <term name="scene">
321 <term name="scene" form="short">
323322 <single>sc.</single>
324323 <multiple>scs.</multiple>
325324 </term>
326 <term name="table">
325 <term name="table" form="short">
327326 <single>tbl.</single>
328327 <multiple>tbls.</multiple>
329328 </term>
330 <term name="timestamp"> <!-- generally blank -->
329 <term name="timestamp" form="short"> <!-- generally blank -->
331330 <single></single>
332331 <multiple></multiple>
333332 </term>
334 <term name="title-locator">
333 <term name="title-locator" form="short">
335334 <single>tit.</single>
336335 <multiple>tits.</multiple>
337336 </term>
6868 <term name="in">in</term>
6969 <term name="in press">impressorio</term>
7070 <term name="internet">interrete</term>
71 <term name="interview">congressus</term>
7271 <term name="letter">epistula</term>
7372 <term name="no date">sine die</term>
7473 <term name="no date" form="short">s.d.</term>
9291 <term name="article-magazine">magazine article</term>
9392 <term name="article-newspaper">newspaper article</term>
9493 <term name="bill">bill</term>
95 <term name="book">book</term>
94 <!-- book is in the list of locator terms -->
9695 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
96 <!-- chapter is in the list of locator terms -->
9897 <term name="classic">classic</term>
9998 <term name="collection">collection</term>
10099 <term name="dataset">dataset</term>
106105 <!-- figure is in the list of locator terms -->
107106 <term name="graphic">graphic</term>
108107 <term name="hearing">hearing</term>
109 <term name="interview">interview</term>
108 <term name="interview">congressus</term>
110109 <term name="legal_case">legal case</term>
111110 <term name="legislation">legislation</term>
112111 <term name="manuscript">manuscript</term>
137136 <term name="article-journal" form="short">journal art.</term>
138137 <term name="article-magazine" form="short">mag. art.</term>
139138 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
139 <!-- book is in the list of locator terms -->
140 <!-- chapter is in the list of locator terms -->
142141 <term name="document" form="short">doc.</term>
143142 <!-- figure is in the list of locator terms -->
144143 <term name="graphic" form="short">graph.</term>
296295 </term>
297296
298297 <!-- SHORT LOCATOR FORMS -->
299 <term name="appendix">
298 <term name="appendix" form="short">
300299 <single>app.</single>
301300 <multiple>apps.</multiple>
302301 </term>
303 <term name="article-locator">
302 <term name="article-locator" form="short">
304303 <single>art.</single>
305304 <multiple>arts.</multiple>
306305 </term>
307 <term name="elocation">
306 <term name="elocation" form="short">
308307 <single>loc.</single>
309308 <multiple>locs.</multiple>
310309 </term>
311 <term name="equation">
310 <term name="equation" form="short">
312311 <single>eq.</single>
313312 <multiple>eqs.</multiple>
314313 </term>
315 <term name="rule">
314 <term name="rule" form="short">
316315 <single>r.</single>
317316 <multiple>rr.</multiple>
318317 </term>
319 <term name="scene">
318 <term name="scene" form="short">
320319 <single>sc.</single>
321320 <multiple>scs.</multiple>
322321 </term>
323 <term name="table">
322 <term name="table" form="short">
324323 <single>tbl.</single>
325324 <multiple>tbls.</multiple>
326325 </term>
327 <term name="timestamp"> <!-- generally blank -->
326 <term name="timestamp" form="short"> <!-- generally blank -->
328327 <single></single>
329328 <multiple></multiple>
330329 </term>
331 <term name="title-locator">
330 <term name="title-locator" form="short">
332331 <single>tit.</single>
333332 <multiple>tits.</multiple>
334333 </term>
7070 <term name="in"></term>
7171 <term name="in press">priimta spaudai</term>
7272 <term name="internet">prieiga per internetą</term>
73 <term name="interview">interviu</term>
7473 <term name="letter">laiškas</term>
7574 <term name="no date">sine anno</term>
7675 <term name="no date" form="short">s.a.</term>
9493 <term name="article-magazine">magazine article</term>
9594 <term name="article-newspaper">newspaper article</term>
9695 <term name="bill">bill</term>
97 <term name="book">book</term>
96 <!-- book is in the list of locator terms -->
9897 <term name="broadcast">broadcast</term>
99 <term name="chapter">book chapter</term>
98 <!-- chapter is in the list of locator terms -->
10099 <term name="classic">classic</term>
101100 <term name="collection">collection</term>
102101 <term name="dataset">dataset</term>
108107 <!-- figure is in the list of locator terms -->
109108 <term name="graphic">graphic</term>
110109 <term name="hearing">hearing</term>
111 <term name="interview">interview</term>
110 <term name="interview">interviu</term>
112111 <term name="legal_case">legal case</term>
113112 <term name="legislation">legislation</term>
114113 <term name="manuscript">manuscript</term>
139138 <term name="article-journal" form="short">journal art.</term>
140139 <term name="article-magazine" form="short">mag. art.</term>
141140 <term name="article-newspaper" form="short">newspaper art.</term>
142 <term name="book" form="short">bk.</term>
143 <term name="chapter" form="short">bk. chap.</term>
141 <!-- book is in the list of locator terms -->
142 <!-- chapter is in the list of locator terms -->
144143 <term name="document" form="short">doc.</term>
145144 <!-- figure is in the list of locator terms -->
146145 <term name="graphic" form="short">graph.</term>
315314 </term>
316315
317316 <!-- SHORT LOCATOR FORMS -->
318 <term name="appendix">
317 <term name="appendix" form="short">
319318 <single>app.</single>
320319 <multiple>apps.</multiple>
321320 </term>
322 <term name="article-locator">
321 <term name="article-locator" form="short">
323322 <single>art.</single>
324323 <multiple>arts.</multiple>
325324 </term>
326 <term name="elocation">
325 <term name="elocation" form="short">
327326 <single>loc.</single>
328327 <multiple>locs.</multiple>
329328 </term>
330 <term name="equation">
329 <term name="equation" form="short">
331330 <single>eq.</single>
332331 <multiple>eqs.</multiple>
333332 </term>
334 <term name="rule">
333 <term name="rule" form="short">
335334 <single>r.</single>
336335 <multiple>rr.</multiple>
337336 </term>
338 <term name="scene">
337 <term name="scene" form="short">
339338 <single>sc.</single>
340339 <multiple>scs.</multiple>
341340 </term>
342 <term name="table">
341 <term name="table" form="short">
343342 <single>tbl.</single>
344343 <multiple>tbls.</multiple>
345344 </term>
346 <term name="timestamp"> <!-- generally blank -->
345 <term name="timestamp" form="short"> <!-- generally blank -->
347346 <single></single>
348347 <multiple></multiple>
349348 </term>
350 <term name="title-locator">
349 <term name="title-locator" form="short">
351350 <single>tit.</single>
352351 <multiple>tits.</multiple>
353352 </term>
4848 <term name="video">video</term>
4949 <term name="working-paper">working paper</term>
5050 <term name="accessed">skatīts</term>
51 <term name="ad">m.ē.</term>
5251 <term name="and">un</term>
5352 <term name="and others">un citi</term>
5453 <term name="anonymous">anonīms</term>
5554 <term name="anonymous" form="short">anon.</term>
5655 <term name="at"></term>
5756 <term name="available at">pieejams</term>
58 <term name="bc">p.m.ē.</term>
5957 <term name="by"></term>
6058 <term name="circa">apmēram</term>
6159 <term name="circa" form="short">apm.</term>
7270 <term name="in">no</term>
7371 <term name="in press">presē</term>
7472 <term name="internet">internets</term>
75 <term name="interview">intervija</term>
7673 <term name="letter">vēstule</term>
7774 <term name="no date">bez datuma</term>
7875 <term name="no date" form="short">b.g.</term>
9693 <term name="article-magazine">magazine article</term>
9794 <term name="article-newspaper">newspaper article</term>
9895 <term name="bill">bill</term>
99 <term name="book">book</term>
96 <!-- book is in the list of locator terms -->
10097 <term name="broadcast">broadcast</term>
101 <term name="chapter">book chapter</term>
98 <!-- chapter is in the list of locator terms -->
10299 <term name="classic">classic</term>
103100 <term name="collection">collection</term>
104101 <term name="dataset">dataset</term>
110107 <!-- figure is in the list of locator terms -->
111108 <term name="graphic">graphic</term>
112109 <term name="hearing">hearing</term>
113 <term name="interview">interview</term>
110 <term name="interview">intervija</term>
114111 <term name="legal_case">legal case</term>
115112 <term name="legislation">legislation</term>
116113 <term name="manuscript">manuscript</term>
141138 <term name="article-journal" form="short">journal art.</term>
142139 <term name="article-magazine" form="short">mag. art.</term>
143140 <term name="article-newspaper" form="short">newspaper art.</term>
144 <term name="book" form="short">bk.</term>
145 <term name="chapter" form="short">bk. chap.</term>
141 <!-- book is in the list of locator terms -->
142 <!-- chapter is in the list of locator terms -->
146143 <term name="document" form="short">doc.</term>
147144 <!-- figure is in the list of locator terms -->
148145 <term name="graphic" form="short">graph.</term>
155152 <term name="song" form="short">audio rec.</term>
156153
157154 <!-- HISTORICAL ERA TERMS -->
158 <term name="ad">AD</term>
159 <term name="bc">BC</term>
155 <term name="ad">m.ē.</term>
156 <term name="bc">p.m.ē.</term>
160157 <term name="bce">BCE</term>
161158 <term name="ce">CE</term>
162159
312309 </term>
313310
314311 <!-- SHORT LOCATOR FORMS -->
315 <term name="appendix">
312 <term name="appendix" form="short">
316313 <single>app.</single>
317314 <multiple>apps.</multiple>
318315 </term>
319 <term name="article-locator">
316 <term name="article-locator" form="short">
320317 <single>art.</single>
321318 <multiple>arts.</multiple>
322319 </term>
323 <term name="elocation">
320 <term name="elocation" form="short">
324321 <single>loc.</single>
325322 <multiple>locs.</multiple>
326323 </term>
327 <term name="equation">
324 <term name="equation" form="short">
328325 <single>eq.</single>
329326 <multiple>eqs.</multiple>
330327 </term>
331 <term name="rule">
328 <term name="rule" form="short">
332329 <single>r.</single>
333330 <multiple>rr.</multiple>
334331 </term>
335 <term name="scene">
332 <term name="scene" form="short">
336333 <single>sc.</single>
337334 <multiple>scs.</multiple>
338335 </term>
339 <term name="table">
336 <term name="table" form="short">
340337 <single>tbl.</single>
341338 <multiple>tbls.</multiple>
342339 </term>
343 <term name="timestamp"> <!-- generally blank -->
340 <term name="timestamp" form="short"> <!-- generally blank -->
344341 <single></single>
345342 <multiple></multiple>
346343 </term>
347 <term name="title-locator">
344 <term name="title-locator" form="short">
348345 <single>tit.</single>
349346 <multiple>tits.</multiple>
350347 </term>
6565 <term name="in">in</term>
6666 <term name="in press">in press</term>
6767 <term name="internet">internet</term>
68 <term name="interview">interview</term>
6968 <term name="letter">захиа</term>
7069 <term name="no date">no date</term>
7170 <term name="no date" form="short">n.d.</term>
8988 <term name="article-magazine">magazine article</term>
9089 <term name="article-newspaper">newspaper article</term>
9190 <term name="bill">bill</term>
92 <term name="book">book</term>
91 <!-- book is in the list of locator terms -->
9392 <term name="broadcast">broadcast</term>
94 <term name="chapter">book chapter</term>
93 <!-- chapter is in the list of locator terms -->
9594 <term name="classic">classic</term>
9695 <term name="collection">collection</term>
9796 <term name="dataset">dataset</term>
134133 <term name="article-journal" form="short">journal art.</term>
135134 <term name="article-magazine" form="short">mag. art.</term>
136135 <term name="article-newspaper" form="short">newspaper art.</term>
137 <term name="book" form="short">bk.</term>
138 <term name="chapter" form="short">bk. chap.</term>
136 <!-- book is in the list of locator terms -->
137 <!-- chapter is in the list of locator terms -->
139138 <term name="document" form="short">doc.</term>
140139 <!-- figure is in the list of locator terms -->
141140 <term name="graphic" form="short">graph.</term>
293292 </term>
294293
295294 <!-- SHORT LOCATOR FORMS -->
296 <term name="appendix">
295 <term name="appendix" form="short">
297296 <single>app.</single>
298297 <multiple>apps.</multiple>
299298 </term>
300 <term name="article-locator">
299 <term name="article-locator" form="short">
301300 <single>art.</single>
302301 <multiple>arts.</multiple>
303302 </term>
304 <term name="elocation">
303 <term name="elocation" form="short">
305304 <single>loc.</single>
306305 <multiple>locs.</multiple>
307306 </term>
308 <term name="equation">
307 <term name="equation" form="short">
309308 <single>eq.</single>
310309 <multiple>eqs.</multiple>
311310 </term>
312 <term name="rule">
311 <term name="rule" form="short">
313312 <single>r.</single>
314313 <multiple>rr.</multiple>
315314 </term>
316 <term name="scene">
315 <term name="scene" form="short">
317316 <single>sc.</single>
318317 <multiple>scs.</multiple>
319318 </term>
320 <term name="table">
319 <term name="table" form="short">
321320 <single>tbl.</single>
322321 <multiple>tbls.</multiple>
323322 </term>
324 <term name="timestamp"> <!-- generally blank -->
323 <term name="timestamp" form="short"> <!-- generally blank -->
325324 <single></single>
326325 <multiple></multiple>
327326 </term>
328 <term name="title-locator">
327 <term name="title-locator" form="short">
329328 <single>tit.</single>
330329 <multiple>tits.</multiple>
331330 </term>
1818 <date-part name="day" form="numeric-leading-zeros" prefix="-" range-delimiter="/"/>
1919 </date>
2020 <terms>
21 <term name="advance-online-publication">advance online publication</term>
21 <term name="advance-online-publication">forhåndspublisert på nett</term>
2222 <term name="album">album</term>
23 <term name="audio-recording">audio recording</term>
23 <term name="audio-recording">lydopptak</term>
2424 <term name="film">film</term>
25 <term name="henceforth">henceforth</term>
25 <term name="henceforth">heretter</term>
2626 <term name="loc-cit">loc. cit.</term> <!-- like ibid., the abbreviated form is the regular form -->
27 <term name="no-place">no place</term>
28 <term name="no-place" form="short">n.p.</term>
29 <term name="no-publisher">no publisher</term> <!-- sine nomine -->
30 <term name="no-publisher" form="short">n.p.</term>
31 <term name="on">on</term>
27 <term name="no-place">mangler sted</term>
28 <term name="no-publisher">mangler utgiver</term> <!-- sine nomine -->
29 <term name="no-publisher" form="short">s.n.</term>
30 <term name="on">om</term>
3231 <term name="op-cit">op. cit.</term> <!-- like ibid., the abbreviated form is the regular form -->
33 <term name="original-work-published">original work published</term>
32 <term name="original-work-published">opprinnelig verk utgitt</term>
3433 <term name="personal-communication">personlig kommunikasjon</term>
35 <term name="podcast">podcast</term>
36 <term name="podcast-episode">podcast episode</term>
37 <term name="preprint">preprint</term>
38 <term name="radio-broadcast">radio broadcast</term>
39 <term name="radio-series">radio series</term>
40 <term name="radio-series-episode">radio series episode</term>
41 <term name="special-issue">special issue</term>
42 <term name="special-section">special section</term>
43 <term name="television-broadcast">television broadcast</term>
44 <term name="television-series">television series</term>
45 <term name="television-series-episode">television series episode</term>
34 <term name="podcast">podkast</term>
35 <term name="podcast-episode">podkastepisode</term>
36 <term name="preprint">innsendt manuskript</term>
37 <term name="radio-broadcast">radiosending</term>
38 <term name="radio-series">radioserie</term>
39 <term name="radio-series-episode">radioserie-episode</term>
40 <term name="special-issue">spesialutgave</term>
41 <term name="special-section">spesialseksjon</term>
42 <term name="television-broadcast">fjernsynssending</term>
43 <term name="television-series">fjernsynsserie</term>
44 <term name="television-series-episode">fjernsynsserie-episode</term>
4645 <term name="video">video</term>
47 <term name="working-paper">working paper</term>
46 <term name="working-paper">notat</term>
4847 <term name="accessed">åpnet</term>
4948 <term name="and">og</term>
5049 <term name="and others">med flere</term>
5857 <term name="cited">sitert</term>
5958 <term name="edition">
6059 <single>utgave</single>
61 <multiple>utgaver</multiple>
60 <multiple>utgave</multiple>
6261 </term>
6362 <term name="edition" form="short">utg.</term>
6463 <term name="et-al">mfl.</term>
6867 <term name="in">i</term>
6968 <term name="in press">i trykk</term>
7069 <term name="internet">Internett</term>
71 <term name="interview">intervju</term>
7270 <term name="letter">brev</term>
73 <term name="no date">ingen dato</term>
71 <term name="no date">uten dato</term>
7472 <term name="no date" form="short">u.å.</term>
7573 <term name="online">online</term>
7674 <term name="presented at">presentert på</term>
7775 <term name="reference">
7876 <single>referanse</single>
79 <multiple>referanser</multiple>
77 <multiple>referanse</multiple>
8078 </term>
8179 <term name="reference" form="short">
8280 <single>ref.</single>
83 <multiple>refr.</multiple>
81 <multiple>ref.</multiple>
8482 </term>
8583 <term name="retrieved">hentet</term>
8684 <term name="scale">målestokk</term>
8785 <term name="version">versjon</term>
8886
8987 <!-- LONG ITEM TYPE FORMS -->
90 <term name="article">preprint</term>
91 <term name="article-journal">journal article</term>
92 <term name="article-magazine">magazine article</term>
93 <term name="article-newspaper">newspaper article</term>
94 <term name="bill">bill</term>
95 <term name="book">book</term>
96 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
98 <term name="classic">classic</term>
99 <term name="collection">collection</term>
100 <term name="dataset">dataset</term>
101 <term name="document">document</term>
102 <term name="entry">entry</term>
103 <term name="entry-dictionary">dictionary entry</term>
104 <term name="entry-encyclopedia">encyclopedia entry</term>
105 <term name="event">event</term>
88 <term name="article">innsendt manuskript</term>
89 <term name="article-journal">tidsskriftartikkel</term>
90 <term name="article-magazine">magasinartikkel</term>
91 <term name="article-newspaper">avisartikkel</term>
92 <term name="bill">proposisjon</term>
93 <!-- book is in the list of locator terms -->
94 <term name="broadcast">kringkasting</term>
95 <!-- chapter is in the list of locator terms -->
96 <term name="classic">klassiker</term>
97 <term name="collection">samling</term>
98 <term name="dataset">datasett</term>
99 <term name="document">dokument</term>
100 <term name="entry">oppføring</term>
101 <term name="entry-dictionary">ordbokoppføring</term>
102 <term name="entry-encyclopedia">leksikonoppføring</term>
103 <term name="event">begivenhet</term>
106104 <!-- figure is in the list of locator terms -->
107 <term name="graphic">graphic</term>
108 <term name="hearing">hearing</term>
109 <term name="interview">interview</term>
110 <term name="legal_case">legal case</term>
111 <term name="legislation">legislation</term>
112 <term name="manuscript">manuscript</term>
113 <term name="map">map</term>
114 <term name="motion_picture">video recording</term>
115 <term name="musical_score">musical score</term>
116 <term name="pamphlet">pamphlet</term>
117 <term name="paper-conference">conference paper</term>
105 <term name="graphic">grafikk</term>
106 <term name="hearing">høring</term>
107 <term name="interview">intervju</term>
108 <term name="legal_case">rettssak</term>
109 <term name="legislation">lovgiving</term>
110 <term name="manuscript">manuskript</term>
111 <term name="map">kart</term>
112 <term name="motion_picture">videoopptak</term>
113 <term name="musical_score">partitur</term>
114 <term name="pamphlet">pamflett</term>
115 <term name="paper-conference">konferanseartikkel</term>
118116 <term name="patent">patent</term>
119 <term name="performance">performance</term>
120 <term name="periodical">periodical</term>
117 <term name="performance">fremføring</term>
118 <term name="periodical">tidsskrift</term>
121119 <term name="personal_communication">personlig kommunikasjon</term>
122 <term name="post">post</term>
123 <term name="post-weblog">blog post</term>
124 <term name="regulation">regulation</term>
125 <term name="report">report</term>
126 <term name="review">review</term>
127 <term name="review-book">book review</term>
128 <term name="software">software</term>
129 <term name="song">audio recording</term>
130 <term name="speech">presentation</term>
120 <term name="post">innlegg</term>
121 <term name="post-weblog">blogginnlegg</term>
122 <term name="regulation">forskrift</term>
123 <term name="report">rapport</term>
124 <term name="review">anmeldelse</term>
125 <term name="review-book">bokanmeldelse</term>
126 <term name="software">programvare</term>
127 <term name="song">lydopptak</term>
128 <term name="speech">presentasjon</term>
131129 <term name="standard">standard</term>
132 <term name="thesis">thesis</term>
133 <term name="treaty">treaty</term>
134 <term name="webpage">webpage</term>
130 <term name="thesis">avhandling</term>
131 <term name="treaty">traktat</term>
132 <term name="webpage">nettside</term>
135133
136134 <!-- SHORT ITEM TYPE FORMS -->
137 <term name="article-journal" form="short">journal art.</term>
138 <term name="article-magazine" form="short">mag. art.</term>
139 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
142 <term name="document" form="short">doc.</term>
135 <term name="article-journal" form="short">tidsskriftart.</term>
136 <term name="article-newspaper" form="short">avisart.</term>
137 <!-- book is in the list of locator terms -->
138 <!-- chapter is in the list of locator terms -->
139 <term name="document" form="short">dok.</term>
143140 <!-- figure is in the list of locator terms -->
144 <term name="graphic" form="short">graph.</term>
145 <term name="interview" form="short">interv.</term>
146 <term name="manuscript" form="short">MS</term>
147 <term name="motion_picture" form="short">video rec.</term>
148 <term name="report" form="short">rep.</term>
149 <term name="review" form="short">rev.</term>
150 <term name="review-book" form="short">bk. rev.</term>
151 <term name="song" form="short">audio rec.</term>
141 <term name="manuscript" form="short">ms.</term>
152142
153143 <!-- HISTORICAL ERA TERMS -->
154 <term name="ad">fvt.</term>
155 <term name="bc">evt.</term>
156 <term name="bce">BCE</term>
157 <term name="ce">CE</term>
144 <term name="ad">e.Kr.</term>
145 <term name="bc">f.Kr.</term>
146 <term name="bce">fvt.</term>
147 <term name="ce">evt.</term>
158148
159149 <!-- PUNCTUATION -->
160150 <term name="open-quote">«</term>
183173
184174 <!-- LONG LOCATOR FORMS -->
185175 <term name="act">
186 <single>act</single>
187 <multiple>acts</multiple>
176 <single>akt</single>
177 <multiple>akt</multiple>
188178 </term>
189179 <term name="appendix">
190 <single>appendix</single>
191 <multiple>appendices</multiple>
180 <single>appendiks</single>
181 <multiple>appendiks</multiple>
192182 </term>
193183 <term name="article-locator">
194 <single>article</single>
195 <multiple>articles</multiple>
184 <single>artikkel</single>
185 <multiple>artikkel</multiple>
196186 </term>
197187 <term name="canon">
198 <single>canon</single>
199 <multiple>canons</multiple>
188 <single>kanon</single>
189 <multiple>kanon</multiple>
200190 </term>
201191 <term name="elocation">
202 <single>location</single>
203 <multiple>locations</multiple>
192 <single>sted</single>
193 <multiple>sted</multiple>
204194 </term>
205195 <term name="equation">
206 <single>equation</single>
207 <multiple>equations</multiple>
196 <single>ligning</single>
197 <multiple>ligning</multiple>
208198 </term>
209199 <term name="rule">
210 <single>rule</single>
211 <multiple>rules</multiple>
200 <single>regel</single>
201 <multiple>regel</multiple>
212202 </term>
213203 <term name="scene">
214204 <single>scene</single>
215 <multiple>scenes</multiple>
205 <multiple>scene</multiple>
216206 </term>
217207 <term name="table">
218 <single>table</single>
219 <multiple>tables</multiple>
208 <single>tabell</single>
209 <multiple>tabell</multiple>
220210 </term>
221211 <term name="timestamp"> <!-- generally blank -->
222212 <single></single>
223213 <multiple></multiple>
224214 </term>
225215 <term name="title-locator">
226 <single>title</single>
227 <multiple>titles</multiple>
216 <single>tittel</single>
217 <multiple>tittel</multiple>
228218 </term>
229219 <term name="book">
230220 <single>bok</single>
231 <multiple>bøker</multiple>
221 <multiple>bok</multiple>
232222 </term>
233223 <term name="chapter">
234224 <single>kapittel</single>
235 <multiple>kapitler</multiple>
225 <multiple>kapittel</multiple>
236226 </term>
237227 <term name="column">
238228 <single>kolonne</single>
239 <multiple>kolonner</multiple>
229 <multiple>kolonne</multiple>
240230 </term>
241231 <term name="figure">
242232 <single>figur</single>
243 <multiple>figurer</multiple>
233 <multiple>figur</multiple>
244234 </term>
245235 <term name="folio">
246236 <single>folio</single>
247 <multiple>folioer</multiple>
237 <multiple>folio</multiple>
248238 </term>
249239 <term name="issue">
250240 <single>nummer</single>
251 <multiple>numre</multiple>
241 <multiple>nummer</multiple>
252242 </term>
253243 <term name="line">
254244 <single>linje</single>
255 <multiple>linjer</multiple>
245 <multiple>linje</multiple>
256246 </term>
257247 <term name="note">
258248 <single>note</single>
259 <multiple>noter</multiple>
249 <multiple>note</multiple>
260250 </term>
261251 <term name="opus">
262252 <single>opus</single>
276266 </term>
277267 <term name="part">
278268 <single>del</single>
279 <multiple>deler</multiple>
269 <multiple>del</multiple>
280270 </term>
281271 <term name="section">
282272 <single>paragraf</single>
283 <multiple>paragrafer</multiple>
273 <multiple>paragraf</multiple>
284274 </term>
285275 <term name="sub-verbo">
286276 <single>sub verbo</single>
296286 </term>
297287
298288 <!-- SHORT LOCATOR FORMS -->
299 <term name="appendix">
300 <single>app.</single>
301 <multiple>apps.</multiple>
302 </term>
303 <term name="article-locator">
289 <term name="article-locator" form="short">
304290 <single>art.</single>
305 <multiple>arts.</multiple>
306 </term>
307 <term name="elocation">
308 <single>loc.</single>
309 <multiple>locs.</multiple>
310 </term>
311 <term name="equation">
312 <single>eq.</single>
313 <multiple>eqs.</multiple>
314 </term>
315 <term name="rule">
316 <single>r.</single>
317 <multiple>rr.</multiple>
318 </term>
319 <term name="scene">
320 <single>sc.</single>
321 <multiple>scs.</multiple>
322 </term>
323 <term name="table">
324 <single>tbl.</single>
325 <multiple>tbls.</multiple>
326 </term>
327 <term name="timestamp"> <!-- generally blank -->
291 <multiple>art.</multiple>
292 </term>
293 <term name="table" form="short">
294 <single>tab.</single>
295 <multiple>tab.</multiple>
296 </term>
297 <term name="timestamp" form="short"> <!-- generally blank -->
328298 <single></single>
329299 <multiple></multiple>
330300 </term>
331 <term name="title-locator">
332 <single>tit.</single>
333 <multiple>tits.</multiple>
334 </term>
335 <term name="book" form="short">b.</term>
336301 <term name="chapter" form="short">kap.</term>
337302 <term name="column" form="short">kol.</term>
338303 <term name="figure" form="short">fig.</term>
339304 <term name="folio" form="short">fol.</term>
340305 <term name="issue" form="short">nr.</term>
341 <term name="line" form="short">l.</term>
342 <term name="note" form="short">n.</term>
343306 <term name="opus" form="short">op.</term>
344307 <term name="page" form="short">
345308 <single>s.</single>
346 <multiple>s.</multiple>
309 <multiple>ss.</multiple>
347310 </term>
348311 <term name="number-of-pages" form="short">
349312 <single>s.</single>
350313 <multiple>s.</multiple>
351314 </term>
352315 <term name="paragraph" form="short">avsn.</term>
353 <term name="part" form="short">d.</term>
354316 <term name="section" form="short">pargr.</term>
355317 <term name="sub-verbo" form="short">
356318 <single>s.v.</single>
377339
378340 <!-- LONG ROLE FORMS -->
379341 <term name="chair">
380 <single>chair</single>
381 <multiple>chairs</multiple>
342 <single>leder</single>
343 <multiple>ledere</multiple>
382344 </term>
383345 <term name="compiler">
384 <single>compiler</single>
385 <multiple>compilers</multiple>
346 <single>kompilator</single>
347 <multiple>kompilatorer</multiple>
386348 </term>
387349 <term name="contributor">
388 <single>contributor</single>
389 <multiple>contributors</multiple>
350 <single>bidragsyter</single>
351 <multiple>bidragsytere</multiple>
390352 </term>
391353 <term name="curator">
392 <single>curator</single>
393 <multiple>curators</multiple>
354 <single>kurator</single>
355 <multiple>kuratorer</multiple>
394356 </term>
395357 <term name="executive-producer">
396 <single>executive producer</single>
397 <multiple>executive producers</multiple>
358 <single>utøvende produsent</single>
359 <multiple>utøvende produsenter</multiple>
398360 </term>
399361 <term name="guest">
400 <single>guest</single>
401 <multiple>guests</multiple>
362 <single>gjest</single>
363 <multiple>gjester</multiple>
402364 </term>
403365 <term name="host">
404 <single>host</single>
405 <multiple>hosts</multiple>
366 <single>vert</single>
367 <multiple>verter</multiple>
406368 </term>
407369 <term name="narrator">
408 <single>narrator</single>
409 <multiple>narrators</multiple>
370 <single>forteller</single>
371 <multiple>fortellere</multiple>
410372 </term>
411373 <term name="organizer">
412 <single>organizer</single>
413 <multiple>organizers</multiple>
374 <single>organisator</single>
375 <multiple>organisatorer</multiple>
414376 </term>
415377 <term name="performer">
416 <single>performer</single>
417 <multiple>performers</multiple>
378 <single>utøver</single>
379 <multiple>utøvere</multiple>
418380 </term>
419381 <term name="producer">
420 <single>producer</single>
421 <multiple>producers</multiple>
382 <single>produsent</single>
383 <multiple>produsenter</multiple>
422384 </term>
423385 <term name="script-writer">
424 <single>writer</single>
425 <multiple>writers</multiple>
386 <single>manusforfatter</single>
387 <multiple>manusforfattere</multiple>
426388 </term>
427389 <term name="series-creator">
428 <single>series creator</single>
429 <multiple>series creators</multiple>
390 <single>serieskaper</single>
391 <multiple>serieskapere</multiple>
430392 </term>
431393 <term name="director">
432394 <single>regissør</single>
454416 </term>
455417
456418 <!-- SHORT ROLE FORMS -->
457 <term name="compiler" form="short">
458 <single>comp.</single>
459 <multiple>comps.</multiple>
460 </term>
461 <term name="contributor" form="short">
462 <single>contrib.</single>
463 <multiple>contribs.</multiple>
464 </term>
465 <term name="curator" form="short">
466 <single>cur.</single>
467 <multiple>curs.</multiple>
468 </term>
469419 <term name="executive-producer" form="short">
470 <single>exec. prod.</single>
471 <multiple>exec. prods.</multiple>
472 </term>
473 <term name="narrator" form="short">
474 <single>narr.</single>
475 <multiple>narrs.</multiple>
476 </term>
477 <term name="organizer" form="short">
478 <single>org.</single>
479 <multiple>orgs.</multiple>
480 </term>
481 <term name="performer" form="short">
482 <single>perf.</single>
483 <multiple>perfs.</multiple>
420 <single>utøv. prod.</single>
421 <multiple>utøv. prod.</multiple>
484422 </term>
485423 <term name="producer" form="short">
486424 <single>prod.</single>
487 <multiple>prods.</multiple>
425 <multiple>prod.</multiple>
488426 </term>
489427 <term name="script-writer" form="short">
490 <single>writ.</single>
491 <multiple>writs.</multiple>
492 </term>
493 <term name="series-creator" form="short">
494 <single>cre.</single>
495 <multiple>cres.</multiple>
428 <single>forf.</single>
429 <multiple>forf.</multiple>
496430 </term>
497431 <term name="director" form="short">
498432 <single>regi</single>
508442 </term>
509443 <term name="illustrator" form="short">
510444 <single>ill.</single>
511 <multiple>ills.</multiple>
445 <multiple>ill.</multiple>
512446 </term>
513447 <term name="translator" form="short">
514448 <single>overs.</single>
520454 </term>
521455
522456 <!-- VERB ROLE FORMS -->
523 <term name="chair" form="verb">chaired by</term>
524 <term name="compiler" form="verb">compiled by</term>
525 <term name="contributor" form="verb">with</term>
526 <term name="curator" form="verb">curated by</term>
527 <term name="executive-producer" form="verb">executive produced by</term>
528 <term name="guest" form="verb">with guest</term>
529 <term name="host" form="verb">hosted by</term>
530 <term name="narrator" form="verb">narrated by</term>
531 <term name="organizer" form="verb">organized by</term>
532 <term name="performer" form="verb">performed by</term>
533 <term name="producer" form="verb">produced by</term>
534 <term name="script-writer" form="verb">written by</term>
535 <term name="series-creator" form="verb">created by</term>
457 <term name="chair" form="verb">leda av</term>
458 <term name="compiler" form="verb">kompilert av</term>
459 <term name="contributor" form="verb">med</term>
460 <term name="curator" form="verb">kuratert av</term>
461 <term name="executive-producer" form="verb">utøvende produsert av</term>
462 <term name="guest" form="verb">med gjest</term>
463 <term name="host" form="verb">vertskap av</term>
464 <term name="narrator" form="verb">fortalt av</term>
465 <term name="organizer" form="verb">organisert av</term>
466 <term name="performer" form="verb">fremført av</term>
467 <term name="producer" form="verb">produsert av</term>
468 <term name="script-writer" form="verb">forfatta av</term>
469 <term name="series-creator" form="verb">skapt av</term>
536470 <term name="container-author" form="verb">av</term>
537471 <term name="director" form="verb">regissert av</term>
538472 <term name="editor" form="verb">redigert av</term>
545479 <term name="editortranslator" form="verb">redigert &amp; oversatt av</term>
546480
547481 <!-- SHORT VERB ROLE FORMS -->
548 <term name="compiler" form="verb-short">comp. by</term>
549 <term name="contributor" form="verb-short">w.</term>
550 <term name="curator" form="verb-short">cur. by</term>
551 <term name="executive-producer" form="verb-short">exec. prod. by</term>
552 <term name="guest" form="verb-short">w. guest</term>
553 <term name="host" form="verb-short">hosted by</term>
554 <term name="narrator" form="verb-short">narr. by</term>
555 <term name="organizer" form="verb-short">org. by</term>
556 <term name="performer" form="verb-short">perf. by</term>
557 <term name="producer" form="verb-short">prod. by</term>
558 <term name="script-writer" form="verb-short">writ. by</term>
559 <term name="series-creator" form="verb-short">cre. by</term>
482 <term name="executive-producer" form="verb-short">utøv. prod. av</term>
483 <term name="producer" form="verb-short">prod. av</term>
484 <term name="script-writer" form="verb-short">forf. av</term>
560485 <term name="director" form="verb-short">regi</term>
561486 <term name="editor" form="verb-short">red.</term>
562487 <term name="editorial-director" form="verb-short">red.</term>
6969 <term name="in">in</term>
7070 <term name="in press">in druk</term>
7171 <term name="internet">internet</term>
72 <term name="interview">interview</term>
7372 <term name="letter">brief</term>
7473 <term name="no date">zonder datum</term>
7574 <term name="no date" form="short">z.d.</term>
9392 <term name="article-magazine">magazine article</term>
9493 <term name="article-newspaper">newspaper article</term>
9594 <term name="bill">bill</term>
96 <term name="book">book</term>
95 <!-- book is in the list of locator terms -->
9796 <term name="broadcast">broadcast</term>
98 <term name="chapter">book chapter</term>
97 <!-- chapter is in the list of locator terms -->
9998 <term name="classic">classic</term>
10099 <term name="collection">collection</term>
101100 <term name="dataset">dataset</term>
138137 <term name="article-journal" form="short">journal art.</term>
139138 <term name="article-magazine" form="short">mag. art.</term>
140139 <term name="article-newspaper" form="short">newspaper art.</term>
141 <term name="book" form="short">bk.</term>
142 <term name="chapter" form="short">bk. chap.</term>
140 <!-- book is in the list of locator terms -->
141 <!-- chapter is in the list of locator terms -->
143142 <term name="document" form="short">doc.</term>
144143 <!-- figure is in the list of locator terms -->
145144 <term name="graphic" form="short">graph.</term>
315314 </term>
316315
317316 <!-- SHORT LOCATOR FORMS -->
318 <term name="appendix">
317 <term name="appendix" form="short">
319318 <single>app.</single>
320319 <multiple>apps.</multiple>
321320 </term>
322 <term name="article-locator">
321 <term name="article-locator" form="short">
323322 <single>art.</single>
324323 <multiple>arts.</multiple>
325324 </term>
326 <term name="elocation">
325 <term name="elocation" form="short">
327326 <single>loc.</single>
328327 <multiple>locs.</multiple>
329328 </term>
330 <term name="equation">
329 <term name="equation" form="short">
331330 <single>eq.</single>
332331 <multiple>eqs.</multiple>
333332 </term>
334 <term name="rule">
333 <term name="rule" form="short">
335334 <single>r.</single>
336335 <multiple>rr.</multiple>
337336 </term>
338 <term name="scene">
337 <term name="scene" form="short">
339338 <single>sc.</single>
340339 <multiple>scs.</multiple>
341340 </term>
342 <term name="table">
341 <term name="table" form="short">
343342 <single>tbl.</single>
344343 <multiple>tbls.</multiple>
345344 </term>
346 <term name="timestamp"> <!-- generally blank -->
345 <term name="timestamp" form="short"> <!-- generally blank -->
347346 <single></single>
348347 <multiple></multiple>
349348 </term>
350 <term name="title-locator">
349 <term name="title-locator" form="short">
351350 <single>tit.</single>
352351 <multiple>tits.</multiple>
353352 </term>
1818 <date-part name="day" form="numeric-leading-zeros" prefix="-" range-delimiter="/"/>
1919 </date>
2020 <terms>
21 <term name="advance-online-publication">advance online publication</term>
21 <term name="advance-online-publication">førehandspublisert på nett</term>
2222 <term name="album">album</term>
23 <term name="audio-recording">audio recording</term>
23 <term name="audio-recording">lydopptak</term>
2424 <term name="film">film</term>
25 <term name="henceforth">henceforth</term>
25 <term name="henceforth">heretter</term>
2626 <term name="loc-cit">loc. cit.</term> <!-- like ibid., the abbreviated form is the regular form -->
27 <term name="no-place">no place</term>
28 <term name="no-place" form="short">n.p.</term>
29 <term name="no-publisher">no publisher</term> <!-- sine nomine -->
30 <term name="no-publisher" form="short">n.p.</term>
31 <term name="on">on</term>
27 <term name="no-place">manglar stad</term>
28 <term name="no-publisher">manglar utgjevar</term> <!-- sine nomine -->
29 <term name="no-publisher" form="short">s.n.</term>
30 <term name="on">om</term>
3231 <term name="op-cit">op. cit.</term> <!-- like ibid., the abbreviated form is the regular form -->
33 <term name="original-work-published">original work published</term>
32 <term name="original-work-published">opphavleg verk utgitt</term>
3433 <term name="personal-communication">personlig kommunikasjon</term>
35 <term name="podcast">podcast</term>
36 <term name="podcast-episode">podcast episode</term>
37 <term name="preprint">preprint</term>
38 <term name="radio-broadcast">radio broadcast</term>
39 <term name="radio-series">radio series</term>
40 <term name="radio-series-episode">radio series episode</term>
41 <term name="special-issue">special issue</term>
42 <term name="special-section">special section</term>
43 <term name="television-broadcast">television broadcast</term>
44 <term name="television-series">television series</term>
45 <term name="television-series-episode">television series episode</term>
34 <term name="podcast">podkast</term>
35 <term name="podcast-episode">podkast-episode</term>
36 <term name="preprint">innsendt manuskript</term>
37 <term name="radio-broadcast">radiosending</term>
38 <term name="radio-series">radioserie</term>
39 <term name="radio-series-episode">radioserie-episode</term>
40 <term name="special-issue">spesialutgåve</term>
41 <term name="special-section">spesialbolk</term>
42 <term name="television-broadcast">fjernsynssending</term>
43 <term name="television-series">fjernsynsserie</term>
44 <term name="television-series-episode">fjernsynsserie-episode</term>
4645 <term name="video">video</term>
47 <term name="working-paper">working paper</term>
46 <term name="working-paper">notat</term>
4847 <term name="accessed">vitja</term>
4948 <term name="and">og</term>
5049 <term name="and others">med fleire</term>
5857 <term name="cited">sitert</term>
5958 <term name="edition">
6059 <single>utgåve</single>
61 <multiple>utgåver</multiple>
60 <multiple>utgåve</multiple>
6261 </term>
6362 <term name="edition" form="short">utg.</term>
6463 <term name="et-al">mfl.</term>
6867 <term name="in">i</term>
6968 <term name="in press">i trykk</term>
7069 <term name="internet">Internett</term>
71 <term name="interview">intervju</term>
7270 <term name="letter">brev</term>
73 <term name="no date">ingen dato</term>
71 <term name="no date">utan dato</term>
7472 <term name="no date" form="short">u.å.</term>
75 <term name="online">online</term>
73 <term name="online">på nett</term>
7674 <term name="presented at">presentert på</term>
7775 <term name="reference">
7876 <single>referanse</single>
79 <multiple>referansar</multiple>
77 <multiple>referanse</multiple>
8078 </term>
8179 <term name="reference" form="short">
8280 <single>ref.</single>
83 <multiple>refr.</multiple>
81 <multiple>ref.</multiple>
8482 </term>
8583 <term name="retrieved">henta</term>
8684 <term name="scale">målestokk</term>
8785 <term name="version">versjon</term>
8886
8987 <!-- LONG ITEM TYPE FORMS -->
90 <term name="article">preprint</term>
91 <term name="article-journal">journal article</term>
92 <term name="article-magazine">magazine article</term>
93 <term name="article-newspaper">newspaper article</term>
94 <term name="bill">bill</term>
95 <term name="book">book</term>
96 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
98 <term name="classic">classic</term>
99 <term name="collection">collection</term>
100 <term name="dataset">dataset</term>
101 <term name="document">document</term>
102 <term name="entry">entry</term>
103 <term name="entry-dictionary">dictionary entry</term>
104 <term name="entry-encyclopedia">encyclopedia entry</term>
105 <term name="event">event</term>
88 <term name="article">innsendt manuskript</term>
89 <term name="article-journal">tidsskriftartikkel</term>
90 <term name="article-magazine">magasinartikkel</term>
91 <term name="article-newspaper">avisartikkel</term>
92 <term name="bill">proposisjon</term>
93 <!-- book is in the list of locator terms -->
94 <term name="broadcast">kringkasting</term>
95 <!-- chapter is in the list of locator terms -->
96 <term name="classic">klassikar</term>
97 <term name="collection">samling</term>
98 <term name="dataset">datasett</term>
99 <term name="document">dokument</term>
100 <term name="entry">oppføring</term>
101 <term name="entry-dictionary">ordbokoppføring</term>
102 <term name="entry-encyclopedia">leksikonoppføring</term>
103 <term name="event">hending</term>
106104 <!-- figure is in the list of locator terms -->
107 <term name="graphic">graphic</term>
108 <term name="hearing">hearing</term>
109 <term name="interview">interview</term>
110 <term name="legal_case">legal case</term>
111 <term name="legislation">legislation</term>
112 <term name="manuscript">manuscript</term>
113 <term name="map">map</term>
114 <term name="motion_picture">video recording</term>
115 <term name="musical_score">musical score</term>
116 <term name="pamphlet">pamphlet</term>
117 <term name="paper-conference">conference paper</term>
105 <term name="graphic">grafikk</term>
106 <term name="hearing">høyring</term>
107 <term name="interview">intervju</term>
108 <term name="legal_case">rettssak</term>
109 <term name="legislation">lovgjeving</term>
110 <term name="manuscript">manuskript</term>
111 <term name="map">kart</term>
112 <term name="motion_picture">video-opptak</term>
113 <term name="musical_score">partitur</term>
114 <term name="pamphlet">pamflett</term>
115 <term name="paper-conference">konferanseartikkel</term>
118116 <term name="patent">patent</term>
119 <term name="performance">performance</term>
120 <term name="periodical">periodical</term>
121 <term name="personal_communication">personlig kommunikasjon</term>
122 <term name="post">post</term>
123 <term name="post-weblog">blog post</term>
124 <term name="regulation">regulation</term>
125 <term name="report">report</term>
126 <term name="review">review</term>
127 <term name="review-book">book review</term>
128 <term name="software">software</term>
129 <term name="song">audio recording</term>
130 <term name="speech">presentation</term>
117 <term name="performance">framføring</term>
118 <term name="periodical">tidsskrift</term>
119 <term name="personal_communication">personleg kommunikasjon</term>
120 <term name="post">innlegg</term>
121 <term name="post-weblog">blogginnlegg</term>
122 <term name="regulation">forskrift</term>
123 <term name="report">rapport</term>
124 <term name="review">melding</term>
125 <term name="review-book">bokmelding</term>
126 <term name="software">programvare</term>
127 <term name="song">lydopptak</term>
128 <term name="speech">presentasjon</term>
131129 <term name="standard">standard</term>
132 <term name="thesis">thesis</term>
133 <term name="treaty">treaty</term>
134 <term name="webpage">webpage</term>
130 <term name="thesis">avhandling</term>
131 <term name="treaty">traktat</term>
132 <term name="webpage">nettside</term>
135133
136134 <!-- SHORT ITEM TYPE FORMS -->
137 <term name="article-journal" form="short">journal art.</term>
138 <term name="article-magazine" form="short">mag. art.</term>
139 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
142 <term name="document" form="short">doc.</term>
135 <term name="article-journal" form="short">tidsskrift art.</term>
136 <term name="article-newspaper" form="short">avisart.</term>
137 <!-- book is in the list of locator terms -->
138 <!-- chapter is in the list of locator terms -->
139 <term name="document" form="short">dok.</term>
143140 <!-- figure is in the list of locator terms -->
144 <term name="graphic" form="short">graph.</term>
145 <term name="interview" form="short">interv.</term>
146 <term name="manuscript" form="short">MS</term>
147 <term name="motion_picture" form="short">video rec.</term>
148 <term name="report" form="short">rep.</term>
149 <term name="review" form="short">rev.</term>
150 <term name="review-book" form="short">bk. rev.</term>
151 <term name="song" form="short">audio rec.</term>
141 <term name="manuscript" form="short">ms.</term>
152142
153143 <!-- HISTORICAL ERA TERMS -->
154 <term name="ad">fvt.</term>
155 <term name="bc">evt.</term>
156 <term name="bce">BCE</term>
157 <term name="ce">CE</term>
144 <term name="ad">e.Kr.</term>
145 <term name="bc">f.Kr.</term>
146 <term name="bce">fvt.</term>
147 <term name="ce">evt.</term>
158148
159149 <!-- PUNCTUATION -->
160150 <term name="open-quote">«</term>
182172 <term name="long-ordinal-10">tiande</term>
183173
184174 <!-- LONG LOCATOR FORMS -->
185 <term name="act">
186 <single>act</single>
187 <multiple>acts</multiple>
175 <term name="act">
176 <single>akt</single>
177 <multiple>akt</multiple>
188178 </term>
189179 <term name="appendix">
190 <single>appendix</single>
191 <multiple>appendices</multiple>
180 <single>appendiks</single>
181 <multiple>appendiks</multiple>
192182 </term>
193183 <term name="article-locator">
194 <single>article</single>
195 <multiple>articles</multiple>
184 <single>artikkel</single>
185 <multiple>artikkel</multiple>
196186 </term>
197187 <term name="canon">
198 <single>canon</single>
199 <multiple>canons</multiple>
188 <single>kanon</single>
189 <multiple>kanon</multiple>
200190 </term>
201191 <term name="elocation">
202 <single>location</single>
203 <multiple>locations</multiple>
192 <single>stad</single>
193 <multiple>stad</multiple>
204194 </term>
205195 <term name="equation">
206 <single>equation</single>
207 <multiple>equations</multiple>
196 <single>likning</single>
197 <multiple>likning</multiple>
208198 </term>
209199 <term name="rule">
210 <single>rule</single>
211 <multiple>rules</multiple>
200 <single>regel</single>
201 <multiple>regel</multiple>
212202 </term>
213203 <term name="scene">
214204 <single>scene</single>
215 <multiple>scenes</multiple>
205 <multiple>scene</multiple>
216206 </term>
217207 <term name="table">
218 <single>table</single>
219 <multiple>tables</multiple>
208 <single>tabell</single>
209 <multiple>tabell</multiple>
220210 </term>
221211 <term name="timestamp"> <!-- generally blank -->
222212 <single></single>
223213 <multiple></multiple>
224214 </term>
225215 <term name="title-locator">
226 <single>title</single>
227 <multiple>titles</multiple>
216 <single>tittel</single>
217 <multiple>tittel</multiple>
228218 </term>
229219 <term name="book">
230220 <single>bok</single>
231 <multiple>bøker</multiple>
221 <multiple>bok</multiple>
232222 </term>
233223 <term name="chapter">
234224 <single>kapittel</single>
236226 </term>
237227 <term name="column">
238228 <single>kolonne</single>
239 <multiple>kolonner</multiple>
229 <multiple>kolonne</multiple>
240230 </term>
241231 <term name="figure">
242232 <single>figur</single>
243 <multiple>figurar</multiple>
233 <multiple>figur</multiple>
244234 </term>
245235 <term name="folio">
246236 <single>folio</single>
247 <multiple>folioar</multiple>
237 <multiple>folio</multiple>
248238 </term>
249239 <term name="issue">
250240 <single>nummer</single>
252242 </term>
253243 <term name="line">
254244 <single>linje</single>
255 <multiple>linjer</multiple>
245 <multiple>linje</multiple>
256246 </term>
257247 <term name="note">
258248 <single>note</single>
259 <multiple>notar</multiple>
249 <multiple>note</multiple>
260250 </term>
261251 <term name="opus">
262252 <single>opus</single>
276266 </term>
277267 <term name="part">
278268 <single>del</single>
279 <multiple>deler</multiple>
269 <multiple>del</multiple>
280270 </term>
281271 <term name="section">
282272 <single>paragraf</single>
283 <multiple>paragrafar</multiple>
273 <multiple>paragraf</multiple>
284274 </term>
285275 <term name="sub-verbo">
286276 <single>sub verbo</single>
296286 </term>
297287
298288 <!-- SHORT LOCATOR FORMS -->
299 <term name="appendix">
300 <single>app.</single>
301 <multiple>apps.</multiple>
302 </term>
303 <term name="article-locator">
289 <term name="article-locator" form="short">
304290 <single>art.</single>
305 <multiple>arts.</multiple>
306 </term>
307 <term name="elocation">
308 <single>loc.</single>
309 <multiple>locs.</multiple>
310 </term>
311 <term name="equation">
312 <single>eq.</single>
313 <multiple>eqs.</multiple>
314 </term>
315 <term name="rule">
316 <single>r.</single>
317 <multiple>rr.</multiple>
318 </term>
319 <term name="scene">
320 <single>sc.</single>
321 <multiple>scs.</multiple>
322 </term>
323 <term name="table">
324 <single>tbl.</single>
325 <multiple>tbls.</multiple>
326 </term>
327 <term name="timestamp"> <!-- generally blank -->
291 <multiple>art.</multiple>
292 </term>
293 <term name="table" form="short">
294 <single>tab.</single>
295 <multiple>tab.</multiple>
296 </term>
297 <term name="timestamp" form="short"> <!-- generally blank -->
328298 <single></single>
329299 <multiple></multiple>
330300 </term>
331 <term name="title-locator">
332 <single>tit.</single>
333 <multiple>tits.</multiple>
334 </term>
335 <term name="book" form="short">b.</term>
336301 <term name="chapter" form="short">kap.</term>
337302 <term name="column" form="short">kol.</term>
338303 <term name="figure" form="short">fig.</term>
339304 <term name="folio" form="short">fol.</term>
340305 <term name="issue" form="short">nr.</term>
341 <term name="line" form="short">l.</term>
342 <term name="note" form="short">n.</term>
343306 <term name="opus" form="short">op.</term>
344307 <term name="page" form="short">
345308 <single>s.</single>
346 <multiple>s.</multiple>
309 <multiple>ss.</multiple>
347310 </term>
348311 <term name="number-of-pages" form="short">
349312 <single>s.</single>
350313 <multiple>s.</multiple>
351314 </term>
352315 <term name="paragraph" form="short">avsn.</term>
353 <term name="part" form="short">d.</term>
354316 <term name="section" form="short">par.</term>
355317 <term name="sub-verbo" form="short">
356318 <single>s.v.</single>
377339
378340 <!-- LONG ROLE FORMS -->
379341 <term name="chair">
380 <single>chair</single>
381 <multiple>chairs</multiple>
342 <single>leiar</single>
343 <multiple>leiarar</multiple>
382344 </term>
383345 <term name="compiler">
384 <single>compiler</single>
385 <multiple>compilers</multiple>
346 <single>kompilator</single>
347 <multiple>kompilatorar</multiple>
386348 </term>
387349 <term name="contributor">
388 <single>contributor</single>
389 <multiple>contributors</multiple>
350 <single>bidragsytar</single>
351 <multiple>bidragsytarar</multiple>
390352 </term>
391353 <term name="curator">
392 <single>curator</single>
393 <multiple>curators</multiple>
354 <single>kurator</single>
355 <multiple>kuratorar</multiple>
394356 </term>
395357 <term name="executive-producer">
396 <single>executive producer</single>
397 <multiple>executive producers</multiple>
358 <single>utøvande produsent</single>
359 <multiple>utøvande produsentar</multiple>
398360 </term>
399361 <term name="guest">
400 <single>guest</single>
401 <multiple>guests</multiple>
362 <single>gjest</single>
363 <multiple>gjester</multiple>
402364 </term>
403365 <term name="host">
404 <single>host</single>
405 <multiple>hosts</multiple>
366 <single>vert</single>
367 <multiple>vertar</multiple>
406368 </term>
407369 <term name="narrator">
408 <single>narrator</single>
409 <multiple>narrators</multiple>
370 <single>forteljar</single>
371 <multiple>forteljarar</multiple>
410372 </term>
411373 <term name="organizer">
412 <single>organizer</single>
413 <multiple>organizers</multiple>
374 <single>organisator</single>
375 <multiple>organisatorar</multiple>
414376 </term>
415377 <term name="performer">
416 <single>performer</single>
417 <multiple>performers</multiple>
378 <single>utøvar</single>
379 <multiple>utøvarar</multiple>
418380 </term>
419381 <term name="producer">
420 <single>producer</single>
421 <multiple>producers</multiple>
382 <single>produsent</single>
383 <multiple>produsentar</multiple>
422384 </term>
423385 <term name="script-writer">
424 <single>writer</single>
425 <multiple>writers</multiple>
386 <single>manusforfattar</single>
387 <multiple>manusforfattarar</multiple>
426388 </term>
427389 <term name="series-creator">
428 <single>series creator</single>
429 <multiple>series creators</multiple>
390 <single>serieskapar</single>
391 <multiple>serieskaparar</multiple>
430392 </term>
431393 <term name="director">
432394 <single>regissør</single>
454416 </term>
455417
456418 <!-- SHORT ROLE FORMS -->
457 <term name="compiler" form="short">
458 <single>comp.</single>
459 <multiple>comps.</multiple>
460 </term>
461 <term name="contributor" form="short">
462 <single>contrib.</single>
463 <multiple>contribs.</multiple>
464 </term>
465 <term name="curator" form="short">
466 <single>cur.</single>
467 <multiple>curs.</multiple>
468 </term>
469419 <term name="executive-producer" form="short">
470 <single>exec. prod.</single>
471 <multiple>exec. prods.</multiple>
472 </term>
473 <term name="narrator" form="short">
474 <single>narr.</single>
475 <multiple>narrs.</multiple>
476 </term>
477 <term name="organizer" form="short">
478 <single>org.</single>
479 <multiple>orgs.</multiple>
480 </term>
481 <term name="performer" form="short">
482 <single>perf.</single>
483 <multiple>perfs.</multiple>
420 <single>utøv. prod.</single>
421 <multiple>utøv. prod.</multiple>
484422 </term>
485423 <term name="producer" form="short">
486424 <single>prod.</single>
487 <multiple>prods.</multiple>
425 <multiple>prod.</multiple>
488426 </term>
489427 <term name="script-writer" form="short">
490 <single>writ.</single>
491 <multiple>writs.</multiple>
492 </term>
493 <term name="series-creator" form="short">
494 <single>cre.</single>
495 <multiple>cres.</multiple>
428 <single>forf.</single>
429 <multiple>forf.</multiple>
496430 </term>
497431 <term name="director" form="short">
498432 <single>regi</single>
508442 </term>
509443 <term name="illustrator" form="short">
510444 <single>ill.</single>
511 <multiple>ills.</multiple>
445 <multiple>ill.</multiple>
512446 </term>
513447 <term name="translator" form="short">
514448 <single>oms.</single>
520454 </term>
521455
522456 <!-- VERB ROLE FORMS -->
523 <term name="chair" form="verb">chaired by</term>
524 <term name="compiler" form="verb">compiled by</term>
525 <term name="contributor" form="verb">with</term>
526 <term name="curator" form="verb">curated by</term>
527 <term name="executive-producer" form="verb">executive produced by</term>
528 <term name="guest" form="verb">with guest</term>
529 <term name="host" form="verb">hosted by</term>
530 <term name="narrator" form="verb">narrated by</term>
531 <term name="organizer" form="verb">organized by</term>
532 <term name="performer" form="verb">performed by</term>
533 <term name="producer" form="verb">produced by</term>
534 <term name="script-writer" form="verb">written by</term>
535 <term name="series-creator" form="verb">created by</term>
457 <term name="chair" form="verb">leia av</term>
458 <term name="compiler" form="verb">kompilert av</term>
459 <term name="contributor" form="verb">med</term>
460 <term name="curator" form="verb">kuratert av</term>
461 <term name="executive-producer" form="verb">utøvande produsert av</term>
462 <term name="guest" form="verb">med gjest</term>
463 <term name="host" form="verb">vertskap av</term>
464 <term name="narrator" form="verb">fortald av</term>
465 <term name="organizer" form="verb">organisert av</term>
466 <term name="performer" form="verb">utført av</term>
467 <term name="producer" form="verb">produsert av</term>
468 <term name="script-writer" form="verb">forfatta av</term>
469 <term name="series-creator" form="verb">skapt av</term>
536470 <term name="container-author" form="verb">av</term>
537471 <term name="director" form="verb">regissert av</term>
538472 <term name="editor" form="verb">redigert av</term>
545479 <term name="editortranslator" form="verb">redigert &amp; omsett av</term>
546480
547481 <!-- SHORT VERB ROLE FORMS -->
548 <term name="compiler" form="verb-short">comp. by</term>
549 <term name="contributor" form="verb-short">w.</term>
550 <term name="curator" form="verb-short">cur. by</term>
551 <term name="executive-producer" form="verb-short">exec. prod. by</term>
552 <term name="guest" form="verb-short">w. guest</term>
553 <term name="host" form="verb-short">hosted by</term>
554 <term name="narrator" form="verb-short">narr. by</term>
555 <term name="organizer" form="verb-short">org. by</term>
556 <term name="performer" form="verb-short">perf. by</term>
557 <term name="producer" form="verb-short">prod. by</term>
558 <term name="script-writer" form="verb-short">writ. by</term>
559 <term name="series-creator" form="verb-short">cre. by</term>
482 <term name="host" form="verb-short">vert</term>
483 <term name="producer" form="verb-short">prod. av</term>
484 <term name="script-writer" form="verb-short">forf. av</term>
560485 <term name="director" form="verb-short">regi</term>
561486 <term name="editor" form="verb-short">red.</term>
562487 <term name="editorial-director" form="verb-short">red.</term>
563 <term name="illustrator" form="verb-short">illus.</term>
488 <term name="illustrator" form="verb-short">ill.</term>
564489 <term name="translator" form="verb-short">oms.</term>
565490 <term name="editortranslator" form="verb-short">red. &amp; oms. av</term>
566491
7474 <term name="in">w</term>
7575 <term name="in press">w druku</term>
7676 <term name="internet">internet</term>
77 <term name="interview">wywiad</term>
7877 <term name="letter">list</term>
7978 <term name="no date">brak daty</term>
8079 <term name="no date" form="short">b.d.</term>
9897 <term name="article-magazine">magazine article</term>
9998 <term name="article-newspaper">newspaper article</term>
10099 <term name="bill">bill</term>
101 <term name="book">book</term>
100 <!-- book is in the list of locator terms -->
102101 <term name="broadcast">broadcast</term>
103 <term name="chapter">book chapter</term>
102 <!-- chapter is in the list of locator terms -->
104103 <term name="classic">classic</term>
105104 <term name="collection">collection</term>
106105 <term name="dataset">dataset</term>
112111 <!-- figure is in the list of locator terms -->
113112 <term name="graphic">graphic</term>
114113 <term name="hearing">hearing</term>
115 <term name="interview">interview</term>
114 <term name="interview">wywiad</term>
116115 <term name="legal_case">legal case</term>
117116 <term name="legislation">legislation</term>
118117 <term name="manuscript">manuscript</term>
143142 <term name="article-journal" form="short">journal art.</term>
144143 <term name="article-magazine" form="short">mag. art.</term>
145144 <term name="article-newspaper" form="short">newspaper art.</term>
146 <term name="book" form="short">bk.</term>
147 <term name="chapter" form="short">bk. chap.</term>
145 <!-- book is in the list of locator terms -->
146 <!-- chapter is in the list of locator terms -->
148147 <term name="document" form="short">doc.</term>
149148 <!-- figure is in the list of locator terms -->
150149 <term name="graphic" form="short">graph.</term>
302301 </term>
303302
304303 <!-- SHORT LOCATOR FORMS -->
305 <term name="appendix">
304 <term name="appendix" form="short">
306305 <single>app.</single>
307306 <multiple>apps.</multiple>
308307 </term>
309 <term name="article-locator">
308 <term name="article-locator" form="short">
310309 <single>art.</single>
311310 <multiple>arts.</multiple>
312311 </term>
313 <term name="elocation">
312 <term name="elocation" form="short">
314313 <single>loc.</single>
315314 <multiple>locs.</multiple>
316315 </term>
317 <term name="equation">
316 <term name="equation" form="short">
318317 <single>eq.</single>
319318 <multiple>eqs.</multiple>
320319 </term>
321 <term name="rule">
320 <term name="rule" form="short">
322321 <single>r.</single>
323322 <multiple>rr.</multiple>
324323 </term>
325 <term name="scene">
324 <term name="scene" form="short">
326325 <single>sc.</single>
327326 <multiple>scs.</multiple>
328327 </term>
329 <term name="table">
328 <term name="table" form="short">
330329 <single>tbl.</single>
331330 <multiple>tbls.</multiple>
332331 </term>
333 <term name="timestamp"> <!-- generally blank -->
332 <term name="timestamp" form="short"> <!-- generally blank -->
334333 <single></single>
335334 <multiple></multiple>
336335 </term>
337 <term name="title-locator">
336 <term name="title-locator" form="short">
338337 <single>tit.</single>
339338 <multiple>tits.</multiple>
340339 </term>
7171 <term name="in">em</term>
7272 <term name="in press">no prelo</term>
7373 <term name="internet">internet</term>
74 <term name="interview">entrevista</term>
7574 <term name="letter">carta</term>
7675 <term name="no date">sem data</term>
7776 <term name="no date" form="short">[s.d.]</term>
9594 <term name="article-magazine">magazine article</term>
9695 <term name="article-newspaper">newspaper article</term>
9796 <term name="bill">bill</term>
98 <term name="book">book</term>
97 <!-- book is in the list of locator terms -->
9998 <term name="broadcast">broadcast</term>
100 <term name="chapter">book chapter</term>
99 <!-- chapter is in the list of locator terms -->
101100 <term name="classic">classic</term>
102101 <term name="collection">collection</term>
103102 <term name="dataset">dataset</term>
109108 <!-- figure is in the list of locator terms -->
110109 <term name="graphic">graphic</term>
111110 <term name="hearing">hearing</term>
112 <term name="interview">interview</term>
111 <term name="interview">entrevista</term>
113112 <term name="legal_case">legal case</term>
114113 <term name="legislation">legislation</term>
115114 <term name="manuscript">manuscript</term>
140139 <term name="article-journal" form="short">journal art.</term>
141140 <term name="article-magazine" form="short">mag. art.</term>
142141 <term name="article-newspaper" form="short">newspaper art.</term>
143 <term name="book" form="short">bk.</term>
144 <term name="chapter" form="short">bk. chap.</term>
142 <!-- book is in the list of locator terms -->
143 <!-- chapter is in the list of locator terms -->
145144 <term name="document" form="short">doc.</term>
146145 <!-- figure is in the list of locator terms -->
147146 <term name="graphic" form="short">graph.</term>
311310 </term>
312311
313312 <!-- SHORT LOCATOR FORMS -->
314 <term name="appendix">
313 <term name="appendix" form="short">
315314 <single>app.</single>
316315 <multiple>apps.</multiple>
317316 </term>
318 <term name="article-locator">
317 <term name="article-locator" form="short">
319318 <single>art.</single>
320319 <multiple>arts.</multiple>
321320 </term>
322 <term name="elocation">
321 <term name="elocation" form="short">
323322 <single>loc.</single>
324323 <multiple>locs.</multiple>
325324 </term>
326 <term name="equation">
325 <term name="equation" form="short">
327326 <single>eq.</single>
328327 <multiple>eqs.</multiple>
329328 </term>
330 <term name="rule">
329 <term name="rule" form="short">
331330 <single>r.</single>
332331 <multiple>rr.</multiple>
333332 </term>
334 <term name="scene">
333 <term name="scene" form="short">
335334 <single>sc.</single>
336335 <multiple>scs.</multiple>
337336 </term>
338 <term name="table">
337 <term name="table" form="short">
339338 <single>tbl.</single>
340339 <multiple>tbls.</multiple>
341340 </term>
342 <term name="timestamp"> <!-- generally blank -->
341 <term name="timestamp" form="short"> <!-- generally blank -->
343342 <single></single>
344343 <multiple></multiple>
345344 </term>
346 <term name="title-locator">
345 <term name="title-locator" form="short">
347346 <single>tit.</single>
348347 <multiple>tits.</multiple>
349348 </term>
2020 <terms>
2121 <term name="advance-online-publication">advance online publication</term>
2222 <term name="album">album</term>
23 <term name="audio-recording">audio recording</term>
24 <term name="film">film</term>
23 <term name="audio-recording">gravação áudio</term>
24 <term name="film">filme</term>
2525 <term name="henceforth">henceforth</term>
2626 <term name="loc-cit">loc. cit.</term> <!-- like ibid., the abbreviated form is the regular form -->
27 <term name="no-place">no place</term>
28 <term name="no-place" form="short">n.p.</term>
29 <term name="no-publisher">no publisher</term> <!-- sine nomine -->
30 <term name="no-publisher" form="short">n.p.</term>
31 <term name="on">on</term>
27 <term name="no-place">sem local</term>
28 <term name="no-place" form="short">s.l.</term>
29 <term name="no-publisher">sem editor</term> <!-- sine nomine -->
30 <term name="no-publisher" form="short">s.e.</term>
31 <term name="on">em</term>
3232 <term name="op-cit">op. cit.</term> <!-- like ibid., the abbreviated form is the regular form -->
33 <term name="original-work-published">original work published</term>
33 <term name="original-work-published">trabalho original publicado</term>
3434 <term name="personal-communication">comunicação pessoal</term>
3535 <term name="podcast">podcast</term>
36 <term name="podcast-episode">podcast episode</term>
37 <term name="preprint">preprint</term>
38 <term name="radio-broadcast">radio broadcast</term>
39 <term name="radio-series">radio series</term>
36 <term name="podcast-episode">episódio podcast</term>
37 <term name="preprint">pré-impressão</term>
38 <term name="radio-broadcast">transmissão de rádio</term>
39 <term name="radio-series">série de rádio</term>
4040 <term name="radio-series-episode">radio series episode</term>
4141 <term name="special-issue">special issue</term>
4242 <term name="special-section">special section</term>
43 <term name="television-broadcast">television broadcast</term>
43 <term name="television-broadcast">transmissão televisiva</term>
4444 <term name="television-series">television series</term>
4545 <term name="television-series-episode">television series episode</term>
46 <term name="video">video</term>
46 <term name="video">vídeo</term>
4747 <term name="working-paper">working paper</term>
4848 <term name="accessed">acedido</term>
4949 <term name="and">e</term>
6868 <term name="in">em</term>
6969 <term name="in press">no prelo</term>
7070 <term name="internet">internet</term>
71 <term name="interview">entrevista</term>
7271 <term name="letter">carta</term>
7372 <term name="no date">sem data</term>
7473 <term name="no date" form="short">sem data</term>
8382 <multiple>refs.</multiple>
8483 </term>
8584 <term name="retrieved">obtido</term>
86 <term name="scale">scale</term>
85 <term name="scale">escala</term>
8786 <term name="version">versão</term>
8887
8988 <!-- LONG ITEM TYPE FORMS -->
90 <term name="article">preprint</term>
91 <term name="article-journal">journal article</term>
92 <term name="article-magazine">magazine article</term>
93 <term name="article-newspaper">newspaper article</term>
89 <term name="article">pré-impressão</term>
90 <term name="article-journal">article journal</term>
91 <term name="article-magazine">artigo de revista</term>
92 <term name="article-newspaper">artigo de jornal</term>
9493 <term name="bill">bill</term>
95 <term name="book">book</term>
96 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
98 <term name="classic">classic</term>
99 <term name="collection">collection</term>
94 <!-- book is in the list of locator terms -->
95 <term name="broadcast">transmissão</term>
96 <!-- chapter is in the list of locator terms -->
97 <term name="classic">clássico</term>
98 <term name="collection">coleção</term>
10099 <term name="dataset">dataset</term>
101 <term name="document">document</term>
100 <term name="document">documento</term>
102101 <term name="entry">entry</term>
103 <term name="entry-dictionary">dictionary entry</term>
104 <term name="entry-encyclopedia">encyclopedia entry</term>
105 <term name="event">event</term>
102 <term name="entry-dictionary">entrada de dicionário</term>
103 <term name="entry-encyclopedia">entrada de enciclopédia</term>
104 <term name="event">evento</term>
106105 <!-- figure is in the list of locator terms -->
107 <term name="graphic">graphic</term>
108 <term name="hearing">hearing</term>
109 <term name="interview">interview</term>
106 <term name="graphic">gráfico</term>
107 <term name="hearing">audiência</term>
108 <term name="interview">entrevista</term>
110109 <term name="legal_case">legal case</term>
111 <term name="legislation">legislation</term>
112 <term name="manuscript">manuscript</term>
113 <term name="map">map</term>
114 <term name="motion_picture">video recording</term>
110 <term name="legislation">legislação</term>
111 <term name="manuscript">manuscrito</term>
112 <term name="map">mapa</term>
113 <term name="motion_picture">gravação de vídeo</term>
115114 <term name="musical_score">musical score</term>
116 <term name="pamphlet">pamphlet</term>
115 <term name="pamphlet">panfleto</term>
117116 <term name="paper-conference">conference paper</term>
118 <term name="patent">patent</term>
117 <term name="patent">patente</term>
119118 <term name="performance">performance</term>
120 <term name="periodical">periodical</term>
119 <term name="periodical">periódico</term>
121120 <term name="personal_communication">comunicação pessoal</term>
122121 <term name="post">post</term>
123122 <term name="post-weblog">blog post</term>
124 <term name="regulation">regulation</term>
125 <term name="report">report</term>
123 <term name="regulation">regulamento</term>
124 <term name="report">relatório</term>
126125 <term name="review">review</term>
127126 <term name="review-book">book review</term>
128127 <term name="software">software</term>
129 <term name="song">audio recording</term>
130 <term name="speech">presentation</term>
131 <term name="standard">standard</term>
132 <term name="thesis">thesis</term>
133 <term name="treaty">treaty</term>
128 <term name="song">gravação áudio</term>
129 <term name="speech">discurso</term>
130 <term name="standard">padrão</term>
131 <term name="thesis">tése</term>
132 <term name="treaty">tratado</term>
134133 <term name="webpage">webpage</term>
135134
136135 <!-- SHORT ITEM TYPE FORMS -->
137136 <term name="article-journal" form="short">journal art.</term>
138137 <term name="article-magazine" form="short">mag. art.</term>
139138 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
139 <!-- book is in the list of locator terms -->
140 <!-- chapter is in the list of locator terms -->
142141 <term name="document" form="short">doc.</term>
143142 <!-- figure is in the list of locator terms -->
144 <term name="graphic" form="short">graph.</term>
145 <term name="interview" form="short">interv.</term>
143 <term name="graphic" form="short">gráf.</term>
144 <term name="interview" form="short">entrev.</term>
146145 <term name="manuscript" form="short">MS</term>
147 <term name="motion_picture" form="short">video rec.</term>
148 <term name="report" form="short">rep.</term>
146 <term name="motion_picture" form="short">transm. vídeo</term>
147 <term name="report" form="short">rel.</term>
149148 <term name="review" form="short">rev.</term>
150149 <term name="review-book" form="short">bk. rev.</term>
151 <term name="song" form="short">audio rec.</term>
150 <term name="song" form="short">grav. áudio</term>
152151
153152 <!-- HISTORICAL ERA TERMS -->
154153 <term name="ad">AD</term>
155 <term name="bc">BC</term>
156 <term name="bce">BCE</term>
157 <term name="ce">CE</term>
154 <term name="bc">AC</term>
155 <term name="bce">AEC</term>
156 <term name="ce">EC</term>
158157
159158 <!-- PUNCTUATION -->
160159 <term name="open-quote">«</term>
194193
195194 <!-- LONG LOCATOR FORMS -->
196195 <term name="act">
197 <single>act</single>
198 <multiple>acts</multiple>
196 <single>ata</single>
197 <multiple>atas</multiple>
199198 </term>
200199 <term name="appendix">
201 <single>appendix</single>
202 <multiple>appendices</multiple>
200 <single>apêndice</single>
201 <multiple>apêndices</multiple>
203202 </term>
204203 <term name="article-locator">
205 <single>article</single>
206 <multiple>articles</multiple>
204 <single>artigo</single>
205 <multiple>artigos</multiple>
207206 </term>
208207 <term name="canon">
209208 <single>canon</single>
210209 <multiple>canons</multiple>
211210 </term>
212211 <term name="elocation">
213 <single>location</single>
214 <multiple>locations</multiple>
212 <single>localização</single>
213 <multiple>localizações</multiple>
215214 </term>
216215 <term name="equation">
217 <single>equation</single>
218 <multiple>equations</multiple>
216 <single>equação</single>
217 <multiple>equações</multiple>
219218 </term>
220219 <term name="rule">
221 <single>rule</single>
222 <multiple>rules</multiple>
220 <single>regra</single>
221 <multiple>regras</multiple>
223222 </term>
224223 <term name="scene">
225 <single>scene</single>
226 <multiple>scenes</multiple>
224 <single>cena</single>
225 <multiple>cenas</multiple>
227226 </term>
228227 <term name="table">
229 <single>table</single>
230 <multiple>tables</multiple>
228 <single>tabela</single>
229 <multiple>tabelas</multiple>
231230 </term>
232231 <term name="timestamp"> <!-- generally blank -->
233232 <single></single>
234233 <multiple></multiple>
235234 </term>
236235 <term name="title-locator">
237 <single>title</single>
238 <multiple>titles</multiple>
236 <single>título</single>
237 <multiple>títulos</multiple>
239238 </term>
240239 <term name="book">
241240 <single>livro</single>
307306 </term>
308307
309308 <!-- SHORT LOCATOR FORMS -->
310 <term name="appendix">
309 <term name="appendix" form="short">
311310 <single>app.</single>
312311 <multiple>apps.</multiple>
313312 </term>
314 <term name="article-locator">
313 <term name="article-locator" form="short">
315314 <single>art.</single>
316315 <multiple>arts.</multiple>
317316 </term>
318 <term name="elocation">
317 <term name="elocation" form="short">
319318 <single>loc.</single>
320319 <multiple>locs.</multiple>
321320 </term>
322 <term name="equation">
321 <term name="equation" form="short">
323322 <single>eq.</single>
324323 <multiple>eqs.</multiple>
325324 </term>
326 <term name="rule">
325 <term name="rule" form="short">
327326 <single>r.</single>
328327 <multiple>rr.</multiple>
329328 </term>
330 <term name="scene">
329 <term name="scene" form="short">
331330 <single>sc.</single>
332331 <multiple>scs.</multiple>
333332 </term>
334 <term name="table">
333 <term name="table" form="short">
335334 <single>tbl.</single>
336335 <multiple>tbls.</multiple>
337336 </term>
338 <term name="timestamp"> <!-- generally blank -->
337 <term name="timestamp" form="short"> <!-- generally blank -->
339338 <single></single>
340339 <multiple></multiple>
341340 </term>
342 <term name="title-locator">
343 <single>tit.</single>
344 <multiple>tits.</multiple>
341 <term name="title-locator" form="short">
342 <single>tít.</single>
343 <multiple>títs.</multiple>
345344 </term>
346345 <term name="book" form="short">liv.</term>
347346 <term name="chapter" form="short">cap.</term>
348347 <term name="column" form="short">col.</term>
349348 <term name="figure" form="short">fig.</term>
350349 <term name="folio" form="short">f.</term>
351 <term name="issue" form="short">n.</term>
350 <term name="issue" form="short">n.º</term>
352351 <term name="line" form="short">l.</term>
353352 <term name="note" form="short">n.</term>
354353 <term name="opus" form="short">op.</term>
388387
389388 <!-- LONG ROLE FORMS -->
390389 <term name="chair">
391 <single>chair</single>
392 <multiple>chairs</multiple>
390 <single>cadeira</single>
391 <multiple>cadeiras</multiple>
393392 </term>
394393 <term name="compiler">
395 <single>compiler</single>
396 <multiple>compilers</multiple>
394 <single>compilador</single>
395 <multiple>compiladores</multiple>
397396 </term>
398397 <term name="contributor">
399 <single>contributor</single>
400 <multiple>contributors</multiple>
398 <single>contribuinte</single>
399 <multiple>contribuintes</multiple>
401400 </term>
402401 <term name="curator">
403 <single>curator</single>
404 <multiple>curators</multiple>
402 <single>curador</single>
403 <multiple>curadores</multiple>
405404 </term>
406405 <term name="executive-producer">
407 <single>executive producer</single>
408 <multiple>executive producers</multiple>
406 <single>produtor executivo</single>
407 <multiple>produtores executivos</multiple>
409408 </term>
410409 <term name="guest">
411 <single>guest</single>
412 <multiple>guests</multiple>
410 <single>convidado</single>
411 <multiple>convidados</multiple>
413412 </term>
414413 <term name="host">
415 <single>host</single>
416 <multiple>hosts</multiple>
414 <single>anfitrião</single>
415 <multiple>anfitriões</multiple>
417416 </term>
418417 <term name="narrator">
419 <single>narrator</single>
420 <multiple>narrators</multiple>
418 <single>narrador</single>
419 <multiple>narradores</multiple>
421420 </term>
422421 <term name="organizer">
423 <single>organizer</single>
424 <multiple>organizers</multiple>
422 <single>organizador</single>
423 <multiple>organizadores</multiple>
425424 </term>
426425 <term name="performer">
427 <single>performer</single>
428 <multiple>performers</multiple>
426 <single>ator</single>
427 <multiple>atores</multiple>
429428 </term>
430429 <term name="producer">
431 <single>producer</single>
432 <multiple>producers</multiple>
430 <single>produtor</single>
431 <multiple>produtores</multiple>
433432 </term>
434433 <term name="script-writer">
435 <single>writer</single>
436 <multiple>writers</multiple>
434 <single>escritor</single>
435 <multiple>escritores</multiple>
437436 </term>
438437 <term name="series-creator">
439 <single>series creator</single>
440 <multiple>series creators</multiple>
438 <single>criador de séries</single>
439 <multiple>criadores de séries</multiple>
441440 </term>
442441 <term name="director">
443 <single>director</single>
444 <multiple>directores</multiple>
442 <single>diretor</single>
443 <multiple>diretores</multiple>
445444 </term>
446445 <term name="editor">
447446 <single>editor</single>
448447 <multiple>editores</multiple>
449448 </term>
450449 <term name="editorial-director">
451 <single>editor</single>
452 <multiple>editores</multiple>
450 <single>diretor editorial</single>
451 <multiple>diretores editoriais</multiple>
453452 </term>
454453 <term name="illustrator">
455454 <single>ilustrador</single>
460459 <multiple>tradutores</multiple>
461460 </term>
462461 <term name="editortranslator">
463 <single>editor &amp; tradutor</single>
464 <multiple>editores &amp; tradutores</multiple>
462 <single>editor e tradutor</single>
463 <multiple>editores e tradutores</multiple>
465464 </term>
466465
467466 <!-- SHORT ROLE FORMS -->
478477 <multiple>curs.</multiple>
479478 </term>
480479 <term name="executive-producer" form="short">
481 <single>exec. prod.</single>
482 <multiple>exec. prods.</multiple>
480 <single>prod. exec.</single>
481 <multiple>prods. exec.</multiple>
483482 </term>
484483 <term name="narrator" form="short">
485484 <single>narr.</single>
531530 </term>
532531
533532 <!-- VERB ROLE FORMS -->
534 <term name="chair" form="verb">chaired by</term>
535 <term name="compiler" form="verb">compiled by</term>
536 <term name="contributor" form="verb">with</term>
537 <term name="curator" form="verb">curated by</term>
533 <term name="chair" form="verb">presidido por</term>
534 <term name="compiler" form="verb">compilado por</term>
535 <term name="contributor" form="verb">com</term>
536 <term name="curator" form="verb">curado por</term>
538537 <term name="executive-producer" form="verb">executive produced by</term>
539 <term name="guest" form="verb">with guest</term>
538 <term name="guest" form="verb">com convidado</term>
540539 <term name="host" form="verb">hosted by</term>
541 <term name="narrator" form="verb">narrated by</term>
542 <term name="organizer" form="verb">organized by</term>
543 <term name="performer" form="verb">performed by</term>
544 <term name="producer" form="verb">produced by</term>
545 <term name="script-writer" form="verb">written by</term>
546 <term name="series-creator" form="verb">created by</term>
540 <term name="narrator" form="verb">narrado por</term>
541 <term name="organizer" form="verb">organizado por</term>
542 <term name="performer" form="verb">atuado por</term>
543 <term name="producer" form="verb">produzido por</term>
544 <term name="script-writer" form="verb">escrito por</term>
545 <term name="series-creator" form="verb">criado por</term>
547546 <term name="container-author" form="verb">por</term>
548547 <term name="director" form="verb">dirigido por</term>
549548 <term name="editor" form="verb">editado por</term>
553552 <term name="recipient" form="verb">para</term>
554553 <term name="reviewed-author" form="verb">revisto por</term>
555554 <term name="translator" form="verb">traduzido por</term>
556 <term name="editortranslator" form="verb">editado &amp; traduzido por</term>
555 <term name="editortranslator" form="verb">editado e traduzido por</term>
557556
558557 <!-- SHORT VERB ROLE FORMS -->
559558 <term name="compiler" form="verb-short">comp. by</term>
6969 <term name="in">în</term>
7070 <term name="in press">sub tipar</term>
7171 <term name="internet">internet</term>
72 <term name="interview">interviu</term>
7372 <term name="letter">scrisoare</term>
7473 <term name="no date">fără dată</term>
7574 <term name="no date" form="short">f.a.</term>
9392 <term name="article-magazine">magazine article</term>
9493 <term name="article-newspaper">newspaper article</term>
9594 <term name="bill">bill</term>
96 <term name="book">book</term>
95 <!-- book is in the list of locator terms -->
9796 <term name="broadcast">broadcast</term>
98 <term name="chapter">book chapter</term>
97 <!-- chapter is in the list of locator terms -->
9998 <term name="classic">classic</term>
10099 <term name="collection">collection</term>
101100 <term name="dataset">dataset</term>
107106 <!-- figure is in the list of locator terms -->
108107 <term name="graphic">graphic</term>
109108 <term name="hearing">hearing</term>
110 <term name="interview">interview</term>
109 <term name="interview">interviu</term>
111110 <term name="legal_case">legal case</term>
112111 <term name="legislation">legislation</term>
113112 <term name="manuscript">manuscript</term>
138137 <term name="article-journal" form="short">journal art.</term>
139138 <term name="article-magazine" form="short">mag. art.</term>
140139 <term name="article-newspaper" form="short">newspaper art.</term>
141 <term name="book" form="short">bk.</term>
142 <term name="chapter" form="short">bk. chap.</term>
140 <!-- book is in the list of locator terms -->
141 <!-- chapter is in the list of locator terms -->
143142 <term name="document" form="short">doc.</term>
144143 <!-- figure is in the list of locator terms -->
145144 <term name="graphic" form="short">graph.</term>
298297 </term>
299298
300299 <!-- SHORT LOCATOR FORMS -->
301 <term name="appendix">
300 <term name="appendix" form="short">
302301 <single>app.</single>
303302 <multiple>apps.</multiple>
304303 </term>
305 <term name="article-locator">
304 <term name="article-locator" form="short">
306305 <single>art.</single>
307306 <multiple>arts.</multiple>
308307 </term>
309 <term name="elocation">
308 <term name="elocation" form="short">
310309 <single>loc.</single>
311310 <multiple>locs.</multiple>
312311 </term>
313 <term name="equation">
312 <term name="equation" form="short">
314313 <single>eq.</single>
315314 <multiple>eqs.</multiple>
316315 </term>
317 <term name="rule">
316 <term name="rule" form="short">
318317 <single>r.</single>
319318 <multiple>rr.</multiple>
320319 </term>
321 <term name="scene">
320 <term name="scene" form="short">
322321 <single>sc.</single>
323322 <multiple>scs.</multiple>
324323 </term>
325 <term name="table">
324 <term name="table" form="short">
326325 <single>tbl.</single>
327326 <multiple>tbls.</multiple>
328327 </term>
329 <term name="timestamp"> <!-- generally blank -->
328 <term name="timestamp" form="short"> <!-- generally blank -->
330329 <single></single>
331330 <multiple></multiple>
332331 </term>
333 <term name="title-locator">
332 <term name="title-locator" form="short">
334333 <single>tit.</single>
335334 <multiple>tits.</multiple>
336335 </term>
7070 <term name="in">в</term>
7171 <term name="in press">в печати</term>
7272 <term name="internet">Интернет</term>
73 <term name="interview">интервью</term>
7473 <term name="letter">письмо</term>
7574 <term name="no date">без даты</term>
7675 <term name="no date" form="short">б. д.</term>
9695 <term name="article-magazine">magazine article</term>
9796 <term name="article-newspaper">newspaper article</term>
9897 <term name="bill">bill</term>
99 <term name="book">book</term>
98 <!-- book is in the list of locator terms -->
10099 <term name="broadcast">broadcast</term>
101 <term name="chapter">book chapter</term>
100 <!-- chapter is in the list of locator terms -->
102101 <term name="classic">classic</term>
103102 <term name="collection">collection</term>
104103 <term name="dataset">dataset</term>
110109 <!-- figure is in the list of locator terms -->
111110 <term name="graphic">graphic</term>
112111 <term name="hearing">hearing</term>
113 <term name="interview">interview</term>
112 <term name="interview">интервью</term>
114113 <term name="legal_case">legal case</term>
115114 <term name="legislation">legislation</term>
116115 <term name="manuscript">manuscript</term>
141140 <term name="article-journal" form="short">journal art.</term>
142141 <term name="article-magazine" form="short">mag. art.</term>
143142 <term name="article-newspaper" form="short">newspaper art.</term>
144 <term name="book" form="short">bk.</term>
145 <term name="chapter" form="short">bk. chap.</term>
143 <!-- book is in the list of locator terms -->
144 <!-- chapter is in the list of locator terms -->
146145 <term name="document" form="short">doc.</term>
147146 <!-- figure is in the list of locator terms -->
148147 <term name="graphic" form="short">graph.</term>
320319 </term>
321320
322321 <!-- SHORT LOCATOR FORMS -->
323 <term name="appendix">
322 <term name="appendix" form="short">
324323 <single>app.</single>
325324 <multiple>apps.</multiple>
326325 </term>
327 <term name="article-locator">
326 <term name="article-locator" form="short">
328327 <single>art.</single>
329328 <multiple>arts.</multiple>
330329 </term>
331 <term name="elocation">
330 <term name="elocation" form="short">
332331 <single>loc.</single>
333332 <multiple>locs.</multiple>
334333 </term>
335 <term name="equation">
334 <term name="equation" form="short">
336335 <single>eq.</single>
337336 <multiple>eqs.</multiple>
338337 </term>
339 <term name="rule">
338 <term name="rule" form="short">
340339 <single>r.</single>
341340 <multiple>rr.</multiple>
342341 </term>
343 <term name="scene">
342 <term name="scene" form="short">
344343 <single>sc.</single>
345344 <multiple>scs.</multiple>
346345 </term>
347 <term name="table">
346 <term name="table" form="short">
348347 <single>tbl.</single>
349348 <multiple>tbls.</multiple>
350349 </term>
351 <term name="timestamp"> <!-- generally blank -->
350 <term name="timestamp" form="short"> <!-- generally blank -->
352351 <single></single>
353352 <multiple></multiple>
354353 </term>
355 <term name="title-locator">
354 <term name="title-locator" form="short">
356355 <single>tit.</single>
357356 <multiple>tits.</multiple>
358357 </term>
7171 <term name="in">v</term>
7272 <term name="in press">v tlači</term>
7373 <term name="internet">internet</term>
74 <term name="interview">osobná komunikácia</term>
7574 <term name="letter">list</term>
7675 <term name="no date">no date</term>
7776 <term name="no date" form="short">n.d.</term>
9594 <term name="article-magazine">magazine article</term>
9695 <term name="article-newspaper">newspaper article</term>
9796 <term name="bill">bill</term>
98 <term name="book">book</term>
97 <!-- book is in the list of locator terms -->
9998 <term name="broadcast">broadcast</term>
100 <term name="chapter">book chapter</term>
99 <!-- chapter is in the list of locator terms -->
101100 <term name="classic">classic</term>
102101 <term name="collection">collection</term>
103102 <term name="dataset">dataset</term>
109108 <!-- figure is in the list of locator terms -->
110109 <term name="graphic">graphic</term>
111110 <term name="hearing">hearing</term>
112 <term name="interview">interview</term>
111 <term name="interview">osobná komunikácia</term>
113112 <term name="legal_case">legal case</term>
114113 <term name="legislation">legislation</term>
115114 <term name="manuscript">manuscript</term>
140139 <term name="article-journal" form="short">journal art.</term>
141140 <term name="article-magazine" form="short">mag. art.</term>
142141 <term name="article-newspaper" form="short">newspaper art.</term>
143 <term name="book" form="short">bk.</term>
144 <term name="chapter" form="short">bk. chap.</term>
142 <!-- book is in the list of locator terms -->
143 <!-- chapter is in the list of locator terms -->
145144 <term name="document" form="short">doc.</term>
146145 <!-- figure is in the list of locator terms -->
147146 <term name="graphic" form="short">graph.</term>
305304 </term>
306305
307306 <!-- SHORT LOCATOR FORMS -->
308 <term name="appendix">
307 <term name="appendix" form="short">
309308 <single>app.</single>
310309 <multiple>apps.</multiple>
311310 </term>
312 <term name="article-locator">
311 <term name="article-locator" form="short">
313312 <single>art.</single>
314313 <multiple>arts.</multiple>
315314 </term>
316 <term name="elocation">
315 <term name="elocation" form="short">
317316 <single>loc.</single>
318317 <multiple>locs.</multiple>
319318 </term>
320 <term name="equation">
319 <term name="equation" form="short">
321320 <single>eq.</single>
322321 <multiple>eqs.</multiple>
323322 </term>
324 <term name="rule">
323 <term name="rule" form="short">
325324 <single>r.</single>
326325 <multiple>rr.</multiple>
327326 </term>
328 <term name="scene">
327 <term name="scene" form="short">
329328 <single>sc.</single>
330329 <multiple>scs.</multiple>
331330 </term>
332 <term name="table">
331 <term name="table" form="short">
333332 <single>tbl.</single>
334333 <multiple>tbls.</multiple>
335334 </term>
336 <term name="timestamp"> <!-- generally blank -->
335 <term name="timestamp" form="short"> <!-- generally blank -->
337336 <single></single>
338337 <multiple></multiple>
339338 </term>
340 <term name="title-locator">
339 <term name="title-locator" form="short">
341340 <single>tit.</single>
342341 <multiple>tits.</multiple>
343342 </term>
7171 <term name="in">v</term>
7272 <term name="in press">v tisku</term>
7373 <term name="internet">internet</term>
74 <term name="interview">intervju</term>
7574 <term name="letter">pismo</term>
7675 <term name="no date">brez datuma</term>
7776 <term name="no date" form="short">b. d.</term>
9594 <term name="article-magazine">magazine article</term>
9695 <term name="article-newspaper">newspaper article</term>
9796 <term name="bill">bill</term>
98 <term name="book">book</term>
97 <!-- book is in the list of locator terms -->
9998 <term name="broadcast">broadcast</term>
100 <term name="chapter">book chapter</term>
99 <!-- chapter is in the list of locator terms -->
101100 <term name="classic">classic</term>
102101 <term name="collection">collection</term>
103102 <term name="dataset">dataset</term>
109108 <!-- figure is in the list of locator terms -->
110109 <term name="graphic">graphic</term>
111110 <term name="hearing">hearing</term>
112 <term name="interview">interview</term>
111 <term name="interview">intervju</term>
113112 <term name="legal_case">legal case</term>
114113 <term name="legislation">legislation</term>
115114 <term name="manuscript">manuscript</term>
140139 <term name="article-journal" form="short">journal art.</term>
141140 <term name="article-magazine" form="short">mag. art.</term>
142141 <term name="article-newspaper" form="short">newspaper art.</term>
143 <term name="book" form="short">bk.</term>
144 <term name="chapter" form="short">bk. chap.</term>
142 <!-- book is in the list of locator terms -->
143 <!-- chapter is in the list of locator terms -->
145144 <term name="document" form="short">doc.</term>
146145 <!-- figure is in the list of locator terms -->
147146 <term name="graphic" form="short">graph.</term>
299298 </term>
300299
301300 <!-- SHORT LOCATOR FORMS -->
302 <term name="appendix">
301 <term name="appendix" form="short">
303302 <single>app.</single>
304303 <multiple>apps.</multiple>
305304 </term>
306 <term name="article-locator">
305 <term name="article-locator" form="short">
307306 <single>art.</single>
308307 <multiple>arts.</multiple>
309308 </term>
310 <term name="elocation">
309 <term name="elocation" form="short">
311310 <single>loc.</single>
312311 <multiple>locs.</multiple>
313312 </term>
314 <term name="equation">
313 <term name="equation" form="short">
315314 <single>eq.</single>
316315 <multiple>eqs.</multiple>
317316 </term>
318 <term name="rule">
317 <term name="rule" form="short">
319318 <single>r.</single>
320319 <multiple>rr.</multiple>
321320 </term>
322 <term name="scene">
321 <term name="scene" form="short">
323322 <single>sc.</single>
324323 <multiple>scs.</multiple>
325324 </term>
326 <term name="table">
325 <term name="table" form="short">
327326 <single>tbl.</single>
328327 <multiple>tbls.</multiple>
329328 </term>
330 <term name="timestamp"> <!-- generally blank -->
329 <term name="timestamp" form="short"> <!-- generally blank -->
331330 <single></single>
332331 <multiple></multiple>
333332 </term>
334 <term name="title-locator">
333 <term name="title-locator" form="short">
335334 <single>tit.</single>
336335 <multiple>tits.</multiple>
337336 </term>
6565 <term name="in">у</term>
6666 <term name="in press">у штампи</term>
6767 <term name="internet">Интернет</term>
68 <term name="interview">интервју</term>
6968 <term name="letter">писмо</term>
7069 <term name="no date">no date</term>
7170 <term name="no date" form="short">без датума</term>
8988 <term name="article-magazine">magazine article</term>
9089 <term name="article-newspaper">newspaper article</term>
9190 <term name="bill">bill</term>
92 <term name="book">book</term>
91 <!-- book is in the list of locator terms -->
9392 <term name="broadcast">broadcast</term>
94 <term name="chapter">book chapter</term>
93 <!-- chapter is in the list of locator terms -->
9594 <term name="classic">classic</term>
9695 <term name="collection">collection</term>
9796 <term name="dataset">dataset</term>
103102 <!-- figure is in the list of locator terms -->
104103 <term name="graphic">graphic</term>
105104 <term name="hearing">hearing</term>
106 <term name="interview">interview</term>
105 <term name="interview">интервју</term>
107106 <term name="legal_case">legal case</term>
108107 <term name="legislation">legislation</term>
109108 <term name="manuscript">manuscript</term>
134133 <term name="article-journal" form="short">journal art.</term>
135134 <term name="article-magazine" form="short">mag. art.</term>
136135 <term name="article-newspaper" form="short">newspaper art.</term>
137 <term name="book" form="short">bk.</term>
138 <term name="chapter" form="short">bk. chap.</term>
136 <!-- book is in the list of locator terms -->
137 <!-- chapter is in the list of locator terms -->
139138 <term name="document" form="short">doc.</term>
140139 <!-- figure is in the list of locator terms -->
141140 <term name="graphic" form="short">graph.</term>
299298 </term>
300299
301300 <!-- SHORT LOCATOR FORMS -->
302 <term name="appendix">
301 <term name="appendix" form="short">
303302 <single>app.</single>
304303 <multiple>apps.</multiple>
305304 </term>
306 <term name="article-locator">
305 <term name="article-locator" form="short">
307306 <single>art.</single>
308307 <multiple>arts.</multiple>
309308 </term>
310 <term name="elocation">
309 <term name="elocation" form="short">
311310 <single>loc.</single>
312311 <multiple>locs.</multiple>
313312 </term>
314 <term name="equation">
313 <term name="equation" form="short">
315314 <single>eq.</single>
316315 <multiple>eqs.</multiple>
317316 </term>
318 <term name="rule">
317 <term name="rule" form="short">
319318 <single>r.</single>
320319 <multiple>rr.</multiple>
321320 </term>
322 <term name="scene">
321 <term name="scene" form="short">
323322 <single>sc.</single>
324323 <multiple>scs.</multiple>
325324 </term>
326 <term name="table">
325 <term name="table" form="short">
327326 <single>tbl.</single>
328327 <multiple>tbls.</multiple>
329328 </term>
330 <term name="timestamp"> <!-- generally blank -->
329 <term name="timestamp" form="short"> <!-- generally blank -->
331330 <single></single>
332331 <multiple></multiple>
333332 </term>
334 <term name="title-locator">
333 <term name="title-locator" form="short">
335334 <single>tit.</single>
336335 <multiple>tits.</multiple>
337336 </term>
7777 <term name="in">i</term>
7878 <term name="in press">i tryck</term>
7979 <term name="internet">internet</term>
80 <term name="interview">intervju</term>
8180 <term name="letter">brev</term>
8281 <term name="no date">utan årtal</term>
8382 <term name="no date" form="short">u.å.</term>
101100 <term name="article-magazine">magazine article</term>
102101 <term name="article-newspaper">newspaper article</term>
103102 <term name="bill">bill</term>
104 <term name="book">book</term>
103 <!-- book is in the list of locator terms -->
105104 <term name="broadcast">broadcast</term>
106 <term name="chapter">book chapter</term>
105 <!-- chapter is in the list of locator terms -->
107106 <term name="classic">classic</term>
108107 <term name="collection">collection</term>
109108 <term name="dataset">dataset</term>
115114 <!-- figure is in the list of locator terms -->
116115 <term name="graphic">graphic</term>
117116 <term name="hearing">hearing</term>
118 <term name="interview">interview</term>
117 <term name="interview">intervju</term>
119118 <term name="legal_case">legal case</term>
120119 <term name="legislation">legislation</term>
121120 <term name="manuscript">manuscript</term>
146145 <term name="article-journal" form="short">journal art.</term>
147146 <term name="article-magazine" form="short">mag. art.</term>
148147 <term name="article-newspaper" form="short">newspaper art.</term>
149 <term name="book" form="short">bk.</term>
150 <term name="chapter" form="short">bk. chap.</term>
148 <!-- book is in the list of locator terms -->
149 <!-- chapter is in the list of locator terms -->
151150 <term name="document" form="short">doc.</term>
152151 <!-- figure is in the list of locator terms -->
153152 <term name="graphic" form="short">graph.</term>
309308 </term>
310309
311310 <!-- SHORT LOCATOR FORMS -->
312 <term name="appendix">
311 <term name="appendix" form="short">
313312 <single>app.</single>
314313 <multiple>apps.</multiple>
315314 </term>
316 <term name="article-locator">
315 <term name="article-locator" form="short">
317316 <single>art.</single>
318317 <multiple>arts.</multiple>
319318 </term>
320 <term name="elocation">
319 <term name="elocation" form="short">
321320 <single>loc.</single>
322321 <multiple>locs.</multiple>
323322 </term>
324 <term name="equation">
323 <term name="equation" form="short">
325324 <single>eq.</single>
326325 <multiple>eqs.</multiple>
327326 </term>
328 <term name="rule">
327 <term name="rule" form="short">
329328 <single>r.</single>
330329 <multiple>rr.</multiple>
331330 </term>
332 <term name="scene">
331 <term name="scene" form="short">
333332 <single>sc.</single>
334333 <multiple>scs.</multiple>
335334 </term>
336 <term name="table">
335 <term name="table" form="short">
337336 <single>tbl.</single>
338337 <multiple>tbls.</multiple>
339338 </term>
340 <term name="timestamp"> <!-- generally blank -->
339 <term name="timestamp" form="short"> <!-- generally blank -->
341340 <single></single>
342341 <multiple></multiple>
343342 </term>
344 <term name="title-locator">
343 <term name="title-locator" form="short">
345344 <single>tit.</single>
346345 <multiple>tits.</multiple>
347346 </term>
6868 <term name="in">ใน</term>
6969 <term name="in press">กำลังรอตีพิมพ์</term>
7070 <term name="internet">อินเทอร์เน็ต</term>
71 <term name="interview">การสัมภาษณ์</term>
7271 <term name="letter">จดหมาย</term>
7372 <term name="no date">ไม่ปรากฏปีที่พิมพ์</term>
7473 <term name="no date" form="short">ม.ป.ป.</term>
9291 <term name="article-magazine">magazine article</term>
9392 <term name="article-newspaper">newspaper article</term>
9493 <term name="bill">bill</term>
95 <term name="book">book</term>
94 <!-- book is in the list of locator terms -->
9695 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
96 <!-- chapter is in the list of locator terms -->
9897 <term name="classic">classic</term>
9998 <term name="collection">collection</term>
10099 <term name="dataset">dataset</term>
106105 <!-- figure is in the list of locator terms -->
107106 <term name="graphic">graphic</term>
108107 <term name="hearing">hearing</term>
109 <term name="interview">interview</term>
108 <term name="interview">การสัมภาษณ์</term>
110109 <term name="legal_case">legal case</term>
111110 <term name="legislation">legislation</term>
112111 <term name="manuscript">manuscript</term>
137136 <term name="article-journal" form="short">journal art.</term>
138137 <term name="article-magazine" form="short">mag. art.</term>
139138 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
139 <!-- book is in the list of locator terms -->
140 <!-- chapter is in the list of locator terms -->
142141 <term name="document" form="short">doc.</term>
143142 <!-- figure is in the list of locator terms -->
144143 <term name="graphic" form="short">graph.</term>
296295 </term>
297296
298297 <!-- SHORT LOCATOR FORMS -->
299 <term name="appendix">
298 <term name="appendix" form="short">
300299 <single>app.</single>
301300 <multiple>apps.</multiple>
302301 </term>
303 <term name="article-locator">
302 <term name="article-locator" form="short">
304303 <single>art.</single>
305304 <multiple>arts.</multiple>
306305 </term>
307 <term name="elocation">
306 <term name="elocation" form="short">
308307 <single>loc.</single>
309308 <multiple>locs.</multiple>
310309 </term>
311 <term name="equation">
310 <term name="equation" form="short">
312311 <single>eq.</single>
313312 <multiple>eqs.</multiple>
314313 </term>
315 <term name="rule">
314 <term name="rule" form="short">
316315 <single>r.</single>
317316 <multiple>rr.</multiple>
318317 </term>
319 <term name="scene">
318 <term name="scene" form="short">
320319 <single>sc.</single>
321320 <multiple>scs.</multiple>
322321 </term>
323 <term name="table">
322 <term name="table" form="short">
324323 <single>tbl.</single>
325324 <multiple>tbls.</multiple>
326325 </term>
327 <term name="timestamp"> <!-- generally blank -->
326 <term name="timestamp" form="short"> <!-- generally blank -->
328327 <single></single>
329328 <multiple></multiple>
330329 </term>
331 <term name="title-locator">
330 <term name="title-locator" form="short">
332331 <single>tit.</single>
333332 <multiple>tits.</multiple>
334333 </term>
7878 <term name="in">içinde</term>
7979 <term name="in press">basımda</term>
8080 <term name="internet">internet</term>
81 <term name="interview">mülakat</term>
8281 <term name="letter">mektup</term>
8382 <term name="no date">tarih yok</term>
8483 <term name="no date" form="short">t.y.</term>
102101 <term name="article-magazine">magazine article</term>
103102 <term name="article-newspaper">newspaper article</term>
104103 <term name="bill">bill</term>
105 <term name="book">book</term>
104 <!-- book is in the list of locator terms -->
106105 <term name="broadcast">broadcast</term>
107 <term name="chapter">book chapter</term>
106 <!-- chapter is in the list of locator terms -->
108107 <term name="classic">classic</term>
109108 <term name="collection">collection</term>
110109 <term name="dataset">dataset</term>
116115 <!-- figure is in the list of locator terms -->
117116 <term name="graphic">graphic</term>
118117 <term name="hearing">hearing</term>
119 <term name="interview">interview</term>
118 <term name="interview">mülakat</term>
120119 <term name="legal_case">legal case</term>
121120 <term name="legislation">legislation</term>
122121 <term name="manuscript">manuscript</term>
147146 <term name="article-journal" form="short">journal art.</term>
148147 <term name="article-magazine" form="short">mag. art.</term>
149148 <term name="article-newspaper" form="short">newspaper art.</term>
150 <term name="book" form="short">bk.</term>
151 <term name="chapter" form="short">bk. chap.</term>
149 <!-- book is in the list of locator terms -->
150 <!-- chapter is in the list of locator terms -->
152151 <term name="document" form="short">doc.</term>
153152 <!-- figure is in the list of locator terms -->
154153 <term name="graphic" form="short">graph.</term>
306305 </term>
307306
308307 <!-- SHORT LOCATOR FORMS -->
309 <term name="appendix">
308 <term name="appendix" form="short">
310309 <single>app.</single>
311310 <multiple>apps.</multiple>
312311 </term>
313 <term name="article-locator">
312 <term name="article-locator" form="short">
314313 <single>art.</single>
315314 <multiple>arts.</multiple>
316315 </term>
317 <term name="elocation">
316 <term name="elocation" form="short">
318317 <single>loc.</single>
319318 <multiple>locs.</multiple>
320319 </term>
321 <term name="equation">
320 <term name="equation" form="short">
322321 <single>eq.</single>
323322 <multiple>eqs.</multiple>
324323 </term>
325 <term name="rule">
324 <term name="rule" form="short">
326325 <single>r.</single>
327326 <multiple>rr.</multiple>
328327 </term>
329 <term name="scene">
328 <term name="scene" form="short">
330329 <single>sc.</single>
331330 <multiple>scs.</multiple>
332331 </term>
333 <term name="table">
332 <term name="table" form="short">
334333 <single>tbl.</single>
335334 <multiple>tbls.</multiple>
336335 </term>
337 <term name="timestamp"> <!-- generally blank -->
336 <term name="timestamp" form="short"> <!-- generally blank -->
338337 <single></single>
339338 <multiple></multiple>
340339 </term>
341 <term name="title-locator">
340 <term name="title-locator" form="short">
342341 <single>tit.</single>
343342 <multiple>tits.</multiple>
344343 </term>
6262 <term name="in">в</term>
6363 <term name="in press">у пресі</term>
6464 <term name="internet">інтернет</term>
65 <term name="interview">інтервю</term>
6665 <term name="letter">лист</term>
6766 <term name="no date">без дати</term>
6867 <term name="no date" form="short">б. д.</term>
8079 <term name="article-magazine">magazine article</term>
8180 <term name="article-newspaper">newspaper article</term>
8281 <term name="bill">bill</term>
83 <term name="book">book</term>
82 <!-- book is in the list of locator terms -->
8483 <term name="broadcast">broadcast</term>
85 <term name="chapter">book chapter</term>
84 <!-- chapter is in the list of locator terms -->
8685 <term name="classic">classic</term>
8786 <term name="collection">collection</term>
8887 <term name="dataset">dataset</term>
9493 <!-- figure is in the list of locator terms -->
9594 <term name="graphic">graphic</term>
9695 <term name="hearing">hearing</term>
97 <term name="interview">interview</term>
96 <term name="interview">інтервю</term>
9897 <term name="legal_case">legal case</term>
9998 <term name="legislation">legislation</term>
10099 <term name="manuscript">manuscript</term>
125124 <term name="article-journal" form="short">journal art.</term>
126125 <term name="article-magazine" form="short">mag. art.</term>
127126 <term name="article-newspaper" form="short">newspaper art.</term>
128 <term name="book" form="short">bk.</term>
129 <term name="chapter" form="short">bk. chap.</term>
127 <!-- book is in the list of locator terms -->
128 <!-- chapter is in the list of locator terms -->
130129 <term name="document" form="short">doc.</term>
131130 <!-- figure is in the list of locator terms -->
132131 <term name="graphic" form="short">graph.</term>
275274 </term>
276275
277276 <!-- SHORT LOCATOR FORMS -->
278 <term name="appendix">
277 <term name="appendix" form="short">
279278 <single>app.</single>
280279 <multiple>apps.</multiple>
281280 </term>
282 <term name="article-locator">
281 <term name="article-locator" form="short">
283282 <single>art.</single>
284283 <multiple>arts.</multiple>
285284 </term>
286 <term name="elocation">
285 <term name="elocation" form="short">
287286 <single>loc.</single>
288287 <multiple>locs.</multiple>
289288 </term>
290 <term name="equation">
289 <term name="equation" form="short">
291290 <single>eq.</single>
292291 <multiple>eqs.</multiple>
293292 </term>
294 <term name="rule">
293 <term name="rule" form="short">
295294 <single>r.</single>
296295 <multiple>rr.</multiple>
297296 </term>
298 <term name="scene">
297 <term name="scene" form="short">
299298 <single>sc.</single>
300299 <multiple>scs.</multiple>
301300 </term>
302 <term name="table">
301 <term name="table" form="short">
303302 <single>tbl.</single>
304303 <multiple>tbls.</multiple>
305304 </term>
306 <term name="timestamp"> <!-- generally blank -->
305 <term name="timestamp" form="short"> <!-- generally blank -->
307306 <single></single>
308307 <multiple></multiple>
309308 </term>
310 <term name="title-locator">
309 <term name="title-locator" form="short">
311310 <single>tit.</single>
312311 <multiple>tits.</multiple>
313312 </term>
6868 <term name="in">trong</term>
6969 <term name="in press">in press</term>
7070 <term name="internet">internet</term>
71 <term name="interview">interview</term>
7271 <term name="letter">thư</term>
7372 <term name="no date">không ngày</term>
7473 <term name="no date" form="short">không ngày</term>
9291 <term name="article-magazine">magazine article</term>
9392 <term name="article-newspaper">newspaper article</term>
9493 <term name="bill">bill</term>
95 <term name="book">book</term>
94 <!-- book is in the list of locator terms -->
9695 <term name="broadcast">broadcast</term>
97 <term name="chapter">book chapter</term>
96 <!-- chapter is in the list of locator terms -->
9897 <term name="classic">classic</term>
9998 <term name="collection">collection</term>
10099 <term name="dataset">dataset</term>
137136 <term name="article-journal" form="short">journal art.</term>
138137 <term name="article-magazine" form="short">mag. art.</term>
139138 <term name="article-newspaper" form="short">newspaper art.</term>
140 <term name="book" form="short">bk.</term>
141 <term name="chapter" form="short">bk. chap.</term>
139 <!-- book is in the list of locator terms -->
140 <!-- chapter is in the list of locator terms -->
142141 <term name="document" form="short">doc.</term>
143142 <!-- figure is in the list of locator terms -->
144143 <term name="graphic" form="short">graph.</term>
302301 </term>
303302
304303 <!-- SHORT LOCATOR FORMS -->
305 <term name="appendix">
304 <term name="appendix" form="short">
306305 <single>app.</single>
307306 <multiple>apps.</multiple>
308307 </term>
309 <term name="article-locator">
308 <term name="article-locator" form="short">
310309 <single>art.</single>
311310 <multiple>arts.</multiple>
312311 </term>
313 <term name="elocation">
312 <term name="elocation" form="short">
314313 <single>loc.</single>
315314 <multiple>locs.</multiple>
316315 </term>
317 <term name="equation">
316 <term name="equation" form="short">
318317 <single>eq.</single>
319318 <multiple>eqs.</multiple>
320319 </term>
321 <term name="rule">
320 <term name="rule" form="short">
322321 <single>r.</single>
323322 <multiple>rr.</multiple>
324323 </term>
325 <term name="scene">
324 <term name="scene" form="short">
326325 <single>sc.</single>
327326 <multiple>scs.</multiple>
328327 </term>
329 <term name="table">
328 <term name="table" form="short">
330329 <single>tbl.</single>
331330 <multiple>tbls.</multiple>
332331 </term>
333 <term name="timestamp"> <!-- generally blank -->
332 <term name="timestamp" form="short"> <!-- generally blank -->
334333 <single></single>
335334 <multiple></multiple>
336335 </term>
337 <term name="title-locator">
336 <term name="title-locator" form="short">
338337 <single>tit.</single>
339338 <multiple>tits.</multiple>
340339 </term>
7171 <term name="in">收入</term>
7272 <term name="in press">送印中</term>
7373 <term name="internet">网际网络</term>
74 <term name="interview">访谈</term>
7574 <term name="letter">信函</term>
7675 <term name="no date">日期不详</term>
7776 <term name="no date" form="short">不详</term>
8988 <term name="article-magazine">magazine article</term>
9089 <term name="article-newspaper">newspaper article</term>
9190 <term name="bill">bill</term>
92 <term name="book">book</term>
91 <!-- book is in the list of locator terms -->
9392 <term name="broadcast">broadcast</term>
94 <term name="chapter">book chapter</term>
93 <!-- chapter is in the list of locator terms -->
9594 <term name="classic">classic</term>
9695 <term name="collection">collection</term>
9796 <term name="dataset">dataset</term>
103102 <!-- figure is in the list of locator terms -->
104103 <term name="graphic">graphic</term>
105104 <term name="hearing">hearing</term>
106 <term name="interview">interview</term>
105 <term name="interview">访谈</term>
107106 <term name="legal_case">legal case</term>
108107 <term name="legislation">legislation</term>
109108 <term name="manuscript">manuscript</term>
134133 <term name="article-journal" form="short">journal art.</term>
135134 <term name="article-magazine" form="short">mag. art.</term>
136135 <term name="article-newspaper" form="short">newspaper art.</term>
137 <term name="book" form="short">bk.</term>
138 <term name="chapter" form="short">bk. chap.</term>
136 <!-- book is in the list of locator terms -->
137 <!-- chapter is in the list of locator terms -->
139138 <term name="document" form="short">doc.</term>
140139 <!-- figure is in the list of locator terms -->
141140 <term name="graphic" form="short">graph.</term>
242241 <term name="volume">卷</term>
243242
244243 <!-- SHORT LOCATOR FORMS -->
245 <term name="appendix">
244 <term name="appendix" form="short">
246245 <single>app.</single>
247246 <multiple>apps.</multiple>
248247 </term>
249 <term name="article-locator">
248 <term name="article-locator" form="short">
250249 <single>art.</single>
251250 <multiple>arts.</multiple>
252251 </term>
253 <term name="elocation">
252 <term name="elocation" form="short">
254253 <single>loc.</single>
255254 <multiple>locs.</multiple>
256255 </term>
257 <term name="equation">
256 <term name="equation" form="short">
258257 <single>eq.</single>
259258 <multiple>eqs.</multiple>
260259 </term>
261 <term name="rule">
260 <term name="rule" form="short">
262261 <single>r.</single>
263262 <multiple>rr.</multiple>
264263 </term>
265 <term name="scene">
264 <term name="scene" form="short">
266265 <single>sc.</single>
267266 <multiple>scs.</multiple>
268267 </term>
269 <term name="table">
268 <term name="table" form="short">
270269 <single>tbl.</single>
271270 <multiple>tbls.</multiple>
272271 </term>
273 <term name="timestamp"> <!-- generally blank -->
272 <term name="timestamp" form="short"> <!-- generally blank -->
274273 <single></single>
275274 <multiple></multiple>
276275 </term>
277 <term name="title-locator">
276 <term name="title-locator" form="short">
278277 <single>tit.</single>
279278 <multiple>tits.</multiple>
280279 </term>
458457 <term name="illustrator" form="verb-short">绘</term>
459458 <term name="translator" form="verb-short">译</term>
460459 <term name="editortranslator" form="verb-short">编译</term>
461 <term name="reviewed-author" form="verb">校</term>
460 <term name="reviewed-author" form="verb-short">校</term>
462461
463462 <!-- LONG MONTH FORMS -->
464463 <term name="month-01">一月</term>
6565 <term name="in">收入</term>
6666 <term name="in press">印行中</term>
6767 <term name="internet">互聯網</term>
68 <term name="interview">訪談</term>
6968 <term name="letter">信函</term>
7069 <term name="no date">日期不詳</term>
7170 <term name="no date" form="short">不詳</term>
8382 <term name="article-magazine">magazine article</term>
8483 <term name="article-newspaper">newspaper article</term>
8584 <term name="bill">bill</term>
86 <term name="book">book</term>
85 <!-- book is in the list of locator terms -->
8786 <term name="broadcast">broadcast</term>
88 <term name="chapter">book chapter</term>
87 <!-- chapter is in the list of locator terms -->
8988 <term name="classic">classic</term>
9089 <term name="collection">collection</term>
9190 <term name="dataset">dataset</term>
9796 <!-- figure is in the list of locator terms -->
9897 <term name="graphic">graphic</term>
9998 <term name="hearing">hearing</term>
100 <term name="interview">interview</term>
99 <term name="interview">訪談</term>
101100 <term name="legal_case">legal case</term>
102101 <term name="legislation">legislation</term>
103102 <term name="manuscript">manuscript</term>
128127 <term name="article-journal" form="short">journal art.</term>
129128 <term name="article-magazine" form="short">mag. art.</term>
130129 <term name="article-newspaper" form="short">newspaper art.</term>
131 <term name="book" form="short">bk.</term>
132 <term name="chapter" form="short">bk. chap.</term>
130 <!-- book is in the list of locator terms -->
131 <!-- chapter is in the list of locator terms -->
133132 <term name="document" form="short">doc.</term>
134133 <!-- figure is in the list of locator terms -->
135134 <term name="graphic" form="short">graph.</term>
236235 <term name="volume">卷</term>
237236
238237 <!-- SHORT LOCATOR FORMS -->
239 <term name="appendix">
238 <term name="appendix" form="short">
240239 <single>app.</single>
241240 <multiple>apps.</multiple>
242241 </term>
243 <term name="article-locator">
242 <term name="article-locator" form="short">
244243 <single>art.</single>
245244 <multiple>arts.</multiple>
246245 </term>
247 <term name="elocation">
246 <term name="elocation" form="short">
248247 <single>loc.</single>
249248 <multiple>locs.</multiple>
250249 </term>
251 <term name="equation">
250 <term name="equation" form="short">
252251 <single>eq.</single>
253252 <multiple>eqs.</multiple>
254253 </term>
255 <term name="rule">
254 <term name="rule" form="short">
256255 <single>r.</single>
257256 <multiple>rr.</multiple>
258257 </term>
259 <term name="scene">
258 <term name="scene" form="short">
260259 <single>sc.</single>
261260 <multiple>scs.</multiple>
262261 </term>
263 <term name="table">
262 <term name="table" form="short">
264263 <single>tbl.</single>
265264 <multiple>tbls.</multiple>
266265 </term>
267 <term name="timestamp"> <!-- generally blank -->
266 <term name="timestamp" form="short"> <!-- generally blank -->
268267 <single></single>
269268 <multiple></multiple>
270269 </term>
271 <term name="title-locator">
270 <term name="title-locator" form="short">
272271 <single>tit.</single>
273272 <multiple>tits.</multiple>
274273 </term>