有人能帮我把图放在 sharelatex 文档的底部(居中)吗?目前我正在使用:
\documentclass[final,authoryear,3p,times,twocolumn]{elsarticle}]
\userpackage{graphics}
\begin{document}
\begin{frontmatter}
\graphicspath{}
\begin{figure*}[b!]
\begin{center}
\fbox{\includegraphics[width= \textwidth,height= 12cm]{Study_area.PNG}}
\caption{}
\label{fig:studysite}
\end{center}
\end{figure*}
\end{document}
答案1
图形放置选项[b]
在双栏模式下不起作用;默认情况下,页面宽度的图形放置在页面顶部。该stfloats
包(来自sttools
捆绑包)使它可用。
顺便说一句,不要将center
环境用于图形:除了图形的正常垂直间距之外,它还会添加不必要的垂直间距。
\PassOptionsToPackage{demo}{graphicx}
\documentclass[final,authoryear,3p,times, twocolumn]{elsarticle}
\usepackage{stfloats}
\usepackage{lipsum}
\begin{document}
\begin{frontmatter}
\lipsum[11]
\begin{figure*}[b!]
\centering
\fbox{\includegraphics[width=\dimexpr \textwidth-2\fboxsep-2\fboxrule\relax, height= 12cm]{Study_area.PNG}}
\caption{} \label{fig:studysite}
\end{figure*}
\lipsum
\end{frontmatter}
\end{document}