如何引用从其他资源复制的表格?

如何引用从其他资源复制的表格?

我从网上复制了一个表格,我想引用该表格。我该怎么做?

答案1

使用

\caption[Text for the LOT, if needed]{The text over/under the tabular 
    (\small Copied from \url{http://any.where.org})}

批次:表格列表

online或者为参考书目创建一个条目并使用:

 \caption[Text for the LOT, if needed]{The text over/under the tabular~\cite{xyz}} 

答案2

一种方法是使用包copyrightbox

\documentclass{article}
    \usepackage{url}
    \usepackage{copyrightbox} % for copyright

\begin{document}

\begin{table}[!h]
    \centering
\caption[short caption, if needed]{Long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, long, caption.}
\copyrightbox[b]{
    \begin{tabular}{|c|c|c|}
    \hline
aaaaaaaaaaaaaaaaaaa & bbbbbbbbbbbbbbbbbbbbb & cccccccccccccccccccc \\
aaaaaaaaaaaaaaaaaaa & bbbbbbbbbbbbbbbbbbbbb & cccccccccccccccccccc \\
    \hline
    \end{tabular}
                }{source \url{http://tex.stackexchange.com/questions/289748/}}
    \end{table}
\end{document}

如果将表复制为图像,则不要使用表构造includegrahics{copied table image}

在此处输入图片描述

相关内容