为什么书名没有显示在这里?

为什么书名没有显示在这里?

为什么 booktitle 不显示在这里?这正常吗?

在此处输入图片描述

\documentclass[journal]{IEEEtran}
\usepackage[caption=false,font=normalsize,labelfont=sf,textfont=sf]{subfig}


\begin{document}

\begin{filecontents*}{bibi.bib}
@inbook{Tarkoma, place={Cambridge}, title={Introduction}, DOI={10.1017/CBO9781107326279.002}, booktitle={Smartphone Energy Consumption: Modeling and Optimization}, publisher={Cambridge University Press}, author={Tarkoma, Sasu and Siekkinen, Matti and Lagerspetz, Eemil and Xiao, Yu}, year={2014}, pages={3–22}}
\end{filecontents*}
\newpage
%
\nocite{*}
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,bibi.bib}

\vspace{11pt}
\end{document}

答案1

使用@incollection

b

% !TeX TS-program = pdflatex

\documentclass[journal]{IEEEtran}
    
\begin{filecontents*}{bibi.bib}
    @incollection{Tarkoma,
        address={Cambridge}, 
        title={Introduction}, 
        DOI={10.1017/CBO9781107326279.002}, 
        booktitle={Smartphone Energy Consumption: Modeling and Optimization},
        publisher={Cambridge University Press}, 
        author={Sasu Tarkoma  and  Matti Siekkinen and Eemil Lagerspetz  and Yu Xiao}, 
        year={2014}, 
        pages={3–22}
    }
\end{filecontents*}

\begin{document}
    Some text.

    \nocite{*}
    \bibliographystyle{IEEEtran}
    \bibliography{IEEEabrv,bibi.bib}
    

\end{document}

相关内容