Sử dụng latex trong wordpress với QuickLatex:
Documentation: http://www.holoborodko.com/pavel/quicklatex/
Ví dụ về công thức toán:
At first, we sample in the
(
is odd) equidistant points around
:
where is some step.
Then we interpolate points by polynomial
(1)
Its coefficients are found as a solution of system of linear equations:
(2)
Here are references to existing equations: (1), (2).
Ví dụ về vẽ hình với Tikz:
Dùng Syntax Highlighter để hiển thị code:
Documentation: https://en.support.wordpress.com/code/posting-source-code/
Ví dụ với cpp
#include <iostream>; using namespace std; int main () { for(int a = 10; a <= 20; ++a) { cout<<"value of a: "<<a<<endl; } return 0; }