Using LaTeX, R, and Sweave to Create Reports in Windows

[This article was first published on R, Ruby, and Finance, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

LaTeX is a typesetting system that can easily be used to create reports and scientific articles, and has excellent formatting options for displaying code and mathematical formulas. Sweave is a package in base R that can execute R code embedded in LaTeX files and display the output. This can be used to generate reports and quickly fix errors when needed.

There are some barriers to entry with LaTeX that seem much steeper than they actually are. In this article, I will show you how to setup LaTeX and an IDE for it in Windows, and how to start developing for it. Note that you will at least R version 2.14 to follow this entire article, because the command line sweave pdf export option was added then.

Install MiKTeX and TeXnicCenter

LaTeX documents are edited in a text editor, then compiled by a compiler, and finally are displayed in a PDF or postscript viewer. We will begin by installing a LaTeX compiler for Windows, MiKTeX. Once you grab the installer, you can go ahead and install it. Please see the bottom of the post for the full edit, but installing LaTeX in paths with spaces in them can cause issues. As such, I would recommend installing to a directory without them.

Our next step will be to install TeXnicCenter, an IDE for LaTeX. After installing TeXnicCenter and starting it for the first time, you will be asked to find your LaTeX executable file in the configuration wizard. This can generally be found in the folder C:\Program Files\MiKTeX 2.9\miktex\bin by default, or a custom path if you did not use spaces in your path. You can leave the fields for PostScript viewer blank, unless you need the functionality. You should now be finished with the installation.

Setup TeXnicCenter to Work with Sweave

Now, we can setup TeXnicCenter to use Sweave directly. This will require at least R 2.14. To do this, click on the Build menu and go to Define Output Profiles. Hit the “Add” button in the bottom left to create a new output profile. You can name the profile anything you like. I named mine “Sweave”.

Now we need to configure the new output profile. The first tab should look similar to mine if you use 64-bit R, but your R path will be different if you use 32-bit or used a non-default installation directory. The directory will need to match yours. The command line arguments box should read: CMD Sweave –pdf %nm .
Now, we only need to worry about the viewer tab. I use Foxit Reader, so my settings are below. I suggest using the same settings as you find in your LaTeX=>PDF output profile.
Once we have all that set, you can go ahead and write your first document. You will need to name the document something.Rnw. To build the file, you will have to select “Sweave”(or whatever you named your profile” in the drop down box below the build item on the menu bar, and then select Build->Current File->Build and View to build your first file.
The above shows a trivial R script. <<>>= signifies the start of an R script, and @ signifies the end.

Further Reading

To learn more about Sweave, I suggest reading the user manual. Here is a good discussion of workflow with big documents and Sweave. To learn more about LaTeX, I suggest the LaTeX wikibook, and The Not So Short Introduction to LaTeX. This page shows how to make a basic document in LaTeX, and can be a good template to work off of. This link gave me some of the concepts used above, and also has instructions for how to use Stangle with TeXnicCenter.

Edit A commenter has pointed out that using a directory path with spaces in it can create bugs in LaTeX. You can find more information on this here, and here. I have updated my post.

To leave a comment for the author, please follow the link and comment on their blog: R, Ruby, and Finance.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)