7
votes
2answers
132 views

Embedding a flv (or mp4) video using pdfTeX (plain TeX only)

I am attempting to find out how to embed a flv video in a pdf file created using plain TeX and pdfTeX. I was successful at manually (via Adobe Acrobat's menu: Tools->Multimedia->Video Tool) embedding ...
4
votes
1answer
100 views

Embed distributed LaTeX file/code to the PDF?

I have read of the possibility to embed the LaTeX source in a generated PDF, see the question here. Do you know of a way to do this with distributed TeX file, i.e. for a TeX file which is stored in ...
5
votes
0answers
197 views

Embedded fonts - Verification: Different tools give different answers [closed]

I want to produce a PDF file that has all fonts embedded. I prefer to avoid the detour of postscript/dvi and use pdflatex instead. My PDF is basically a publication containing only OmniGraffle figures ...
4
votes
1answer
47 views

Hypertarget within an embedded .tex file

I am creating a PDF from multiple latex files. Within my mainFile.tex file I am embedding other .tex files using \input{embeddedFile.tex}. I want to create a hyperlink to a line in embeddedFile.tex ...
3
votes
0answers
87 views

hyperlink to an embeded pdf [closed]

I found a way to embed a PDF and provide a hyperlink to it using hypgotoe. So, this is similar to what I am currently doing \documentclass{article} \usepackage{embedfile} \usepackage{hypgotoe} ...
3
votes
1answer
1k views

Embed video in PDF with beamer under Ubuntu [closed]

I'm stuck in embedding a video into a PDF presentation with beamer. The problem is not the actual tex code, but the fact that I'm using Linux Ubuntu 10.04. The video is not reproduced, with evince it ...
1
vote
0answers
51 views

Embedding a Tex file inside a PDF? [duplicate]

Possible Duplicate: Is there some way to embed LaTeX source code in a PDF file? Is there any way to tell XeTeX/XeLaTeX (or pdfTeX/pdfLaTeX) to embed a copy of the TeX file inside the PDF ...
6
votes
2answers
311 views

Attach listing to PDF

I would like to add listings source as attachment to a PDF (created by pdflatex). For \lstinputlisting this is pretty easy: \RequirePackage{listings} \RequirePackage{embedfile} ...
8
votes
4answers
3k views

What's the best way to embed Visio diagrams?

I was wondering if there is an easier (and better) way of embedding Visio diagrams into a LaTeX document. As far as I know there a two ways: Save Visio Diagram as PNG and use \includegraphics Save ...
9
votes
2answers
593 views

Embedding a pdf file with clickable external links into a LaTeX document

I want to embed a screenshot of a web page into a LaTeX document as a vector graphic with clickable links. I'm using wkhtmltopdf to render the web page as a letter-sized pdf file with working links. ...
6
votes
2answers
725 views

Is it possible to embed (attach) a file password protected in a PDF?

The situation is the following, for certain short latex files, I embed the source in the PDF it self. That can save me time in an emergency if I need to modify the source of a PDF without having to ...
14
votes
2answers
530 views

Attach displayed image to the PDF without storing it twice

If one and the same image is included in a PDF multiple times it is only stored only once as an PDF object. Now I like to also attach an image which is shown in the document to the PDF to allow users ...
7
votes
2answers
914 views

Embed link to an embedded file

I am embedding a PDF file inside my LaTeX-generated PDF file using embedfile: \usepackage{embedfile} \embedfile{myfile.pdf} I would like to also insert a link that the user can click on to open the ...
10
votes
1answer
961 views

How do I make an attached file display like a link?

I'm embedding an external file in my pdf with \usepackage{attachfile2} and\textattachfile[color=1 1 1]{description}{file.pdf}. How can I make the text look the same as it would if I had used the ...
25
votes
3answers
1k views

How to preserve hyperlinks in included pdf?

I have generated PDFs with figures that have hyperlinks (hyperref to websites, \href) in them. When I compile these figures standalone the hyperlinks work. But when I try to include these PDFs (as ...
66
votes
3answers
2k views

Is there some way to embed LaTeX source code in a PDF file?

Several times now I have inadvertently lost the .tex file that generated a PDF file with pdflatex. Given what I know of the internal structure of PDF files, it should be possible to embed a text file ...
4
votes
2answers
955 views

Embedding files into a PDF document with dvipdfmx

I use the embedfile package in order to embed the LaTeX source code into the final PDF with the following code: \documentclass{article} \usepackage{embedfile} \embedfile{\jobname.tex} ...