I've created LaTeX documents before using 'nice IDEs' such as TeXnicCenter and have a little experience in general with TeX, however, now I'm wondering about creating one "manually". By that, I mean doing something such as writing the tex document in a very simple editor (such as VIM) and then compiling it myself with pdflatex via the command prompt. Has anyone ever done this and if so, I really just need to know how I'd go about it? What's the process to doing it? While the IDE is nice, I'd really like to be able to create LaTeX documents 'on my own'. Thanks for any information you can provide!
|
Your question is a little confusing. What you mean is compiling a LaTeX document manually (into a PDF). You might want to adjust your title. Creating one would be the process of writing the document. This can be done in the command line using The latexmk script (also called with the filename) will compile the LaTeX document as often as required and also run external tools like |
|||||||||||||||||
|
|
Create the file then compile it, just like you think you should. If your editor supports macros, define one (or two for Bibtex). However, I think it is better to stick with modern IDEs so you can take advantage of synchronized PDF previewing. |
|||
|
|
|
You can try AutomaticTexPlugin. It can compile documents on the fly or in the backround, so you do not waste the time, while waiting for the compilation. It also has a nice progress bar, which is serves well especially for big files. But the best point of this plugin is its excellent completion with lots of features (some people say that the only feature that is missing is that of writing the proofs by itself). Checkout the list of features (which is not even complete). The forward and backward search works out of the box for major linux and macos pdf viewers. |
|||
|
|
pdflatex yourdocument.tex, oryourtexengine yourdocument.tex. – ipavlic Apr 28 '11 at 20:41