LaTeX 中的数字

发布于 2024-09-02 05:55:45 字数 58 浏览 1 评论 0原文

如何导入图形,使其显示在页面底部并带有标题?当我导入它并正常在其上添加标题时,它总是出现在页面的顶部。

How do you have a figure imported so that it appears on the bottom of a page with a caption? When I import it and put a caption on it normally, it always appears at the top of a page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一抹苦笑 2024-09-09 05:55:45
\begin{figure}[b]
 your figure
\end{figure}

请参阅此链接,了解更多语法:

http://en.wikibooks.org/ wiki/LaTeX/Floats,_Figures_and_Captions#Figures

\begin{figure}[b]
 your figure
\end{figure}

See this link, for more syntax:

http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions#Figures

起风了 2024-09-09 05:55:45

举个例子:

下面的标题

\begin{figure}[h]
  \centering
  \includegraphics[width=0.3\textwidth]{thatcat.jpg}
  \caption{That cat!} % caption line
\end{figure}

下面的标题

上面的标题

\begin{figure}[h]
  \centering
  \caption{That cat!} % caption line
  \includegraphics[width=0.3\textwidth]{thatcat.jpg}
\end{figure}

上面的标题

Just an example:

Caption below

\begin{figure}[h]
  \centering
  \includegraphics[width=0.3\textwidth]{thatcat.jpg}
  \caption{That cat!} % caption line
\end{figure}

caption below

Caption above

\begin{figure}[h]
  \centering
  \caption{That cat!} % caption line
  \includegraphics[width=0.3\textwidth]{thatcat.jpg}
\end{figure}

caption above

绝不放开 2024-09-09 05:55:45

添加到 freyrs:

如果将 \caption 放在 \includegraphics 上方,则标题将位于图形上方,如果将 \caption 置于下方\includegraphics 标题将出现在图下方。

To add to freyrs:

If if you put \caption above the \includegraphics the caption will be above the figure, if you put \caption below the \includegraphics the caption will appear below the figure.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文