I am using \documentclass[margin]{res}. On running latex/xelatex, *.aux file is not generated. Because of this the references in the document are not being cited. I am using biblatex for citations.
What might be wrong?
I am using \documentclass[margin]{res}. On running latex/xelatex, *.aux file is not generated. Because of this the references in the document are not being cited. I am using biblatex for citations.
What might be wrong?
By default (or design), the res documentclass does not create an auxiliary file since it executes
\nofiles % resume's don't need .aux files
around line 200. Modify your main file to resemble:
\let\nofiles\relax % Void the \nofiles command
\documentclass[margin]{res}% Resume documentclass (http://ctan.org/pkg/res)
...
Alternatively, although not preferred, you will have to comment out this line in order for the document to generate .aux files.
resclass modified the traditional\sectioncommands as well, so they don't function as expected. If you want to introduce bookmarks at specific locations in your resume, consider using some of the techniques employed by thebookmarkpackage. – Werner Apr 03 '15 at 05:44