
두 줄 이상을 차지하는 그림이나 표의 캡션을 작성할 때마다 문서에 다음과 같이 나타납니다.
Figure 6.2: Polarization curves at 750C for 3P_{CO}=P_{H_{2}} at the
initial water concentrations of 3.2, 6.4, 9.6, 15, 20 and 25%.
그리고 나는 그것이 다음과 같이 나타나기를 원합니다.
Figure 6.2: Polarization curves at 750C for 3P_{CO}=P_{H_{2}} at the
initial water concentrations of 3.2, 6.4, 9.6, 15, 20 and 25%.
어떻게 해야 하나요?
감사해요,
라몬
답변1
귀하가 설명하는 행동은 KOMA 수업의 기본값입니다. 원하는 결과를 얻으려면 \setcapindent
다음 과 같이 설정하여 이를 변경할 수 있습니다 .0pt
\documentclass{scrartcl}
\setcapindent{0pt}
\begin{document}
\begin{figure}
\centering
A
\caption{Test figure with some addtional text spanning more than one line just for the example and some more text}
\end{figure}
\begin{table}
\centering
B
\caption{Test table with some addtional text spanning more than one line just for the example and some more text}
\end{table}
\end{document}