我可以在 *.latexmain 文件中放入什么?

我可以在 *.latexmain 文件中放入什么?

我的*.latexmain文件通常是空的。我只是用文件名来表明哪个文件是主文件。

在 Vim Latex Suite 文件中,我注意到一个projecttemplate.vim包含以下内容的文件:

" Project name
" let g:projName = ''
"
" Project files
" let g:projFiles = '' 

" Vim settings/maps/abbrs specific for this project

" Modeline for this file
" vim:fdm=marker:ff=unix:noet:ts=4:sw=4:ft=vim

然后我注意到texproject.vim以下描述:

" Tex_ProjectEdit: Edit project file " {{{
" Description: If project file exists (*.latexmain) open it in window created
"              with ':split', if no create ':new' window and read there
"              project template
...
" Tex_ProjectLoad: loads the .latexmain file {{{
" Description: If a *.latexmain file exists, then sources it

那么,这是否意味着我实际上可以在文件中放置一些内容*.latexmain,例如项目名称、项目文件,甚至更高级的设置?

答案1

我也是 Vim-latex 的新手。也许答案是你(实际上我们) 正在寻找位于这里. 特别是在9.1你可以读到

如果找到主文件,则 Latex-Suite :source 该文件。因此,该文件需要包含有效的 Vim 命令。该文件通常用于存储项目特定设置。最好放在主文件中的一些典型项目设置是Tex_ProjectSource文件

在后一个链接中似乎有一些有用的选项。

相关内容