Thursday, July 5, 2012

Camera Ready

Creating the camera ready version of papers is a nuisance. Today, I spend 2 hours to try to conform with all the requirements of an IEEE journal. Some of the frustrating aspects have to deal with the fact that they want to all images in EPS format and, as a mac user, I used pdf. It is easy to convert all the pdf to eps using pdftops. You can use the below find command to covert all files in a directory:

find . -name "*.pdf"  -exec pdftops -eps {} \;

The other difficulty was related doflattening the tex files and including the bibliography rather than the bib file. So I would not have to deal with this nonsense again, I wrote a short script to do this for me. I hope to expand this in the future to also handle the renaming of the figures in order of appearance; but for now that remains a manual step. The scrip is attached to the end this post