I have a document which uses the standard \cite to cite a reference. At the end of my document, I have a \bibliography to place the References section there. However, the fellowship I'm applying to asks to submit the essay and references in different documents. Is there any way I can split the two from each other. That is to say, have the essay on one document, and the references on another?
There is one way I can think of doing this but it doesn't use LaTeX. I have a software that can print anything to PDF. I can use it to print the essay pages to a PDF and name it Essay.pdf, and then use it to print only the references seciton to PDF and name it Works_Cited.pdf.
I didn't know what Tags this question fell under, so I apologize if I chose the wrong tags.
\clearpageand reset the page counter to start at 1. then usepdfpagesto split the pdf file into the required two parts, and rename as appropriate. – barbara beeton Nov 5 '12 at 16:29pdfpagesto split the pdf file into two parts? That's really what I need! – Amit Nov 5 '12 at 18:40pdfpagesmixed up with something else;pdfpagesis used to insert selected pages from another existing pdf file into a latex document. it's not designed to split pdf files. an approach that should work is to output your complete document to a dvi file, then use thedvipdfmprogram to split it into multiple pdf files. the manual fordvipdfm(texdoc dvipdfmif you are working with a tex live installation) is very clear. the options-o(output file name) and-s(page ranges) are the ones you need. – barbara beeton Nov 5 '12 at 19:29