"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행을 주석 처리한 후 그림이 포함되었습니다.

관련 정보