履歴書に出版物リストを印刷するにはどうすればいいですか?

履歴書に出版物リストを印刷するにはどうすればいいですか?
% LaTeX resume using res.cls
\documentclass[margin]{res}
%\usepackage{helvetica} % uses helvetica postscript font (download helvetica.sty)
%\usepackage{newcent}   % uses new century schoolbook postscript font 
\usepackage[T1]{fontenc}
%\usepackage{kpfonts,baskervald}
\usepackage{ebgaramond}
\usepackage{comment}
\usepackage{bibentry}

\RequirePackage{filecontents}
\begin{filecontents}{refs1.bib}
@inproceedings{McGoldrick:2016:WCR:2999504.3001118,
    author = {Mc Goldrick, Ciar\'{a}n and Segura, Enrique and Wu, Tianyan and Gerla, Mario},
    title = {WaterCom: Connecting Research Configurations with Practical Deployments: A Multilevel, Multipurpose Underwater Communications Test Platform},
    booktitle = {Proceedings of the 11th ACM International Conference on Underwater Networks \& Systems},
    series = {WUWNet '16},
    year = {2016},
    isbn = {978-1-4503-4637-5},
    location = {Shanghai, China},
    pages = {8:1--8:2},
    articleno = {8},
    numpages = {2},
    url = {http://doi.acm.org/10.1145/2999504.3001118},
    doi = {10.1145/2999504.3001118},
    acmid = {3001118},
    publisher = {ACM},
    address = {New York, NY, USA},
}

@inproceedings{Goldrick:2015:WMM:2831296.2831336,
    author = {Goldrick, Ciar\'{a}n Mc and Matney, Mark and Segura, Enrique and Noh, Youngtae and Gerla, Mario},
    title = {WaterCom: A Multilevel, Multipurpose Underwater Communications Test Platform},
    booktitle = {Proceedings of the 10th International Conference on Underwater Networks \& Systems},
    series = {WUWNET '15},
    year = {2015},
    isbn = {978-1-4503-4036-6},
    location = {Arlington, VA, USA},
    pages = {14:1--14:8},
    articleno = {14},
    numpages = {8},
    url = {http://doi.acm.org/10.1145/2831296.2831336},
    doi = {10.1145/2831296.2831336},
    acmid = {2831336},
    publisher = {ACM},
    address = {New York, NY, USA},
}
\end{filecontents}

\usepackage[backend=biber]{biblatex}
\addbibresource{refs1.bib}

\begin{document}
\begin{resume}
\section{PUBLICATIONS}
\printbibliography{refs1}

\end{resume}
\end{document}

答え1

クラス内でコマンドを発行することで、ファイルres.clsの使用をブロックします。つまり、そのままでは使用できないということです。.aux\nofilesどれでも参考文献ソフトウェアを使用します。

おそらく、まったく別のクラスを使用するか、いくつかのパッケージを使用して CV をフォーマットすることをお勧めしますarticle。ただし、引き続き使用したい場合は、それres.clsが可能です。

編集res.cls

のコピーを作成しres.cls、名前を変更します(例: )res-bib.cls。クラスの203行目(CTANのバージョン) は次のように読み替えてください。

\nofiles %  resume's don't need .aux files

クラスのコピーでこの行を削除するかコメントアウトします。(コメント内のアポストロフィも削除されるため、削除することをお勧めします...)

使用しbiblatexないでくださいbibentry

biblatex次に、変更したクラスを使用して、パブリケーションを追加する方法を示します。

% LaTeX resume using res.cls
\documentclass[margin]{res-bib}
\usepackage[utf8]{inputenc} 
\usepackage[T1]{fontenc}
\usepackage{ebgaramond}

\RequirePackage{filecontents}
\begin{filecontents}{\jobname.bib}
@inproceedings{McGoldrick:2016:WCR:2999504.3001118,
    author = {Mc Goldrick, Ciar\'{a}n and Segura, Enrique and Wu, Tianyan and Gerla, Mario},
    title = {WaterCom: Connecting Research Configurations with Practical Deployments: A Multilevel, Multipurpose Underwater Communications Test Platform},
    booktitle = {Proceedings of the 11th ACM International Conference on Underwater Networks \& Systems},
    series = {WUWNet '16},
    year = {2016},
    isbn = {978-1-4503-4637-5},
    location = {Shanghai, China},
    pages = {8:1--8:2},
    articleno = {8},
    numpages = {2},
    url = {http://doi.acm.org/10.1145/2999504.3001118},
    doi = {10.1145/2999504.3001118},
    acmid = {3001118},
    publisher = {ACM},
    address = {New York, NY, USA},
}

@inproceedings{Goldrick:2015:WMM:2831296.2831336,
    author = {Goldrick, Ciar\'{a}n Mc and Matney, Mark and Segura, Enrique and Noh, Youngtae and Gerla, Mario},
    title = {WaterCom: A Multilevel, Multipurpose Underwater Communications Test Platform},
    booktitle = {Proceedings of the 10th International Conference on Underwater Networks \& Systems},
    series = {WUWNET '15},
    year = {2015},
    isbn = {978-1-4503-4036-6},
    location = {Arlington, VA, USA},
    pages = {14:1--14:8},
    articleno = {14},
    numpages = {8},
    url = {http://doi.acm.org/10.1145/2831296.2831336},
    doi = {10.1145/2831296.2831336},
    acmid = {2831336},
    publisher = {ACM},
    address = {New York, NY, USA},
}
\end{filecontents}

\usepackage[backend=biber,style=authoryear]{biblatex}
\addbibresource{\jobname.bib}

\begin{document}
\nocite{*}
\begin{resume}

% we need heading=bibnumbered here to tell biblatex to use \section 
% not \section* (which will produce a spurious * with this class)
%
\printbibliography[title=PUBLICATIONS,heading=bibnumbered]


\end{resume}

\end{document}

コードの出力

関連情報