- En nuestro Blog vamos al inicio y en el botón de Más opciones escogemos Plantilla
- En la plantilla de nuestro Blog escogemos la opción Edición HTML
- Nos aparecerá una ventana de advertencia, hacemos click en Continuar
- Pegamos el siguiente script en el HTML debajo de la etiqueta <Head> asi como se muestra en la siguiente imagen:
Código
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src='http://cdn.mathjax.org/mathjax/latest/MathJax.js' type='text/javascript'> | |
MathJax.Hub.Config({ | |
extensions: ["tex2jax.js","TeX/AMSmath.js","TeX/AMSsymbols.js"], | |
jax: ["input/TeX", "output/HTML-CSS"], | |
tex2jax: { | |
inlineMath: [ ['',''], ["\\(","\\)"] ], | |
displayMath: [ ['',' '], ["\\[","\\]"] ], |
|
}, | |
"HTML-CSS": { availableFonts: ["TeX"] } | |
}); | |
</script> |
Ahora para utilizar LaTex y poder mostrar ecuaciones en nuestro Blog se debe utilizar el signo "$" en nuestra entrada
Ejemplo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ | |
\left [ | |
\begin{array}{c} | |
x'_1 \\ | |
x'_2 \\ | |
\vdots \\ | |
x'_{k-1} \\ | |
x'_k \\ | |
x'_{k+1} \\ | |
\vdots | |
\\ | |
x'_n | |
\end{array} | |
\right ] | |
$ |
\left [\begin{array}{c}x'_1 \\x'_2 \\\vdots \\x'_{k-1} \\x'_k \\x'_{k+1} \\\vdots\\x'_n\end{array}\right ]
No comments:
Post a Comment