Elsevier 문서의 이중 열 그림에 대한 캡션 배치

Elsevier 문서의 이중 열 그림에 대한 캡션 배치

이중 열 문서의 그림 아래 캡션을 적절한(왼쪽) 간격으로 배치할 수 없습니다. 이는 Elsevier 이중 열 템플릿을 사용하고 있습니다. 오류나 경고는 없지만 아래와 같이 캡션 배치가 상당히 오른쪽에 있습니다. 캡션은 그림의 왼쪽 가장자리에서 시작되어야 합니다. Google-fu를 통해 \usepackage{caption}, \captionsetup 및 기타 여러 가지 방법을 사용해 보았습니다.

캡션 위치가 잘못됨

\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}

MWE

답변1

캡션 []이후에 공백을 제거하면 괜찮을 것입니다.\begin{figure*}

답변2

\AtBeginDocument{\setlength{\FullWidth}{\textwidth}}길이 를 수정하려면 코드 헤더에 추가하세요 \textwidth.

그러면 수레를 더 잘 제어할 수 있습니다. \begin{figure}[h!, align=\flushleft, width=\textwidth]

관련 정보