WordPress中的乳胶符号

时间:2019-01-29 16:12:11

标签: wordpress latex

奇怪的是,我无法在WP中正确解析Latex。因此,wordpress现在支持本机乳胶,但似乎我在为一些基本的乳胶示例而苦苦挣扎,这些示例可以正常工作。例如,使用下面的代码即可:

template <typename T, T ... cs, typename U>
constexpr static auto count(std::integer_sequence<T, cs...>, const U &val)
{
    const T arr[] = {cs...};
    auto cnt = 0;
    auto it(std::cbegin(arr));
    while (it != std::cend(arr))
    {
        if (*it == val)
            cnt++;
        it++;
    }
    return cnt;
}

auto sometext = std::integer_sequence<char,
                                      's', 'o', 'm', 'e', 't', 'e', 'x', 't' /*, '\0'*/>;

constexpr auto num_elems(count(sometext, ','));

但是

$latex i\hbar\frac{\partial}{\partial t}\left|\Psi(t)\right>=H\left|\Psi(t)\right>&s=3$

$latex \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix}$

导致wordpress错误

$latex \usepackage{amsmath} \begin{pmatrix} 1 \\ 2 \\ 3 \end{pmatrix}$

一个问题可能与markdown插件有关,我担心这会干扰markdown WP Editor.md。有办法正确逃脱吗?

1 个答案:

答案 0 :(得分:0)

不理想,但是我删除了插件Markdown并在Jetpack上使用了Markdown选项。现在,我可以在一个文件中执行.md和Latex。