I'm having a issue with adding pdf pages from an external pdf to my document. I used the package pdfpages and the command
Code: Select all
\includepdf[pages={1-11}]{01-form1_08-2010b.pdf}
PS: I'm using a makefile to compile.
Code: Select all
\includepdf[pages={1-11}]{01-form1_08-2010b.pdf}
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\documentclass{article}
\usepackage{pdfpages}
\begin{document}
Some text beforehand
\includepdf[pages={1-11}]{01-form1_08-2010b.pdf}
Some text afterwards
\end{document}
Code: Select all
\documentclass[11pt, titlepage, onecolumn, a4paper]{article}
\usepackage[dvips]{graphicx}
\usepackage[final]{pdfpages}
\begin{document}
\includepdf[pages={1-11}]{01-form1_08-2010b.pdf}
\include{...
....
\end{document}
Code: Select all
$ bibtex biblidoc.bib
I couldn't open file name `biblidoc.bib.aux'
$ bibtex main2.tex
I couldn't open file name `main2.tex.aux'
Code: Select all
\documentclass[11pt, titlepage, onecolumn, a4paper]{article}
\usepackage[dvips]{graphicx}
\usepackage[final]{pdfpages}
\begin{document}
\includepdf[pages={1-11}]{01-form1_08-2010b.pdf}
\include{...
....
\bibliographystyle{abnt}
\bibliography{biblidoc}
\end{document}
Code: Select all
# $Id: $
FILE = main2
# Change "main2" for your main tex document name
all:
pdflatex $(FILE)
bibtex $(FILE)
pdflatex $(FILE)
pdflatex $(FILE)
pdflatex $(FILE)
clean:
rm -f *.log *.aux *.toc *.lo[fpt] *.blg *.bbl \
*.ind *.ilg *.idx *.glo *.gls
allclean: clean
rm -f $(FILE).dvi $(FILE).ps $(FILE).pdf $(FILE).tex~ $(FILE).bib~
tarball:
tar -zcvf defesa.tar.gz *.tex *.ps *.eps *.sty *.bib *.bst Makefile
Then please mark the topic accordingly as written in Section 3 of the Board Rules (to be read before posting).kaiserschwarcz wrote:[…] I did it!!! […] I simply changed and simplified my make file so it now looks like this […] That did all that I wanted. […]
Conversion of the EPS files to PDF with the epstopdf command line tool or the epstopdf package "on the fly" would make more sense. This way you would still benefit from the vector character of the images.kaiserschwarcz wrote:[…] The title.tex error its a simple incompatibility of pdflatex with eps images. Converting the eps images to jpg and making the apropiated changes in the code did the job. […]
NEW: TikZ book now 40% off at Amazon.com for a short time.