引用/参考外部图像/文档文件的正确方法是什么?

引用/参考外部图像/文档文件的正确方法是什么?

我正在用乳胶写一篇论文,有一些表格和图像文件太大,无法放在页面上,所以我想将它们作为额外的文件包含在论文中,并通过参考书目引用它们(我使用 BibTex)。

有没有“正确”的方法来做到这一点? .bib 文件中引用外部文件的条目看起来会是什么样子?到目前为止,我只引用了其他论文,我找不到如何引用外部文件。

答案1

下面是我引用外部文件的一个例子。

% arara: pdflatex
% arara: bibtex
% arara: pdflatex
\documentclass{article}
\usepackage{filecontents}
\usepackage[demo]{graphicx}
\usepackage{natbib}
\usepackage{url}
\begin{filecontents*}{test.bib}
@MISC{WikipediaEN:AFM,
    author = {{Wikipedia, the free encyclopedia}},
    title = {Atomic force microscopy},
    year = {2013},
    note = {[Online; accessed April 27, 2013]},
    url = {https://en.wikipedia.org/wiki/File:Atomic_force_microscope_block_diagram.svg}
}
\end{filecontents*}
\begin{document}
\begin{figure}[htpb]
    \centering
    \includegraphics[width=\textwidth,height=6cm,keepaspectratio=true]{AFM_Wikipedia}
    \caption{
        Sketch of the functionality principle of an AFM, from \cite{WikipediaEN:AFM}. The laser beam hits the cantilever. As the cantilever is bended because of the interaction forces of the tip with the sample the reflection angle changes. This change is recognized by the photo diode and translated into a picture by the detector.
    }
    \label{fig:basics AFM sketch}
\end{figure}

\bibliographystyle{plainnat}
\bibliography{test}
\end{document}

enter image description here

相关内容