-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathannotators-instructions.html
More file actions
680 lines (591 loc) · 34.6 KB
/
annotators-instructions.html
File metadata and controls
680 lines (591 loc) · 34.6 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
<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>Эш тәртибе</title><style>
/* cspell:disable-file */
/* webkit printing magic: print all background colors */
html {
-webkit-print-color-adjust: exact;
}
* {
box-sizing: border-box;
-webkit-print-color-adjust: exact;
}
html,
body {
margin: 0;
padding: 0;
}
@media only screen {
body {
margin: 2em auto;
max-width: 900px;
color: rgb(55, 53, 47);
}
}
body {
line-height: 1.5;
white-space: pre-wrap;
}
a,
a.visited {
color: inherit;
text-decoration: underline;
}
.pdf-relative-link-path {
font-size: 80%;
color: #444;
}
h1,
h2,
h3 {
letter-spacing: -0.01em;
line-height: 1.2;
font-weight: 600;
margin-bottom: 0;
}
.page-title {
font-size: 2.5rem;
font-weight: 700;
margin-top: 0;
margin-bottom: 0.75em;
}
h1 {
font-size: 1.875rem;
margin-top: 1.875rem;
}
h2 {
font-size: 1.5rem;
margin-top: 1.5rem;
}
h3 {
font-size: 1.25rem;
margin-top: 1.25rem;
}
.source {
border: 1px solid #ddd;
border-radius: 3px;
padding: 1.5em;
word-break: break-all;
}
.callout {
border-radius: 3px;
padding: 1rem;
}
figure {
margin: 1.25em 0;
page-break-inside: avoid;
}
figcaption {
opacity: 0.5;
font-size: 85%;
margin-top: 0.5em;
}
mark {
background-color: transparent;
}
.indented {
padding-left: 1.5em;
}
hr {
background: transparent;
display: block;
width: 100%;
height: 1px;
visibility: visible;
border: none;
border-bottom: 1px solid rgba(55, 53, 47, 0.09);
}
img {
max-width: 100%;
}
@media only print {
img {
max-height: 100vh;
object-fit: contain;
}
}
@page {
margin: 1in;
}
.collection-content {
font-size: 0.875rem;
}
.column-list {
display: flex;
justify-content: space-between;
}
.column {
padding: 0 1em;
}
.column:first-child {
padding-left: 0;
}
.column:last-child {
padding-right: 0;
}
.table_of_contents-item {
display: block;
font-size: 0.875rem;
line-height: 1.3;
padding: 0.125rem;
}
.table_of_contents-indent-1 {
margin-left: 1.5rem;
}
.table_of_contents-indent-2 {
margin-left: 3rem;
}
.table_of_contents-indent-3 {
margin-left: 4.5rem;
}
.table_of_contents-link {
text-decoration: none;
opacity: 0.7;
border-bottom: 1px solid rgba(55, 53, 47, 0.18);
}
table,
th,
td {
border: 1px solid rgba(55, 53, 47, 0.09);
border-collapse: collapse;
}
table {
border-left: none;
border-right: none;
}
th,
td {
font-weight: normal;
padding: 0.25em 0.5em;
line-height: 1.5;
min-height: 1.5em;
text-align: left;
}
th {
color: rgba(55, 53, 47, 0.6);
}
ol,
ul {
margin: 0;
margin-block-start: 0.6em;
margin-block-end: 0.6em;
}
li > ol:first-child,
li > ul:first-child {
margin-block-start: 0.6em;
}
ul > li {
list-style: disc;
}
ul.to-do-list {
padding-inline-start: 0;
}
ul.to-do-list > li {
list-style: none;
}
.to-do-children-checked {
text-decoration: line-through;
opacity: 0.375;
}
ul.toggle > li {
list-style: none;
}
ul {
padding-inline-start: 1.7em;
}
ul > li {
padding-left: 0.1em;
}
ol {
padding-inline-start: 1.6em;
}
ol > li {
padding-left: 0.2em;
}
.mono ol {
padding-inline-start: 2em;
}
.mono ol > li {
text-indent: -0.4em;
}
.toggle {
padding-inline-start: 0em;
list-style-type: none;
}
/* Indent toggle children */
.toggle > li > details {
padding-left: 1.7em;
}
.toggle > li > details > summary {
margin-left: -1.1em;
}
.selected-value {
display: inline-block;
padding: 0 0.5em;
background: rgba(206, 205, 202, 0.5);
border-radius: 3px;
margin-right: 0.5em;
margin-top: 0.3em;
margin-bottom: 0.3em;
white-space: nowrap;
}
.collection-title {
display: inline-block;
margin-right: 1em;
}
.page-description {
margin-bottom: 2em;
}
.simple-table {
margin-top: 1em;
font-size: 0.875rem;
empty-cells: show;
}
.simple-table td {
height: 29px;
min-width: 120px;
}
.simple-table th {
height: 29px;
min-width: 120px;
}
.simple-table-header-color {
background: rgb(247, 246, 243);
color: black;
}
.simple-table-header {
font-weight: 500;
}
time {
opacity: 0.5;
}
.icon {
display: inline-block;
max-width: 1.2em;
max-height: 1.2em;
text-decoration: none;
vertical-align: text-bottom;
margin-right: 0.5em;
}
img.icon {
border-radius: 3px;
}
.user-icon {
width: 1.5em;
height: 1.5em;
border-radius: 100%;
margin-right: 0.5rem;
}
.user-icon-inner {
font-size: 0.8em;
}
.text-icon {
border: 1px solid #000;
text-align: center;
}
.page-cover-image {
display: block;
object-fit: cover;
width: 100%;
max-height: 30vh;
}
.page-header-icon {
font-size: 3rem;
margin-bottom: 1rem;
}
.page-header-icon-with-cover {
margin-top: -0.72em;
margin-left: 0.07em;
}
.page-header-icon img {
border-radius: 3px;
}
.link-to-page {
margin: 1em 0;
padding: 0;
border: none;
font-weight: 500;
}
p > .user {
opacity: 0.5;
}
td > .user,
td > time {
white-space: nowrap;
}
input[type="checkbox"] {
transform: scale(1.5);
margin-right: 0.6em;
vertical-align: middle;
}
p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.image {
border: none;
margin: 1.5em 0;
padding: 0;
border-radius: 0;
text-align: center;
}
.code,
code {
background: rgba(135, 131, 120, 0.15);
border-radius: 3px;
padding: 0.2em 0.4em;
border-radius: 3px;
font-size: 85%;
tab-size: 2;
}
code {
color: #eb5757;
}
.code {
padding: 1.5em 1em;
}
.code-wrap {
white-space: pre-wrap;
word-break: break-all;
}
.code > code {
background: none;
padding: 0;
font-size: 100%;
color: inherit;
}
blockquote {
font-size: 1.25em;
margin: 1em 0;
padding-left: 1em;
border-left: 3px solid rgb(55, 53, 47);
}
.bookmark {
text-decoration: none;
max-height: 8em;
padding: 0;
display: flex;
width: 100%;
align-items: stretch;
}
.bookmark-title {
font-size: 0.85em;
overflow: hidden;
text-overflow: ellipsis;
height: 1.75em;
white-space: nowrap;
}
.bookmark-text {
display: flex;
flex-direction: column;
}
.bookmark-info {
flex: 4 1 180px;
padding: 12px 14px 14px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.bookmark-image {
width: 33%;
flex: 1 1 180px;
display: block;
position: relative;
object-fit: cover;
border-radius: 1px;
}
.bookmark-description {
color: rgba(55, 53, 47, 0.6);
font-size: 0.75em;
overflow: hidden;
max-height: 4.5em;
word-break: break-word;
}
.bookmark-href {
font-size: 0.75em;
margin-top: 0.25em;
}
.sans { font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol"; }
.code { font-family: "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace; }
.serif { font-family: Lyon-Text, Georgia, ui-serif, serif; }
.mono { font-family: iawriter-mono, Nitti, Menlo, Courier, monospace; }
.pdf .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK JP'; }
.pdf:lang(zh-CN) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK SC'; }
.pdf:lang(zh-TW) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK TC'; }
.pdf:lang(ko-KR) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK KR'; }
.pdf .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK JP'; }
.pdf:lang(zh-CN) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK SC'; }
.pdf:lang(zh-TW) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK TC'; }
.pdf:lang(ko-KR) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK KR'; }
.pdf .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK JP'; }
.pdf:lang(zh-CN) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK SC'; }
.pdf:lang(zh-TW) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK TC'; }
.pdf:lang(ko-KR) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK KR'; }
.pdf .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK JP'; }
.pdf:lang(zh-CN) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK SC'; }
.pdf:lang(zh-TW) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK TC'; }
.pdf:lang(ko-KR) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK KR'; }
.highlight-default {
color: rgba(55, 53, 47, 1);
}
.highlight-gray {
color: rgba(120, 119, 116, 1);
fill: rgba(120, 119, 116, 1);
}
.highlight-brown {
color: rgba(159, 107, 83, 1);
fill: rgba(159, 107, 83, 1);
}
.highlight-orange {
color: rgba(217, 115, 13, 1);
fill: rgba(217, 115, 13, 1);
}
.highlight-yellow {
color: rgba(203, 145, 47, 1);
fill: rgba(203, 145, 47, 1);
}
.highlight-teal {
color: rgba(68, 131, 97, 1);
fill: rgba(68, 131, 97, 1);
}
.highlight-blue {
color: rgba(51, 126, 169, 1);
fill: rgba(51, 126, 169, 1);
}
.highlight-purple {
color: rgba(144, 101, 176, 1);
fill: rgba(144, 101, 176, 1);
}
.highlight-pink {
color: rgba(193, 76, 138, 1);
fill: rgba(193, 76, 138, 1);
}
.highlight-red {
color: rgba(212, 76, 71, 1);
fill: rgba(212, 76, 71, 1);
}
.highlight-gray_background {
background: rgba(241, 241, 239, 1);
}
.highlight-brown_background {
background: rgba(244, 238, 238, 1);
}
.highlight-orange_background {
background: rgba(251, 236, 221, 1);
}
.highlight-yellow_background {
background: rgba(251, 243, 219, 1);
}
.highlight-teal_background {
background: rgba(237, 243, 236, 1);
}
.highlight-blue_background {
background: rgba(231, 243, 248, 1);
}
.highlight-purple_background {
background: rgba(244, 240, 247, 0.8);
}
.highlight-pink_background {
background: rgba(249, 238, 243, 0.8);
}
.highlight-red_background {
background: rgba(253, 235, 236, 1);
}
.block-color-default {
color: inherit;
fill: inherit;
}
.block-color-gray {
color: rgba(120, 119, 116, 1);
fill: rgba(120, 119, 116, 1);
}
.block-color-brown {
color: rgba(159, 107, 83, 1);
fill: rgba(159, 107, 83, 1);
}
.block-color-orange {
color: rgba(217, 115, 13, 1);
fill: rgba(217, 115, 13, 1);
}
.block-color-yellow {
color: rgba(203, 145, 47, 1);
fill: rgba(203, 145, 47, 1);
}
.block-color-teal {
color: rgba(68, 131, 97, 1);
fill: rgba(68, 131, 97, 1);
}
.block-color-blue {
color: rgba(51, 126, 169, 1);
fill: rgba(51, 126, 169, 1);
}
.block-color-purple {
color: rgba(144, 101, 176, 1);
fill: rgba(144, 101, 176, 1);
}
.block-color-pink {
color: rgba(193, 76, 138, 1);
fill: rgba(193, 76, 138, 1);
}
.block-color-red {
color: rgba(212, 76, 71, 1);
fill: rgba(212, 76, 71, 1);
}
.block-color-gray_background {
background: rgba(241, 241, 239, 1);
}
.block-color-brown_background {
background: rgba(244, 238, 238, 1);
}
.block-color-orange_background {
background: rgba(251, 236, 221, 1);
}
.block-color-yellow_background {
background: rgba(251, 243, 219, 1);
}
.block-color-teal_background {
background: rgba(237, 243, 236, 1);
}
.block-color-blue_background {
background: rgba(231, 243, 248, 1);
}
.block-color-purple_background {
background: rgba(244, 240, 247, 0.8);
}
.block-color-pink_background {
background: rgba(249, 238, 243, 0.8);
}
.block-color-red_background {
background: rgba(253, 235, 236, 1);
}
.select-value-color-uiBlue { background-color: rgba(35, 131, 226, .07); }
.select-value-color-pink { background-color: rgba(245, 224, 233, 1); }
.select-value-color-purple { background-color: rgba(232, 222, 238, 1); }
.select-value-color-green { background-color: rgba(219, 237, 219, 1); }
.select-value-color-gray { background-color: rgba(227, 226, 224, 1); }
.select-value-color-transparentGray { background-color: rgba(227, 226, 224, 0); }
.select-value-color-translucentGray { background-color: rgba(0, 0, 0, 0.06); }
.select-value-color-orange { background-color: rgba(250, 222, 201, 1); }
.select-value-color-brown { background-color: rgba(238, 224, 218, 1); }
.select-value-color-red { background-color: rgba(255, 226, 221, 1); }
.select-value-color-yellow { background-color: rgba(253, 236, 200, 1); }
.select-value-color-blue { background-color: rgba(211, 229, 239, 1); }
.select-value-color-pageGlass { background-color: undefined; }
.select-value-color-washGlass { background-color: undefined; }
.checkbox {
display: inline-flex;
vertical-align: text-bottom;
width: 16;
height: 16;
background-size: 16px;
margin-left: 2px;
margin-right: 5px;
}
.checkbox-on {
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%2358A9D7%22%2F%3E%0A%3Cpath%20d%3D%22M6.71429%2012.2852L14%204.9995L12.7143%203.71436L6.71429%209.71378L3.28571%206.2831L2%207.57092L6.71429%2012.2852Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E");
}
.checkbox-off {
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20x%3D%220.75%22%20y%3D%220.75%22%20width%3D%2214.5%22%20height%3D%2214.5%22%20fill%3D%22white%22%20stroke%3D%22%2336352F%22%20stroke-width%3D%221.5%22%2F%3E%0A%3C%2Fsvg%3E");
}
</style></head><body><article id="98b0b88d-7ddf-4847-9cdb-73e870ef1162" class="page sans"><header><h1 class="page-title">Эш тәртибе</h1><p class="page-description"></p></header><div class="page-body"><p id="66ad1070-6f9e-4a5a-b59f-9da8b943e9c7" class="">
</p><h1 id="f539da7e-113e-4adc-a24d-877114e62453" class="">Документ әгъза төрләре</h1><h3 id="fa9768e3-2111-4a56-baba-fd7542af8fad" class=""><strong>Текст (text)</strong></h3><p id="8925fdd3-a972-4026-aeda-3057d6f4b2a2" class="">Иң төп һәм еш очрый торган төр. Һәрбер параграф ул аерым текст әгъзасы . Гадәттә беренче юлы кызыл юлдан башлана , калган юллар беренче юлдан сулрак башланалар.</p><div id="bdf59e58-f05a-4033-9b02-05ddb40f76a4" class="column-list"><div id="579cef77-56e0-470f-a198-f732430c43f8" style="width:33.333333333333336%" class="column"><figure id="e3e6a2d0-3530-402f-8006-bee5e676abf7" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/text-2.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/text-2.png"/></a></figure></div><div id="b53f76f3-d4f7-44d2-a07f-4f362e2f1f45" style="width:33.333333333333336%" class="column"><figure id="6ed3c81b-3b01-42bd-8bb0-6c12373d6b45" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/text-1.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/text-1.png"/></a></figure></div><div id="7a9d6f3b-e24c-4f1b-98cd-0dd6a1ce1622" style="width:33.33333333333333%" class="column"><figure id="1f4573d5-4134-43ee-b9e0-a2be1cb4341d" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/text-3.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/text-3.png"/></a></figure></div></div><h3 id="263ccc5a-2248-4b13-967a-a412b8efda85" class=""><strong>Рәсем (picture)</strong></h3><p id="2a4c51dc-ff0c-4b56-85fe-6e835930a2be" class="">Төп текстан аерым торган графика йәки сүрәт. Алар янында күп очракта тасвирлауны да күрергә була. </p><div id="d6620ed5-df76-47c9-8846-7085d93254f7" class="column-list"><div id="6a2fd77f-9899-4016-bd23-5ac85b1e71f4" style="width:50%" class="column"><figure id="14f03a63-8cf1-410d-a968-526032ebe3fb" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/image-1.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/image-1.png"/></a></figure></div><div id="1810747a-8fbd-4c3f-950c-5b07e1b0c0b0" style="width:50%" class="column"><figure id="46393d08-8055-48f5-b598-762be979125a" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/image-2.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/image-2.png"/></a></figure></div></div><h3 id="a55cdce8-a82f-42c0-9730-5a162826d963" class=""><strong>Рәсем тасвиры (caption)</strong></h3><p id="c8bbba39-356e-45c8-84ab-04d334db745c" class="">Рәсемне тасвирлый торган махсус текст.</p><div id="cb61e22f-0811-41f6-9f36-b8809b38c811" class="column-list"><div id="ed25663a-a409-4ec0-9c26-116ad5f8f75d" style="width:50%" class="column"><figure id="f52a39c4-9301-47e0-a2fe-9f5b0682a4b9" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/caption-1.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/caption-1.png"/></a></figure></div><div id="0b263440-a93d-43a7-be6d-f9baaa55ca55" style="width:50%" class="column"><figure id="f9cdc412-1624-480c-bc90-aa58738bad69" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/caption-2.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/caption-2.png"/></a></figure></div></div><h3 id="5d873768-2c78-46ef-87f8-e2ec2d3f07fe" class="">Бүлек башы (section-header)</h3><p id="0ca415b6-ce65-40fa-bc67-ee9a674cceaa" class="">Яңа текст бүлекне тасвирлый торган әгъза.</p><div id="9657b42a-9e7f-4e4c-ae0f-7d2d600d30b9" class="column-list"><div id="4d0cb01e-a830-4e0b-983c-d55732fda5b2" style="width:50%" class="column"><figure id="8958bca5-237b-44d3-b5cd-316990ec3418" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/section-header-2.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/section-header-2.png"/></a></figure></div><div id="83add834-fa0c-41de-ab64-3e8912f11881" style="width:50%" class="column"><figure id="672cde46-0678-4681-a555-d8f9ebf3f25e" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/section-header-1.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/section-header-1.png"/></a></figure></div></div><h3 id="801a0e44-74d3-4355-b7cc-7fd61e23a05a" class=""><strong>Асъязма (footnote)</strong></h3><p id="367a0e38-992e-4ea4-a31d-35c000a20b76" class="">Төп текст белән сан яки билге белән бәйләнгән, бит астында булган, кечкенә текст. </p><div id="e15be7a4-eb96-44fd-a028-f6e559763d76" class="column-list"><div id="6e367b79-e884-4d16-8698-2ee791667532" style="width:50%" class="column"><figure id="745e3f0c-b698-4aad-9f2c-6f055e6f2392" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/footnote-2.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/footnote-2.png"/></a></figure></div><div id="a0cd6dd2-4aab-4d91-8165-066d513733fb" style="width:50%" class="column"><figure id="f692a86b-3986-4766-8cc8-0f6c62c5ac25" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/footnote-1.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/footnote-1.png"/></a></figure></div></div><h3 id="112bf11c-29e5-4722-9681-32783e43e6b8" class=""><strong>Формула (formula)</strong></h3><p id="0c32f98b-3fb9-4c75-a201-d2f95af533fc" class="">Аерым юлда математик тигезләмә. </p><div id="fb876589-355f-4a70-9382-051210705055" class="column-list"><div id="9cc436c1-cb58-448d-9053-5985b2d7b0c3" style="width:50%" class="column"><figure id="7ce89809-6aa9-41eb-b041-9692e87827d1" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/formula-1.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/formula-1.png"/></a></figure></div><div id="8b231229-19a9-4e50-9edf-81a5638ac6de" style="width:50%" class="column"><figure id="91d33371-d72f-49d9-8002-c39d8e3224aa" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/formula-2.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/formula-2.png"/></a></figure></div></div><p id="82c2b743-e977-4105-99e2-f1679e28a4ae" class="">
</p><h3 id="8e469c3b-69fd-4595-b1e0-8ccf8929f2ad" class=""><strong>Җәдвал (table)</strong></h3><p id="4a2d845b-f2be-428c-b99b-b08912154804" class=""><br/>Еш кына аергыч сызыклар белән аерылган, баганалар һәм рәтләр шәкелендә тупланган дәйтә. <br/></p><div id="756f83d6-a4de-424c-a1e3-e0ea89b972e2" class="column-list"><div id="b3082a52-a8da-489a-a2ea-4883d24aae6f" style="width:50%" class="column"><figure id="072f8b80-69c8-4a9a-986d-21e097105a8a" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/table-1.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/table-1.png"/></a></figure></div><div id="1f5660aa-2a50-47c3-aa90-81c3dfeaccaf" style="width:50%" class="column"><figure id="d193e648-2114-445a-abf7-155387f24add" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/table-2.png"><img src="https://storage.yandexcloud.net/annotators-instruction-media/table-2.png"/></a></figure></div></div><h3 id="ff273d38-e4ec-4e25-83c9-cac8731d4569" class=""><strong>Исемлек тармагы (list-item)</strong></h3><p id="216e2879-08f6-4f16-bcd9-7564b27ac4e1" class="">Исемлекнең бер тармагы. Гадәттә исемлекнең икенче һәм калган юллар уңрак башланалар.</p><figure id="65605b63-10c7-4964-9f8e-44ff36ba8ba2" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/list-item-1.png"><img style="width:288px" src="https://storage.yandexcloud.net/annotators-instruction-media/list-item-1.png"/></a></figure><h3 id="5292b9e0-a1f7-40ec-9967-0b71fd56e26e" class=""><strong>Бит өсбашы (page-header)</strong></h3><p id="0e97bf77-210f-45b4-bb5e-31900e508d5c" class="">Битнең өс ягында урнашкан, төп текстан аерым торган, кабатланучан әгъза. Мәсәлән, бит нумеры, бүлекнең исеме. </p><div id="713e4ffa-002a-46d5-824c-7e2e9600fa49" class="column-list"><div id="c0e67911-5f54-4c1f-a6d9-40410052a7a5" style="width:50%" class="column"><figure id="d4f9edff-fb70-405b-a5bb-a30b75541bb4" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/page-header-1.png"><img style="width:708px" src="https://storage.yandexcloud.net/annotators-instruction-media/page-header-1.png"/></a></figure></div><div id="174c2c2c-0b9f-44b7-949f-6265a84b7fa7" style="width:50%" class="column"><figure id="7b541a7b-5ada-4877-bfc5-f26c5bb2be21" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/page-header-2.png"><img style="width:1204px" src="https://storage.yandexcloud.net/annotators-instruction-media/page-header-2.png"/></a></figure></div></div><h3 id="bb43e869-484a-4167-a609-63771f7a76bf" class=""><strong>Бит асъягы (page-footer)</strong></h3><p id="6ac582b6-6baf-4485-b69e-1dcfc5d0e554" class="">Битнең ас ягында урнашкан, төп тексттан аерым торган, кабатланучан әгъзалар. Мәсәлән, бит нумеры.</p><div id="10dbdfae-f343-420d-98ce-294eaaec0e3f" class="column-list"><div id="49358732-5392-47b7-a463-79e0ba12493f" style="width:50%" class="column"><figure id="601ea457-9424-4e7f-9f0a-14a7b02f1f2c" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/page-footer-1.png"><img style="width:1204px" src="https://storage.yandexcloud.net/annotators-instruction-media/page-footer-1.png"/></a></figure></div><div id="35ae8fcb-2142-4b44-b806-d32dcd28e4fc" style="width:50%" class="column"><figure id="d46e7a47-d744-4007-86c3-ed7cc96396da" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/page-footer-2.png"><img style="width:1204px" src="https://storage.yandexcloud.net/annotators-instruction-media/page-footer-2.png"/></a></figure></div></div><h3 id="16854dca-49bd-4137-b22a-6a449510be37" class=""><strong>Баш исем (title)</strong></h3><p id="492e1aa6-ae40-4b7b-ad5c-fd7dcd843b4f" class="">Гомум документның исеме. Гадәттә зур шрифт белән билгеләнгән һәм беренче биттә урнашыла.</p><div id="d624c6bc-288b-441c-a4b3-e8f3d74b17fe" class="column-list"><div id="c348c7f6-5d40-4765-86d9-d5f3876408d7" style="width:50%" class="column"><figure id="41e721f0-3772-4bc8-8e44-3299330394e1" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/title-2.png"><img style="width:336px" src="https://storage.yandexcloud.net/annotators-instruction-media/title-2.png"/></a></figure></div><div id="ce8d84ef-acfd-481b-af94-006c79c0709b" style="width:50%" class="column"><figure id="8e8cd35f-3b98-45a6-bfa4-198555b63933" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/title-3.png"><img style="width:432px" src="https://storage.yandexcloud.net/annotators-instruction-media/title-3.png"/></a></figure></div></div><figure id="a5c00647-bb48-4b4f-a269-54eb7d245bf9" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/title-1.png"><img style="width:288px" src="https://storage.yandexcloud.net/annotators-instruction-media/title-1.png"/></a></figure><h3 id="1fedfd2b-a253-4a96-afc6-66593d269660" class=""><strong>Шигырь (poetry)</strong></h3><p id="364c4ad2-3757-4877-b627-ffd81dd0c29d" class="">Шигырь шәкелендә булган текст. Гадәттә махсус турайтулар белән һәм махсус юл күчерүләр белән билгеләнгән.</p><div id="c8064d10-a92e-469a-8f43-49172b0f8b56" class="column-list"><div id="73c71952-f55a-4f1f-992f-718e6f21eabb" style="width:50%" class="column"><figure id="1d902a66-04c0-4a74-83d2-333563345d77" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/poetry-1.png"><img style="width:1209px" src="https://storage.yandexcloud.net/annotators-instruction-media/poetry-1.png"/></a></figure></div><div id="af31dd4d-fbe4-4731-b665-e722b3289e73" style="width:50%" class="column"><figure id="962d4ad0-1d9b-442a-a61c-91c95a6b46cf" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/poetry-2.png"><img style="width:1209px" src="https://storage.yandexcloud.net/annotators-instruction-media/poetry-2.png"/></a></figure></div></div><h1 id="f3903523-e7df-4d85-8b14-9e0fd3a98e6f" class="">Яхшы аннотацияләнгән эш</h1><ul id="cf4b8ea8-8163-47d0-ab3d-a0e4c25eb465" class="bulleted-list"><li style="list-style-type:disc">Документ әгъзасенең тамгасы дөрес фаразланмаган булса, аның тамгасын дөрескә үзгәртегез.<figure id="d9a95335-32b3-496e-94b6-219894e75c5c" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/good-labeling-correct-label.png"><img style="width:803px" src="https://storage.yandexcloud.net/annotators-instruction-media/good-labeling-correct-label.png"/></a></figure></li></ul><ul id="c7ce4787-cb11-49b1-bc5e-d936817b3a05" class="bulleted-list"><li style="list-style-type:disc"> Әгъза чикләре дөрес билгеләнмәгән булса, сез чикләрен дөрес итеп үзгәртегез.<figure id="27313f31-d198-476e-9f32-ba079c52c6c9" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/good-labeling-correct-bounds.png"><img style="width:551px" src="https://storage.yandexcloud.net/annotators-instruction-media/good-labeling-correct-bounds.png"/></a></figure></li></ul><ul id="bd0d2246-9b53-4860-84f6-7f5654ab58ae" class="bulleted-list"><li style="list-style-type:disc">Ике яки күберәк әгъза бер өлкәгә чикләнгән булса, аларны һәрберсен үз өлкәгә чикләгез һәм дөрес тамга асыгыз. <figure id="b8cd5220-9f0f-46cc-87bb-b5bf49716876" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/good-labeling-separate-regions-1.png"><img style="width:529px" src="https://storage.yandexcloud.net/annotators-instruction-media/good-labeling-separate-regions-1.png"/></a></figure><figure id="9701153f-411d-4f5c-8493-bfb52fa7e7e7" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/good-labeling-separate-regions-2.png"><img style="width:528px" src="https://storage.yandexcloud.net/annotators-instruction-media/good-labeling-separate-regions-2.png"/></a></figure></li></ul><ul id="8de8e119-d9c0-42c4-984e-bcbe05d3584e" class="bulleted-list"><li style="list-style-type:disc">Әгъза бөтенләй фаразланмаган булса, аны яңа өлкәгә чикләгез һәм тамга асыгыз. <figure id="002b4558-42cb-43a6-bc87-1280bd40e579" class="image"><a href="https://storage.yandexcloud.net/annotators-instruction-media/good-labeling-all-layouts.png"><img style="width:744px" src="https://storage.yandexcloud.net/annotators-instruction-media/good-labeling-all-layouts.png"/></a></figure></li></ul><p id="f8a7cdd9-905d-4e9e-b709-4546078feeb5" class="">
</p><h1 id="21b99913-049d-4b96-8f37-04e00867e01c" class="">Тизтөймәләр</h1><p id="5b1f8a7b-a598-4158-aaba-71f15ff17115" class="">Эшегезне тизәйтү өчен тизтөймәләрне куллана аласыз</p><table id="59367912-3d26-4458-8cfe-56e584e62166" class="simple-table"><tbody><tr id="cf1391ca-5c00-448f-ba53-57000ffd8d34"><td id="=<KA" class="" style="width:258.6640625px">ctrl + enter</td><td id="Jd>p" class="">Торышны кабул итү.</td></tr><tr id="6b7916c3-d44d-4d9a-b8a0-3d4cfa3d4b44"><td id="=<KA" class="" style="width:258.6640625px">alt + enter</td><td id="Jd>p" class="">Торыш үзгәрешләрен яңарту.</td></tr><tr id="2b5e1296-c737-4eaa-92fa-632aa6af33b2"><td id="=<KA" class="" style="width:258.6640625px">ctrl + backspace OR cmd + backspace</td><td id="Jd>p" class="">Булган өлкәләрне бетерү.</td></tr><tr id="67b81d73-7525-4693-8be9-17d77f6823b7"><td id="=<KA" class="" style="width:258.6640625px">escape OR u</td><td id="Jd>p" class="">Сайланган өлкәдән чыгу.</td></tr><tr id="f92a6a9e-8977-4b3f-b621-95e8469a1f0e"><td id="=<KA" class="" style="width:258.6640625px">backspace</td><td id="Jd>p" class="">Сайланган өлкәне бетерү.</td></tr><tr id="48ae95de-5bd8-476b-8652-6036ac43683f"><td id="=<KA" class="" style="width:258.6640625px">alt + .</td><td id="Jd>p" class="">Өлкәләр исемлеге аша алга узу.</td></tr><tr id="ffd8220f-fbdb-44f0-8850-84f96b0d8db8"><td id="=<KA" class="" style="width:258.6640625px">alt + h</td><td id="Jd>p" class="">Сайланган өлкәне качыру.</td></tr><tr id="79536d88-c264-417a-92fb-4d37df54574e"><td id="=<KA" class="" style="width:258.6640625px">ctrl + d OR cmd + d</td><td id="Jd>p" class="">Сайланган өлкәнең кушын ясау.</td></tr><tr id="336082e1-f1b0-4810-a4ad-9e08771b4e04"><td id="=<KA" class="" style="width:258.6640625px">ctrl + z</td><td id="Jd>p" class="">Соңгы үзгәрешне кире кагу</td></tr><tr id="5a42709a-4dbb-4a78-a196-c09ff15ee65c"><td id="=<KA" class="" style="width:258.6640625px">1</td><td id="Jd>p" class="">Бит өсбашын сайлау</td></tr><tr id="ebd3f732-4103-475e-8cd1-453a27b21931"><td id="=<KA" class="" style="width:258.6640625px">2</td><td id="Jd>p" class="">Бүлек башын сайлау</td></tr><tr id="21d2ec8c-392e-47e7-957a-85c660414a3e"><td id="=<KA" class="" style="width:258.6640625px">3</td><td id="Jd>p" class="">Текст сайлау</td></tr><tr id="99afe6b2-66c7-4111-b8ca-a70b639c0279"><td id="=<KA" class="" style="width:258.6640625px">4</td><td id="Jd>p" class="">Баш исем сайлау</td></tr><tr id="83f39994-d600-40bf-bd75-18d52e52399d"><td id="=<KA" class="" style="width:258.6640625px">5</td><td id="Jd>p" class="">Шигырь сайлау</td></tr><tr id="8a0d85b5-3a3a-4255-a172-d04c76b1e2db"><td id="=<KA" class="" style="width:258.6640625px">6</td><td id="Jd>p" class="">Асъязма сайлау</td></tr><tr id="2377f266-4003-4ea2-bd3c-89535aaeca82"><td id="=<KA" class="" style="width:258.6640625px">7</td><td id="Jd>p" class="">Бит асъягын сайлау</td></tr><tr id="7984a011-d4f9-4c55-9da8-6b03a907e03c"><td id="=<KA" class="" style="width:258.6640625px">8</td><td id="Jd>p" class="">Рәсем сайлау</td></tr><tr id="645741aa-8d07-495a-933b-0a0a88494863"><td id="=<KA" class="" style="width:258.6640625px">9</td><td id="Jd>p" class="">Рәсем тасвирын сайлау</td></tr><tr id="31511f8e-7c46-40aa-974b-897cb2f51385"><td id="=<KA" class="" style="width:258.6640625px">0</td><td id="Jd>p" class="">Формула сайлау</td></tr><tr id="ffdc53e6-d8b4-4186-bd72-e6d98e3cc28a"><td id="=<KA" class="" style="width:258.6640625px">-</td><td id="Jd>p" class="">Җәдвәлне сайлау</td></tr><tr id="c5b5e2b2-19df-43c3-aff1-4866a6c4b7f6"><td id="=<KA" class="" style="width:258.6640625px">=</td><td id="Jd>p" class="">Исемлек тармагын сайлау </td></tr></tbody></table></div></article><span class="sans" style="font-size:14px;padding-top:2em"></span></body></html>