I have a few dozen (96, to be exact) figures to be included in my document. The following code generates the error "Unknown graphics extension", because it thinks the first period means that begins the file extension (how 20th century is that?)
Code: Select all
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
The graphs for $\beta$ from $1$ through $16$ are as follows
\includepdfmerge[fitpaper]{N=0032_Beta=01.00_tol=1e-08_t=0000_Energy_per_Mode.pdf, N=0032_Beta=01.00_tol=1e-08_t=0000_Energy_per_Frequency.pdf,
N=0032_Beta=02.00_tol=1e-08_t=0000_Energy_per_Mode.pdf, N=0032_Beta=02.00_tol=1e-08_t=0000_Energy_per_Frequency.pdf}
\end{document}
How do I include documents which have a period in their name?
Note that I already tried replacing the periods with
\.
, but then LaTeX thought it was supposed to be in math mode and generate "Missing $ inserted" errors.