bienvenido

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>LaTeX</title> <link rel="stylesheet" href="style.css" /> </head> <body> <!-- cabecera --> <header> <h1>Blog</h1> </header> <main> <!-- Parte principal --> <article> <h2>Escribir ecuaciones en LaTeX</h2> <p class="pUno"> Normalmente, las ecuaciones se escriben dentro de <pre><code>\begin{equation} \end{equation}</code></pre> Por ejemplo, la ecuación <pre><code> (\ref{eq:ej}) \begin{equation}\label{eq:ej} (x_{i}) = 4 + x_{i}^{2} \end{equation}</code></pre> </p> </article> </main> <!-- Pie de página --> <footer> </footer> </body> </html> en el css que se llama style.css body { padding: 0 20px; font-family: 'Arial'; /* font-family: 'Montserrat'; font-size:40px; */ } .pUno{ /*font-family: 'Montserrat';*/ font: 100% Montserrat; } code{ font: bold 150% monospace; color:white; background-color:black; }