dvipdfmx is a device driver for creating PDF from DVIs.

learn more… | top users | synonyms

0
votes
0answers
233 views

Including PDF in LaTeX - parsing error [closed]

I am trying to include PDF file (generated using Visio) in my LaTeX document. It is basically an image. I followed the instruction from here to convert visio diagrams into pdf and then cropped using ...
8
votes
3answers
185 views

PDF annotations: How to know if “a box is empty”?

Extract from dvipdfmx documentation: Warning: No annotation will be constructed if the content between pdf:bann and pdf:eann is an empty box. My MWE (via xelatex): \documentclass{article} ...
1
vote
1answer
115 views

dvipdfm horizontally crops image

On windows 7 64bits with Miktex 2.9 latex compile correctly my document and DVI shows all images correctly. Then dvipdfm produces a correct PDF except for one image that is cropped horizontally. To ...
8
votes
1answer
258 views

dvipdfm OR dvipdfmx OR dvipdft?

I freshly installed LaTeX on my computer using the ProTeXt bundle. I was able to install everything smoothly, but the program TexStudio didn't auto-configure, like the manual said it would. Using ...
0
votes
0answers
121 views

ps2pdf Keeps stopping at page 6 [closed]

I have a gorgeous 18 page PS document, and every time I try ps2pdf it will only convert the first six pages of it. If I try to use the command line, it says stack underflow at 58% complete saying ...
19
votes
1answer
622 views

Why does pdflatex produce bigger output files than latex+dvipdfm?

Consider this sample code: \documentclass{article} \usepackage{lipsum} \begin{document} \lipsum[1-4] \end{document} When I compile this with latex and then use dvipdfm, the output file is 7893 ...
3
votes
1answer
244 views

embed a PDF page in plain XeTeX

In the dvipdfm documetation, there is a special command for including the first page of an embedded pdf (using \special{pdf:epdf ... (file.pdf)}. Is there a way to insert for instance the fifth page ...
1
vote
1answer
212 views

hyperref package - link boxes are too small (overlap the text)

The boxes the hyperref package creates around links in my document are too small, hiding out the characters. I'm using latex to get a DVI, then dvi2pdfm to get a PDF. Both from MikTex 2.8. ...
4
votes
2answers
960 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} ...
9
votes
1answer
788 views

Attach files to PDF with dvipdfmx

The attachfile package allows files to be embedded within the output PDF of a pdfLaTeX document, and the attachfile2 extends this for dvips use as well. In an article, the author of dvipdfmx gives a ...