Tagged Questions
2
votes
1answer
38 views
No %.aux file in a particular directory
I have the following line in my report.tex
\include{intro/introduction}
\include{prlm/preliminary}
\include{svy/survey}
and the corresponding directory structure. The directory structure is ...
3
votes
0answers
79 views
includepdf does not find file with comma
I am already using grffile to ensure that all files are found on the file system (windows 7), but now I have an example where the second file is not found.
\documentclass[]{scrbook} %
\usepackage[%
...
4
votes
1answer
196 views
Why does the following code run in an infinite loop?
\def\hcAuxText{}
\newread\hcInputStream
\immediate\openin\hcInputStream=myfile.tmp
\loop\unless\ifeof\hcInputStream
\read\hcInputStream to \hcAuxLine
\let\hcAuxAcumm\hcAuxText
...