aboutsummaryrefslogtreecommitdiff
path: root/files/pt-pt/web/mathml/element/mrow
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-pt/web/mathml/element/mrow')
-rw-r--r--files/pt-pt/web/mathml/element/mrow/index.html95
1 files changed, 95 insertions, 0 deletions
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: <mrow>
+slug: Web/MathML/Element/mrow
+tags:
+ - MathML
+ - 'MathML:Element'
+ - 'MathML:General Layout Schemata'
+ - Referência de MathML
+translation_of: Web/MathML/Element/mrow
+---
+<div>{{MathMLRef}}</div>
+
+<p class="summary">O elemento de MathML <code>&lt;mrow&gt;</code> é 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.</p>
+
+<p>Ao escrever uma expressão MathML, deve agrupar elementos dentro de um <code>&lt;mrow&gt;</code> 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:</p>
+
+<ul>
+ <li>Pode melhorar a visualização, afetando possivelmente o espaçamento.</li>
+ <li>Permite implementar quebras de linha e indentação mais inteligente.</li>
+ <li>Simplifica a interpretação da expressão por sistemas automatizados, tais como sistemas de álgebra informática e leitores.</li>
+</ul>
+
+<h2 id="Atributos">Atributos</h2>
+
+<dl>
+ <dt id="attr-class-id-style">class, id, style</dt>
+ <dd>Para uso com <em><a href="/en-US/docs/CSS">stylesheets</a></em>.</dd>
+ <dt id="attr-dir">dir</dt>
+ <dd>A direção geral das fórmulas. Valores aceites são <code>ltr</code> (da esquerda para a direita) ou <code>rtl</code> (da direita para a esquerda).</dd>
+ <dt id="attr-href">href</dt>
+ <dd>Usado para criar uma hiperligação para um URI.</dd>
+ <dt id="attr-mathbackground">mathbackground</dt>
+ <dd>A cor de fundo. Pode usar <code>#rgb</code>, <code>#rrggbb</code> e <a href="https://wiki.developer.mozilla.org/en-US/docs/CSS/color_value#Color_Keywords">nomes de cores de HTML</a>.</dd>
+ <dt id="attr-mathcolor">mathcolor</dt>
+ <dd>A cor do texto. Pode usar <code>#rgb</code>, <code>#rrggbb</code> e <a class="external external-icon" href="https://wiki.developer.mozilla.org/en-US/docs/CSS/color_value#Color_Keywords" rel="noopener">nomes de cores HTML</a>.</dd>
+</dl>
+
+<h2 id="Exemplos">Exemplos</h2>
+
+<pre class="brush: html notranslate">&lt;math&gt;
+
+ &lt;mrow&gt;
+ &lt;mn&gt; 1 &lt;/mn&gt;
+ &lt;mo&gt; + &lt;/mo&gt;
+ &lt;mn&gt; 1 &lt;/mn&gt;
+ &lt;/mrow&gt;
+
+ &lt;mrow&gt;
+ &lt;mo&gt; ( &lt;/mo&gt;
+ &lt;mrow&gt;
+ &lt;mi&gt; x &lt;/mi&gt;
+ &lt;mo&gt; , &lt;/mo&gt;
+ &lt;mi&gt; y &lt;/mi&gt;
+ &lt;/mrow&gt;
+ &lt;mo&gt; ) &lt;/mo&gt;
+ &lt;/mrow&gt;
+
+&lt;/math&gt;
+</pre>
+
+<h2 id="Especificações">Especificações</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Especificação</th>
+ <th scope="col">Estado</th>
+ <th scope="col">Comentário</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{ SpecName('MathML3', 'chapter3.html#presm.mrow', 'mrow') }}</td>
+ <td>{{ Spec2('MathML3') }}</td>
+ <td>Especificação atual</td>
+ </tr>
+ <tr>
+ <td>{{ SpecName('MathML2', 'chapter3.html#presm.mrow', 'mrow') }}</td>
+ <td>{{ Spec2('MathML2') }}</td>
+ <td>Especificação inicial</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Compatibilidade">Compatibilidade</h2>
+
+
+
+<p>{{Compat("mathml.elements.mrow")}}</p>
+
+<h2 id="Ver_também">Ver também</h2>
+
+<ul>
+ <li>Elemento de agrupamento de HTML: {{ HTMLElement("div") }}</li>
+</ul>