
答え1
article
以下のサンプルコードで使用されているようなLaTeXドキュメントクラスを使用すると仮定すると、キャプションパッケージでは、フォーマットの目的を達成する方法が 2 つ考えられます。
キャプションの左端からぶら下げインデントを適用する場合、含む「図」というラベルとそれに関連する番号については、
\captionsetup{format=plain,hangindent=5mm}
逆に、キャプションテキストのみにぶら下げインデントを適用する場合は、次のように実行することをお勧めします。
\captionsetup{format=hang,indention=5mm}
\documentclass{article} % or some other class that's compatible with the caption package
\usepackage{caption}
%% uncomment one of the next two lines:
\captionsetup{format=plain,hangindent=5mm}
%\captionsetup{format=hang,indention=5mm}
\usepackage{lipsum} % filler text
\begin{document}
\begin{figure}[ht]
\caption{\lipsum[1][1-3]} % three sentences of filler text
\end{figure}
\end{document}