Plugin |
Nome do Programa | Descrição |
FireMath | Plugin do Firefox |
Fonte Especial (Conjunto) |
Download da Fonte | Descrição |
conjunto.ttf | Insere no código fonte o conjunto (N, Z, Q, I, R, C) ou (n, z, q, i, r, c) |
numeros_riscados.ttf | Risca os números: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 |
Números Tachados CSS | Risca os números: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 |
<style type="text/css"> @font-face { font-family: 'conjunto'; src: url(fonte_conjunto/conjunto.ttf); } #conjunto { font-family: 'conjunto' } </style> <math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext><span id="conjunto">n</span></mtext> <mo>⊂</mo> <mtext><span id="conjunto">z</span></mtext> <mo>⊂</mo> <mtext><span id="conjunto">q</span></mtext> <mo>⊂</mo> <mtext><span id="conjunto">i</span></mtext> <mo>⊂</mo> <mtext><span id="conjunto">r</span></mtext> <mo>⊂</mo> <mtext><span id='conjunto">c</span></mtext> </mrow> </math> |
<style type="text/css"> @font-face { font-family: 'conjunto'; src: url(fonte_conjunto/conjunto.ttf); } #conjunto { font-family: 'conjunto' } </style> <math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext><span id="conjunto">N</span></mtext> <mo>⊂</mo> <mtext><span id="conjunto">Z</span></mtext> <mo>⊂</mo> <mtext><span id="conjunto">Q</span></mtext> <mo>⊂</mo> <mtext><span id="conjunto">I</span></mtext> <mo>⊂</mo> <mtext><span id="conjunto">R</span></mtext> </mrow> <mo>⊂</mo> <mtext><span id="conjunto">C</span></mtext> </math> |
Números Riscados |
Números Tachados CSS |
<style type="text/css"> |
Alfabeto Grego |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mfenced open="⟨" close="⟩" separators="|"> <mrow> <mi>α</mi> <mi>β</mi> <mi>γ</mi> </mrow> </mfenced> <mfenced open="⟨" close="⟩" separators="|"> <mrow> <mi>Α</mi> <mi>Β</mi> <mi>Γ</mi> </mrow> </mfenced> </mrow> </math> |
Exemplos |
Número Inteiro
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mn>2</mn> <mn>3</mn> <mn>6</mn> <mtext>.</mtext> <mn>4</mn> <mn>1</mn> <mn>2</mn> <mtext>.</mtext> <mn>3</mn> <mn>4</mn> <mn>2</mn> </mrow> </math> |
Decimal
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mn>0</mn> <mtext>,</mtext> <mn>5</mn> <mn>4</mn> <mtext>.</mtext> <mn>6</mn> <mn>7</mn> <mn>8</mn> <mtext>.</mtext> <mn>1</mn> </mrow> </math> |
Adição
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mn>4</mn> <mo>+</mo> <mn>5</mn> <mo>=</mo> <mn>9</mn> </mrow> </math> |
Subtração
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mn>5</mn> <mo>-</mo> <mn>4</mn> <mo>=</mo> <mn>1</mn> </mrow> </math> |
Multiplicação
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mn>5</mn> <mo>×</mo> <mn>4</mn> <mo>=</mo> <mn>2</mn> <mn>0</mn> </mrow> </math> |
Divisão
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mn>5</mn> <mo>÷</mo> <mn>4</mn> <mo>=</mo> <mn>1</mn> <mtext>,</mtext> <mn>2</mn> <mn>5</mn> </mrow> </math> |
Fração
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mfrac> <mrow> <mn>1</mn> </mrow> <mrow> <mn>1</mn> <mtext>.</mtext> <mn>0</mn> <mn>2</mn> <mn>4</mn> </mrow> </mfrac> </mrow> </math> |
Potência
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <msup> <mrow> <mn>2</mn> <mn>0</mn> </mrow> <mn>5</mn> </msup> </mrow> </math> |
Radiciação
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mroot> <mrow> <mfrac> <mrow> <mn>5</mn> <mn>6</mn> <mn>8</mn> </mrow> <mrow> <mn>3</mn> </mrow> </mfrac> </mrow> <mrow> <mn>3</mn> </mrow> </mroot> </mrow> </math> |
Mais ou Menos
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mo>=</mo> <mo>±</mo> <msqrt> <mn>4</mn> </msqrt> </mrow> </math> |
Função Algébrica
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mfrac> <mrow> <mn>3</mn> <mo>+</mo> <mn>4</mn> <mi>x</mi> </mrow> <mrow> <mn>2</mn> <mo>-</mo> <mn>8</mn> <mi>y</mi> </mrow> </mfrac> </mrow> </math> |
Operadores Aritméticos
Menor que |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mo><</mo> <mn>2</mn> </mrow> </math> |
Maior que |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mo>></mo> <mn>4</mn> </mrow> </math> |
Menor ou Iqual |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mo>≤</mo> <mn>8</mn> </mrow> </math> |
Maior ou Igual |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mo>≥</mo> <mn>9</mn> </mrow> </math> |
Diferente |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mo>≠</mo> <mn>8</mn> </mrow> </math> |
Aprocimadamente |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mo>≅</mo> <mn>9</mn> <mtext>,</mtext> <mn>3</mn> <mn>2</mn> </mrow> </math> |
Conjuto
Pertence |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mn>4</mn> <mo>∈</mo> <mtext>A</mtext> </mrow> </math> |
Não Pertence |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mn>8</mn> <mo>∉</mo> <mtext>B</mtext> </mrow> </math> |
Contém |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>A</mtext> <mo>⊃</mo> <mtext>C</mtext> </mrow> </math> |
Não Contém |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>E</mtext> <mo>⊄</mo> <mtext>F</mtext> </mrow> </math> |
Está Contido |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>B</mtext> <mo>⊂</mo> <mtext>E</mtext> </mrow> </math> |
Não Está Contido |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>E</mtext> <mo>⊅</mo> <mtext>F</mtext> </mrow> </math> |
União |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>E</mtext> <mo>∪</mo> <mtext>F</mtext> </mrow> </math> |
Intercesão |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>E</mtext> <mo>∩</mo> <mtext>F</mtext> </mrow> </math> |
Conjunto 1 |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>A</mtext> <mo>=</mo> <mfenced open="{" close="}" separators=","> <mrow> <mn>1</mn> <mn>2</mn> <mo>;</mo> <mn>4</mn> <mn>5</mn> <mo>;</mo> <mn>5</mn> <mn>6</mn> </mrow> </mfenced> </mrow> </math> |
Conjuto 2 |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>A</mtext> <mo>=</mo> <mfenced open="{" close="}" separators=","> <mrow> <mi>x</mi> <mo>∈</mo> <mi>ℜ</mi> <mi>\</mi> <mi>x</mi> <mo><</mo> <mn>7</mn> </mrow> </mfenced> </mrow> </math> |
Conjunto Vasio 1 |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>A</mtext> <mo>=</mo> <mo>{}</mo> </mrow> </math> |
Conjunto Vasio 2 |
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>A</mtext> <mo>=</mo> <mi>&empty;</mi><mo>⁡</mo> </mrow> </math> |
Equação 1
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mo>-</mo> <mn>7</mn> <mo>=</mo> <mo>-</mo> <mn>2</mn> <mi>x</mi> <mo>-</mo> <mn>1</mn> <mo>∴</mo> </mrow> </math> <math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mo>+</mo> <mn>2</mn> <mi>x</mi> <mo>=</mo> <mn>7</mn> <mo>-</mo> <mn>1</mn> <mo>∴</mo> </mrow> </math> <math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mn>3</mn> <mi>x</mi> <mo>=</mo> <mn>6</mn> <mo>∴</mo> </mrow> </math> <math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mo>=</mo> <mfrac> <mrow> <mn>6</mn> </mrow> <mrow> <mn>3</mn> </mrow> </mfrac> <mo>∴</mo> </mrow> </math> <math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi mathbackground="#33CCFF">x</mi> <mo mathbackground="#33CCFF">=</mo> <mn mathbackground="#33CCFF">2</mn> </mrow> </math> |
Equação 2
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mo>-</mo> <mn>7</mn> <mo>=</mo> <mn>2</mn> <mi>x</mi> <mo>-</mo> <mn>1</mn> <mo>⇒</mo> <mi>x</mi> <mo>+</mo> <mn>2</mn> <mi>x</mi> <mo>=</mo> <mn>7</mn> <mo>-</mo> <mn>1</mn> <mo>⇒</mo> <mn>3</mn> <mi>x</mi> <mo>=</mo> <mn>6</mn> <mo>⇒</mo> <mi>x</mi> <mo>=</mo> <mfrac> <mrow> <mn>6</mn> </mrow> <mrow> <mn>3</mn> </mrow> </mfrac> <mo>⇒</mo> <mi mathbackground="#33CCFF">x</mi> <mo mathbackground="#33CCFF">=</mo> <mn mathbackground="#33CCFF">2</mn> </mrow> </math> |
Equação 3
|
<math display="block"> <mrow> <mi>x</mi> <mo>=</mo> <mfrac> <mrow> <mn>1</mn> <mo>+</mo> <mn>3</mn> </mrow> <mrow> <mn>3</mn> </mrow> </mfrac> <mo>×</mo> <mn>10</mn> <msup> <mspace /> <mrow> <mo>-</mo> <mn>7</mn> </mrow> </msup> <mo>∴</mo> </mrow> </math> <math display="block"> <mrow> <mi>nota</mi> <mi>:</mi> <mi>x</mi> <mo>=</mo> <mfrac> <mrow> <mn>4</mn> </mrow> <mrow> <mn>3</mn> </mrow> </mfrac> <mo>×</mo> <mn>10</mn> <msup> <mspace /> <mrow> <mo>-</mo> <mn>7</mn> </mrow> </msup> </mrow> </math> <math display="block"> <mrow> <mi>res</mi> <mi>:</mi> <mi>x</mi> <mo>=</mo> <mn>0</mn> <mn>,</mn> <mn>0000000</mn> <mn>1</mn> <mn>3333333333</mn> </mrow> </math> <math display="block"> <mrow> <mi>cient</mi> <mi>:</mi> <mi>x</mi> <mo>=</mo> <mn>1</mn> <mn>,</mn> <mn>333</mn> <mi>E</mi> <mo>-</mo> <mn>07</mn> </mrow> </math> <math display="block"> <mrow> <mi>nc</mi> <mi>:</mi> <mi>x</mi> <mo>=</mo> <mn>1</mn> <mn>,</mn> <mn>333</mn> <mo>×</mo> <mn>10</mn> <msup> <mspace /> <mrow> <mo>-</mo> <mn>7</mn> </mrow> </msup> </mrow> </math> |
Matriz
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>a</mi> <mo>=</mo> <mtable> <mtr> <mtd> <mn>6</mn> </mtd> <mtd> <mn>7</mn> </mtd> <mtd> <mn>9</mn> </mtd> </mtr> <mtr> <mtd> <mn>4</mn> </mtd> <mtd> <mn>8</mn> </mtd> <mtd> <mn>2</mn> </mtd> </mtr> <mtr> <mtd> <mn>5</mn> </mtd> <mtd> <mn>7</mn> </mtd> <mtd> <mn>9</mn> </mtd> </mtr> </mtable> </mrow> </math> |
Cores
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>a</mi> <mo>=</mo> <mn>2</mn> <mo mathcolor="#FF0000">+</mo> <mn mathcolor="#FF0000">1</mn> <mo mathcolor="#FF0000">-</mo> <mn mathcolor="#FF0000">1</mn> </mrow> </math> |
Parenteses
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>a</mi> <mo>=</mo> <mo>(</mo> <mi>x</mi> <mo>+</mo> <mn>1</mn> <mo>)</mo> <mo>(</mo> <mi>x</mi> <mo>-</mo> <mn>1</mn> <mo>)</mo> </mrow> </math> |
Módulo
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>a</mi> <mo>=</mo> <mfenced open="|" close="|" separators=","> <mrow> <mi>c</mi> <mo>+</mo> <mn>8</mn> </mrow> </mfenced> </mrow> </math> |
Sobre
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <msub> <mi>a</mi> <mn>2</mn> </msub> <mo>=</mo> <msub> <mi>a</mi> <mn>1</mn> </msub> <mo>+</mo> <mi>r</mi> </mrow> </math> |
Fórmula de Química 1
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>Ba</mtext> <mspace width="0.5em" /> <mtext>S</mtext> <mspace width="0.5em" /> <msub> <mtext>O</mtext> <mn>4</mn> </msub> <mo>⇆</mo> <msup> <mtext>Ba</mtext> <mrow> <mo>+</mo> <mn>2</mn> </mrow> </msup> <mo>+</mo> <msubsup> <mtext>SO</mtext> <mn>4</mn> <mrow> <mo>-</mo> <mn>2</mn> </mrow> </msubsup> </mrow> </math> |
Fórmula de Química 2
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>Ba</mtext> <mtext>S</mtext> <msub> <mtext>O</mtext> <mn>4</mn> </msub> <mo>→</mo> <msup> <mtext>Ba</mtext> <mrow> <mo>+</mo> <mn>2</mn> </mrow> </msup> <mo>+</mo> <msubsup> <mtext>SO</mtext> <mn>4</mn> <mrow> <mo>-</mo> <mn>2</mn> </mrow> </msubsup> </mrow> </math> |
Angulo 1
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>Sen</mtext> <mo>(</mo> <mn>3</mn> <mn>0</mn> <mtext>°</mtext> <mo>)</mo> </mrow> </math> |
Angulo 2
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>Cos</mtext> <mo>(</mo> <mfrac> <mrow> <mi>π</mi> </mrow> <mrow> <mn>2</mn> </mrow> </mfrac> <mo>)</mo> </mrow> </math> |
Angulo
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>A</mtext> <mover accent="true"> <mtext>O</mtext> <mo>^</mo> </mover> <mtext>B</mtext> </mrow> </math> |
Reta AB
1)
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mover> <mtext>AB</mtext> <mo>→</mo> </mover> </mrow> </math> |
2)
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mover> <mtext>AB</mtext> <mo>←</mo> </mover> </mrow> </math> |
3)
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mover> <mtext>AB</mtext> <mo>↔</mo> </mover> </mrow> </math> |
4)
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mover> <mtext>AB</mtext> <mo>—</mo> </mover> </mrow> </math> |
Logaritmo
<math display="block" xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mtext>Log</mtext> <msubsup> <mo>(</mo> <mrow> <mn>1</mn> <mn>0</mn> </mrow> <mn>2</mn> </msubsup> <mo>)</mo> </mrow> </math> |
Inserindo Imagem
|
<math display="block"> <mrow> <mi>x</mi> <mo>=</mo> <mfrac> <mrow> <msqrt> <mn>2</mn> <mn><img src="img/exemplo.jpg" width="100" height="100" /></mn> </msqrt> </mrow> <mrow> <mn>3</mn> </mrow> </mfrac> </mrow> </math> |