From 074785cea106179cb3305637055ab0a009ca74f2 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:42:52 -0500 Subject: initial commit --- files/pt-pt/web/mathml/element/mrow/index.html | 95 ++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 files/pt-pt/web/mathml/element/mrow/index.html (limited to 'files/pt-pt/web/mathml/element/mrow') diff --git a/files/pt-pt/web/mathml/element/mrow/index.html b/files/pt-pt/web/mathml/element/mrow/index.html new file mode 100644 index 0000000000..1e79df2bac --- /dev/null +++ b/files/pt-pt/web/mathml/element/mrow/index.html @@ -0,0 +1,95 @@ +--- +title: +slug: Web/MathML/Element/mrow +tags: + - MathML + - 'MathML:Element' + - 'MathML:General Layout Schemata' + - Referência de MathML +translation_of: Web/MathML/Element/mrow +--- +
{{MathMLRef}}
+ +

O elemento de MathML <mrow> é utilizado para agrupar sub-expressões, que normalmente contêm um ou mais operadores com os seus respetivos operandos (tais como {{ MathMLElement("mi") }} e {{ MathMLElement("mn") }}). Este elemento é apresentado como uma linha horizontal contendo os seus argumentos.

+ +

Ao escrever uma expressão MathML, deve agrupar elementos dentro de um <mrow> da mesma forma que são agrupados na interpretação matemática da expressão. O agrupamento adequado ajuda a renderizar a expressão de várias maneiras:

+ + + +

Atributos

+ +
+
class, id, style
+
Para uso com stylesheets.
+
dir
+
A direção geral das fórmulas. Valores aceites são ltr (da esquerda para a direita) ou rtl (da direita para a esquerda).
+
href
+
Usado para criar uma hiperligação para um URI.
+
mathbackground
+
A cor de fundo. Pode usar #rgb, #rrggbb e nomes de cores de HTML.
+
mathcolor
+
A cor do texto. Pode usar #rgb, #rrggbb e nomes de cores HTML.
+
+ +

Exemplos

+ +
<math>
+
+  <mrow>
+    <mn> 1 </mn>
+    <mo> + </mo>
+    <mn> 1 </mn>
+  </mrow>
+
+  <mrow>
+    <mo> ( </mo>
+    <mrow>
+      <mi> x </mi>
+      <mo> , </mo>
+      <mi> y </mi>
+    </mrow>
+    <mo> ) </mo>
+  </mrow>
+
+</math>
+
+ +

Especificações

+ + + + + + + + + + + + + + + + + + + + + +
EspecificaçãoEstadoComentário
{{ SpecName('MathML3', 'chapter3.html#presm.mrow', 'mrow') }}{{ Spec2('MathML3') }}Especificação atual
{{ SpecName('MathML2', 'chapter3.html#presm.mrow', 'mrow') }}{{ Spec2('MathML2') }}Especificação inicial
+ +

Compatibilidade

+ + + +

{{Compat("mathml.elements.mrow")}}

+ +

Ver também

+ + -- cgit v1.2.3-54-g00ecf