Search found 3 matches

by textonic
Tue Oct 07, 2008 3:23 pm
Forum: General
Topic: references across multiple articles
Replies: 3
Views: 1990

Re: references across multiple articles

Thank you very much!
by textonic
Tue Oct 07, 2008 12:19 pm
Forum: General
Topic: references across multiple articles
Replies: 3
Views: 1990

references across multiple articles

Follow-up: I figured out the following ad hoc fix; it is not great so suggestions are still welcome...

Code: Select all

\makeatletter
\input{paper1.aux}
\makeatother
\newcommand{\specialref}[1]{\ref{#1} in~\cite{my_paper1}}
(code in the preamble).
by textonic
Tue Oct 07, 2008 10:25 am
Forum: General
Topic: references across multiple articles
Replies: 3
Views: 1990

references across multiple articles

Hi,

I am splitting a long paper latex into two parts. I intend to end up with two completely independent papers, possibly for different journals. However, the second will have many references to statements in the first, currently handled with \label and \ref since it is still all one file.

I would ...