The Beautiful Future

how to put latex equations on blog 본문

스킬

how to put latex equations on blog

Small Octopus 2019. 11. 15. 20:34

1. Add the following script in your blog html head block

<head>

...
<!-- for latex equation -->
<script type="text/javascript" async
  src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML">
</script>

</head>

 

2. Make your equation using Online latex equation editor

https://www.codecogs.com/latex/eqneditor.php

 

3. Create new post and edit like this

A univariate quadratic function has the from

\( f(x) = ax^2 + bx + c, a \neq 0 \) 

Roots of the univariate function

\( x= \frac{-b \pm \sqrt{b^2 - 4ac} }{2a} \) 

\( g(x) = ax^2 \) and \( h(x) = x-c \)
center block

$$ g(x) = ax^2 $$

many lines

\(x= \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \) 

\(g(x)= a^{2n}-1 \) 

\(g(x)= a^{2n}-1 \) 

A univariate quadratic function has the from

f(x)=ax2+bx+c,a0 

Roots of the univariate function

x=b±b24ac2a 

g(x)=ax2 and h(x)=xc

center block

g(x)=ax2

many lines

x=b±b24ac2a 

g(x)=a2n1 

g(x)=a2n1 

 

 

'스킬' 카테고리의 다른 글

git commands  (0) 2019.11.12
Flask 이미지 받고 처리해서 보여주기  (0) 2019.05.08
Docker  (0) 2019.05.07
LAPACK 설치 windows  (0) 2019.04.04
ubuntu remote connection  (0) 2018.01.23
Comments