Elsevier 文档中双栏图表的标题位置

Elsevier 文档中双栏图表的标题位置

我无法让标题在双栏文档中的图形下方正确(左)隔开。这是使用 Elsevier 双栏模板。没有出现错误或警告,但标题的位置相当靠右,如下所示。标题应该从图形的左边缘开始。我尝试使用 \usepackage{caption}、\captionsetup 和 Google-fu 中的许多其他方法。

标题放错了

\documentclass[a4paper,fleqn]{cas-dc}

\usepackage[numbers]{natbib}
\usepackage{graphicx}

\begin{document}

\maketitle

\begin{figure*}[] 
  \includegraphics[width=\textwidth]{Diagram_v4.eps}
  \caption{\label{fig:Prototype_view} Caption stuff.Caption stuff.Caption stuff.Caption stuff.Caption stuff.Caption stuff.Caption stuff.}
\end{figure*}

\end{document}

平均能量损失

答案1

[]如果你删除标题后面的空白\begin{figure*}就好了。

答案2

\AtBeginDocument{\setlength{\FullWidth}{\textwidth}}在代码头处添加以固定\textwidth长度。

然后你就可以更好地控制你的浮点数: \begin{figure}[h!, align=\flushleft, width=\textwidth]

相关内容