在「BioMed Central 的 TeX 範本」中包含圖形

在「BioMed Central 的 TeX 範本」中包含圖形

我正在使用“BioMed Central 的 TeX 模板”(“BioMedCentral_article(ZIP 格式)- 首選模板”),New+Content+Item.zip - 您可以透過 WWW 搜尋找到它。我加到空白行 56

\usepackage{graphics}

並在第 376 行和第 377 行之間(在環境內table)新增以下行

\includegraphics{Table.pdf}

我希望嵌入 PDF 圖,但添加了文字「Table.pdf」。如何將 PDF 包含在內?

答案1

哦,我在模板文件本身(bmc_article.tex)中發現了一個提示:

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%                                             %%
%%  If you wish to display your graphics for   %%
%%  your own use using includegraphic or       %%
%%  includegraphics, then comment out the      %%
%%  following two lines of code.               %%
%%  NB: These line *must* be included when     %%
%%  submitting to BMC.                         %%
%%  All figure files must be submitted as      %%
%%  separate graphics through the BMC          %%
%%  submission process, not included in the    %%
%%  submitted article.                         %%
%%                                             %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\def\includegraphic{}
\def\includegraphics{}

註解掉第 72 行和第 73 行後,該數字被包含在內。

相關內容