In preparing an MWE it is often useful to include some kind of graphic image. In a simple case this can be done via
\begin{figure}
\centering
THIS IS AN IMAGE
\caption{An image}
\end{figure}
But sometimes a more evocative image is useful, or one that is not enclosed in an environment. There are some images generally available for such purposes, particularly provided by the mwe and various tikz... packages. Also one from pstricks. Are there others?
Here is a short example of some of these.
% images.tex What images does ``everyone'' have?
\documentclass{article}
\usepackage{graphicx}
\usepackage{mwe}
\usepackage{tikzducks}
\usepackage{tikzmarmots}
\usepackage{tikzlings-cats}
\begin{document}
\tableofcontents
\listoffigures
\clearpage
\section{From MWE package}
\begin{figure}[hbp]
\centering
\includegraphics{example-image}
\caption{MWE example-image}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-image-a}
\caption{MWE example-image-a}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-image-b}
\caption{MWE example-image-b}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-image-c}
\caption{MWE example-image-c}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-image-16x10}
\caption{MWE example-image-16x10}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-image-10x16}
\caption{MWE example-image-10x16}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-image-16x9}
\caption{MWE example-image-16x9}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-image-9x16}
\caption{MWE example-image-9x16}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-image-golden}
\caption{MWE example-image-golden}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-image-golden-upright}
\caption{MWE example-image-golden-upright}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-image-1x1}
\caption{MWE example-image-1x1}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-image-plain}
\caption{MWE example-image-plain}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-image-empty}
\caption{MWE example-image-empty}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-grid-100x100bp}
\caption{MWE example-grid-100x100bp}
\end{figure}
\begin{figure}
\centering
\includegraphics{example-grid-100x100pt}
\caption{MWE example-grid-100x100tp}
\end{figure}
%\end{document}
\begin{figure}
\includegraphics{example-image-golden}
\caption{MWE example-image-golden}
\end{figure}
\begin{figure}
\includegraphics{example-image-duck}
\caption{MWE example-image-duck}
\end{figure}
\clearpage
\section{From pstricks}
\begin{figure}[hbp]
\centering
\includegraphics[width=\textwidth]{/usr/local/texlive/2019/texmf-dist/doc/generic/pstricks/images/tiger}
\caption{pstricks/images/tiger}
\end{figure}
\clearpage
\section{From tikzpicture package}
\begin{figure}[hbp]
\centering
\begin{tikzpicture}
\duck
\end{tikzpicture}
\caption{TIKZDUCKS duck}
\end{figure}
\begin{figure}
\centering
\begin{tikzpicture}
\duck[water=cyan!50!blue]
\end{tikzpicture}
\caption{TIKZDUCKS duck[water]}
\end{figure}
\clearpage
\section{From tikzmarmot package}
\begin{figure}[hbp]
\centering
\begin{tikzpicture}
\marmot[3D]
\end{tikzpicture}
\caption{TIKZMARMOT marmot[3D]}
\end{figure}
\clearpage
\section{From tikzlings package}
\begin{figure}[hbp]
\centering
\begin{tikzpicture}
\cat
\end{tikzpicture}
\caption{TIKZLINGS-CAT cat}
\end{figure}
\end{document}
At one point I felt that I had an image of a frog but it seems to have faded into the background. What have I missed out?
graphicxpackage. – David Carlisle Apr 17 '20 at 19:40tikzlingsto have\marmotand\catavailable. As for the frog, maybe this was from thefrogboxfrom p. 74 of thetcolorboxmanual. – Apr 17 '20 at 19:45