The question is: does anyone have a hack to fix the compatibility issues with the two packages to get combine to compile correctly?
Here's an almost minimal example that illustrates the problem:
main_combine.tex
Code: Select all
\documentclass[12pt]{combine}
% The harvard package does not play nice with combine, can be commented out to
% get compilation to work
\usepackage{harvard}
% Neither does the caption package, can be commented out to
% get compilation to work
\usepackage{caption}
\title{The combined document}
\author{The editor}
\date{\today}
\begin{document}
\pagestyle{combine}
\begin{papers}
\coltoctitle{Paper 1}
\coltocauthor{Author A}
\import{art1}
\coltoctitle{Paper 2}
\coltocauthor{Author B}
\import{art2}
\end{papers}
\end{document}
Code: Select all
\documentclass[12pt]{article}
\title{Article the first}
\author{A. Author}
\date{\today}
\begin{document}
Text goes here.
\end{document}