Von Weber's Blog

No models are correct, but some are more elegant than others.

📖 earlier posts 📖

Hexo Blog Test

1级标题 title

2级标题

3级标题

正文,字体。

代码样式,引用vmulpd指令集强调强调
instruction INSTRUCTION

vsum.c
1
2
3
4
5
6
7
float vsum(float *v, int n)
{
float s = 0.0; int i;
for (i=0; i<n; i++)
s += v[i];
return s;
}

MathJax test.
When \(a \ne 0\), there are two solutions to $ax^2 + bx + c = 0$ and they are
inline symbols, $\LaTeX \And \alpha$ and
$$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$

add MathJax support
1
2
3
4
5
<script type="text/x-mathjax-config">
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
</script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/
mathjax/2.7.5/latest.js?config=TeX-MML-AM_CHTML' async></script>

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

📕 end of posts 📕