Latex Suite User Manual
Latex Suite User Manual
Latex Suite User Manual
Srinath Avadhanula
<srinath AT fastmail DOT fm>
Mikolaj Machowski
<mikmach AT wp DOT pl> Abstract Latex-Suite attempts to provide a comprehensive set of tools to view, edit and compile LaTeX documents in Vim. Together, they provide tools starting from macros to speed up editing LaTeX documents to functions for forward searching .dvi documents. Latex-Suite has been possible because of the contributions of many people. Please see latex-suite-credits for a list of people who have helped. Latex-Suite is released under the Vim charityware license. For license and conditions of use look at |copyright|. Replace all occurrences of ``Vim'' with ``Latex-Suite''. The current copyright holders of Latex-Suite are Srinath Avadhanula and Mikolaj Machowski. Homepage: http://vim-latex.sourceforge.net Table of Contents
1 Installation and recommended Settings 2 Inserting Templates 3 Latex-Suite Macros 3.1 Environment Mappings 3.2 Command Mappings 3.3 Font Mappings 3.4 Section Mappings 3.5 Greek Letter Mappings 3.6 Auc-Tex Key Bindings 3.7 Diacritics 3.8 BibTeX Shortcuts 3.9 Smart Key Mappings 3.10 Alt Key Macros 3.11 Custom Macros 3.12 Making your own Macros via IMAP() 4 Package Handling 4.1 Inserting package commands 4.2 Actions taken for supported packages 4.3 Automatic Package detection 4.4 Writing supporting for a package 5 Latex Completion 5.1 Latex-Suite completion example 5.2 Latex-Suite \ref completion 5.3 Latex-Suite \cite completion 5.4 Latex-Suite filename completion 5.5 Custom command completion 6 LaTeX Compiling 6.1 Setting Compilation rules 6.2 Handling dependencies in compilation 6.3 Compiling multiple times 6.4 Customizing the compiler output 6.5 Compiling parts of a file 7 Latex Viewing and Searching
7.1 Setting Viewing rules 7.2 Forward Searching documents 7.3 Inverse Searching 8 Latex Folding 8.1 Default Folding Scheme in Latex-Suite 8.2 Customizing what to fold 8.3 Editing the folding.vim file directly 9 Multiple file LaTeX projects 9.1 Latex-Suite project settings 9.2 Specifying which file to compile 10 Latex-Suite Commands and Maps 10.1 Latex-Suite Maps 10.2 Latex Suite Commands 11 Customizing Latex-Suite 11.1 General Settings 11.2 Place-Holder Customization 11.3 Macro Customization 11.4 Smart Key Customization 11.5 Latex Completion Customization 11.6 Compiler Customization 11.7 Viewer Customization 11.8 Menu Customization 11.9 Folding Customization 11.10 Package Handling Customization 12 Credits
2 Inserting Templates
This functionality is available via the TeX-Suite > Templates menu. This module provides a way to insert custom templates at the beginning of the current file. When Latex-Suite first starts up, it scans the $VIM/ftplugin/latex-suite/templates/ directory and creates menu items based on the files found there. When you select a template from this menu, the file will be read in above the first line of the current file. A template file can utilize placeholders for initializing the cursor position when the template is read in and subsequent movement. In addition, template files can contain dynamic elements such as the time of creation of a file etc, by using vim expressions. You can place your own templates in the $VIM/ftplugin/latex-suite/templates/ directory in order for them to be available via the menu. Unless Latex-Suite releases a template with the same name, these files should not get over-written when you install a new release over an existing one.
Note
Templates are also accessible for non-gui users with the command |:TTemplate|. The argument should be name of the corresponding template file. If the command is called without arguments (preferred usage), then a list of available templates is displayed and the user is asked to choose one of them.
3 Latex-Suite Macros
Latex-Suite ships with a very comprehensive set of insert mode and |visual-mode| mappings and menu items to typeset most of the LaTeX elements.
Note
These mappings are are not standard mappings in the sense that only the last character is mapped. See plugin/imaps.vim for further documentation. For example, in the case of the mapping EFI provided by Latex-Suite you can press the characters 'E ', 'F' and 'I' as slowly as you wish (unlike the normal imap command where timeout issues are involved). The characters are visible as you type them (unlike normal imaps) and you can use the movement or backspace key to correct yourself unlike normal mappings.
Place Holders
Almost all macros provided in Latex-Suite implement Stephen Riem's bracketing system and Gergely Kontra's JumpFunc() for handling place-holders. This consists of using "place-holders" to mark off locations where the next relevant editing has to be done. As an example, when you type EFI in |insert-mode|, you will get the following:
\begin{figure}[h] \centerline{\psfig{figure=<+eps file+>}} \caption{<+caption text+>} \label{fig:<+label+>} \end{figure}<++>
The text <+eps file+> will be selected and you will be left in |select-mode| so that you can continue typing straight away. After having typed in the file name, you can press <Ctrl-J> (while still in insert-mode). This will take you directly to the next "place-holder". i.e, <+caption text+> will be visually selected with Vim in select mode again for typing in the caption. This saves on a lot of key presses.
Note
It is important to use a file-name which will get sourced on a FileType event. Therefore you must use a file-name which conforms to the standards as described in |ftplugin-name| .
If you press <F5> in the insert or normal mode while on an empty line, Latex-Suite prompts you with a list of environments you might want to insert. You can either choose one from the list or type in a new environment name. If you press <F5> on a line which already has a word, then that word is used instead of prompting. See Tex_Env_name for a description of how Latex-Suite uses the word to form the expansion and how to modify Latex-Suite's behavior. The list of environments which Latex-Suite prompts you with (when <F5> is pressed on an empty line) is formed from the Tex_PromptedEnvironments setting. In addition to this setting, Latex-Suite also lists environments found in custom packages as described in the section Package actions.
3.1.1.2 Method 2: Using <S-F1>-<S-F4>
The shifted function keys, <S-F1> to <S-F4> can be mapped to insert very commonly used environments. The environments mapped to each key can be customized via the g:Tex_HotKeyMappings setting.
3.1.1.3 Method 3: Using three letter sequences
Environments can also be inserted by pressing a 3 capital letter sequence starting with an E . The sequence of 3 letters generally tries to follow the following rules: 1. All environment mappings begin with E 2. If the environment can be broken up into 2 distinct words, such as flushright (flush + right), then the next 2 letters are the first letters of the 2 words. Example:
flushleft (_f_lush + _l_eft) ---> EFL flushright (_f_lush + _r_ight) ---> EFR eqnarray (_e_qn + _a_rray) ---> EEA
If on the other hand, the environment name cannot be broken up into 2 distinct words, then the next 2 letters are the first 2 letters of the name of the environment. Example:
equation (_eq_uation) ---> EEQ
Unfortunately there are some environments that cannot be split in two words and first two letters in name are identical. In this case shortcut is created from E, first and last letter. Example:
quote (_q_uot_e_) quotation (_q_uotatio_n_) ---> EQE ---> EQN
Of course, not every last one of the environments can follow this rule because of ambiguities. In case of doubt, pull down the Tex-Environments menu. The menu item should give the hint for the map.
3.1.2 Enclosing in Environments Latex-Suite provides visual-mode mappings which enclose visually selected portions of text in environments. There are two ways provided to do this.
3.1.2.1 Method 1: Pressing <F5>
You can also select a portion of text visually and press <F5> while still in visual mode. This will prompt you with a list of environments. (This list can be customized via the g:Tex_PromptedEnvironments setting). You can either choose from this list or type in a new environment name. Once the selection is done, Latex-Suite encloses the visually selected portion in the chosen environment.
3.1.2.2 Method 2: Using three letter mappings
You can also select text visually and press a sequence of three characters beginning with , (the single comma character) and the selected text will be enclosed in the chosen environment. The three letter sequence follows directly from the three letter sequence used to insert environments as described here. The following example describes the rule used: If ECE inserts a \begin{center}...\end{center} environment, then to enclose a block of selected text in \begin{center}...\end{center} , simply select the text and press ,ce . The rule simply says that the leading E is converted to , and the next 2 letters are small case. Some of the visual mode mappings are sensitive to whether you choose line-wise or character-wise. For example, if you choose a word and press ,ce, then you get \centerline{word} , whereas if you press ,ce on a line-wise selection, you get:
\begin{center} line \end{center}
3.1.3 Changing Environments Pressing <S-F5> in normal mode detects which environment the cursor is presently located in and prompts you to replace it with a new one. The innermost environment is detected. For example, in the following source:
\begin{eqnarray} \begin{array}{ccc} 2 & 3 & 4 \end{array} \end{eqnarray}
if you are located in the middle "2 & 3 & 4" line, then pressing <S-F5> will prompt you to change the array environment, not the eqnarray environment. In addition, Latex-Suite will also try to change lines within the environment to be consistent with the new environment. For example, if the original environment was an eqnarray environment with a \label command, then changing it to an eqnarray* environment will delete the \label . Pressing <F5> in normal mode has the same effect as pressing <F5> in insert-mode, namely you will be prompted to choose an environment to insert.
You can define custom expansions of commands using the Tex_Com_{name} setting as described in here. If <F7> is pressed when the cursor is on white-space, then Latex-Suite will prompt you to choose a command and insert that instead.The list of commands is constructed from the g:Tex_PromptedCommands setting and also from commands which Latex-Suite finds while scanning custom packages which Latex-Suite finds. See the Package actions section for details on
which files are scanned etc. 3.2.2 Enclosing in a command You can select a portion of text visually and press <F7> while still in visual mode. This will prompt you with a list of commands. (This list can be customized via the g:Tex_PromptedCommands setting). You can either choose from this list or type in a new command name. Once the selection is done, Latex-Suite encloses the visually selected portion in the chosen command. 3.2.3 Changing commands In both insert and normal mode <S-F7> will find out if you are presently within an environment and then prompt you with a list of commands to change it to.
etc. Just as in the case of environments and fonts, can be enclosed with a visual selection. The enclosing is not sensitive to character or line-wise selection. Mnemonic: (make your own!)
SPA SCH SSE SSS SS2 SPG SSP for for for for for for for part chapter section subsection subsubsection paragraph subparagraph
If you select a word or line and press ,se, then you get
\section{section name}
The menu item in Tex-Environments.Sections have a sub-menu called 'Advanced'. Choosing an item from this sub-menu asks a couple of questions (whether you want to include the section in the table of contents, whether there is a shorter name for the table of contents) and then creates a more intelligent template.
Upper case:
`D `F `G `Q `L `X `Y `S `U `W = = = = = = = = = = \Delta \Phi \Gamma \Theta \Lambda \Xi \Psi \Sigma \Upsilon \Omega
Note
LaTeX does not support upper case for all greek alphabets. Just like other Latex-Suite mappings, these mappings are not created using the standard imap command. Thus you can type slowly, correct using <BS> etc.
(again, notice the convenient place-holders) In addition the visual mode macros are provided:
`( `[ `{ `$ encloses encloses encloses encloses selection selection selection selection in in in in \left( and \right) \left[ and \right] \left\{ and \right\} $$ or \[ \] depending on characterwise or linewise selection
3.7 Diacritics
These mappings speed up typing European languages which contain diacritic characters such as a-umlaut etc.
+<l> =<l> expands to \v{<l>} expands to \'{<l>}
Latex-Suite also ships with smart backspacing functionality which provides another convenience while editing languages with diacritics.
Note
Diacritics are disabled by default in Latex-Suite because they can sometimes be a little too intrusive. Moreover, most European users can nowadays use font encodings which display diacritic characters directly instead of having to rely on Latex-Suite's method of displaying diacritics. Set the g:Tex_Diacritics variable to enable diacritics.
<+key+> will be highlighted in select-mode and you can type in the bib-key. After that you can use <Ctrl-J> to navigate to successive locations in the template and enter new values. BBB inserts a template with only the fields mandatorily required for a given entry type. BBL inserts a template with commonly used extra options. BBH inserts a template with more options which are not as commonly used. BBX inserts a template with all the fields which the entry type supports.
Mnemonic
B for Bibliographic entry, L for Large entry, H for Huge entry, and X stands for all eXtras. 3.8.1 Customizing Bib-TeX fields If you wish the BBB command to insert a few additional fields in addition to the fields it creates, then you will need to define global variables of the form
g:Bib_{type}_options
in you $VIM/ftplugin/bib.vim file, where {type} is a string like 'article' , 'book' etc. This variable should contain one of the letters defined in the following table Character Field Type
w a b c d e h i k j m z n o p address author booktitle chapter edition editor howpublished institution isbn journal month note number organization pages
q r s t u v y
For example, by default, choosing 'article' via BBB inserts the following template by default
@ARTICLE{<+key+>, author = {<++>}, title = {<++>}, journal = {<++>}, year = {<++>}, otherinfo = {<++>} }<++>
However, if g:Bib_article_options is defined as 'mnp' , then 'article' will insert the following template
@ARTICLE{<+key+>, author = {<++>}, title = {<++>}, journal = {<++>}, year = {<++>}, month = {<++>}, number = {<++>}, pages = {<++>}, otherinfo = {<++>} }<++>
If you have some other fields you wish to associate with an article which are not listed above, then you will have to use the Bib_{type}_extrafields option. This is a newline separated string of complete field names which will be included in the template. For example, if you define
let g:Bib_article_extrafields = "crossref\nabstract"
Note
You will need to define Bib_* settings in your $VIMRUNTIME/ftplugin/bib.vim file.
Note
By default, typing Alt-<key> in Vim takes focus to the menu bar if a menu with the hotkey <key> exists. If in your case, there are conflicts due to this behavior, you will need to set
set winaltkeys=no
Expansion
\left( <++> \right) \left[ <++> \right] \left| <++> \right| \left\{ <++> \right\} \langle <++> \rangle \lefteqn{<++>}<++>
If the character before the cursor is none of the above, then it will simply insert a \label{<++>}<++> . 3.10.2 <Alt-B> This insert-mode mapping encloses the previous character in \mathbf{} . 3.10.3 <Alt-C> In insert mode, this key is polymorphic as follows: 1. If the previous character is a letter or number, then capitalize it and enclose it in \mathcal{}. 2. otherwise insert \cite{}. In visual mode, it will simply enclose the selection in \mathcal{} 3.10.4 <Alt-I> This mapping inserts an \item command at the current cursor location depending on which environment the cursor is enclosed in. The style of the \item command is dependent on the enclosing environment. By default, <Alt-I> has styles defined forthe following environments: Environment
itemize enumerate theindex description \item \item \item \item[<+label+>] <++>
Style
\end{description} \item third item % <Alt-I> will insert "\item " when if used here. \end{itemize} % <Alt-I> will insert nothing ("") if used here
The style used by <Alt-I> can be customized using the g:Tex_ItemStyle_environment variable.
{Delete} {Redraw}
This will create a Latex-Suite-style mapping, where if you type NOM in insert mode, you will get \nomenclature{<++>}<++> with the cursor left in place of the first <++> characters. See IMAP() syntax for a detailed explanation of the IMAP() command. For maps which are triggered for a given filetype, the IMAP() command above should be put in the filetype plugin script for that file. For example, for tex-specific mappings, the IMAP() calls should go in $VIM/ftplugin/tex.vim . For globally visible maps, you will need to use the following in either your ~/.vimrc or a file in your $VIM/plugin directory.
augroup MyIMAPs au! au VimEnter * call IMAP('Foo', 'foo', '') augroup END
3.12.1 Why use IMAP() Using IMAP instead of Vim's built-in :imap command has a couple of advantages: 1. The 'ttimeout' option will generally limit how easily you can type the left hand side for a normal :imap . if you type the left hand side too slowly, then the mapping will not be activated. 2. If you mistype one of the letters of the lhs, then the mapping is deactivated as soon as you backspace to correct the mistake. 3. The characters in lhs are shown on top of each other. This is fairly distracting. This becomes a real annoyance when a lot of characters initiate mappings. 3.12.2 IMAP() syntax Formally, the syntax which is used for the IMAP function is:
call IMAP (lhs, rhs, ft [, phs, phe])
Argument
lhs
Explanation This is the "left-hand-side" of the mapping. When you use IMAP , only the last character of this word is actually mapped, although the effect is that the whole word is mapped. If you have two mappings which end in a common lhs, then the mapping with the longer lhs is used. For example, if you do
call IMAP('BarFoo', 'something', 'tex') call IMAP('Foo', 'something else', 'tex')
Then typing BarFoo inserts "something", whereas Foo by itself inserts "something else" . Also, the nature of IMAP() makes creating certain combination of mappings impossible. For example if you have
call IMAP('foo', 'something', 'tex') call IMAP('foobar', 'something else', 'tex')
Then you will never be able to trigger "foobar" because typing "foo" will immediately insert "something" . This is the "cost" which you incur over the normal :imap command for the convenience of no 'timeout' problems, the ability to correct lhs etc.
rhs
The "right-hand-side" of the mapping. This is the expansion you will get when you type lhs . This string can also contain special characters such as <enter> etc. To do this, you will need to specify the second argument in double-quotes as follows:
:call IMAP('EFE', "\\begin{figure}\<CR><++>\\end{figure}<++>", 'tex')
With this, typing EFE is equivalent to typing in the right-hand side with all the special characters in insert-mode. This has the advantage that if you have filetype indentation set up, then the right hand side will also be indented just as if you had typed it in normally. You can also set up a Latex-Suite style mapping which calls a custom function as follows:
:call IMAP('FOO', "\<C-r>=MyFoonction()\<CR>", 'tex')
where MyFoonction is a custom function you have written. If MyFoonction also has to return a string containing <++> characters, then you will need to use the function IMAP_PutTextWithMovement(). An example best explains the usage:
call IMAP('FOO', "\<C-r>=AskVimFunc()\<CR>", 'vim') " Askvimfunc: Asks For Function Name And Sets Up Template " Description: function! AskVimFunc() let name = input('Name of the function : ') if name == '' let name = "<+Function Name+>" end let islocal = input('Is this function scriptlocal ? [y]/n : ', 'y') if islocal == 'y' let sidstr = '<SID>' else let sidstr = '' endif return IMAP_PutTextWithMovement( \ "\" ".name.": <+short description+> \<cr>" . \ "Description: <+long description+>\<cr>" . \ "\<C-u>function! ".name."(<+arguments+>)<++>\<cr>" . \ "<+function body+>\<cr>" . \ "endfunction \" " \ ) endfunction
ft
The file type for which this mapping is active. When this string is left empty, the mapping applies for all file-types. A filetype specific mapping will always take precedence. If you prefer to write the rhs with characters other than <+ and +> to denote place-holders, you can use the last 2 arguments to specify which characters in the rhs specify place-holders. By default, these are <+ and +> respectively.
phs, phe
Note that the phs and phe arguments do not control what characters will be displayed for the placeholders when the mapping is actually triggered. What characters are used to display place-holders when you trigger an IMAP are controlled by the Imap_PlaceHolderStart and Imap_PlaceHolderEnd settings.
4 Package Handling
Latex-Suite has a lot of functionality written to ease working with packages. Packages here refers to files which you include into the LaTeX document using the \usepackage command.
will be inserted into the current file. The \usepackage line can also be inserted in an easy manner in the current file by pressing <F5> while in the preamble of the current document. This will set up a prompt from the supported packages and ask you to choose from one of them. If you do not find the package you want to insert in the list, you can type in a package-name and it will use that. Pressing <F5> in the preamble on a line containing a single word will construct a \usepackage line from that word. You can also use the TPackage to insert the \usepackage line. Once you have inserted a \usepackage line, for supported packages, you can use the Options and Commands menus described in the next section.
where <package> is the package you just inserted (or was detected). You can use these menus to insert commands, environments and options which Latex-Suite recognizes as belonging to this package.
Note
While inserting an option, you need to position yourself in the appropriate place in the document, most commonly inside the square braces in the \usepackage[]{packname} command. Latex-Suite will not navigate to that location. In addition to creating these sub-menus, Latex-Suite will also scan the $VIM/ftplugin/latex-suite/dictionaries directory and if a dictionary file corresponding to the package file is found, then it will add the file to the 'dict' setting in Vim so you can use the <C-X><C-K> command to complete words from that file. For example, the SIUnits package has a custom dictionary. If a package detected at startup is found by Latex-Suite in the current directory or in a location specified by the g:Tex_TEXINPUTS variable, Latex-Suite will scan the package for \newenvironment and newcommand lines and also append any commands and environments found to the list of commands and environments which you are prompted with when you press <F5> or <F7> in insert mode. In addition, the TeX-Suite > Packages menu also contains the following submenus Update. This command is to be invoked with the cursor placed on the package name. If the corresponding package is found, then a sub-menu with the supported commands and options is created.
Update All. This function reads the preamble of the document for \usepackage lines and if Latex-Suite supports the detected packages, then sub-menus containing the package options and commands are created.
from within Vim. Therefore the value of g:Tex_TEXINPUTS will most probably be different from $TEXINPUTS which your native LaTeX distribution uses. Example:
let g:Tex_TEXINPUTS = '~/texmf/mypackages/**,./**'
The ** indicates that all directories below the directory ~/texmf/mypackages and ./ are to be scanned for custom packages.
Note
The present directory '.' is always searched. You need not include that in g:Tex_TEXINPUTS.
The = suffix means that the option takes a value. Use sbr:group name to separate options into sub-menus. All successive options will be clubbed into the group1 sub-menu till the next sbr: option is encountered. 4.4.2 g:Tex_package_<package>
g:TeX_package_<package> = "pre:Command,pre:Command1" More detailed example is in latex-suite/packages/exmpl file (slightly outdated). Here is short summary of prefixes which can be used in package files:
(x - place with cursor, <++> - |placeholder|) {env:command} Environment: creates simple environment template \begin{command} x \end{command}<++> {eno:command} Environment with option: \begin[x]{command} <++> \end{command}<++> {ens:command[<<option>>]...} Environment special: \begin[<<option>>]...{command} <++> \end{command}<++> {bra:command} Brackets: \command{x}<++> {brd:command} Brackets double: \command{x}{<++>}<++> {brs:command[<<option>>]...} Brackets special (as environment special: \command[<+x+>]{<++>}{<++>}<++> {nor:command} Normal: \command<Space {noo:command} Normal with option: \command[x]<++> {nob:command} Normal with option and brackets: \command[x]{<++>}<++> {pla:command} Plain: command<Space {spe:command} Special: command <-literal insertion of command {sep:command} creates separator. Good for aesthetics and usability :) {sbr:command} Breaks menu into submenus. <command> will be title of submenu. Can be used also in package variable. Command can be also given without prefix:. The result is \command
5 Latex Completion
Latex-Suite provides an easy way to insert references to labels and bibliographic entries and also provide filename arguments to commands such as \includegraphics . Although the completion capabilities are very diverse, Latex-Suite only uses a single key (<F9> by default) to do all of it. Pressing the <F9> key does different things based on where you are located. LatexSuite tries to guess what you might be trying to complete at the location where you pressed <F9>. For example, pressing <F9> when you are within a \ref command will try to list the \label 's in the present directory. Pressing it when you are in a \cite command will list bibliography keys. Latex-Suite also recognizes commands which need a file name argument and will put up an explorer window for you to choose a filename.
18 19 26 33 34 35 36 37 38
These are a couple of figures: +-- 7 lines: figure (fig:monkeys) : Monkeys can Type------------------+-- 7 lines: figure (fig:shakespeare) : Shakespeare could not type----This is a reference to \ref{eqn:}<++>
\end{document}
~ ~ ~ newfile.tex newfile.tex|11| \label{eqn:euler} newfile.tex|15| \label{eqn:einstein} ~ [Error List] 7 8 These are a couple of equations: 9 \begin{eqnarray} 10 e^{j\pi} + 1 &=& 0 11 \label{eqn:euler} 12 \end{eqnarray} 13 \begin{equation} 14 E = m c^2 15 \label{eqn:einstein} 16 \end{equation} newfile.tex [Preview]
34,32
Bot
1,1
All
11,3
21%
The first window (shown as [Error List] above) is a |cwindow| containing a list of possible matches for the reference. The cursor will be located in the first line of this window. The bottom window is a preview-window showing the context of the \label. Moving around in the [Error List] window automatically scrolls the preview window so as to always keep showing the context of the \label being viewed in the [Error List] window. You can also press J and K in the [ErrorList] window to scroll the preview window up and down. To insert one of the labels, simply position the cursor in the correct line in the [Error List] window and press <enter> . This will immediately close the two newly opened windows, get back to the correct location in the original file being edited and insert the label into the \ref command. If you notice carefully in the example above, the [Error List] window only showed the matches for the equations and did not list any of the figure labels. This is because we pressed <F9> after \ref{eqn: instead of simply after \ref{ . This caused Latex-Suite to search only for those labels which started with the string eqn: . If you had pressed <F9> after a \ref{ , you would have been shown matches from all labels, not just those starting with eqn:. Thus prefixing all your labels with eqn:, fig:, tab: etc. depending on what you are labelling will lead to an easier time completing references.
Each chapter is |fold|ed away so that you can quickly jump to the correct section/subsection in which the relevant equation is defined. This makes inserting references significantly faster for large projects with hundreds of equations. You can then open some of the folds to see for example:
+-- 54 lines: 2. Kinematics-------------------------------3. Aerodynamics of the MFI thorax 3.1. Aerodynamic modeling of the MFI wing forces 3.1.1. Geometric Specification eqn:wingnormal-pos \nhat = T_z(\theta_2) T_y(\theta_y)T_x(\theta_x)\nhat_0, eqn:T-1 T_1(\theta_2) &=& T_z(\theta_2)
The <Tab> key is mapped in this window to toggle folds so that you can quickly open/close folds in order to navigate the heirarchy faster. Once you are positioned on a label, press <Enter> . This closes the __OUTLINE__ window, returns to the window in which you pressed <F9> and inserts the reference at the current cursor position.
Note
Latex-Suite works the same way if you press <F9> after any command which contains the letters ref. Thus you can complete \eqref in exactly the same manner.
Requirements
This method of preseting the \labels depends on Vim being compiled with python support. To check if you have this, see the output of the :ver command. If you see something like +python , you are all set. Failing this, you will need to have python somewhere in your $PATH .
You can easily jump from one entry to another using the 'n' and 'p' keys (to go to the next / previous entry respectively). You can also filter out a subset of the bibtex entries by pressing 'f' while in this window. Doing this presents the following prompt:
Field acronyms: (`:let g:Tex_EchoBibFields = 0` to avoid this message) [t] title [a] author [b] booktitle [j] journal [y] year [p] bibtype (you can also enter the complete field name) Enter filter criterion [field<space>value]:
Notice that the letter a is an acronym for author according to the prompt above. Therefore this filter only shows those bibtex entries whose author field contains the text ellington . You can keep narrowing your selection by repeatedly filtering the results. If you would like to remove all the filters and see all entries again, press 'a', which removes all the filters. You can also sort the bibtex entries based on a field. To do this, press 's'. This will present you with a prompt like in the case of the filter and you are asked to choose a field. In this case, you would type in a single character. This sorts the entries according to that field.
Note
<F9> will also work in a similar way after any command which contains the word cite in it. For example, pressing <F9> will also work with \citenum etc. The following logic is applied to find out which bibliographic entries are included in the completion. 1. Firstly, if the present file has a master-file defined for it, then Latex-Suite will perform the following steps on that file instead of on the current file. 2. First, the file is scanned for a \bibliography command. To explain better, assume that a command
\bibliography{file1,file2}
is found in the present file. For each bibliography file, say file1, Latex-Suite first tries to see if a .bib file, file1.bib can be found. If so, it will scan it for bib-keys of the form @BOOK{ etc., and add these searches to the completion list. If a .bib file cannot be found, then it will try to see if file1.bbl can be found. If so, Latex-Suite will search it for bib-keys of the form \bibitem and add these to the completion list. You can set the location where Latex-Suite will search for .bib and .bbl files using the |Tex_BIBINPUTS| variable. 3. If a \bibliography command is not found, then Latex-Suite tries to scan the present file for a \begin{thebibliography} environment. If found, Latex-Suite searches the present file for bib-keys of the form \bibitem . 4. Finally, it will try to see if this file includes other files via the \input command. For each such file found, Latex-Suite will repeat the previous two steps stopping at the first file which has either a \bibliography command or a thebibliography environment. 5.3.1 Caching the \cite completion results Often times, the editing cycle proceeds by first laying out a comprehensive bibliography and then completing all the \cite commands in one session. In such situations, it is inefficient to scan the whole list of bibliography files for bib-keys each time. Latex-Suite provides a way to cache the results of the cite completion search using the Tex_RememberCiteSearch variable. If set, Latex-Suite will perform the search only the first time <F9> is used. Next time on, it will reuse the search results. If you wish to redo the search results, issue the command
TClearCiteHist
This will redo the completion list next time you use <F9> .
hide pattern
'^\.,\.[^b]..$' '^\.,\.[^t]..$' ''
This functionality is available for commands for which a global variable of the form g:Tex_completion_{<command>} is defined where <command> is the command name. This variable is a comma separated list of values which this command takes. For example, the argument to the \bibliographystyle command is commonly one of abbr,alpha,plain,unsrt . Therefore, Latex-Suite defines
let g:Tex_completion_bibliographystyle = 'abbr,alpha,plain,unsrt'
You can define your own completion variables in a similar manner for commands which you might use.
6 LaTeX Compiling
This functionality, available via the TeX-Suite menu, provides various tools to compile and debug LaTeX files from within Vim. If you are using commonly used LaTeX tools, then you should be all set as soon as you download and install Latex-Suite. In order to compile a LaTeX file, simply press \ll while editing the file. This runs latex on the current file and displays the errors in a |quickfix-window| below the file being edited. You can then scroll through the errors and press <enter> to be taken to the location of the corresponding error. Along with the errors being listed in the quickfix window, the corresponding log file is also opened in |preview| mode beneath the quickfix window. It is scrolled automatically to keep in sync with the error being viewed in the quickfix window. You will be automatically taken to the location of the first error/warning unless you set the g:Tex_GotoError variable to 0. Latex-Suite also supports compiling LaTeX into formats other than DVI. By default, Latex-Suite supports PDF and PS formats. In order to choose a format other than DVI, use the TTarget command or the TeX-Suite > Target Format menu item. This will ask you to type in the name of the target format you want to compile to. If a rule has been defined for the format (as described in the next section), then Latex-Suite will switch to that format. Trying to choose a format for which no rule has been defined will result in Latex-Suite displaying a warning message without taking any action. If you are using a multiple file project and need to compile a master file while editing other files, then Latex-Suite provides a way to specify the file to be compiled as described in latex-master-file.
where <format> is a string like "pdf", "dvi" etc. Example: By default, Latex-Suite uses the following rule for compiling LaTeX documents into DVI.
g:Tex_CompileRule_dvi = 'latex --interaction=nonstopmode $*'
Default values are also provided for ps and pdf formats. You might want to change these rules in texrc according to your local tex environment.
Note
For win32 users user MikTeX, sometimes the latex compiler's output has a bug where a single number is split across different lines. In this case, put the included vim-latex file distributed with Latex-Suite.
to generate pdf files from dvi files, then you will need to specify the following setting in your Latex-Suite configuration (see customizing Latex-Suite for where these settings should go):
let g:Tex_FormatDependency_pdf = 'dvi,ps,pdf'
This is a comma separated string of formats specifying the order in which the formats to be compiled into should be chosen.
With this setting, if you set the target format to pdf , then the next time you compile via the \ll shortcut, Latex-Suite will first generate a dvi file, then use that to generate the ps file and finally create the pdf file from that.
Note
If any of the intermediate formats is listed in the g:Tex_MultipleCompileFormats setting as described in the section Compiling multiple times, then Latex-Suite might make multiple calls to the compiler to generate the output file of that format. Along with the g:Tex_FormatDependency_{format} setting, you should ofcourse specify the rule for compiling to each of the formats as described in the previous section. For example, with the setting above, you could use:
let g:Tex_CompileRule_dvi = 'latex --interaction=nonstopmode $*' let g:Tex_CompileRule_ps = 'dvips -Ppdf -o $*.ps $*.dvi' let g:Tex_CompileRule_pdf = 'ps2pdf $*.ps'
Note
By default, Latex-Suite does not specify any compiler dependencies. Each target format for which a rule has been derived will be compiled independently.
Note
This means that we will always run bibtex whenever we use the \bibliography command whether or not we actually need to. At this time, Latex-Suite does not parse the .aux file before and after the latex compiler to see if we are required to rerun bibtex. 5. If the .bbl file changes because of this, then remember to rerun latex again. 6. Also, we check to see if the LaTeX compiler gives certain standard warnings which notify that we need to compile once again. In this case also, remember to rerun LaTeX. 7. If we found we had to rerun latex, then we repeat the steps above but not running makeindex or bibtex again. The LaTeX file is compiled atmost 5 times using this logic. These steps will ensure that on most platforms/environments, you will get a clean output with all the cross-references, citations etc correctly labelled and ordered.
irrelevant lines from the compiler output will be ignored and some very common warnings are also ignored. Latex-Suite does this via the global variable g:Tex_IgnoredWarnings . This is a list of patterns, which can be used to filter out (or ignore) some or the warnings and errors reported by the compiler. See the link above for its default value. Latex-Suite uses the g:Tex_IgnoreLevel setting to set a default ignore level. For example, for the default value of 4, LatexSuite ignores warnings and errors matching the first 4 patterns in g:Tex_IgnoredWarnings . In addition to setting a default value of the ignore level, Latex-Suite provides the ability to set the level dynamically, using the TCLevel command. For example, if you issue the command:
TCLevel 3
from within Vim, then the next time you compile the document, Latex-Suite will ignore warnings and errors which match the first three patterns in g:Tex_IgnoredWarnings. When TCLevel is called with the unquoted string strict as follows:
TClevel strict
then Latex-Suite switches to a "verbose", "no-lines-ignored" mode which is useful when you want to make final checks of your document and want to be careful not to let things slip by. See the explanation of the settings g:Tex_IgnoredWarnings and g:Tex_IgnoreLevel to find out how to customize the filtering done by Latex-Suite
Note
The viewing function also takes the *.latexmain file into account to decide which file to show. If pressing \lv does not work, then it most probably has to do with incorrect settings of the g:Tex_ViewRule_<format> where <format> is the format you are attempting to view. See the link above for how to set this according to your system.
Note
On Windows and OS/X, you can leave the view rule empty to open the document with the default viewer on your system. On Linux/UNIX systems, you can use the xdg-open command to open the document with the default viewer. In addition to viewing the files, Latex-Suite also supports forward and inverse searching for certain common tools for viewing documents. See the next few sections for details on forward and inverse searching, including an overview of viewers.
OS
Apple / OS X Apple Windows Linux/UNIX Linux/UNIX Linux/UNIX Linux/UNIX
Supported documents
PDF PDF, DVI DVI, PS PDF DVI DVI, PDF, PS and many more Included in KDE 4 DVI DVI ships with MikTex
Comment
Supports also inverse searching No longer in development, supports also inverse searching
Pressing \ls from within Vim should make the viewer display the portion of the document where your cursor is placed.
Note
OS/X users need to set the g:Tex_TreatMacViewerAsUNIX flag to 1 and provide a UNIX-like viewrule, that expects as arguments the document, the linenumber and the sourcefile in this order.
The command :RemoteOpen is supplied when you install Latex-Suite. On *nix machines, Latex-Suite attempts to call the DVI viewer in such a way that it already knows how to communicate with Vim. If this does not seem to be working, you can use the RemoteOpen command described above.
8 Latex Folding
Latex-Suite ships with the plugin SyntaxFolds.vim which is a plugin for creating "fake" syntax folds on the fly. The fold method is actually manual but the folding is based on LaTeX syntax. This offers a speed increase over regular syntax folding. Ofcourse it has the disadvantage that the folds are not dynamic, i.e newly created syntax items are not automatically folded up. (This is a compromise between speed and convenience). When you open up a LaTeX file, all the portions will be automatically folded up. However, no new folds will be created until you press <F6> or \rf . (rf stands for "refresh folds"). The fold-text is set to the first line of the folded text unless the fold is a table, figure etc. (an environment). In this case, if a \caption and/or a label is found in the folded region, then those are used to make a more meaningful fold-text, otherwise the
second line of the environment is displayed along with the name of the environment. In other words, the following
\begin{figure}[h] \centerline{\psfig{figure=slidercrank.eps,height=6cm}} \caption{The Slider Crank Mechanism.} \label{fig:slidercrank} \end{figure} % a LaTeX comment. \begin{eqnarray} \sin(\pi) = 0 \end{eqnarray}
The indentation shows the "nestedness" of the folding scheme. See the next section to see how you can change this scheme.
Each of the entries in the list will fold up a section of the corresponding name. The %%fakesection section is provided as a means for the user to group lines into "fake" sections. A %%fakesection is assumed to start on a line which begins with the string %%fakesection and continue till the start of the next \section , \subsection or any other section. See also advanced fold settings. 8.2.2 Tex_FoldedEnvironments This entry defines which environments will be folded. It is a comma separated string of words each of which defines a single environment. The default setting is
verbatim,comment,eq,gather, align,figure,table,thebibliography, keywords,abstract,titlepage
The words need not be standard Latex environments. You can add any word you like. Also, each word will fold up all environments whose name begins with that word. For example, in the setting above, the word "eq" folds up the \begin{equation}, \begin{eqnarray}, \begin{eqnarray*} environments. To avoid this, you can replace the word "eq" with "eq}". See also advanced fold settings. 8.2.3 Tex_FoldedCommands This entry defines which commands will be folded. It is a comma separated string of words each of which defines a single
command. The default setting is empty, i.e no commands are folded. The words need not be standard Latex commands. You can use whatever words you like. Each word will fold all commands whose name begins with that word as in the case of the Tex_FoldedEnvironments variable.
Note
It is very difficult to fold commands reliably because it is very difficult to create a regexp which will match a line containing unmatched parentheses (or curly brackets), but will not match a line containing matched parentheses. Just to make things safer, only lines which start a command but do not contain additional curly braces after the command has started are folded. In other words, if you wanted to fold the the command "mycommand" , then the lines
\mycommand{This is a line and some more text on the next line }
will not be folded. This is a bug which is very difficult to fix. See also advanced fold settings. 8.2.4 Tex_FoldedMisc This entry defines fold syntax for certain items which do not naturally fit into the section, environment of command lists. It is a comma separated list of words. The default value is:
item,preamble,<<<
Note
Unlike the other Tex_FoldedXXXX variables, the words in this setting are limited to take values from the following list: Value
comments Folds up contiguous blocks of comments item Folds up the \items within list environments preamble Folds up the preamble of a document. (The part between the \documentclass command and the \begin{document} environment) <<< Folds defined manually by the user using the <<< and >>> strings as fold-markers.
Meaning
Any other words in the Tex_FoldedMisc setting are silently ignored. See also advanced fold settings. 8.2.5 Advanced Fold setting details The order of the words in the Tex_FoldedXXXX variables is important. The order defines the order in which the folds are nested. For example, the value "subsection,section" for the Tex_FoldedSections variable will not fold any subsections at all. This is because the folds are created in the reverse order in which they occur in the Tex_FoldedSections setting and also, once a fold is created, the interior of the fold is not examined for creating additional folds. In the above case, this means that a \section is folded first and then its interior is not examined further. The correct value should have been "section,subsection" Each of the fold setting variables Tex_FoldedSections , Tex_FoldedEnvironments etc., as explained previously is a comma separated string of variables. However, to make it easier to add to the default settings without having to repeat the whole default setting again, Latex-Suite uses the following logic in forming the complete setting string from the Tex_FoldedXXXX variables. If the variable starts with a comma, then Tex_FoldedXXXX is added to the end of the default string rather than replacing it. Similarly, if it ends with a comma, then it will be prepended to the beginning of the default setting rather than replacing it.
For example, if Tex_FoldedEnvironments is set to the string "myenv", then only an environment of the form \begin{myenv} will be folded. However, if the Tex_FoldedEnvironments setting is ",myenv", then the \begin{myenv} environment will be folded after all other environments in the default setting have been folded. On the other hand if Tex_FoldedEnvironments is of the form "myenv," , the \begin{myenv} environment will be folded before the rest of the environments in the default setting.
If the last two arguments are omitted, then they are assumed to default to the empty strings '' . The explanation for each argument is as follows: Argument
startpat endpat startoff endoff a line matching this pattern defines the end of a fold. this is the offset from the starting line at which folding will actually start like startoff, but gives the offset of the actual fold end from the line satisfying endpat. startoff and endoff are necessary when the folding region does not have a specific end pattern corresponding to a start pattern. for example in LaTeX, \section{Section Name} defines the beginning of a section, but there is no command which specifically ends a section. Thus a \section is assumed to end 1 line before another section starts.
Explanation
a line matching this pattern defines the beginning of a fold.
startskip A Pattern Which Defines The Beginning Of A "Skipped" Region. For example, suppose we define a \itemize fold as follows:
startpat endpat = startoff endoff = = '^\s*\\item', '^\s*\\item\|^\s*\\end{\(enumerate\|itemize\|description\)}', = 0, -1
This defines a fold which starts with a line beginning with an \item and ending one line before a line beginning with an \item or \end{enumerate} etc. Then, as long as \item's are not nested things are fine. However, once items begin to nest, the fold started by one \item can end because of an \item in an \itemize environment within this \item. i.e, the following can happen:
\begin{itemize} \item Some text This item will contain a nested item \begin{itemize} \item Hello \end{itemize} \item Next item of the parent itemize \end{itemize} <------- fold will start here <----- fold will end here because next line contains \item... <----- ... instead of here.
Therefore, in order to completely define a folding item which allows nesting, we need to also define a "skip" pattern. startskip and end skip do that. Leave '' when there is no nesting. endskip the pattern which defines the end of the "skip" pattern for nested folds.
Example 1
A syntax fold region for the latex section is defined with the following arguments to AddSyntaxFoldItem :
startpat = "\\section{" endpat = "\\section{" startoff = 0 endoff = -1 startskip = '' endskip = ''
Note that the start and end patterns are thus the same and endoff has a negative value to capture the effect of a section ending one line before the next starts.
Example 2
In such situations, you will need to convey to Latex-Suite that main.tex is the main file which \input s the other files. This is done by creating an empty file called main.tex.latexmain in the same directory in which main.tex resides. This file is called the master file in this manual. See Tex_MainFileExpression for an alternative way of specifying the master file.
Note
Here main.tex.latexmain is (obviously) a different file from main.tex itself. main.tex need not be renamed. This ofcourse restricts each directory to have a single master file. Each time Latex-Suite opens a new LaTeX file, it will try to see if it is part of a multiple file project by searching upwards (to the root of the file-system) from the current file's directory to see if it finds a file of the form *.latexmain. If such a file is found, then it is considered that the current file is part of a larger project. The name of the LaTeX master file is inferred directly from the first part of the *.latexmain file as described in the example above.
is already specified using the *.latexmain convention described previously, then Latex-Suite will automatically compile the master file when you are editing any of its \input 'ed fragments. Thus pressing \ll while editing intro/intro.tex will compile main.tex . If you wish to use some different logic to specify the main file name, you can specify a custom expression via the Tex_MainFileExpression variable. This is a string containing a valid vim expression. In addition, you can use a variable modifier which is in the format used for |filename-modifiers| , for example, ':p:h' . You should utilize this variable to modify the filename of the main file.
let g:Tex_MainFileExpression = 'MainFile(modifier)' function! MainFile(fmod) if glob('*.latexmain') != '' return fnamemodify(glob('*.latexmain'), a:fmod) else return '' endif endif
Note
To change the IMAP mappings which affect jumping between placeholders, the map statement above has to be placed in your ~/.vimrc. For other mappings you can place the map statement in your $VIM/ftplugin/tex.vim file. The reason for this is that the <C-j> maps are created in plugin/imaps.vim , which is sourced as soon as Vim starts before sourcing any ftplugin files. 10.1.1 IMAP mappings These mappings are utilized for jumping between placeholders as described here. See the parent section to find out how to use this information to change the default maps. Plug map
<Plug>IMAP_JumpForward <Plug>IMAP_JumpBack <Plug>IMAP_DeleteAndJumpBack
Default Key
<C-j> (none) (none)
<Plug>IMAP_DeleteAndJumpForward (none)
<Plug>IMAP_JumpForward takes you to the location of the next place-holder. <Plug>IMAP_JumpBack takes you to the previous place-holder. <Plug>IMAP_DeleteAndJumpForward deletes the presently selected place-holder and jumps to the next place-holder irrespective of whether the present placeholder is empty or not and ignoring the value of place-holder settings like g:Imap_DeleteEmptyPlaceHolders and g:Imap_StickyPlaceHolders <Plug>IMAP_DeleteAndJumpBack deletes the presently selected place-holder and jumps to the previous place-holder irrespective of whether the present placeholder is empty or not and ignoring the value of place-holder settings like g:Imap_DeleteEmptyPlaceHolders and g:Imap_StickyPlaceHolders 10.1.2 Alt-Key mappings
These mappings are are described in the section Alt key macros. See the parent section to see how to use the following information to remap keys. Plug Mapping
<Plug>Tex_MathBF <Plug>Tex_MathCal <Plug>Tex_LeftRight
Default Key
<Alt-B> <Alt-C> <Alt-L>
<Plug>Tex_InsertItemOnThisLine <Alt-I>
line into the buffer at the current cursor location. For Vim 6.2 and above, you can use command-line completion to choose a package file. You can also call TPackage with one or more package names separated with spaces in which case, Latex-Suite will insert \usepackage lines for each of them in turn. After inserting the \usepackage line(s), Latex-Suite will support it (them) in various ways as described in the section Actions taken for supported packages. 10.2.6 :TPackageUpdate This command `reads' name of package under cursor and turns on possible support. 10.2.7 :TPackageUpdateAll After issuing this command latexSuite scans the file in looking for not declared packages, removing not needed entries from Packages menu and turning off not necessary packages' dictionaries. 10.2.8 :TTemplate [{template}]
When used without any arguments lists all available templates from latex-suite/templates/ directory and prompts to choose one of them. With one argument :0|read| {template} file. With more than one argument it will not work :) In Vim >= 6.2 works completion of names of macros (see 'wildmenu', 'wildmode' for more about command-line completion) 10.2.9 :TSection [{argument}] Used without any arguments inserts last section type (|latex-sectioning|). Accepts arguments: n> inserts section name in <n> logical level. Levels are:
0 part 1 chapter 2 section 3 subsection 4 subsubsection 5 paragraph 6 subparagraph +<n> inserts section name <n> logical levels above the last used comand -<n> inserts section name <n> logical levels below the last used comand + ++ -inserts section name one logical level below the last used command (equal to +1). inserts section name two logical levels below the last used command (equal to +2). inserts section name one logical level over the last used command (equal to -1). inserts section name two logical levels over the last used command (equal to -2).
Command accepts also latexSuite mappings (|latex-macros|) without preceding S and in lowercase:
:TSection pa
will result in \part{} . It is possible to use full names of sections: :TSection part 10.2.10 :TSectionAdvanced Accepts the same arguments as |TSection| but leads to a couple of questions (whether you want to include the section in the table of contents, whether there is a shorter name for the table of contents) and then creates a more intelligent template. 10.2.11 :TLook Accepts one argument. Will look through .tex files in directory of edited file for argument. It can be regexp. You don't have to enclose argument in "". <cr> takes you to location. Other keys work as described in |latex-viewer|. Note: TLook uses :grep command and is using 'grepprg'. Its regular expressions can be different from those of Vim. 10.2.12 :TLookBib Accepts one argument. Will look through .bib files in directory of edited file for argument. It can be regexp. You don't have to enclose argument in "". <cr> takes you to location. Other keys work as described in |latex-viewer|.
Note
TLookBib uses :grep command and is using 'grepprg'. Its regular expressions can be different from those of Vim. 10.2.13 :TLookAll Accepts one argument. Will look through all files in directory of edited file for argument. It can be regexp. You don't have to enclose argument in "". <cr> takes you to location. Other keys work as described in |latex-viewer|. Note: TLook uses :grep command and is using 'grepprg'. Its regular expressions can be different from those of Vim. 10.2.14 :TPartComp No argument allowed but accepts range in all formats. Define fragment of interest with :'a,'b, :/a/,/b/, :'<,'> or :20,30. All other rules of compilation apply.
10.2.15 :TPartView Show last compiled fragment. All rules of viewing apply but |latex-searching|. 10.2.16 :Tshortcuts [{arg}] Show shortcuts in terminal (not using menu). Without {arg} you will see simple menu prompting for one of them. Possible arguments:
g General shortcuts e Environment shortcuts f Font shortcuts s Section shortcuts m Math shortcuts a All shortcuts
11 Customizing Latex-Suite
Customizing Latex-Suite is done by defining certain global variables in $VIM/ftplugin/tex.vim , where $VIM corresponds to ~/.vim for *nix machines and ~/vimfiles for windows machines. This file is not part of the Latex-Suite distribution. You will need to create this file yourself (or modify it if it exists) if you need to change any default settings. Since this file is not included as part of the Latex-Suite distribution, it will not be over-written in subsequent updates. The default settings in Latex-Suite are defined in $VIM/ftplugin/latex-suite/texrc . Please take a look at this file if you find this documentation incomplete or confusing. That file is also well documented. This chapter describes the various settings which effect Latex-Suite and their default values. The settings are broken up into sections according to the behavior which they influence.
Default Value 0
If set to 1, then Latex-Suite will create certain global debug statements which can be printed by doing
:call Tex_PrintDebug()
11.1.2 Tex_UsePython
Type boolean
Default Value 1
If Latex-Suite detects that your vim is python enabled (using has('python') ), then it tries to use python in certain places to speed things up. If this misbehaves, you can set this to zero, in which case, Latex-Suite will use vimscript to accomplish the same.
Note
These setting need to be set in your ~/.vimrc , not $VIM/ftplugin/tex.vim because these settings affect the behavior of imaps.vim, which is a global plugin, not a file-type plugin. 11.2.1 g:Imap_UsePlaceHolders
Type Boolean
Default Value 1
Setting this to zero completely disables using place-holders. 11.2.2 g:Imap_PlaceHolderStart & g:Imap_PlaceHolderEnd Setting
Imap_PlaceHolderEnd
Type Value
String '+>'
These settings affect the strings displayed at the beginning and end of the place-holder string. Set these strings to a value different than a commonly occurring sequence of characters.
TIP
If you use the latin1 encoding and do not type in french, then you can set these strings to the \xab and \xbb characters (the french quotation marks). 11.2.3 g:Imap_DeleteEmptyPlaceHolders
Type Boolean
Default Value 1
When set to one, non-descriptive or empty place-holders are deleted on pressing <Ctrl-J> . 11.2.4 g:Imap_StickyPlaceHolders
Type Boolean
Default Value 1
When set to 1, in visual mode, <Ctrl-J> takes you to the next placeholder without deleting the current placeholder.
If the expansion uses special keys such as carriage return etc, then use double-quotes and use the "\<key>" notation for special keys. Backslashes have to be doubled. You could even use strings returned by functions as the expansion by using the IMAP_PutTextWithMovement() function. If the name of the environment contains special characters (for example, the eqnarray* environment), then use the following form:
let g:Tex_Env_{'eqnarray*'} = \ "\\begin{eqnarray*}\<CR><++> &=& <++>\<CR>\\end{eqnarray*}<++>"
11.3.2 Tex_Com_name If you wish to define new expansions for fast command insertion as described here, or redefine expansions from the default values in Latex-Suite, you will need to define variables of the form g:Tex_Com_{name} where name is a command name. For example, with the setting
let g:Tex_Com_frac = "\\frac{<++>}{<++>}<++>"
pressing <F7> after typing frac will change it to \frac{<++>}{<++>}<++> See Tex_Env_name for additional details on how to create this setting in various special circumstances. 11.3.3 Enabling / disabling macros The following variables disable various parts of the macro functionality of Latex-Suite. See the links to the relevant sections to see what functionality setting each of the variables to zero will take away. Setting
g:Tex_EnvironmentMaps g:Tex_EnvironmentMenus g:Tex_FontMaps g:Tex_FontMenus g:Tex_SectionMaps g:Tex_SectionMenus Section Mappings Font Mappings
11.3.4 g:Tex_UseMenuWizard
Type Boolean
Default Value 0
If this variable is set to 1, then when an environment is chosen from the menu then for selected environments, Latex-Suite asks a series of questions on the command line and inserts a template with the corresponding fields already filled in. Setting this to zero will insert a template with place-holders marking off the places where fields need to be filled. 11.3.5 g:Imap_FreezeImap
Type boolean
Default Value 0
This option when set to 1, temporarily freezes Latex-Suite's macro expansion. It might be useful when you are using some other keymap which is causing excessive macro expansion. Use a buffer-local variable of the same name if you wish to affect just the present buffer. 11.3.6 g:Tex_CatchVisMapErrors
Type Boolean
Default Value 1
With so many visual maps, its helpful to have a way of catching typing errors made in visual mode. What this does is to prompt you to correct your visual mode mapping if you start out with g:Tex_Leader and then type some illegal keys. It basically maps just the g:Tex_Leader character to a function. 11.3.7 g:Tex_Diacritics
Type Boolean
Default Value 0
The mappings in Latex-Suite are by default prefixed with the back-tick character. For example, `/ inserts \frac{<++>}{<++>}<++> etc. You can change the prefix with the following setting. ',' , '/' , '`' are preferred values. '' or '\' will lead to a lot of trouble. g:Tex_Leader is also used for visual mode mappings for fonts. 11.3.9 g:Tex_Leader2
Type String
In order to avoid clashes between the large number of visual mode macros provided, the visual mode macros for environments and sections start with a character different from g:Tex_Leader. 11.3.10 g:Tex_PromptedEnvironments
Type String
This string represents a comma separated list of fields corresponding to environments. Pressing <F5> in insert-mode in the body of the document asks you to choose from one of these environments to insert. Leaving this string empty will leave the <F5> key unmapped 11.3.11 g:Tex_HotKeyMappings
Type String
This string represents a comma separated list of environments which are mapped to <Shift-F-1> through <Shift-F-4>. For example, pressing <Shift-F-2> with this setting inserts the eqnarray environment. Leaving this string empty will leave <Shift-F-1> through <Shift-F-4> unmapped.
Note
Only the first four fields of this list are used. The rest are silently ignored. 11.3.12 g:Tex_PromptedCommands
Type String
This string represents a comma separated list of LaTeX commands which Latex-Suite uses for the <F7> and <S-F7> maps as described here. Leaving this string empty will leave the <F7> key unmapped. 11.3.13 Tex_ItemStyle_environment This setting affects the style which Latex-Suite uses to insert an \item when <Alt-I> is pressed as described here. By default Latex-Suite defines styles for the following environments:
Environment
itemize enumerate theindex description \item \item \item
Style
Each style is defined by a variable of the form g:Tex_ItemStyle_{envname} where envname is the name of the environment for which the style is defined. For example, by default
g:Tex_ItemStyle_description = '\item[<+label+>] <++>'
Redefining the style for a particular environment or defining a style for an entirely new environment is simply a matter of setting the value of a variable of the corresponding name.
Default Value 1
Default Value 1
Whether or not the smart quotes functionality is available. If enabled, the quote characters can be customized by setting the following variables: Setting
g:Tex_SmartQuoteOpen
Value
"``"
g:Tex_SmartQuoteClose "''"
Non-English users will want to change these settings to their locale. These global variables will be ignored if there are bufferlocal variables (with the same name), which may be set in the language specific package files, such as $VIM/ftplugin/latex-suite/packages/german .
Default Value
g:Tex_ViewerCwindowHeight The height of the cwindow which displays the list of \labels etc. g:Tex_ViewerPreviewHeight The height of the preview window which shows the context of a \label etc. g:Tex_ExplorerHeight g:Tex_ImageDir
The height of the explorer window which lists the files from which to choose an image 10 file. The directory to scan for images ''
11.5.2 g:Tex_BIBINPUTS
Type
string
This string describes the directories which are scanned while trying to search for .bib and .bbl files. See the cite completion section for more details. This string should be set in the syntax accepted by Vim's native 'path' setting. Do not include the present directory '.' . While searching for bibliography files, the present directory will be prepended to this variable. 11.5.3 Tex_UseSimpleLabelSearch When set to 1, Latex-Suite searches for \label s in all .tex files in the directory containing the file being edited when <F9> is pressed. See \ref completion for details. 11.5.4 g:Tex_ProjectSourceFiles
Type String
This setting is meant to be initialized on a per-project basis using the Latex-Suite master file as described in Latex-Suite Project section. It is a list of source files which are used in the project. If defined, then instead of using the logic described in Tex_UseSimpleLabelSearch to search for files in which to search for \label s, we simply search for \label s in this list. This significantly reduces the time it takes to generate the list of possible completions for large projects. The list is specified as a whitespace separated list of filenames relative to the location of the main file. 11.5.5 g:Tex_RememberCiteSearch
Type Boolean
Default Value 0
When this variable is non-zero, then Latex-Suite will try to remember results from the \cite completion as described in this section.
Use this setting to choose the default target format. For example, setting this to pdf makes Latex-Suite compile a pdf file when you press \ll and fire up the pdf viewer on pressing \lv . Make sure that a rules for compiling and viewing have been defined for this target format as described here and here. 11.6.2 g:Tex_CompileRule_<format> Here <format> refers to the target format for which this rule is defined. Latex-Suite supports compiling into dvi , ps and pdf by default. All these rules are strings defined by default as follows:
g:Tex_CompileRule_dvi 'latex -interaction=nonstopmode $*' g:Tex_CompileRule_ps 'ps2pdf $*' g:Tex_CompileRule_pdf 'pdflatex -interaction=nonstopmode $*'
If you desire forward and inverse searching via Latex-Suite, you will need to change g:Tex_CompileRule_dvi to include -src-specials. However, this has been known to cause problems with the output file. Therefore, use this with care. 11.6.3 g:Tex_FormatDependency_<format>
Type string
By default, there are no format dependencies defined. Each definition is of the form above where <format> is a string such as 'dvi' etc. The value of each string is a comma separated string such as 'dvi,ps'. See the Compiler dependency section to see how to use/specify this setting 11.6.4 g:Tex_MultipleCompileFormats
Type string
This is a comma separated string of formats for which the compiler needs to be called multiple times in order to get crossreferences, citations etc right. See the Compiling multiple times section for details. 11.6.5 g:Tex_IgnoredWarnings
Type String
This setting defines a set of patterns which will be filtered out when displaying the output from the latex compiler. This is to aid in filtering out very common warnings/errors.
Note
Remember to check the value of g:Tex_IgnoreLevel when you change this setting. For example, if you append a new pattern which you would like to ignore by default, increase the value of g:Tex_IgnoreLevel . 11.6.6 g:Tex_IgnoreLevel
Type Integer
Default Value 7
This setting defines a "filter level" or an "ignore level". A value of 7 for instance means that any warning/error matching with any of the first 7 fields of g:Tex_IgnoredWarnings will be ignored. Setting this value to zero will mean that no error/warning is ignored. However, even with a value of zero, Latex-Suite will filter out most of the text which a LaTeX compiler typically produces. Use
TCLevel strict
from within Vim in order to see all the lines from the compiler's output. 11.6.7 g:Tex_UseMakefile
Type boolean
Default Value 1
When set to 1, then if a makefile or Makefile is present in the current directory, then Latex-Suite sets the makeprg option to just "make <target>", where <target> is the target format chosen using the TCTarget or TTarget commands. When set to 0, then Latex-Suite will set the makeprg setting to whatever is defined by the g:Tex_CompileRule_target setting. 11.6.8 g:Tex_GotoError
Type
boolean
Default Value 1
If set to 1, then pressing \ll will take you to the location of the first warning/error, otherwise you will remain in the original location but the errors/warnings will be listed in the preview window.
Unix
'xdvi'
'gsview32' 'ghostview'
For Macintosh systems, these strings are left empty by default. This lets the system pick the program for each format. If you define these variables for Mac, the system choice will be over-ridden. Latex-Suite appends file.format to the above settings while calling the external programs. For example, with
let g:Tex_ViewRule_dvi = 'yap -1'
yap is called as
!start yap -1 file.dvi
from within Vim. (The initial start is used on Windows platforms is to make yap start as a separate process.) If you find the way Latex-Suite constructs the command line too restrictive, you can use the Tex_ViewRuleComplete_format setting for more complete control on how the command line is constructed while calling the external program for viewing.
Note
For windows, you will need to set the $PATH variable to include the paths to yap , AcroRd32 , gsview32 and any other programs. See your system documentation for how to do this.
IMPORTANT
Make sure you make the process go into the background otherwise vim will wait for the viewer to terminate before letting you edit the file again. To make a process go into the background on a *nix platform, use a trailing & in the setting. On Windows , use start at the beginning of the setting. Example: Suppose you have a latex->html converter which converts a file say foo.tex to a file foo/index.html. Then you would use:
" On *nix platform let g:Tex_ViewRuleComplete_html = 'MozillaFirebird $*/index.html &' " On windows platform let g:Tex_ViewRuleComplete_html = 'start MozillaFirebird $*/index.html'
Default Value 1
If set to 0, Latex-Suite will suppress showing all menus. Useful if you mostly work in terminals. 11.8.2 g:Tex_MainMenuLocation
Type number
Default Value 80
This setting decides the location of the first top-level Latex-Suite menu. You can for example shift all the menus created by Latex-Suite to the very end by setting this value to a large number like 990. 11.8.3 g:Tex_MathMenus
Type Boolean
Default Value 1
The Tex-Math menu consists of hundreds of mathematical symbols used in LaTeX. This menu comprises about 75% of the menus. 11.8.4 g:Tex_NestElementMenus
Type Boolean
Default Value 1
This setting controls the "compactness" of the menus. If set to 1, then the Font, Counter and Dimensioning menus are collected together in a single menu called Tex-Elements, otherwise, they will each get a separate menu. 11.8.5 g:Tex_PackagesMenu
Type Boolean
Default Value 1
Setting this to zero will stop Latex-Suite from automatically creating the TeX-Suite > Packages > Supported menu at startup. You can still create the menu after startup by going to TeX-Suite > Configure Menu. 11.8.6 g:Tex_NestPackagesMenu
Type String
This string is the prefix added to all the menus created by Latex-Suite. If you define this variable with a dot ('.' ) as the last character, then all the menus created by Latex-Suite will be nested under a single master menu. For example, set this to '&LaTeX-Suite.' to nest all menus under a menu called &LaTeX-Suite. 11.8.7 g:Tex_UseUtfMenus
Type
Boolean
Default Value 0
This setting controls whether Latex-Suite uses utf-8 symbols to display some of the mathematical symbols in the TeX-Math menu. It is necessary for your system/GUI to support utf-8. Setting this to 1 has the side-effect of setting the 'encoding' option of Vim to 'utf-8'.
Default Value 1
Setting this to zero completely disables Latex-Suite's folding functionality. However, the TexFoldTextFunction() is still available in case you want to use another folding scheme but still want to continue using the fold text function. 11.9.2 g:Tex_AutoFolding
Type Boolean
Default Value 1
This setting controls whether Latex-Suite automatically creates manual folds for a file when it is opened. You can still use the \rf mapping to refresh/create folds even when this variable is set to zero.
This setting describes the directories scanned by Latex-Suite while searching for custom user packages as described in the custom packages section. Do not include the present directory in this setting. The present directory is always scanned for custom packages. This string should be set in the syntax accepted by Vim's native 'path' setting.
12 Credits
And finally, the credits:
Artur R. Czechowski Lubomir Host Alexander Wagner Luc Hermitte Gergely Kontra Dimitri Antoniou Stephen Riehm Alan Schmitt Alan G Isac Gontran Baerts maintains the BSD package of Latex-Suite. Lots of valuable feedback. provided the diacritics and also helped in development. valuable suggestions during development. his variation of Stephen Riehm's bracketing system is used in Latex-Suite. the clever little JumpFunc() in imaps.vim is due to him. The implementation of the templates also borrows from mutemplate.vim by him. author of ltags and also provided the nice tip about forward / reverse search on DVI documents. the extremely helpful bracketing system is from him. provided macros/folding elements. Continued feedback, bug-reports/fixes. for the comprehensive BibT() function for entering bibtex entries. for libList.vim
Hari Krishna Dara for ExecMap(), the clever little function which makes typing visual mode mappings so much easier and error-free.
useful discussion and also a lot of bug fixes. the %%fakesection in folding.vim. lots of very useful additions to folding. The code for customizing the folding scheme is due to him.
A large number of functions in Latex-Suite come from various other people. Some of those people might have been missed here. Each function should however have the author's name/e-mail above it. Thats the more authoritative place to check out who has done what. The current maintainer(s) of Latex-Suite is(are)
Srinath Avadhanula <srinath@fastmail.fm> Mikolaj Machowski <mikmach@wp.pl> Benji Fisher <benji@member.AMS.org>