[Vim-latex-cvs] vimfiles/doc latex-suite.txt,1.16,1.17
Brought to you by:
srinathava,
tmaas
From: <mi...@us...> - 2003-04-04 23:24:42
|
Update of /cvsroot/vim-latex/vimfiles/doc In directory sc8-pr-cvs1:/tmp/cvs-serv29550 Modified Files: latex-suite.txt Log Message: info about partial compilation and changed info from latex viewer to latex completion and updated. New term IMO better describes what is this for Index: latex-suite.txt =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/doc/latex-suite.txt,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** latex-suite.txt 3 Apr 2003 14:29:05 -0000 1.16 --- latex-suite.txt 4 Apr 2003 23:24:39 -0000 1.17 *************** *** 75,80 **** Mappings of some common keys like <BS> to make editing faster. ! |latex-viewer| ! Fast access to list of labels and bibliography keys. |latex-bracketing-macros| --- 75,82 ---- Mappings of some common keys like <BS> to make editing faster. ! |latex-completion| ! Fast access to important data. Most notable are bibliography keys and ! labels, also fast inserting of file names in proper manner depending ! on context. Everything with one key! |latex-bracketing-macros| *************** *** 98,106 **** change what kinds of warnings/errors to ignore. ! |latex-viewing| This is a set of functions which open up the compiled .dvi document using the specified DVI viewer. ! |latex-searching| Xdvi (for UNIX) and Yap (for Windows) both provide ways for "forward searching" LaTeX documents. This section describes how to use these --- 100,112 ---- change what kinds of warnings/errors to ignore. ! |latex-part-compiling| ! Compile only chosen part of document. Fast way to check if chosen ! fragment is well formed. ! ! |latex-viewing| This is a set of functions which open up the compiled .dvi document using the specified DVI viewer. ! |latex-searching| Xdvi (for UNIX) and Yap (for Windows) both provide ways for "forward searching" LaTeX documents. This section describes how to use these *************** *** 412,419 **** }}} =========================================================================== ! LATEX VIEWER *latex-viewer* {{{ ! Latex suite provides easy way of looking through BibTeX keys and completing ! them. The same for completion of \ref-like entries. After you insert \cite{, you can press <F9> key (still in Insert mode). Two --- 418,427 ---- }}} =========================================================================== ! LATEX COMPLETION *latex-completion* {{{ ! After pressing "<magic_key>" (default <F9>) Latex-suite will try to complete ! argument of command (part between {}). Now available is support for \cite, ! \ref and their cousins. Also for \includegraphics and \bibliography ! (|latex-completion-explorer|). More to come. After you insert \cite{, you can press <F9> key (still in Insert mode). Two *************** *** 465,468 **** --- 473,497 ---- texrc you can configure height of these windows. + *latex-completion-explorer* + Latex-suite is distributed with slightly changed explorer.vim. This + modification allows to perform custom operations in explorer buffer. + + After \includegraphics{<F9> Latex-suite will open explorer buffer with current + directory or directory defined with g:Tex_ImageDir variable. When you choose + graphic file with <cr> its name will be inserted into file as bib key or + label. If g:Tex_ImageDir is set Latex-suite assume you also defined + \graphicspath{} command and will insert just file name (without extension). If + g:Tex_ImageDir is empty (default) it will put relative path to graphic file. + + After \bibliography{<F9> Latex-suite will open explorer buffer with current + directory. After <cr> name of relative path to chosen file (without extension) + will be inserted. + + In both cases explorer window will open with basic filter. You should not see + uninteresting in current context files. + + You can regulate height of explorer window with g:Tex_ExplorerHeight variable + (default 10). + }}} =========================================================================== *************** *** 687,690 **** --- 716,729 ---- \'You have requested¡'. \'Missing number, treated as zero.' + < + *latex-part-compiling* + You can compile only fragment of document. It can be useful to work on one + sophisticated equation or one chapter. + + Mark fragment in Visual mode and press <F10> (or choose this option from + TeX-Suite menu). This fragment will be saved to temporary file with preamble + and compiled to current target. View new created document with \ls shortcut or + TeX-Suite menu element. Two ":" commands are also available: very interesting + |TPartComp| and |TPartView|. }}} *************** *** 1059,1062 **** --- 1098,1110 ---- Note: TLookuses :grep command and is using 'grepprg'. Its regular expressions can be different from those of Vim. + + :TPartComp *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. + + :TPartView *TPartView* + Show last compiled fragment. All rules of viewing apply but + |latex-searching|. }}} |