Hi

[email protected] wrote:
I'm setting a document in LaTeX.
I have to include an Appendix.
Which is a Word document of approx 15 pages.
I'd like to include the document in the final run.
And then use ps2pdf --> pdf file for transmission.

Use the pdfpages package :-)

Open the Word doc in OpenOffice and save it as a PDF document.
Save it as say word-appendix.pdf

In latex have this:

\documentclass{article}

\usepackage[draft]{pdfpages}
% pdfpages can take options of final or draft, final is the default.
% draft: Does not insert pages, but prints a box and the filename instead.

\begin{document}

\section{Appendices}

% e.g. this will include pages 1-15 and page 20
\includepdf[1-15, 20]{word-appendix.pdf}

\end{document}

You may have to run it as pdflatex - not sure.
You set draft option and it won't include the Word doc. Set final option and it will be included but just the 15 pages that you want. Read the manual as there are many wonderful options.

Reference:
http://dods.ipsl.jussieu.fr/fast/documents/pdfpages.pdf

Mike
--
Michael Lake
Computational Research Centre of Expertise
Science Faculty, UTS
Ph: 9514 2238



UTS CRICOS Provider Code:  00099F
DISCLAIMER: This email message and any accompanying attachments may contain 
confidential information.  If you are not the intended recipient, do not
read, use, disseminate, distribute or copy this message or attachments.  If
you have received this message in error, please notify the sender immediately
and delete this message. Any views expressed in this message are those of the 
individual sender, except where the sender expressly, and with authority,
states them to be the views of the University of Technology Sydney. Before
opening any attachments, please check them for viruses and defects.

Think. Green. Do.

Please consider the environment before printing this email.
--
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Reply via email to