我最近在我的 tex 文档中写了很多表格。我想在编辑时隐藏表格块,否则会很乱。
这是文件:
\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}
由于我使用带有 AucTeX 的 Emacs(在 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))
但我没有得到我想要的。有人可以在这里帮忙吗?多谢!