我是 Latex 的新手,所以我正在尝试做 vim-latex 教程。所以现在我应该做一个参考。我的文件如下所示:
% File: package.tex
% Created: Mon Feb 11 07:00 PM 2019 AST
% Last Change: Mon Feb 11 07:00 PM 2019 AST
%
\documentclass[a4paper]{article}
\usepackagei[sublimitis,]{amsmath}
\begin{document}
\begin{equation}
<e^{\pi} + 1 = 0>
\label{eqn:euler}
\end{equation}
This is the famous euler equation. I will type another equation, just as true:
\begin{equation}
\label{eqn:simple}
1 + 1 = 2
\end{equation}
This is my contribution to mathematics.
This is a reference to (\ref{}).
\end{document}
将光标放在 {} 之间,我按下插入模式。我应该看到在我的项目中找到的所有 \labels 的列表。但我得到的只是:
''C:' is not recognized as an internal or external command,
operable program or batch file.
我究竟做错了什么?