Code: Select all
\usepackage[demo]{graphicx}
How to change their color? For example, to rectangles were gray?
Code: Select all
\usepackage[demo]{graphicx}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\ProvidesPackage{graphicx}
[1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)]
Code: Select all
\ProvidesPackage{mygraphicx}
[1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)]
Code: Select all
\DeclareOption*{\PassOptionsToPackage\CurrentOption{graphics}}
\ProcessOptions
\RequirePackage{keyval,graphics}
Code: Select all
\DeclareOption*{\PassOptionsToPackage\CurrentOption{mygraphics}}
\ProcessOptions
\RequirePackage{keyval,mygraphics}
Code: Select all
\ProvidesPackage{graphics}
[2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)]
Code: Select all
\ProvidesPackage{mygraphics}
[2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)]
Code: Select all
\DeclareOption{demo}{%
\AtBeginDocument{%
\def\Ginclude@graphics#1{%
\rule{\@ifundefined{Gin@@ewidth}{150pt}{\Gin@@ewidth}}%
{\@ifundefined{Gin@@eheight}{100pt}{\Gin@@eheight}}}}}
Code: Select all
\DeclareOption{demo}{%
\AtBeginDocument{%
\def\Ginclude@graphics#1{%
\color{gray}\rule{\@ifundefined{Gin@@ewidth}{150pt}{\Gin@@ewidth}}%
{\@ifundefined{Gin@@eheight}{100pt}{\Gin@@eheight}}}}}
Code: Select all
\usepackage[demo]{mygraphicx}
Code: Select all
\usepackage[demo]{graphicx}
Code: Select all
\usepackage{ifthen}
\newboolean{make-with-pic}
\setboolean{make-with-pic}{true}
%\setboolean{make-with-pic}{false}
\newcommand{\MyPic}[4]{
\begin{figure}[htp]
\centering
\ifthenelse{\boolean{make-with-pic}}
{\includegraphics[width=1.0\textwidth,totalheight=0.45\textheight,keepaspectratio=true]{#1}}
{\includegraphics[height=1cm,width=1cm]{dummy.png}}
\caption[#2]{#3}
\label{#4}
\end{figure}
}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis