I'm currently trying to set up a template for MLA format. There's one warning that never goes away, however:
Package thumbpdf Warning: Thumbnail data file `Project*Name.tpt' not found.
Does anyone know what causes/how to fix this problem? Currently I have in the project folder the following files (and other associated files that come with compiling, except the .tpt file):
Project Name.tex
mla.sty
thumbpdf.sty
thumbpdf.tex
thumbpdf.pl
I've followed the install directions for thumbpdf found here: http://www.ctan.org/tex-archive/support/thumbpdf
Or at least, I've gotten the thumbpdf.sty, .tex, and readme in the right directories in the MikTeX folder in Program Files. I'm not quite sure what to do with the .pl file.
Here is the preamble:
\documentclass[12pt,letterpaper]{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{hyperref}
\usepackage{geometry}
\usepackage{url}
\setlength{\headheight}{15pt}
\usepackage[pdftex]{thumbpdf}
\usepackage{ifpdf}
\usepackage{mla}
\usepackage{setspace}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
thumbpdfwith my MiKTeX installation, most definitely not to fulfill MLA requirements. Any particular reason you're using it? – doncherry Sep 29 '12 at 16:20hyperref(almost) last. You don't need to loadurl, which is loaded byhyperref, norifpdf, which is loaded bygeometry. In general, Best practice on organising your preamble might be of interest to you. – doncherry Sep 29 '12 at 16:29thumbpdf.plis a Perl script that must be run with the main PDF file as input (most TeX distributions already have it to be simply called from the command line). But, as Heiko below is saying, there's no need for it with modern PDF viewers. – egreg Sep 29 '12 at 16:41mlarequeststhumbpdfwith the following magic just before\usepackage{mla}:\expandafter\def\csname ver@thumbpdf.sty\endcsname{}. Or just live with the warning. – egreg Sep 29 '12 at 16:45