summaryrefslogtreecommitdiffstats
path: root/test/TEX/multiple_include_subdir.py
Commit message (Collapse)AuthorAgeFilesLines
* Update path information for OSX.Robert Managan2011-09-061-1/+1
| | | | | | If one of the tools that use TeX applications is generated add the paths in /etc/paths and /etc/paths.d version 10.5 (Leopard)
* Fix two badly formed epsfiles used in these tests.Robert Managan2010-08-191-1/+1
|
* Replace embedded carriage returns with \r.Steven Knight2009-02-221-1/+1
|
* Add emacs and vim editing settings to the bottom of *.py files.Steven Knight2009-02-091-0/+6
|
* Remove the feature that would build .pdf graphics filesRobert Managan2009-01-091-0/+1
| | | | | | | | | | | | | | | | | | from .eps files for the pdf latex builder That is if the .tex file has "\includegraphics{figure1}" and the file figure1.eps then when using the .DVI builder latex will find the file and all is fine. However, when using the .PDF builder pdflatex can not process .eps files and will fail. After this patch the user will need to add env.PDF('figure1.eps') Update two tests that used the old feature and would fail otherwise I could not come up with a way to test for a feature that is removed. That is, I can write a test that works before the update and fails after but not the other way around.
* I found that my coding for automatically building .pdf files from .eps filesRobert Managan2008-11-121-0/+231
failed when the .tex file is in a subdirectory. I added a new test and made the one line fix.