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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
|
#. extracted from helpcontent2/source/text/smath/guide
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n"
"POT-Creation-Date: 2022-07-04 18:05+0200\n"
"PO-Revision-Date: 2022-07-01 16:24+0000\n"
"Last-Translator: Olivier Hallot <olivier.hallot@libreoffice.org>\n"
"Language-Team: Portuguese (Brazil) <https://translations.documentfoundation.org/projects/libo_help-master/textsmathguide/pt_BR/>\n"
"Language: pt-BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Accelerator-Marker: ~\n"
"X-Generator: LibreOffice\n"
"X-POOTLE-MTIME: 1494401851.000000\n"
#. P9FEQ
#: align.xhp
msgctxt ""
"align.xhp\n"
"tit\n"
"help.text"
msgid "Manually Aligning Formula Parts"
msgstr "Alinhamento manual de partes de fórmulas"
#. Dc94G
#: align.xhp
msgctxt ""
"align.xhp\n"
"bm_id3156384\n"
"help.text"
msgid "<bookmark_value>aligning; characters in %PRODUCTNAME Math</bookmark_value><bookmark_value>formula parts; manually aligning</bookmark_value>"
msgstr "<bookmark_value>alinhar; caracteres do %PRODUCTNAME Math</bookmark_value><bookmark_value>partes de fórmula; alinhamento manual</bookmark_value>"
#. 5ENLq
#: align.xhp
msgctxt ""
"align.xhp\n"
"hd_id3156384\n"
"help.text"
msgid "<variable id=\"align\"><link href=\"text/smath/guide/align.xhp\" name=\"Manually Aligning Formula Parts\">Manually Aligning Formula Parts</link></variable>"
msgstr "<variable id=\"align\"><link href=\"text/smath/guide/align.xhp\" name=\"Alinhamento Manual de Partes de Fórmulas\">Alinhamento manual de partes de fórmulas</link></variable>"
#. eUZmq
#: align.xhp
msgctxt ""
"align.xhp\n"
"hd_id3154657\n"
"help.text"
msgid "How do you align characters in $[officename] Math quickly and easily?"
msgstr "Como alinhar caracteres no $[officename] Math de modo rápido e fácil?"
#. EJ2GY
#: align.xhp
msgctxt ""
"align.xhp\n"
"par_id3150249\n"
"help.text"
msgid "To accomplish this, you must define empty groups and character strings. They do not require any space, but carry information that helps in the alignment process."
msgstr "Para fazer isso, defina grupos e cadeias de caracteres vazios. Eles não requerem espaço algum, mas contêm informações que ajudam no processo de alinhamento."
#. BLcvk
#: align.xhp
msgctxt ""
"align.xhp\n"
"par_id3153912\n"
"help.text"
msgid "To create empty groups, enter curly brackets <emph>{}</emph> in the Commands window. In the following example, the goal is to achieve a line break so that the plus signs are beneath one another, even though one less character is entered in the upper line:"
msgstr "Para criar grupos vazios, insira chaves <emph>{}</emph> na janela Comandos. No exemplo a seguir, o objetivo é obter uma quebra de linha para que os sinais de mais fiquem um embaixo do outro, mesmo que um sinal de menos seja inserido na linha de cima:"
#. wDfhJ
#: align.xhp
msgctxt ""
"align.xhp\n"
"par_id3143229\n"
"help.text"
msgid "Empty character strings are a simple way to ensure that texts and formulas are left-aligned. They are defined using double inverted commas \"\" . Make sure you do not use any typographic inverted commas. Example:"
msgstr "As cadeias de caracteres vazias são uma maneira simples de garantir que textos e fórmulas sejam alinhados à esquerda. Elas devem ser definidas usando-se aspas duplas \"\". Certifique-se de não usar aspas tipográficas. Exemplo:"
#. C6Ky9
#: align.xhp
msgctxt ""
"align.xhp\n"
"par_id3153809\n"
"help.text"
msgid "\"A further example.\" newline a+b newline \"\"c-d"
msgstr "\"Outro exemplo:\" newline a+b newline \"\"c-d"
#. WA2Pc
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
"tit\n"
"help.text"
msgid "Changing Default Attributes"
msgstr "Alterar os atributos padrão"
#. 4DrY6
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
"bm_id3145792\n"
"help.text"
msgid "<bookmark_value>attributes; changing in $[officename] Math</bookmark_value><bookmark_value>font attributes;changing defaults</bookmark_value><bookmark_value>formatting;changing default attributes</bookmark_value><bookmark_value>defaults;changing default formatting</bookmark_value><bookmark_value>changing;default formatting</bookmark_value>"
msgstr "<bookmark_value>atributos; alterar no $[officename] Math</bookmark_value><bookmark_value>atributos de fonte;alterar padrões</bookmark_value><bookmark_value>formatação;alterar atributos padrão</bookmark_value><bookmark_value>padrões;alterar formatação padrão</bookmark_value><bookmark_value>alterar;formatação padrão</bookmark_value>"
#. WndEQ
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
"hd_id3145792\n"
"help.text"
msgid "<variable id=\"attributes\"><link href=\"text/smath/guide/attributes.xhp\" name=\"Changing Default Attributes\">Changing Default Attributes</link></variable>"
msgstr "<variable id=\"attributes\"><link href=\"text/smath/guide/attributes.xhp\" name=\"Alteração de Atributos Padrão\">Alterar atributos padrão</link></variable>"
#. gAHnh
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
"hd_id3154484\n"
"help.text"
msgid "Can default formats in $[officename] Math be modified?"
msgstr "Os formatos padrão no $[officename] Math podem ser modificados?"
#. k9ADA
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
"par_id3148870\n"
"help.text"
msgid "Some parts of formulas are always formatted bold or italic by default."
msgstr "Algumas partes das fórmulas são sempre formatadas em negrito ou itálico por padrão."
#. 7A7Vi
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
"par_id3150210\n"
"help.text"
msgid "You can remove these attributes using \"nbold\" and \"nitalic\". Example:"
msgstr "Você pode remover esses atributos usando \"nbold\" e \"nitalic\". Exemplo:"
#. MCJxc
#: attributes.xhp
msgctxt ""
"attributes.xhp\n"
"par_id3149872\n"
"help.text"
msgid "In the second formula, the a is not italic. The b is bold. You cannot change the plus sign by this method."
msgstr "Na segunda fórmula, o a não é em itálico. O b é em negrito. Não é possível alterar o sinal de mais por esse método."
#. oPuAE
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
"tit\n"
"help.text"
msgid "Merging Formula Parts in Brackets"
msgstr "Mesclar partes de fórmulas entre parênteses"
#. bDPkX
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
"bm_id3152596\n"
"help.text"
msgid "<bookmark_value>brackets; merging formula parts</bookmark_value><bookmark_value>formula parts; merging</bookmark_value><bookmark_value>fractions in formulas</bookmark_value><bookmark_value>merging;formula parts</bookmark_value>"
msgstr "<bookmark_value>parênteses; mesclar partes de fórmulas</bookmark_value><bookmark_value>partes de fórmulas; mesclar</bookmark_value><bookmark_value>frações em fórmulas</bookmark_value><bookmark_value>mesclar;partes de fórmulas</bookmark_value>"
#. J7BeM
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
"hd_id3152596\n"
"help.text"
msgid "<variable id=\"brackets\"><link href=\"text/smath/guide/brackets.xhp\" name=\"Merging Formula Parts in Brackets\">Merging Formula Parts in Brackets</link></variable>"
msgstr "<variable id=\"brackets\"><link href=\"text/smath/guide/brackets.xhp\" name=\"Mesclagem de Partes de Fórmulas entre Parênteses\">Mesclar partes de fórmulas entre parênteses</link></variable>"
#. z6zop
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
"hd_id3154511\n"
"help.text"
msgid "Inserting fractions into formulas"
msgstr "Inserir frações em fórmulas"
#. jPtfJ
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
"par_id3146971\n"
"help.text"
msgid "In the case of a fraction whose numerator and denominator consist of a product, a sum, and so on, the values that belong together must be bracketed together."
msgstr "No caso de uma fração cujo numerador e denominador consistam em um produto, uma soma etc., os valores pertencentes a ela devem estar entre parênteses."
#. 4bWFt
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
"par_id3149021\n"
"help.text"
msgid "Use the following syntax:"
msgstr "Utilize a seguinte sintaxe:"
#. FX6mw
#: brackets.xhp
msgctxt ""
"brackets.xhp\n"
"par_id3154703\n"
"help.text"
msgid "or"
msgstr "ou"
#. x9te9
#: color.xhp
msgctxt ""
"color.xhp\n"
"tit\n"
"help.text"
msgid "Applying Color to Formula Parts"
msgstr "Aplicar cor a partes da fórmula"
#. F9aE8
#: color.xhp
msgctxt ""
"color.xhp\n"
"bm_id3156384\n"
"help.text"
msgid "<bookmark_value>Color in formulas</bookmark_value>"
msgstr "<bookmark_value>Cor em fórmulas</bookmark_value>"
#. UXL5W
#: color.xhp
msgctxt ""
"color.xhp\n"
"hd_id601641846107898\n"
"help.text"
msgid "<variable id=\"color\"><link href=\"text/smath/guide/color.xhp\" name=\"Color_link\">Applying Color to Formula Parts</link></variable>"
msgstr "<variable id=\"color\"><link href=\"text/smath/guide/color.xhp\" name=\"Color_link\">Aplicar cores a partes da fórmula</link></variable>"
#. ckGgG
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id481641846189425\n"
"help.text"
msgid "Use the command <literal>color</literal> to apply color to the subsequent formula part."
msgstr "Utilize o comando <literal>color</literal> para colorir partes subsequentes da fórmula."
#. BnqGh
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id141641846432331\n"
"help.text"
msgid "The example below creates a formula where <emph>a</emph> is shown using the default color (black) and <emph>b</emph> is shown in red."
msgstr "O exemplo abaixo cria uma fórmula onde <emph>a</emph> está na cor padrão (preto) e <emph>b</emph> está em vermelho."
#. jV7H8
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id211641848286949\n"
"help.text"
msgid "Beware that the <literal>color</literal> command only changes the color of the formula part that comes immediately after it. For example, in the formula below only <emph>b</emph> will be shown in red, whereas <emph>c</emph> will be shown in black."
msgstr "Note que o comando <literal>color</literal> altera apenas a cor da parte da fórmula subsequente. Por exemplo, na fórmula abaixo apenas <emph>b</emph> será mostrado em vermelho, enquanto <emph>c</emph> será mostrado em preto."
#. hLeFX
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641848475043\n"
"help.text"
msgid "Use braces to apply color to more parts of the formula. In the following example, <emph>b</emph> and <emph>c</emph> are shown in red."
msgstr "Use chaves para colorir mais partes da fórmula. No exemplo a seguir, <emph>b</emph> e <emph>c</emph> são mostrados em vermelho."
#. JAK8L
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id651641851485699\n"
"help.text"
msgid "A list with predefined color names is available <link href=\"text/smath/guide/color.xhp#PredefinedColors\" name=\"Colors_list\">here</link>."
msgstr "Uma lista com nomes de cores predefinidos encontra-se <link href=\"text/smath/guide/color.xhp#PredefinedColors\" name=\"Colors_list\">aqui</link>."
#. gQn7y
#: color.xhp
msgctxt ""
"color.xhp\n"
"bm_id521641858375937\n"
"help.text"
msgid "<bookmark_value>RGB colors</bookmark_value>"
msgstr "<bookmark_value>cores RGB</bookmark_value>"
#. beAyt
#: color.xhp
msgctxt ""
"color.xhp\n"
"hd_id831641851472401\n"
"help.text"
msgid "Using RGB colors"
msgstr "Utilizar cores RGB"
#. tj2xF
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id701641851641673\n"
"help.text"
msgid "Use the command <literal>color rgb</literal> to apply colors using RGB (Red, Green, Blue) values."
msgstr "Use o comando <literal>color rgb</literal> para colorir usando valores RGB (Vermelho, Verde, Azul)."
#. eYWCg
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id941641851779414\n"
"help.text"
msgid "RGB values range between 0 and 255."
msgstr "Os valores RGB etão no intervalo 0 a 255."
#. EFXpV
#: color.xhp
msgctxt ""
"color.xhp\n"
"bm_id521641858372217\n"
"help.text"
msgid "<bookmark_value>Hex colors</bookmark_value>"
msgstr "<bookmark_value>colores hexadecimais</bookmark_value>"
#. mdvQM
#: color.xhp
msgctxt ""
"color.xhp\n"
"hd_id901641851813499\n"
"help.text"
msgid "Using hex notation"
msgstr "Utilizar a notação hexadecimal"
#. zLQWy
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id271641851832464\n"
"help.text"
msgid "Use the command <literal>color hex</literal> to apply colors using the hexadecimal notation."
msgstr "Utilize o comando <literal>color hex</literal> para colorir usando a notação hexadecimal."
#. rPHnc
#: color.xhp
msgctxt ""
"color.xhp\n"
"hd_id121641851982125\n"
"help.text"
msgid "Combining color with other commands"
msgstr "Combinar cores com outros comandos"
#. WiZz8
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id321641852002469\n"
"help.text"
msgid "It is possible to combine the color command with other commands as <literal>bold</literal>, <literal>italic</literal> or <literal>size</literal>."
msgstr "Combine comandos de cores com outros comandos tais como <literal>bold</literal>, <literal>italic</literal> ou <literal>size</literal>."
#. qDEtC
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id521641852051767\n"
"help.text"
msgid "The example below writes <emph>var</emph> in bold blue:"
msgstr "O exemplo abaixo escreve <emph>var</emph> em negrito azul:"
#. vSVUb
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id21641852173099\n"
"help.text"
msgid "To change color and font size, use <literal>color</literal> in combination with <literal>size</literal> and the desired font size."
msgstr "Para alterar a cor e o tamanho da fonte, use <literal>color</literal> em combinação com <literal>size</literal> e o tamanho de fonte desejado."
#. wEhmU
#: color.xhp
msgctxt ""
"color.xhp\n"
"bm_id52164185802587\n"
"help.text"
msgid "<bookmark_value>List of predefined colors</bookmark_value>"
msgstr "<bookmark_value>lista de cores predefinidas</bookmark_value>"
#. wbRDh
#: color.xhp
msgctxt ""
"color.xhp\n"
"hd_id621641846264365\n"
"help.text"
msgid "Predefined color names"
msgstr "Nome das cores predefinidas"
#. FGJS8
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id911641846282038\n"
"help.text"
msgid "%PRODUCTNAME provides a set of predefined color names that can be used along with the <literal>color</literal> command."
msgstr "O %PRODUCTNAME fornece um conjunto de nomes de cores predefinidos que podem ser usados junto com o comando <literal>color</literal>."
#. auAPG
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id871641846833413\n"
"help.text"
msgid "Markup language"
msgstr "Linguagem de marcação"
#. Qf5tX
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id661641846833413\n"
"help.text"
msgid "Color"
msgstr "Cor"
#. Y4DMa
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id741641846833413\n"
"help.text"
msgid "Hex value"
msgstr "Valor hexadecimal"
#. 3kWLW
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id741641846833014\n"
"help.text"
msgid "RGB values"
msgstr "Valores RGB"
#. 4Vu7A
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id951641846833413\n"
"help.text"
msgid "<literal>aqua</literal> or <literal>cyan</literal>"
msgstr "<literal>aqua</literal> ou <literal>cyan</literal>"
#. xcaVa
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846833413\n"
"help.text"
msgid "Aqua"
msgstr "Aqua"
#. D73X6
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846830036\n"
"help.text"
msgid "Black"
msgstr "Preto"
#. iGEDP
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846320113\n"
"help.text"
msgid "Blue"
msgstr "Azul"
#. Umsp6
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846833363\n"
"help.text"
msgid "Coral"
msgstr "Coral"
#. YcrNE
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846833014\n"
"help.text"
msgid "Crimson"
msgstr "Carmim"
#. G6mfq
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id951641846830853\n"
"help.text"
msgid "<literal>fuchsia</literal> or <literal>magenta</literal>"
msgstr "<literal>fuchsia</literal> ou <literal>magenta</literal>"
#. DD2RU
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846800325\n"
"help.text"
msgid "Fuchsia"
msgstr "Fúcsia"
#. WSeur
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id951641846830213\n"
"help.text"
msgid "<literal>gray</literal> or <literal>grey</literal>"
msgstr "<literal>gray</literal> ou <literal>grey</literal>"
#. gdQ5j
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846896513\n"
"help.text"
msgid "Gray"
msgstr "Cinza"
#. YCrBe
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846830214\n"
"help.text"
msgid "Green"
msgstr "Verde"
#. Zqix6
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846836253\n"
"help.text"
msgid "Hot pink"
msgstr "Rosa choque"
#. 9oHjZ
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846812385\n"
"help.text"
msgid "Indigo"
msgstr "Índigo"
#. X4Y45
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846835521\n"
"help.text"
msgid "Lavender"
msgstr "Lavanda"
#. g5GKD
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846036523\n"
"help.text"
msgid "Lime"
msgstr "Verde limão"
#. kAo5q
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846833649\n"
"help.text"
msgid "Maroon"
msgstr "Marrom"
#. n7uXk
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846837653\n"
"help.text"
msgid "Midnight"
msgstr "Meia-noite"
#. Ymn82
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846867458\n"
"help.text"
msgid "Navy"
msgstr "Azul marinho"
#. aedBY
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846837663\n"
"help.text"
msgid "Olive"
msgstr "Verde oliva"
#. pNCBH
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846838053\n"
"help.text"
msgid "Orange"
msgstr "Laranja"
#. BGG7c
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846836041\n"
"help.text"
msgid "Orange red"
msgstr "Tangerina"
#. opiDJ
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846833063\n"
"help.text"
msgid "Purple"
msgstr "Púrpura"
#. 42wFB
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846833902\n"
"help.text"
msgid "Red"
msgstr "Vermelho"
#. p5ox4
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846836613\n"
"help.text"
msgid "Sea green"
msgstr "Verde mar"
#. AF8R7
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641840569413\n"
"help.text"
msgid "Silver"
msgstr "Prata"
#. 8XVN7
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846896587\n"
"help.text"
msgid "Teal"
msgstr "Turquesa"
#. KejUr
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846006745\n"
"help.text"
msgid "Violet"
msgstr "Violeta"
#. pXf2z
#: color.xhp
msgctxt ""
"color.xhp\n"
"par_id841641846837556\n"
"help.text"
msgid "Yellow"
msgstr "Amarelo"
#. 3UYoM
#: comment.xhp
msgctxt ""
"comment.xhp\n"
"tit\n"
"help.text"
msgid "Entering Comments"
msgstr "Inserir comentários"
#. EpAyX
#: comment.xhp
msgctxt ""
"comment.xhp\n"
"bm_id3155961\n"
"help.text"
msgid "<bookmark_value>comments; entering in $[officename] Math</bookmark_value><bookmark_value>inserting;comments in $[officename] Math</bookmark_value>"
msgstr "<bookmark_value>comentários; inserir no $[officename] Math</bookmark_value><bookmark_value>inserir;comentários no $[officename] Math</bookmark_value>"
#. RB5xU
#: comment.xhp
msgctxt ""
"comment.xhp\n"
"hd_id3155961\n"
"help.text"
msgid "<variable id=\"comment\"><link href=\"text/smath/guide/comment.xhp\" name=\"Entering Comments\">Entering Comments</link></variable>"
msgstr "<variable id=\"comment\"><link href=\"text/smath/guide/comment.xhp\" name=\"Inserção de Comentários\">Inserir comentários</link></variable>"
#. CA8hE
#: comment.xhp
msgctxt ""
"comment.xhp\n"
"hd_id3154657\n"
"help.text"
msgid "How does one attach comments that don't appear in the document to a formula?"
msgstr "Como atribuir a uma fórmula comentários que não aparecerão no documento?"
#. sj3Gt
#: comment.xhp
msgctxt ""
"comment.xhp\n"
"par_id3149499\n"
"help.text"
msgid "A comment begins with a double percent sign <emph>%%</emph>, and extends to the next line-end character (Enter key). Everything that lies in between is ignored and is not printed out. If there are percent signs in the text, they are treated as part of the text."
msgstr "Os comentários começam com um sinal de porcentagem duplo <emph>%%</emph> e vão até o próximo caractere de fim de linha (tecla Enter). Todos os itens desse intervalo são ignorados e não serão impressos. Os sinais de porcentagem existentes serão considerados parte do texto."
#. 27yBP
#: comment.xhp
msgctxt ""
"comment.xhp\n"
"par_idN105D0\n"
"help.text"
msgid "Example:"
msgstr "Exemplo:"
#. CMAYs
#: comment.xhp
msgctxt ""
"comment.xhp\n"
"par_idN105D3\n"
"help.text"
msgid "a^2+b^2=c^2 %% Pythagorean theorem."
msgstr "a^2+b^2=c^2 %% Teorema de Pitágoras."
#. PZSB7
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"tit\n"
"help.text"
msgid "Shortcuts ($[officename] Math Accessibility)"
msgstr "Atalhos (acessibilidade do $[officename] Math)"
#. rsGdv
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"bm_id3149018\n"
"help.text"
msgid "<bookmark_value>accessibility; $[officename] Math shortcuts</bookmark_value>"
msgstr "<bookmark_value>acessibilidade; atalhos do $[officename] Math</bookmark_value>"
#. 4zHFd
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"hd_id3149018\n"
"help.text"
msgid "<variable id=\"keyboard\"><link href=\"text/smath/guide/keyboard.xhp\" name=\"Shortcuts ($[officename] Math Accessibility)\">Shortcuts ($[officename] Math Accessibility)</link></variable>"
msgstr "<variable id=\"keyboard\"><link href=\"text/smath/guide/keyboard.xhp\" name=\"Atalhos (Acessibilidade do $[officename] Math)\">Atalhos (Acessibilidade do $[officename] Math)</link></variable>"
#. ZkpGA
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150298\n"
"help.text"
msgid "You can control $[officename] Math without a mouse."
msgstr "Você pode controlar o $[officename] Math sem usar o mouse."
#. dNEFC
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"hd_id3150343\n"
"help.text"
msgid "Inserting a Formula Directly"
msgstr "Inserir uma fórmula diretamente"
#. 3ztDF
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3154659\n"
"help.text"
msgid "If you want to insert a formula into a text document, and you already know the correct writing, you can proceed as follows:"
msgstr "Caso deseje inserir uma fórmula em um documento de texto e já saiba como escrevê-la, proceda da seguinte maneira:"
#. qoVM4
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3153818\n"
"help.text"
msgid "Write the formula into your text"
msgstr "Escreva a fórmula dentro de seu texto"
#. dmJc9
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3153915\n"
"help.text"
msgid "Select the formula"
msgstr "Selecione a fórmula"
#. F2ipo
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150213\n"
"help.text"
msgid "Choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem>."
msgstr "Escolha o comando <menuitem>Inserir - Objeto OLE - Objeto fórmula</menuitem>."
#. aowxC
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"hd_id3154767\n"
"help.text"
msgid "Inserting a Formula using a Window"
msgstr "Inserir uma fórmula através de uma Janela"
#. Jvobx
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3149875\n"
"help.text"
msgid "If you want to use the $[officename] Math interface to edit a formula, choose the command <menuitem>Insert - OLE Object - Formula Object</menuitem> without any text selected."
msgstr "Caso deseje usar a interface do $[officename] Math para editar uma fórmula, escolha o comando <menuitem>Inserir - Objeto OLE - Objeto fórmula</menuitem> sem nenhum texto selecionado."
#. sEBBM
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150391\n"
"help.text"
msgid "The cursor waits in the Commands window and you can type the formula."
msgstr "O cursor aguarda na janela Comandos e você pode digitar a fórmula."
#. rvzhp
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3150537\n"
"help.text"
msgid "You can compose formulas using the Elements pane. Open it with the menu <emph>View - Elements</emph> if it is not already open."
msgstr "Você pode compor fórmulas utilizando o painel Elementos. Se ele não estiver aberto, marque a opção do menu <emph>Exibir → Elementos</emph>."
#. tfpCC
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"par_id3155625\n"
"help.text"
msgid "If the Elements pane is open, use F6 to switch from the Commands window to the Elements pane and back."
msgstr "Se o painel Elementos estiver aberto, utilize F6 para alternar entre a janela Comandos e o painel Elementos."
#. PxwLi
#: keyboard.xhp
msgctxt ""
"keyboard.xhp\n"
"hd_id3154554\n"
"help.text"
msgid "Elements pane"
msgstr "Painel Elementos"
#. iKfcF
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"tit\n"
"help.text"
msgid "Working with Limits"
msgstr "Trabalhar com limites"
#. 6WSEC
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"bm_id8404492\n"
"help.text"
msgid "<bookmark_value>limits;in sums/integrals</bookmark_value><bookmark_value>integral limits</bookmark_value>"
msgstr "<bookmark_value>limites;em somatórios / integrais</bookmark_value><bookmark_value>limites de integrais</bookmark_value>"
#. jCWYY
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"hd_id1892147\n"
"help.text"
msgid "<variable id=\"limits\"><link href=\"text/smath/guide/limits.xhp\">Working with Limits</link></variable>"
msgstr "<variable id=\"limits\"><link href=\"text/smath/guide/limits.xhp\">Trabalhar com limites</link></variable>"
#. Gtt8e
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"hd_id9881893\n"
"help.text"
msgid "How can I define the limits in a Sum or Integral formula?"
msgstr "Como posso definir os limites em uma fórmula de somatório ou de integral?"
#. kFrLC
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id6504409\n"
"help.text"
msgid "You want to insert a summation formula like \"summation of s^k from k = 0 to n\" at the cursor in a Writer text document."
msgstr "Você deseja inserir uma fórmula de somatório tal como \"somatório de s^k de k = 0 até n\" na posição do cursor em um documento do Writer."
#. qAFch
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id1276589\n"
"help.text"
msgid "You see the Math input window and the Elements pane on the left."
msgstr "Você vê a janela de entrada do Math e o painel Elementos à esquerda."
#. DZW2c
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id3283791\n"
"help.text"
msgid "From the list on the upper part of the Elements pane, select the <emph>Operators</emph> item."
msgstr "Na lista localizada na parte superior do painel Elementos, selecione o item <emph>Operadores</emph>."
#. r8sVG
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id9734794\n"
"help.text"
msgid "In the lower part of the Elements pane, click the <emph>Sum</emph> icon."
msgstr "Na parte inferior do painel Elementos, clique no ícone <emph>Somatório</emph>."
#. erGA9
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id9641712\n"
"help.text"
msgid "To enable lower and upper limits, click additionally the <emph>Upper and Lower Limits</emph> icon."
msgstr "Para ativar os limites inferiores e superiores, clique também no ícone <emph>Limites inferior e superior</emph>."
#. YxM8C
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id3304239\n"
"help.text"
msgid "In the input window, the first placeholder or marker is selected, and you can start to enter the lower limit:"
msgstr "Na anela de entrada, o primeiro espaço reservado ou marca estará selecionada e você pode inserir o limite inferior:"
#. szLNG
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id8471327\n"
"help.text"
msgid "Press F4 to advance to the next marker, and enter the upper limit:"
msgstr "Pressione F4 para avançar para a próxima marca, e digite o limite superior:"
#. Wh4vB
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id759300\n"
"help.text"
msgid "Press F4 to advance to the next marker, and enter the summand:"
msgstr "Pressione F4 para avançar para a próxima marca, e digite o somando:"
#. dJvvn
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id6756187\n"
"help.text"
msgid "Now the formula is complete. Click into your text document outside the formula to leave the formula editor."
msgstr "A fórmula está completa. Clique no seu documento de texto fora da fórmula para deixar o editor de fórmula."
#. bFFkA
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id9406414\n"
"help.text"
msgid "In the same way, you can enter an Integral formula with limits. When you click an icon from the Elements pane, the assigned text command is inserted in the input window. If you know the text commands, you can enter the commands directly in the input window."
msgstr "De forma similar, você pode inserir uma fórmula de integral com limites. Ao clicar em um ícone do painel Elementos, o texto do comando atribuído será inserido na janela de entrada. Se souber os textos dos comandos, você poderá inserir os comandos diretamente nesta janela."
#. VAoyi
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id1965697\n"
"help.text"
msgid "Click in the input window and enter the following line:"
msgstr "Clique na janela de entrada e digite a seguinte linha:"
#. 7rRJW
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id4651020\n"
"help.text"
msgid "A small gap exists between f(x) and dx, which you can also enter using the Elements pane: select the <emph>Formats</emph> item from the list on the top, then the <emph>Small Gap</emph> icon."
msgstr "Uma pequena lacuna existe entre f(x) e dx, que também pode ser inserida utilizando o painel Elementos: selecione o item <emph>Formatos</emph> localizado da lista no topo e, em seguida, clique no ícone <emph>Pequena lacuna</emph>."
#. FSWqq
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id3877071\n"
"help.text"
msgid "If you don't like the font of the letters f and x, choose <item type=\"menuitem\">Format - Fonts</item> and select other fonts. Click the <emph>Default</emph> button to use the new fonts as default from now on."
msgstr "Se não gostar da fonte das letras f e x, escolha <item type=\"menuitem\">Formatar - Fontes</item> e selecione outra fonte. Clique no botão <emph>Padrão</emph> para utilizar as novas fontes a partir de agora."
#. KBUXj
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id3021332\n"
"help.text"
msgid "If you need the formula within a line of text, the limits increase the line height. You can choose <item type=\"menuitem\">Format - Text Mode</item> to place the limits besides the Sum or Integral symbol, which reduces the line height."
msgstr "Se precisar da fórmula dentro de uma linha de texto, os limites aumentam a altura da linha. Você pode escolher <item type=\"menuitem\">Formatar - Modo de texto</item> para colocar os limites ao lado do símbolo de integral ou de somatório, o que reduz a altura da linha."
#. FMfHG
#: limits.xhp
msgctxt ""
"limits.xhp\n"
"par_id260322\n"
"help.text"
msgid "<link href=\"text/smath/01/03090909.xhp\">Example of Integral and Sum ranges</link>"
msgstr "<link href=\"text/smath/01/03090909.xhp\">Exemplo de intervalo de integral e de somatório</link>"
#. tfPe4
#: main.xhp
msgctxt ""
"main.xhp\n"
"tit\n"
"help.text"
msgid "Instructions for Using $[officename] Math"
msgstr "Instruções para a utilização do $[officename] Math"
#. FfhxL
#: main.xhp
msgctxt ""
"main.xhp\n"
"bm_id3147341\n"
"help.text"
msgid "<bookmark_value>$[officename] Math;general instructions</bookmark_value><bookmark_value>instructions; $[officename] Math</bookmark_value><bookmark_value>Equation Editor, see $[officename] Math</bookmark_value>"
msgstr "<bookmark_value>$[officename] Math;instruções gerais</bookmark_value><bookmark_value>instruções; $[officename] Math</bookmark_value><bookmark_value>Editor de equações, veja $[officename] Math</bookmark_value>"
#. DyNdG
#: main.xhp
msgctxt ""
"main.xhp\n"
"hd_id3147341\n"
"help.text"
msgid "<variable id=\"main\"><link href=\"text/smath/guide/main.xhp\" name=\"Instructions for Using $[officename] Math\">Instructions for Using $[officename] Math</link></variable>"
msgstr "<variable id=\"main\"><link href=\"text/smath/guide/main.xhp\" name=\"Instruções para Uso do $[officename] Math\">Instruções para utilização do $[officename] Math</link></variable>"
#. ArDuV
#: main.xhp
msgctxt ""
"main.xhp\n"
"hd_id3150199\n"
"help.text"
msgid "Entering and Editing Formulas"
msgstr "Inserir e editar fórmulas"
#. 74qEh
#: newline.xhp
msgctxt ""
"newline.xhp\n"
"tit\n"
"help.text"
msgid "Entering Line Breaks"
msgstr "Inserir quebras de linha"
#. S8pTx
#: newline.xhp
msgctxt ""
"newline.xhp\n"
"bm_id1295205\n"
"help.text"
msgid "<bookmark_value>line breaks; in formulas</bookmark_value><bookmark_value>formulas;line breaks</bookmark_value><bookmark_value>wrapping text;in formulas</bookmark_value>"
msgstr "<bookmark_value>quebra de linha; em fórmulas</bookmark_value><bookmark_value>fórmulas;quebras de linha</bookmark_value><bookmark_value>disposição automática do texto;em fórmulas</bookmark_value>"
#. Uaq5F
#: newline.xhp
msgctxt ""
"newline.xhp\n"
"hd_id3146970\n"
"help.text"
msgid "<variable id=\"newline\"><link href=\"text/smath/guide/newline.xhp\" name=\"Entering Line Breaks\">Entering Line Breaks</link></variable>"
msgstr "<variable id=\"newline\"><link href=\"text/smath/guide/newline.xhp\" name=\"Inserção de Quebras de Linha\">Inserir quebras de linha</link></variable>"
#. gLLUF
#: newline.xhp
msgctxt ""
"newline.xhp\n"
"hd_id3147339\n"
"help.text"
msgid "How to write formulas in $[officename] Math over two lines (with manual line break):"
msgstr "Como escrever fórmulas no $[officename] Math em duas linhas (com a quebra de linha manual):"
#. hYDBe
#: newline.xhp
msgctxt ""
"newline.xhp\n"
"par_id3154702\n"
"help.text"
msgid "Create a line break by using the \"newline\" command. Everything coming after the line break is placed on the next line."
msgstr "Crie uma quebra de linha usando o comando \"newline\". Tudo o que vier após a quebra de linha ficará na linha seguinte."
#. fhtKa
#: parentheses.xhp
msgctxt ""
"parentheses.xhp\n"
"tit\n"
"help.text"
msgid "Inserting Brackets"
msgstr "Inserir parênteses"
#. CeDFE
#: parentheses.xhp
msgctxt ""
"parentheses.xhp\n"
"bm_id3153415\n"
"help.text"
msgid "<bookmark_value>brackets; inserting in %PRODUCTNAME Math</bookmark_value><bookmark_value>inserting;brackets</bookmark_value><bookmark_value>distances between brackets</bookmark_value>"
msgstr "<bookmark_value>parênteses; inserir no %PRODUCTNAME Math</bookmark_value><bookmark_value>inserir;parênteses</bookmark_value><bookmark_value>distâncias entre parênteses</bookmark_value>"
#. XkEUk
#: parentheses.xhp
msgctxt ""
"parentheses.xhp\n"
"hd_id3153415\n"
"help.text"
msgid "<variable id=\"parentheses\"><link href=\"text/smath/guide/parentheses.xhp\" name=\"Inserting Brackets\">Inserting Brackets</link></variable>"
msgstr "<variable id=\"parentheses\"><link href=\"text/smath/guide/parentheses.xhp\" name=\"Inserção de Parênteses\">Inserir Parênteses</link></variable>"
#. cAGdF
#: parentheses.xhp
msgctxt ""
"parentheses.xhp\n"
"hd_id3150751\n"
"help.text"
msgid "In <item type=\"productname\">%PRODUCTNAME</item> Math, can brackets be shown separately so that the distance between them is freely definable?"
msgstr "No <item type=\"productname\">%PRODUCTNAME</item> Math, os parênteses podem ser mostrados separadamente de modo que a distância entre eles seja definida livremente?"
#. L2fFP
#: parentheses.xhp
msgctxt ""
"parentheses.xhp\n"
"par_id3083281\n"
"help.text"
msgid "You can set individual brackets using \"left\" and \"right\", but the distance between the brackets will not be fixed, as they adapt to the argument. Nevertheless, there is a way to display brackets so that the distance between them is fixed. To accomplish this, place a \"\\\" (backslash) before the normal brackets. These brackets now behave like any other symbol and the alignment is the same as with other symbols:"
msgstr "Você pode definir parênteses individuais, usando \"left\" e \"right\", mas a distância entre eles não será fixa, pois eles se adaptam ao argumento. No entanto, há uma maneira de exibir parênteses de modo que a distância entre eles seja fixa. Para fazer isso, coloque uma barra invertida \"\\\" antes dos parênteses. Estes parênteses se comportarão agora como qualquer outro símbolo, e o alinhamento será o mesmo dos outros símbolos:"
#. AECF4
#: text.xhp
msgctxt ""
"text.xhp\n"
"tit\n"
"help.text"
msgid "Entering Text"
msgstr "Inserir texto"
#. FGbj6
#: text.xhp
msgctxt ""
"text.xhp\n"
"bm_id3155962\n"
"help.text"
msgid "<bookmark_value>text strings; entering in $[officename] Math</bookmark_value><bookmark_value>direct text; entering in $[officename] Math</bookmark_value><bookmark_value>inserting;text in $[officename] Math</bookmark_value>"
msgstr "<bookmark_value>texto; inserir no $[officename] Math</bookmark_value><bookmark_value>texto direto; inserir no $[officename] Math</bookmark_value><bookmark_value>inserir;texto no $[officename] Math</bookmark_value>"
#. XRDUC
#: text.xhp
msgctxt ""
"text.xhp\n"
"hd_id5676442\n"
"help.text"
msgid "<variable id=\"text\"><link href=\"text/smath/guide/text.xhp\" name=\"Entering Text\">Entering Text</link></variable>"
msgstr "<variable id=\"text\"><link href=\"text/smath/guide/text.xhp\" name=\"Entering Text\">Inserir texto</link></variable>"
#. FGjG4
#: text.xhp
msgctxt ""
"text.xhp\n"
"hd_id8509170\n"
"help.text"
msgid "How to enter direct text strings that do not get interpreted?"
msgstr "Como inserir texto direto que não seja interpretado?"
#. 8AWkB
#: text.xhp
msgctxt ""
"text.xhp\n"
"par_id337229\n"
"help.text"
msgid "Some text strings get interpreted as operators automatically. Sometimes this is not what you want. If you want to write W<emph>*</emph> (a letter with a superscripted asterisk), the asterisk will be interpreted as a multiplication operator. Enclose the direct text within double quotes or add spaceholders."
msgstr "Alguns textos são interpretados como operadores automaticamente. Às vezes isso não é o desejado. Se você quer escrever W<emph>*</emph> (uma letra com um asterisco sobrescrito), o asterisco será interpretado como um operador de multiplicação. Ponha o texto direto entre aspas duplas ou adicione marcadores de espaço."
#. HCpMB
#: text.xhp
msgctxt ""
"text.xhp\n"
"par_idN105D0\n"
"help.text"
msgid "Examples:"
msgstr "Exemplos:"
#. aKbTy
#: text.xhp
msgctxt ""
"text.xhp\n"
"par_id521866\n"
"help.text"
msgid "An imported MathType formula contains the following string"
msgstr "Uma fórmula MathType importada contém o seguinte texto"
#. pgDrE
#: text.xhp
msgctxt ""
"text.xhp\n"
"par_id755943\n"
"help.text"
msgid "If you have set up Math to convert imported MathType formulas (in <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME - Preferences</caseinline><defaultinline>Tools - Options</defaultinline></switchinline> - Load/Save - Microsoft Office), you see the formula with a placeholder instead of the asterisk."
msgstr "Se tiver configurado o Math para converter as fórmulas MathType importadas (em <switchinline select=\"sys\"><caseinline select=\"MAC\">%PRODUCTNAME → Preferências</caseinline><defaultinline>Ferramentas → Opções…</defaultinline></switchinline> → Carregar/Salvar → Microsoft Office), você verá a fórmula com um espaço reservado em vez do asterisco."
#. VXaga
#: text.xhp
msgctxt ""
"text.xhp\n"
"par_id5988952\n"
"help.text"
msgid "Change {*} to {} * {} as in the following formula:"
msgstr "Altere {*} para {} * {} tal como na seguinte fórmula:"
#. HGq8j
#: text.xhp
msgctxt ""
"text.xhp\n"
"par_id4941557\n"
"help.text"
msgid "You can also use W^\"*\" to enter the character as direct text."
msgstr "Você também pode escrever W^\"*\" para inserir o caractere como texto direto."
#. qELLZ
#: text.xhp
msgctxt ""
"text.xhp\n"
"par_id9961851\n"
"help.text"
msgid "Some formulas start with an = sign. Use \"=\" to enter that character as direct text."
msgstr "Algumas fórmulas começam com um sinal de =. Utilize \"=\" para inserir esse caractere como texto direto."
|