Free tool for watching coordinates in PDF [closed]

Apache PDFBox PDFDebugger 2.0.* displays PDF coordinates in the status bar. Get it here: https://pdfbox.apache.org/download.cgi Download the pdfbox-app-2.0.*.jar available under command line tools on above link. Then run the below command with the required file. java -jar pdfbox-app-2.0.*.jar PDFDebugger “InputFile” You would be able to see the coordinates by hovering the mouse on pdf page. …

Read more

Pandoc Markdown to PDF image position

Did you try to deactivate the implicit_figures as in pandoc -f markdown-implicit_figures -t pdf myfile.md To solve the size problem you could also try to fix the size within the markdown file with an attribute. Something like that can do the trick: ![Caption text](/path/to/image){ width=50% }

How to add page numbers to Postscript/PDF

Based on rcs’s proposed solution, I did the following: Converted the document to example.pdf and ran pdflatex addpages, where addpages.tex reads: \documentclass[8pt]{article} \usepackage[final]{pdfpages} \usepackage{fancyhdr} \topmargin 70pt \oddsidemargin 70pt \pagestyle{fancy} \rfoot{\Large\thepage} \cfoot{} \renewcommand {\headrulewidth}{0pt} \renewcommand {\footrulewidth}{0pt} \begin{document} \includepdfset{pagecommand=\thispagestyle{fancy}} \includepdf[fitpaper=true,scale=0.98,pages=-]{example.pdf} % fitpaper & scale aren’t always necessary – depends on the paper being submitted. \end{document} or alternatively, …

Read more

PDFTK Rotating Pages Problem

To rotate page 1 by 90 degrees clockwise: pdftk in.pdf cat 1E output out.pdf # old pdftk pdftk in.pdf cat 1east output out.pdf # new pdftk To rotate all pages clockwise: pdftk in.pdf cat 1-endE output out.pdf # old pdftk pdftk in.pdf cat 1-endeast output out.pdf # new pdftk Similarly, to rotate all pages anti-clockwise: …

Read more

Application (Not a Markup Language) for Producing a User Manual [closed]

Technical Publishing Software – Views on FrameMaker and Its Alternatives I’ve done spec documents with LaTeX and Framemaker, and designed a Framemaker workflow to support a team of 5 analysts producing a spec document for an insurance underwriting system. The document was expected to get to 2,000 pages or so. Many years ago (around 1992-1993) …

Read more