
다음을 사용하여 이력서를 작성하는 데 문제가 있습니다.코마-현대CV패키지. 저는 TexnicCenter RC 1과 함께 MikTex 2.9를 실행하고 있습니다. MikTex와 함께 제공되는 패키지 관리자를 통해 패키지를 설치했습니다. 이 작업을 수행한 후 제공된 예제를 다운로드하여 열었습니다.http://ctan.org/pkg/koma-moderncvclassic. babel 및 csquotes의 옵션을 수정한 것 외에는 아무것도 건드리지 않았습니다. 컴파일할 때 다음과 같은 경고가 덜 표시됩니다.
LaTeX Warning: Reference `lastpage' on page 1 undefined on input line 138.
[1
{C:/Users/john.doe/AppData/Local/MiKTeX/2.9/pdftex/config/pdftex.map}]
LaTeX Warning: Reference `lastpage' on page 2 undefined on input line 148.
[2]
LaTeX Warning: Empty bibliography on input line 151.
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 154.
Package atveryend Info: Empty hook `AfterLastShipout' on input line 154.
(C:\Users\john.doe\Documents\Ansoegning\Skabelon\cvbasic.aux)
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 154.
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 154.
Package rerunfilecheck Info: File `cvbasic.out' has not changed.
(rerunfilecheck) Checksum: E64A0148F1EE05FA86DCDCCFFE737411;205.
LaTeX Warning: There were undefined references.
Package biblatex Warning: Please (re)run Biber on the file:
(biblatex) cvbasic
(biblatex) and rerun LaTeX afterwards.
결과적으로 올바른 페이지 번호를 얻지 못하는 것 같습니다. 나는 pdflatex
, bibtex
, pdflatex
, 을(를) 실행 중입니다 pdflatex
. 단계 에서 bibtex
오류가 발생 I found no \citation commands---while reading...
하고I found no \bibdata commands---while reading...
I found no \bibstyle commands---while reading...
혹시 비슷한 문제를 겪으신 분 계시고, 해결 방법은 무엇이었나요?
답변1
경고 메시지를 주의 깊게 읽는 것이 매우 중요합니다. 귀하의 경우에는
Package biblatex Warning: Please (re)run Biber on the file:
(biblatex) cvbasic
(biblatex) and rerun LaTeX afterwards.
biblatex
이는 옵션을 사용하여 패키지를 로드했음을 의미합니다 backend=biber
.
따라서 다음과 같이 컴파일해야 합니다.
(pdf)latex
biber
(pdf)latex
(pdf)latex
대신에 bibtex
. 로 컴파일하려면 bibtex
옵션을 backend
로 변경해야 합니다 bibtex
.