Good morning, people.
My concern is probably simple enough to be replied fast by you, experienced people.
I want to embed several IEEEtran articles into one PDF file—this to embed the same article several times in different languages—, I want it to have bookmarks to navigate from one article to another one in another language. For instance:
\documentclass{IEEEtran}
\title{English}
\autor{doe}
\begin{document}
\section{1}
Thing.
\section{2}
More thing.
\subsection{Crap 3}
More thingy thing.
\end{document}
is one IEEE article in English,
\documentclass{IEEEtran}
\title{Spanish}
\autor{Doe}
\begin{document}
\section{1}
Cosa.
\section{2}
Más cosa.
\subsection{Crap 3}
Más coseada cosa.
\end{document}
is the same article in Spanish and
\documentclass{IEEEtran}
\title{Portuguese}
\autor{Doe}
\begin{document}
\section{1}
Coisa.
\section{2}
Mais coisa.
\subsection{Crap 3}
Mais cosiadinha coisa.
\end{document}
is the article in Portuguese.
I want these three totally independent files with their respective independent titles in a single PDF which will have bookmarks for section, subsection and else of each article in the main PDF. I was adviced to use '\usepackage{hyperref} and \usepackage{bookmark} which I know how to use in a single file but not embedding several files into a “main” one. I want to learn how to do it to use it in my college articles and reports which I need to write in several languages. Thanks in advance everyone for your support. :)!
pdfpagespackage and separately write the link into the overall document that includes all the articles... – darthbith Jan 05 '15 at 14:49