我最近在我的tex文檔中寫了很多表。我想在編輯時隱藏表格塊,否則會很麻煩。如何在emacs auctex模式下爲tex begin& end定義隱藏模式?
這裏的文件:
\documentclass{article}
\begin{document}
\begin{table}[htbp]
\centering
\begin{tabular}{c|c|c}
\hline
My & Name & is \\
What's & your & name\\
\hline
\end{tabular}
\caption{My table}
\end{table}
\end{document}
由於我使用Emacs與AucTeX(下Windows7的),我想下面隱藏表塊:
\begin{table}...\end{table}
我嘗試定義
(add-to-list 'hs-special-modes-alist
'(LaTeX-mode
"\\\\begin" ;; regexp for start block
"\\\\end" ;; regexp for end block
"%" ;; regexp for comment start
nil
nil))
但我沒有得到我想要的。任何人都可以幫忙嗎?非常感謝!