That's Vim は、"$" または "$ with more maths" だけを入力した後にいくつかのキーを押すと、一致した "$ some maths symbles $" のリストを表示します。
2667 次
1 に答える
0
インラインenvまたは番号付きenvのいずれかでインラインeqを完了するための私のソリューション(ラテックスボックスに基づく)
2 つの eq を入力したので、もう一度入力します。
% two inline eqs
$hello$ $world$
% completion in inline env
$[part of "hello"]<ctrl-x><ctrl-o>
% completion in numbered env,
% it's still triggered in the same way, but will leave eq without "$"
\begin{equation}
$[part of "world"]<ctrl-x><ctrl-o>
編集1
Latex-boxの公式リポジトリでは、この機能はデフォルトで無効になっています。
スイッチはlet g:LatexBox_complete_inlineMath = 1
です。
于 2012-04-15T03:59:02.747 に答える