LaTeX 中的示例图像?

LaTeX 中的示例图像?

如何制作 LaTeX 中的示例图像、虚拟图像、位置保持器?我以前见过,但我记不清它们是怎么做的。如果您需要帮助任何人或需要在这个社区中提问,那么能够使用示例图像会很好。您可能会说我可以轻松通过 Google 查找,但我尝试过了——但显然太愚蠢了,什么也没找到。

\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[ngerman, danish]{babel}
\usepackage[T1]{fontenc}
%\usepackage[]{}

\begin{document}

\iffalse
\begin{figure}
\includegraphics[scale=1]{•} 
\end{figure}
\fi

\end{document}

是否也可以调整示例图像的大小?所以我需要一个 usepackage 来制作不包含 immage 的图像。一个占位符,这样任何人都可以尝试我的代码而不需要图像 - 只需要我的 tex-code。我希望你明白?

亲切的问候!

答案1

谢谢马丁·沙雷尔,现代 LaTeX 系统为您提供了一些现成的图像;mwe包(节4 提供的图片)描述了所有可用的图像(最初您必须加载到包中才能使用图像,但后来图像无需包即可使用):

\documentclass[12pt,a4paper]{article}
\usepackage{graphicx}

\begin{document}

\noindent\includegraphics[width=3cm]{example-image-a}\qquad
\includegraphics[width=3cm]{example-image-golden}\qquad
\includegraphics[width=3cm]{example-grid-100x100pt}

\noindent\includegraphics[height=5cm]{example-image-b} 

\noindent\includegraphics[scale=0.5]{example-image-c} 

\noindent\includegraphics[width=3cm]{example-image} 

\end{document}

在此处输入图片描述

答案2

PStricks 的文档文件夹在一个单独的文件夹中包含一些图像。最值得注意的是它包含tiger(EPS 和 PDF 格式):

在此处输入图片描述

\documentclass{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[width=150pt]{c:/texlive/2014/texmf-dist/doc/generic/pstricks/images/tiger}
\end{document}

从上图可以看出(在 Windows 中的 TeX Live 2014 下),它并不是那么容易访问。

相关内容