koma-moderncv 使用時のトラブル

koma-moderncv 使用時のトラブル

履歴書を書くのに苦労していますコマモダン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.

結果として、ページ番号が正しく付かないようです。、、、を実行していますpdflatexbibtexステップでエラーが発生し、pdflatexpdflatexbibtexI 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

関連情報