我是 LaTeX 的新手,目前正在尝试编写一份报告模板,以用于将来的工作。
无论如何,这里有一个显示错误的 MWE:
\documentclass[12pt,twoside,a4paper]{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[ht]
\centering
\includegraphics[width=\linewidth]{epsFig}
\caption{This is where a caption would go. Include the image in the folder of the project, the image must have a .eps file format.}
\label{fig:example}
\end{figure}
\end{document}
最终输出结果如下:
也就是说,上一页没有足够的空间来放置图像,因此图像被移动到下一页,但最终却出现在被标题覆盖的页面左下角。
该图像是使用 MatLAB 创建的,我使用 TexnicCentre 和 Miktex2.9。有人可以帮忙吗?
编辑:图像的文件扩展名是 .eps 图像位于此处关联
答案1
我有一个解决方案,问题是我并不特别为此感到自豪。Matlab 似乎在保存 .eps 文件时有问题。我发现解决这个问题的唯一方法是用不同的扩展名(例如 .png)保存图形,然后使用 Inkscape 或类似程序转换为 .eps。