vote up 2 vote down star

I am using StatWeave to run SAS code from within LaTeX files. I would like to be able to open a file in a text editor and view the main LaTeX document with LaTeX syntax highlighting and the embedded SAS "code chunks" with SAS syntax highlighting. (The "code chunks" are real (working) code, not just for display, so I don't think the LaTeX listings package will work.) I'm sure there must be a way to do this with emacs, but I don't know what it is... At this point I'm open to any solution with any editor.

flag

60% accept rate

3 Answers

vote up 0 vote down

UltaEdit might work but you would have to do a great deal of setup

link|flag
vote up 1 vote down

Would it be an option not to have the sas files directly in the code but to use '\input' instead? One thing I frequently do with source examples is to put them in a subdirectory samples/ and then use "highlight" to create LaTeX files that can be included in the main file. That way I can execute the source files everytime they are changed to check if they work properly. The (re)generation of the tex code can be done by a shell script or from make if it is a bigger project. In most cases a simple generate_tex.sh script was enough for my projects that I called after I had changed any of my samples. The contents of it could be something like

#!/bin/bash
highlight -L -f --wrap-simple *.css --outdir ../input/
highlight -L -f --wrap-simple *.html --outdir ../input/
highlight -L -f --wrap-simple *.php --outdir ../input/

for a web project. In the main tex file then include the samples using

\input{filename.css}
link|flag
Thank you-- I do want to have the sas files directly in the LaTeX document in this case, but it's good to know about this other option- – Louisa Grey Jul 29 at 14:19
vote up 1 vote down

Perhaps one of the solutions on the MultipleModes page on the Emacs Wiki helps. Also, the manual for Sweave says that Emacs Speaks Statistics can handle Sweave files, so since StatWeave seems to be similar, perhaps you could hack ESS to handle those files as well. ESS seems to already have support for SAS, so the required changes might not be too big.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.