Some grant agencies require separate pdf files for the main proposal and the references. I guess, it is easier to work this way in Word :-)
In LaTeX, one can create a single PDF file and then split it later using pdftk or other tools. However, is a direct method of creating two separate PDF files: one that contains the main text (with the correct citation information) and the second with all the list of references. I understand that, at the very least this will involve compiling two separate .tex files. That is okay. I just don't want to use additional tools (can be tricky to install on all computers of all collaborators, etc.)
Here is a MWE to play with:
\begin{filecontents}{test.bib}
@ARTICLE{author,
title={A sample article},
author={Random Author},
journal={Random journal},
volume = {10},
year = {2000},
}
\end{filecontents}
\documentclass{article}
\usepackage{natbib}
\begin{document}
As shown by \citet{author}, using references can be interesting
\newpage
\bibliographystyle{apalike}
\bibliography{test}
\end{document}



.texfile if you rename the first PDF. (2) You could do it, I think, with 3.texfiles where 2 are wrappers you compile. (3) You can create a document specific.bibusingbiber(whether you use this for compilation or not) and use 2.texfiles. (4) You can use 3.texfiles all of which you compile, where 2 just include the right pages from the compiled version of the third. – cfr Jan 25 '15 at 01:35\includeonly? Also, the packagetcolorboxprovides recording macro. I wonder if it can be useful here. – Jan 25 '15 at 01:46\includeonlyonly works with\chapter. I am usingarticleclass. (But I wonder ifmemoirwitharticleoption will work with\includeonly. – Aditya Jan 25 '15 at 02:02pdfpagesto split the compiled PDF? You just need 2 simple wrapper.texfiles. You would need to specify the point to split the PDF in the wrappers i.e. it is not entirely automatic. But it has the advantage of simplicity: everyone will easily understand what the wrappers do and how to adjust the code (by changing one number) if the pagination of the article changes. – cfr Jan 25 '15 at 02:21