我正在努力将两行标题居中。我正在使用memoir
,并且我希望第二行是我从哪里获得该图的参考。我对该图使用了以下代码:
\begin{figure}[h!]
\centering
\includegraphics[width = 16cm]{figs/123.pdf}
\caption{The Figure 123 \newline {\footnotesize \textit{Adapted from \cite{DuToit123}}} }
\label{fig:123}
\end{figure}
我还包括了以下内容:
\captionnamefont{\small \sc}
\captionstyle[\centering]{\centering}
但它不想将两条线居中(我添加了输出的屏幕截图)。
答案1
memoir
适用于caption
包裹然后你可以使用以下方法分离出你的常规\caption
方案和一些引用方案:\figuresource
\caption*
\documentclass{memoir}
\usepackage{graphicx,caption}
\newcommand{\figuresource}[1]{%
\par\vspace*{-\abovecaptionskip}
\caption*{\footnotesize\itshape #1}}
\captionsetup{
labelfont={small,sc},
textfont=small,
justification=centering}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=15em]{example-image}
\caption{The Figure 123}
\figuresource{Adapted from ABC}
\end{figure}
\end{document}