我从下载了 Nature 样式文件这里但我在构建模型时看不到任何图像。你知道这是故意的还是我做错了什么吗?
如果您为任何《自然》期刊起草过 LaTeX 论文,我很乐意听取您的建议!
答案1
引用第 126-129 行nature.cls
:
%% The new figure environment defers printing of all figure captions
%% until the end of the document and prints them in sans serif font.
%% The \includegraphics command is ignored since Nature wants figures
%% as separate files.
答案2
你用\includegraphics
它们来拍照吗?如果是的话,似乎nature.cls
会故意忽略它们——从最后几行来看:
%% ignore all \includegraphics commands in the document
\AtBeginDocument{\let\includegraphics\NAT@ignore}
\newcommand{\NAT@ignore}[2][]{}
答案3
这是我的解决方案,打开nature.cls
文件并注释最后两行。
%\AtBeginDocument{\let\includegraphics\NAT@ignore}
%\newcommand{\NAT@ignore}[2][]{}
现在看来它可以起作用了。