-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathguidelines.xml
More file actions
1393 lines (1364 loc) · 56.7 KB
/
Copy pathguidelines.xml
File metadata and controls
1393 lines (1364 loc) · 56.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<div class="w3-half w3-padding-64" id="dataentrysupport">
<h3>Data entry support</h3>
<div class="w3-container w3-margin">
<div class="w3-row-padding w3-margin w3-large">
<div class="w3-col s2 m2 l2"><b>Hit the button to get the symbols...</b></div>
<div class="w3-col s2 m2 l2"><b>... or type all this...</b></div>
<div class="w3-col s2 m2 l2"><b>...and it will be displayed as...</b></div>
<div class="w3-col s2 m2 l2"><b>...because it is transformed into...</b></div>
<div class="w3-col s2 m2 l2"><b>...which is...</b></div>
<div class="w3-col s2 m2 l2"><b>...and by the way...</b></div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">
<a href="#" class="w3-button w3-blue w3-small">Sense</a>
</div>
<div class="w3-col s2 m2 l2"><A< The first sense >A></div>
<div class="w3-col s2 m2 l2">
<b>A)</b> The first meaning</div>
<div class="w3-col s2 m2 l2">
<code><sense n="A">The first sense </sense></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-sense.html">TEI element sense</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<ul class="w3-ul">
<li>You can nest as many of this as you want. e.g. <A< this has two nested senses <a< sense 1 >1> and <2< sense 2 >2> >A> </li>
<li>The order of the section uses at the first level Upper Case letters, at the second level numbers, at the third level lower case letters and at the third level Greek letters.</li>
<li>
To specify the language of use <Ade< .... >A> for example, where <b>de</b> is
the <a target="_blank" href="https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes">ISO 639-1</a>
code for that language.</li>
</ul>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">
<a href="#" class="w3-button w3-blue w3-small">Link</a>
</div>
<div class="w3-col s2 m2 l2">(link text)[https://your.full.link]</div>
<div class="w3-col s2 m2 l2">
<a href="https://your.full.link">link text</a>
</div>
<div class="w3-col s2 m2 l2">
<code><ref type="external" target="https://your.full.link">link text</ref></code>
</div><div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-ref.html">TEI element ref</a>
</div><div class="w3-col s2 m2 l2 notes">
<p>You might use this to enter your own links. For example to link to another lemma, or to link to an entity in BM. You could also use it to link to any other resource on the web. </p>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">
<a href="#" class="w3-button w3-blue w3-small">internal reference</a>
</div>
<div class="w3-col s2 m2 l2">#D2a</div>
<div class="w3-col s2 m2 l2">
<a href="https://your.full.link">(Dillmann 2 a)</a> on click you will be brought there. on hover the pointed sense will be highlighted with a shadow.
</div>
<div class="w3-col s2 m2 l2">
<code><ptr target="#D2a"/></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-ptr.html">TEI element ptr</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<p>You might use this to enter refernces to other parts of the main entry. The identifier is build looking at the numbers actually given, so, if a sense has only a b c, then you may refer to #Da, #Db, etc.
for the main sense, or its entirety, use #Dmain, #Tmain, #Lmain.</p>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">
<a href="#" class="w3-button w3-blue w3-small">verb subcategory</a>
</div>
<div class="w3-col s2 m2 l2">^I,1^</div>
<div class="w3-col s2 m2 l2">
<b>I,1</b>
</div>
<div class="w3-col s2 m2 l2">
<code><subc>I,1</subc></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-subc.html">TEI element subc</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<p>You might use this to mark up instances of reference to a specific subtype of verb.</p>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">
<a href="#" class="w3-button w3-blue w3-small">Link to Beta maṣāḥǝft</a>
</div>
<div class="w3-col s2 m2 l2">(BM)[BNFet143]</div>
<div class="w3-col s2 m2 l2">
<a href="https://betamasaheft.eu/BNFet143">Paris, Bibliothèque nationale de France, BnF Éthiopien 143</a>
</div>
<div class="w3-col s2 m2 l2">
<code><ref type="BM" target="BNFet143"/></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-ref.html">TEI element ref</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<p>You might use this to enter quickly links to Beta maṣāḥǝft. Please make sure you stick to BM in upper case as this is what is used. Also make sure that the identifier
which you provide exists and is correct. You do not need to provide the title, it will be printed requesting from Beta maṣāḥǝft the most up to date title available for that resource.</p>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">
<a href="#" class="w3-button w3-blue w3-small">Label</a>
</div>
<div class="w3-col s2 m2 l2">((vid.))</div>
<div class="w3-col s2 m2 l2">
<a data-toggle="tooltip" data-title="videas">vid.</a>
</div>
<div class="w3-col s2 m2 l2">
<code><lbl expand="videas">vid.</lbl></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-lbl.html">TEI element lbl</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<ul class="w3-ul">
<li>Use one of Dillmann's abbreviation and you will get the tooltip explaining it.</li>
<li>Try also <code>((vid.)) \*gez*ሐሊባ፡\*</code> to get a direct link to the form you enter, like <a data-toggle="tooltip" data-title="videas">vid.</a>
<a href="L28a2fa17dfc84e0ca31f4e6b7ef90d96">ሐሊባ፡ </a>. If you use this and wish to enter more terms after vid, please use a comma to separate the words as in <code>((vid.)) \*gez*ገብር፡\*, \*gez*መስቀል፡\*</code>
</li>
</ul>
<button class="w3-button w3-pale-blue" onclick="toggleGuidelinesElements('labels')" role="button" aria-expanded="false" aria-controls="labels">Open list of existing abbreviations</button>
</div> <div class="w3-container w3-hide" id="labels">
<table class="w3-table-all">
<thead>
<tr>
<th>value</th>
<th>abbreviations which can be entered</th>
</tr>
</thead>
<tbody>
<tr>
<td>sub finem</td>
<td>
<ul class="w3-ul">
<li>s. fin.</li>
</ul>
</td>
</tr>
<tr>
<td>inusitatus</td>
<td>
<ul class="w3-ul">
<li>inus.</li>
</ul>
</td>
</tr>
<tr>
<td>versio nova</td>
<td>
<ul class="w3-ul">
<li>vers. nov.</li>
</ul>
</td>
</tr>
<tr>
<td>conferas</td>
<td>
<ul class="w3-ul">
<li>Cfr.</li>
<li>cfr.</li>
</ul>
</td>
</tr>
<tr>
<td>literally</td>
<td>
<ul class="w3-ul">
<li>lit.</li>
</ul>
</td>
</tr>
<tr>
<td>Versio Latina Jubilaeorum libri, exstat in libro: Monumenta sacra et profana e codicibus Bibl. Ambrosianae tom. I, fasc. I. ed Ceriani, Mediol. 1861. 4°.</td>
<td>
<ul class="w3-ul">
<li>Vers. Lat.</li>
</ul>
</td>
</tr>
<tr>
<td>participium</td>
<td>
<ul class="w3-ul">
<li>Part.</li>
</ul>
</td>
</tr>
<tr>
<td>idem</td>
<td>
<ul class="w3-ul">
<li>id.</li>
</ul>
</td>
</tr>
<tr>
<td>duplex</td>
<td>
<ul class="w3-ul">
<li>dupl.</li>
</ul>
</td>
</tr>
<tr>
<td>videas</td>
<td>
<ul class="w3-ul">
<li>vid. sub</li>
<li>vid.</li>
<li>Vid.</li>
<li>vid. sub.</li>
</ul>
</td>
</tr>
<tr>
<td>singularis</td>
<td>
<ul class="w3-ul">
<li>sing.</li>
<li>Sing.</li>
</ul>
</td>
</tr>
<tr>
<td>Vocabularium Aethiopicum, -a -a</td>
<td>
<ul class="w3-ul">
<li>Voc. Ae.</li>
</ul>
</td>
</tr>
<tr>
<td>collatio, -is vel collectivum, -e</td>
<td>
<ul class="w3-ul">
<li>coll.</li>
</ul>
</td>
</tr>
<tr>
<td>concretus, e (opp. abstracto)</td>
<td>
<ul class="w3-ul">
<li>concr.</li>
</ul>
</td>
</tr>
<tr>
<td>secundum</td>
<td>
<ul class="w3-ul">
<li>sec.</li>
<li>Sec.</li>
</ul>
</td>
</tr>
<tr>
<td>obscoene</td>
<td>
<ul class="w3-ul">
<li>obsc.</li>
</ul>
</td>
</tr>
<tr>
<td>Laurence, Henochi, IV Ezrae, Asc. Jesaiae librorum editor.</td>
<td>
<ul class="w3-ul">
<li>Cod. Laur.</li>
<li>cod. Laur.</li>
</ul>
</td>
</tr>
<tr>
<td>annotatio</td>
<td>
<ul class="w3-ul">
<li>ann.</li>
</ul>
</td>
</tr>
<tr>
<td>translate</td>
<td>
<ul class="w3-ul">
<li>transl.</li>
</ul>
</td>
</tr>
<tr>
<td>terminatio</td>
<td>
<ul class="w3-ul">
<li>term.</li>
</ul>
</td>
</tr>
<tr>
<td>romanae editionis</td>
<td>
<ul class="w3-ul">
<li>rom.</li>
<li>ed. rom.</li>
</ul>
</td>
</tr>
<tr>
<td>auctore, auctoritate</td>
<td>
<ul class="w3-ul">
<li>auct.</li>
<li>Auct.</li>
</ul>
</td>
</tr>
<tr>
<td>Formula
Confessionis</td>
<td>
<ul class="w3-ul">
<li>Form. Conf.</li>
</ul>
</td>
</tr>
<tr>
<td>eadem quae</td>
<td>
<ul class="w3-ul">
<li>e.q.</li>
</ul>
</td>
</tr>
<tr>
<td>vel</td>
<td>
<ul class="w3-ul">
<li>v.</li>
</ul>
</td>
</tr>
<tr>
<td>exempli gratia</td>
<td>
<ul class="w3-ul">
<li>ex. gr.</li>
</ul>
</td>
</tr>
<tr>
<td>idem quod</td>
<td>
<ul class="w3-ul">
<li>i.q.</li>
<li>id.q.</li>
</ul>
</td>
</tr>
<tr>
<td>radices</td>
<td>
<ul class="w3-ul">
<li>radd.</li>
<li>Radd.</li>
</ul>
</td>
</tr>
<tr>
<td>vicinus</td>
<td>
<ul class="w3-ul">
<li>vic.</li>
<li>Vic.</li>
</ul>
</td>
</tr>
<tr>
<td>varia lectio</td>
<td>
<ul class="w3-ul">
<li>var.</li>
</ul>
</td>
</tr>
<tr>
<td>persona</td>
<td>
<ul class="w3-ul">
<li>pers.</li>
<li>Pers.</li>
</ul>
</td>
</tr>
<tr>
<td>collatio, -is vel collectivum, -e</td>
<td>
<ul class="w3-ul">
<li>coll.</li>
<li>Coll.</li>
</ul>
</td>
</tr>
<tr>
<td>Singularis</td>
<td>
<ul class="w3-ul">
<li>Sing.</li>
<li>Sg.</li>
</ul>
</td>
</tr>
<tr>
<td>versio antiqua</td>
<td>
<ul class="w3-ul">
<li>vers. ant.</li>
</ul>
</td>
</tr>
<tr>
<td>Formula Confessionis</td>
<td>
<ul class="w3-ul">
<li>Form. Conf.</li>
</ul>
</td>
</tr>
<tr>
<td>versio altera</td>
<td>
<ul class="w3-ul">
<li>vers. alt.</li>
</ul>
</td>
</tr>
<tr>
<td>construitur cum</td>
<td>
<ul class="w3-ul">
<li>c.c.</li>
</ul>
</td>
</tr>
<tr>
<td>edidit</td>
<td>
<ul class="w3-ul">
<li>ed.</li>
</ul>
</td>
</tr>
<tr>
<td>status constructus</td>
<td>
<ul class="w3-ul">
<li>st. c.</li>
</ul>
</td>
</tr>
<tr>
<td>radix</td>
<td>
<ul class="w3-ul">
<li>rad.</li>
<li>Rad.</li>
</ul>
</td>
</tr>
<tr>
<td>scilicet</td>
<td>
<ul class="w3-ul">
<li>sc.</li>
</ul>
</td>
</tr>
<tr>
<td>cum</td>
<td>
<ul class="w3-ul">
<li>c.</li>
</ul>
</td>
</tr>
<tr>
<td>Vocabularium Aethiopicum, -a -a.</td>
<td>
<ul class="w3-ul">
<li>Voc. Ae.</li>
</ul>
</td>
</tr>
<tr>
<td>sequens</td>
<td>
<ul class="w3-ul">
<li>seq.</li>
</ul>
</td>
</tr>
<tr>
<td>Radices Abbadianae (collectio radicum Geez linguae Mss.).</td>
<td>
<ul class="w3-ul">
<li>Rad. Abb.</li>
</ul>
</td>
</tr>
<tr>
<td>lexicon</td>
<td>
<ul class="w3-ul">
<li>lex.</li>
<li>Lex.</li>
</ul>
</td>
</tr>
<tr>
<td>columna</td>
<td>
<ul class="w3-ul">
<li>col.</li>
</ul>
</td>
</tr>
<tr>
<td>oppositum, -o, -nitur</td>
<td>
<ul class="w3-ul">
<li>opp.</li>
</ul>
</td>
</tr>
<tr>
<td>pluralis</td>
<td>
<ul class="w3-ul">
<li>Pl.</li>
<li>pl.</li>
<li>Plur.</li>
</ul>
</td>
</tr>
<tr>
<td>quod videas</td>
<td>
<ul class="w3-ul">
<li>q.v.</li>
</ul>
</td>
</tr>
<tr>
<td>concretus, e (opp. abstracto)</td>
<td>
<ul class="w3-ul">
<li>concr.</li>
</ul>
</td>
</tr>
<tr>
<td>d'Abbadie</td>
<td>
<ul class="w3-ul">
<li>Abb.</li>
</ul>
</td>
</tr>
<tr>
<td>Novum Testamentum</td>
<td>
<ul class="w3-ul">
<li>N.T.</li>
</ul>
</td>
</tr>
<tr>
<td>Epilogus</td>
<td>
<ul class="w3-ul">
<li>Epil.</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">
<a href="#" class="w3-button w3-blue w3-small">Grammar Group</a>
</div>
<div class="w3-col s2 m2 l2">[[anything you put here]]</div>
<div class="w3-col s2 m2 l2">anything you put here, transformed as described here.</div>
<div class="w3-col s2 m2 l2">
<code><gramGrp>anything you put here</gramGrp></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-gramGrp.html">TEI element gramGrp</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<ul class="w3-ul">
<li>There is no need to nest these. Use it just to group information.</li>
<li>See below case, gender and PoS.</li>
</ul>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">
<a href="#" class="w3-button w3-blue w3-small">Translation</a>
</div>
<div class="w3-col s2 m2 l2">>la>mater></div>
<div class="w3-col s2 m2 l2">
<i>
<a target="_blank" href="http://www.perseus.tufts.edu/hopper/morph?l=mater&la=la">translation</a>
</i>
</div>
<div class="w3-col s2 m2 l2">
<code><cit type="translation" xml:lang="en"><quote>mater</quote></cit></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-cit.html">TEI element cit</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<ul class="w3-ul">
<li>PLEASE DO NOT CONFUSE WITH THE ENCODING OF TEXT WHICH IS SIMPLY IN ANOTHER LANGUAGE IN THE ENTRY, WITH RESPECT TO THE MAIN LANGUAGE OF THE SENSE!!!!</li>
<li>Remember to specify the language according to
the <a target="_blank" href="https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes">ISO 639-1</a>
code for languages.</li>
</ul>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">
<a href="#" class="w3-button w3-blue w3-small">Transcription</a>
</div>
<div class="w3-col s2 m2 l2">>gez!ʾangotay></div>
<div class="w3-col s2 m2 l2">
<b> transcription</b>
</div>
<div class="w3-col s2 m2 l2">
<code><cit type="transcription" xml:lang="gez"><quote>ʾangotay</quote></cit></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-cit.html">TEI element cit</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<ul class="w3-ul">
<li>Remember to specify the language according to
the <a target="_blank" href="https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes">ISO 639-1</a>
code for languages.</li>
</ul>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">
<a href="#" class="w3-button w3-blue w3-small">Language</a>
</div>
<div class="w3-col s2 m2 l2">\*syr*ܐܰܘܓܺܝ\*</div>
<div class="w3-col s2 m2 l2">ܐܰܘܓܺܝ</div>
<div class="w3-col s2 m2 l2">
<code><foreign xml:lang="syr">ܐܰܘܓܺܝ</foreign></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-foreign.html">TEI element foreign</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<ul class="w3-ul">
<li>This is fine for anything which is not a translation. it simply says: here is a piece
of text in another language.</li>
<li>Notice, the app will know that this is in Syriac.</li>
<li>Remember to specify the language according to
the <a target="_blank" href="https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes">ISO 639-1</a>
code for languages.</li>
</ul>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">
<a href="#" class="w3-button w3-blue w3-small">Reference</a>
</div>
<div class="w3-col s2 m2 l2">*Matth.|1.1*</div>
<div class="w3-col s2 m2 l2">
<a ref="Matth.1,1" data-toggle="tooltip" title="" data-original-title="Matthaei Evangelium.">Matth. 1,1</a>
<a class="reference" data-ref="Matth.1,1" data-bmid="LIT1558Matthew" data-value="LIT1558Matthew/1/1">
<i class="fa fa-file-text-o" aria-hidden="true"/>
</a>
</div>
<div class="w3-col s2 m2 l2">
<code><ref cRef="Matth." loc="1.1">Matth. 1.1</ref></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-ref.html">TEI element ref</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<ul class="w3-ul">
<li>Eventually, if there is a text, you will see in the popup the line(s) you are quoting.</li>
<li>you might find also this notation *Kuf. |35*p.|, this is for where a unit is specified by Dillmann.</li>
<li>If there is no exact passage, please leave the second part of the notation empy. e.g. *Kuf.|*</li>
<li>A reference SHOULD NOT contain an abbreviation, it is in fact already, and the expanded form should be registered as well in the abbreviations list.</li>
<li>Parts of works for which there is an abbreviation should use that. *Asc. Jes. ed. Laur.|78*p.| is ok. ((ho.)) Theodoti Ancyr. in *Cyr.|102*f.| because the work cited here is the one abbreviated by Cyr. which contains the ho. Theodoti Ancyr. which does not have an id and a canonical abbreviation </li>
</ul>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">no button here</div>
<div class="w3-col s2 m2 l2">|{DiL.1234}|</div>
<div class="w3-col s2 m2 l2">
<i class="fa fa-columns" aria-hidden="true"/>n. 1327 </div>
<div class="w3-col s2 m2 l2">
<code><cb n="1327"/></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-cb.html">TEI element cb</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<ul class="w3-ul">
<li>Unless there is something to fix, it is very unlikely that you are going to use this</li>
</ul>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">no button here</div>
<div class="w3-col s2 m2 l2">|{pdf.1234}|</div>
<div class="w3-col s2 m2 l2">
<i class="fa fa-columns" aria-hidden="true"/>(pdf link) </div>
<div class="w3-col s2 m2 l2">
<code><ref type="hacohen" n="1234"/></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-cb.html">TEI element ref</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<ul class="w3-ul">
<li>Can be used to fix the link between the record and the page in PDF</li>
</ul>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">no button here</div>
<div class="w3-col s2 m2 l2">{'{DiL.1234}'}</div>
<div class="w3-col s2 m2 l2">
<a href="#" class="internalLink" data-value="c1327">1327 </a>
</div>
<div class="w3-col s2 m2 l2">
<code><ref target="#1327"/></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-ref.html">TEI element ref</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<ul class="w3-ul">
<li>You can use this to make a simple column reference into a link to that column, which is useful if the entry starts several columns before.</li>
</ul>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">
<a href="#" class="w3-button w3-blue w3-small">Bibliography</a>
</div>
<div class="w3-col s2 m2 l2">[§,73]bm:Dillmann1857Gramm
<button class="w3-button w3-pale-blue" onclick="toggleGuidelinesElements('bibliopointers')" aria-expanded="false" aria-controls="bibliopointers">Open list of tags already used</button>
<ul id="bibliopointers" class="w3-hide w3-ul">
<li>bm:DaBassano1918DictTgr</li>
<li>bm:Yohannis1955TigrAmhDict</li>
<li>bm:Guidi1901Vocabolario</li>
<li>bm:Kane1990DictAmhVol2</li>
<li>bm:Lusini1996AbsadiII</li>
<li>bm:Ludolf1691Commentarius</li>
<li>bm:Dillmann1857Gramm</li>
<li>bm:daMag1953</li>
<li>bm:Bezold1905KebraN</li>
<li>bm:Getatchew2011EstifanosTr</li>
<li>bm:Marrassini1993AmdaSeyon</li>
<li>bm:Tedros2009TawaldaMadehnVittore</li>
<li>bm:Ludolf1691Commentariusp</li>
<li>bm:Leslau1987dic</li>
<li>bm:leslau1987dic</li>
<li>bm:Dillmann1865Lexicon</li>
<li>bm:Missal1995</li>
<li>bm:Kane1990DictAmhVol1</li>
<li>bm:Perruchon1893Zarayaeqob</li>
<li>bm:Wendt1963MiladT</li>
<li>bm:Getachew1991EpistleOfHumanityV</li>
<li>bm:Kane2000DictTgrVol1</li>
<li>bm:Getachew2006EstifanosT</li>
<li>bm:Getachew2006EstifanosV</li>
<li>bm:Getatchew2011EstifanosEd</li>
<li>bm:Getachew2005Gwǝnṣ</li>
<li>bm:Kur1968SamuelT</li>
<li>bm:ContiRossini1910Abakerazun</li>
<li>bm:Getachew2006Estifanos</li>
<li>bm:Caquot1961EzraGundaGunde</li>
<li>bm:Ludolf1691Commentariusad</li>
<li>bm:ContiRossini1964BerhanT</li>
<li>bm:ContiRossini1965BerhanITrad</li>
<li>bm:Ludolf1681Historia</li>
<li>bm:MunzingeriVocabTigr</li>
<li>bm:Raineri2000Comb</li>
<li>bm:Tedros2007Demyanos</li>
<li>bm:Ludolf1691Commentariushist</li>
<li>bm:Marrassini1983Matyas</li>
<li>bm:Perruchon1889Amda</li>
<li>bm:Lusini1996Absadi</li>
<li>bm:Ludolf1681HistoriaAe</li>
<li>bm:Ludolf1681HistoriaAeth</li>
<li>bm:Perier1912Canons</li>
<li>bm:Dillmann1866Chrestomathia</li>
<li>bm:ContiRossini1937YafqerannaEgzi</li>
<li>bm:Ricci1954Enbaqom</li>
<li>bm:Ricci1955Enbaqom</li>
<li>bm:Ludolf1681Historiacomm</li>
<li>bm:Ludolf1681HistoriaI</li>
<li>bm:Turaev1902Filipos</li>
<li>bm:Wendt1963MiladV</li>
<li>bm:KidaneWaldGeezGramDict</li>
<li>bm:AlaqaTayya1965MSawasew</li>
<li>bm:Girmatsion1983DictTgr</li>
<li>bm:Marrassini1986IyasusMoa</li>
<li>bm:Bassano1922BiluyKidan</li>
<li>bm:Colin2002Bsoy</li>
<li>bm:Strelcyn1973Medecine</li>
<li>bm:Grebaut1952SuppLexicon</li>
<li>bm:Cerulli1956KrestosSamraV</li>
<li>bm:Cerulli1956KrestosSamraT</li>
<li>bm:ContiRossini1938BurukAmlak</li>
</ul>
</div>
<div class="w3-col s2 m2 l2">
<a class="Zotero Zotero-citation" data-value="bm:Dillmann1857Gramm" href="https://www.zotero.org/groups/ethiostudies/items/tag/bm:Dillmann1857Gramm">Dillmann 1857</a>
</div>
<div class="w3-col s2 m2 l2">
<code><bibl><ptr target="bm:Dillmann1857Gramm"/><citedRange unit="paragraph">73</citedRange></bibl></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-bibl.html">TEI element bibl</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<ul class="w3-ul">
<li>The bm: part must be a <a href="https://zotero.org/groups/358366/">unique tag in the Ethio Studies Group Zotero</a> Library! </li>
<li>If you only want to give a reference to a work omit the [] part, simply add bm:Dillmann1857Gramm</li>
<li>p., s., n. $ before comma will be normalized to the allowed values of citedRange page, item and paragraph respectively.</li>
<li>for pages, lines and line ranges use this synthax: [page, 50:3; 51:3-4; 52:6] where a sequence of citation ranges is separated with semicolumn, lines and pages are separated by column and ranges are indicated with hyphen.</li>
</ul>
</div>
</div>
<div class="w3-row-padding">
<div class="w3-col s2 m2 l2">
<a href="#" class="w3-button w3-blue w3-small">PoS</a>
</div>
<div class="w3-col s2 m2 l2">+refl.+</div>
<div class="w3-col s2 m2 l2">
<a data-toggle="tooltip" data-title="reflexivum" data-original-title="" title="">refl.</a>
</div>
<div class="w3-col s2 m2 l2">
<code><pos expand="reflexivum">refl.</pos></code>
</div>
<div class="w3-col s2 m2 l2">
<a target="_blank" href="www.tei-c.org/release/doc/tei-p5-doc/en/html/ref-pos.html">TEI element pos</a>
</div>
<div class="w3-col s2 m2 l2 notes">
<ul class="w3-ul">
<li>This must be inside a gramGrp element! e.g. [[+refl.+ @acc.@ ˆm.ˆ]] </li>
</ul>
<button class="w3-button w3-pale-blue" onclick="toggleGuidelinesElements('posvalues')" role="button" aria-expanded="false" aria-controls="posvalues">Open list of available PoS values</button>
</div>
<div class="w3-hide" id="posvalues">
<table class="=w3-table-all" style="border: 1px solid black; border-collapse: collapse;">
<thead>
<tr>
<th style="border: 1px solid black;">abbreviation</th>
<th style="border: 1px solid black;">value in Dillmann</th>
</tr>
</thead>
<tbody>
<tr>
<td style="border: 1px solid black;">v.</td>
<td style="border: 1px solid black;">verbum</td>
</tr>
<tr>
<td style="border: 1px solid black;">abstr.</td>
<td style="border: 1px solid black;">abstractum, -e</td>
</tr>
<tr>
<td style="border: 1px solid black;">adv.</td>
<td style="border: 1px solid black;">adverbium, adverbialiter</td>
</tr>
<tr>
<td style="border: 1px solid black;">Refl.</td>
<td style="border: 1px solid black;">reflexivum</td>
</tr>
<tr>
<td style="border: 1px solid black;">refl.</td>
<td style="border: 1px solid black;">reflexivum</td>
</tr>
<tr>
<td style="border: 1px solid black;">Infin. nom.</td>
<td style="border: 1px solid black;">infinitivus nominalis,
nominascens</td>
</tr>
<tr>
<td style="border: 1px solid black;">instr.</td>
<td style="border: 1px solid black;">Instrumentalis</td>
</tr>
<tr>
<td style="border: 1px solid black;">peregr. n.</td>
<td style="border: 1px solid black;">nomen peregrinum</td>
</tr>
<tr>
<td style="border: 1px solid black;">Impf.</td>
<td style="border: 1px solid black;">imperfectum</td>
</tr>
<tr>
<td style="border: 1px solid black;">Subst.</td>
<td style="border: 1px solid black;">Substantivum</td>
</tr>
<tr>
<td style="border: 1px solid black;">Infin. verb.</td>
<td style="border: 1px solid black;">infinitivus
verbalis</td>
</tr>
<tr>
<td style="border: 1px solid black;">praep.</td>
<td style="border: 1px solid black;">praepositio</td>
</tr>
<tr>
<td style="border: 1px solid black;">pron. suff.</td>
<td style="border: 1px solid black;">pronomen suffixum</td>
</tr>
<tr>
<td style="border: 1px solid black;">pron.</td>
<td style="border: 1px solid black;">pronomen</td>
</tr>
<tr>
<td style="border: 1px solid black;">Pron.</td>
<td style="border: 1px solid black;">pronomen</td>
</tr>
<tr>
<td style="border: 1px solid black;">Subj.</td>
<td style="border: 1px solid black;">Subjunctivus</td>
</tr>
<tr>
<td style="border: 1px solid black;">part.</td>
<td style="border: 1px solid black;">participium</td>
</tr>
<tr>
<td style="border: 1px solid black;">n. act.</td>
<td style="border: 1px solid black;">nomen actionis</td>
</tr>
<tr>
<td style="border: 1px solid black;">n. pr.</td>
<td style="border: 1px solid black;">nomen proprium</td>
</tr>
<tr>
<td style="border: 1px solid black;">n. ag.</td>
<td style="border: 1px solid black;">nomen agentis</td>
</tr>
<tr>
<td style="border: 1px solid black;">n.ag.</td>
<td style="border: 1px solid black;">nomen agentis</td>
</tr>
<tr>
<td style="border: 1px solid black;">n.</td>
<td style="border: 1px solid black;">nomen</td>
</tr>
<tr>
<td style="border: 1px solid black;">nom.</td>
<td style="border: 1px solid black;">nomen</td>
</tr>
<tr>
<td style="border: 1px solid black;">pass.</td>
<td style="border: 1px solid black;">passivum</td>
</tr>
<tr>
<td style="border: 1px solid black;">adj.</td>
<td style="border: 1px solid black;">adjectivum</td>
</tr>