Last active
July 4, 2017 11:08
-
-
Save SpEcHiDe/074aaac7376ce8745657a5ba905cd63f to your computer and use it in GitHub Desktop.
LaTeX file to convert image to portable document format
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[12pt,a4paper]{report} | |
\usepackage[pdftex]{graphicx} | |
\usepackage[pdfborder={0 0 0}, pdftitle={<pdf title here>}, pdfauthor={<author's name here>}, pdfsubject={<subject here>}, pdfkeywords={<keywords here>}]{hyperref} | |
\pagenumbering{gobble} | |
\begin{document} | |
\includegraphics[scale=0.65,angle=0]{./file_name} % the image file name without extension | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment