I wanted to have a PDF copy, so this is what I tried:
- I tried using a flat-bed scanner with Adobe Acrobat, but the text near the binding showed up black.
- I tried using BookEye scanner, which us essentially a lamp and a digital camera. I could only photograph both pages in a single image since the image splitting function in the scanner simply chopped off the text near the binding. The page still showed up curved. Using a small piece of acrylics plastic, I was able to flatten one page at a time, so I photographed the two-page spread twice, once with the left page flattened, and once with the right page flattened. I was able to recover the missing text close to the binding, but the PDF has duplicate pages, half of each page should be discarded.
- I tried using a Canon photocopier to scan for me. This produced the highest quality scan, but I was not able to flatten the page enough to recover text from the book binding.
It turns out it is easy with pdfLaTeX. I made a .tex file like this:
\documentclass[letterpaper]{article} \usepackage[left=0pt,top=0pt,right=0pt,bottom=0pt]{geometry} \usepackage{graphicx} \begin{document} \newpage \includegraphics[width=\paperwidth,height=\paperheight]{000.png} \newpage \includegraphics[width=\paperwidth,height=\paperheight]{001.png} \newpage \includegraphics[width=\paperwidth,height=\paperheight]{002.png} \end{document}
And ran pdfLaTeX on it to generate the PDF. The main idea is to set page size to letter, set page margin to 0 , then include the image files while setting the width and height to that of the paper using LaTeX measurement macros. I think there are still rough corners of this approach because LaTeX complains about overfull hboxes, but the resulting PDF is usable for my need.
2 comments:
Two small fixes:
remove the first \newpage to get rid of the extra blank page.
prefix each \includegraphics with a \noindent to remove the extra space on the left.
\newpage only starts a page if there are existing content (i.e. \newpage \newpage won't give you two blank pages). But you're right about \noindent.
Post a Comment