玩命加载中 . . .

test



这是一篇测试博客编辑功能是否正常的文档


代码

  • 代码块
class Solution {
public:
    /*按顺序为数组赋值原数组的正数即可*/
    void moveZeroes(vector<int>& nums) {
        int j = 0;
        for(int i = 0;i < nums.size(); ++i)
            if(nums[i] != 0)
                nums[j++] = nums[i];
        while(j < nums.size())
            nums[j++] = 0;
    }
};
def func():
	print("fdfdf")
<% if (theme.socialLink.github) { %>
    <a href="<%= theme.socialLink.github %>" class="tooltipped" target="_blank" data-tooltip="访问我的GitHub" data-position="top" data-delay="50">
        <i class="fab fa-github"></i>
    </a>
<% } %>
  • 代码:test

图像

test

公式

  • 公式块:
    $$
    \int_{-\infty}^{\infty}\frac{2}{3}x^2dx
    $$

  • 公式:$$\int_{-\infty}^{\infty}\frac{2}{3}x^2dx$$

  • test:$$L_p = (\sum_{i=1}^m |x_i - y_i |^{p} )^{ {\frac{1}{p} } }$$

  • 灌灌灌灌灌:$$L_p = (\sum_{i=1}^m |x_i - y_i |^{p} )^{ {\frac{1} {p} } }$$

  • 矩阵块需要用序列号之类的隔开才能正确渲染?

  • $$
    \left[\begin{matrix}
    a+b &a &0 &\cdots &0 &0\
    b &a+b &a &\cdots &0 &0\
    0 &b &a+b &\cdots &0 &0\
    \vdots&\vdots &\vdots &\ddots &\vdots &\vdots\
    0 &0 &0 &\cdots &a+b &a\
    0 &0 &0 &\cdots &b &a+b\

    \end{matrix}\right]_n

    \frac{a^{n+1}-b^{n+1}}{a-b}
    $$

Emoji表情支持

😄🏒🤕

其它


文章作者: hjd
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 hjd !
评论
  目录