pdflatex 使用该图的格式更改一个图后的文本格式

pdflatex 使用该图的格式更改一个图后的文本格式

我在一些文本之间有一个图形。图形后面的文本似乎使用了图形的格式。即“居中”和“比例=0.65”。以及以下部分出现在同一页中。有人能帮帮我吗?谢谢

\documentclass{article}
\usepackage{graphicx,color}
\usepackage{epstopdf}
\begin{document}


\section{Title}
\section{The Foundations}

\subsection{Markov Decision Processes \& Reinforcement Learning}
Some Text 1
\begin{figure}[ht]
\begin{center}
\includegraphics[width=90mm]{./Figures/can.eps}
\caption{A simple CAN topology.}
\label{fig:test}
\end{center}
\end{figure}
Some Text 2
\subsection{Subtitle}

Plain text.

\subsection{Another subtitle}

More plain text.


\end{document}

在此处输入图片描述

相关内容