我想将我的图形和/或表格“来源”放置在本文所附图片中,但我不知道该怎么做?你能帮我吗
答案1
该copyrightbox
软件包似乎可以完成这项工作。可选参数允许将版权文本放置在左侧、右侧(默认,旋转)或版权框下方。出于某种原因,似乎需要对居中字幕进行小幅修正。
对于表格,该threeparttable
包也可以与环境一起使用tablenotes
,但measuredfigure
如果将标题放在多于图。
第一个解决方案的代码示例:
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{ebgaramond}
\usepackage{lipsum,graphicx}
\usepackage[x11names]{xcolor}
\usepackage{caption, makecell, copyrightbox}
\captionsetup{justification = centering}
\setcellgapes{6pt}
\begin{document}
\begin{figure*}[!h]
\centering
\caption{Le déjeuner en fourrure\,\\\textit{Meret Oppenheim}(1914--2005)}
\copyrightbox[b]{\includegraphics[scale = 1.1]{dejeuner1}}{Source: Google}
\end{figure*}
\vskip1cm
\begin{table}[!h]
\centering\sffamily
\captionsetup{font = sf}
\caption{Matrix Important/Urgent\,}
\makegapedcells
\copyrightbox[b]{\begin{tabular}{|l|c|c|}
\hline
Labels & Urgent & Not urgent\\
\hline
Important & 55\,\% & 25\,\%\\
\hline
Not important & 20\,\% & 0\,\%\\
\hline
\end{tabular}}{Source: Google}
\end{table}
\end{document}
答案2
未经测试,因为您没有提供 MWE,而是提供了我使用的简化版代码。将其添加xparse
到您在序言中加载的包中。
\DeclareDocumentCommand \imgsrc { O {Source} +m }{%
\footnotesize #1:\thinspace
#2\par}
然后你可以说
\begin{figure}
\caption{Stuff}
stuff
\imgsrc{Fine Images}
\end{figure}
或者
\imgsrc[Data source]{Fine Data}