我可以插入JPEG出版物中的数字,但到了包括PDF图形(由于它的矢量特性,我更喜欢它们用于图形)我无法正确缩放它们。
我使用它是width=0.5\textwidth
因为我有双列文本格式,但我猜应该有一种更优雅的方法来调整。
我也找不到任何有关\includegraphics
内部figure
环境命令的帮助,例如
\begin{figure}[h]
\includegraphics{image.pdf}
\end{figure}
关于这个主题的任何链接或帮助都很好。
答案1
使用\linewidth
或。如果图像尺寸小于,\columnwidth
也可以\centering
在 之前使用。\includegraphics
\linewidth
\documentclass[twocolumn,a6paper]{article}
\usepackage{graphicx}
\usepackage{lipsum}
\begin{document}
\section{Higgs Boson}
\lipsum[1]
\begin{figure}
\includegraphics[width=\columnwidth]{example-image-a}
\caption{Image A}
\label{fig:imagea}
\end{figure}
\lipsum[1-2]
\begin{figure}
\includegraphics[width=\linewidth]{example-image-b}
\caption{Image B}
\label{fig:imageb}
\end{figure}
\lipsum[3-5]
\end{document}
编辑3
为了简单起见,我们通常忽略文件扩展名(我们以后可以轻松更改编译器)。
如果您使用,pdflatex
那么编译器将搜索 JPG、PNG 或 PDF。如果您使用,latex
那么编译器将搜索 EPS。对于xelatex
,它将搜索 JPG、PNG、PDF 和 EPS。