[Tex/LaTex] How to use \includegraphics with package graphics

graphics

When using the package graphics instead of graphicx (which is absent for MikTeX 2.9, given that it should be included in graphics) the figure does not show on the pdf.

\documentclass[11pt,a4paper]{article}

\usepackage{lipsum}
\usepackage{graphics}

\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\setlength\headheight{80.0pt}
\addtolength{\textheight}{-80.0pt}
% when using graphicx next line works:
%\chead{\includegraphics[width=\textwidth]{fig1.jpg}}
\chead{\includegraphics[width=\textwidth][0,0]{fig1.jpg}}

\begin{document}
\title{Title} 
\date{September 2013}
\author{Sergio}
\maketitle

\thispagestyle{fancy}
\lipsum[1-9]
\end{document}

Best Answer

graphicx has been part of every latex distribution since 1994. Why do you say it is absent? I would recommend that you use this syntax.

If you want to use graphics syntax (I wouldn't recommend it) then to scale a figure use:

\resizebox{\textwidth}{!}{\includegraphics{fig1.jpg}}