参考文献标题未出现在参考书目页面 texmaker

参考文献标题未出现在参考书目页面 texmaker

我在定义报告的参考文献时遇到问题。前 6 个参考文献中未出现参考文献的名称。代码如下:

@INPROCEEDINGS{Germanyenergiewende,
  title = {{Germany's Energiewende – The Easy Guide}},
  url = {https://www.cleanenergywire.org/easyguide#:~:text=Timeline-,What%20is%20the%20Energiewende%3F,energies%20in%20the%20power%20sector},
  urldate = {2020-10-13},

}

@INPROCEEDINGS{Germanygreenhouse,
  title = {Germany’s greenhouse gas emissions and energy transition targets},
  url = {https://www.cleanenergywire.org/factsheets/germanys-greenhouse-gas-emissions-and-climate-targets},
  urldate = {2020-10-13},

}
%ElectricVehicles
@INPROCEEDINGS{3,   
  title = {Electric Vehicles Charging Infrastructure},
  url = {https://www.gtai.de/gtai-en/invest/industries/energy/electric-vehicles-charging-infrastructure-65212},
  urldate = {2020-10-13},

}
%ChargingInfrastructure
@BOOK{4,
  title = {Charging Infrastructure for Electric Vehicles in Germany},
  author ={German National Platform for Electric Mobility (NPE) Berlin},
  volume={33},
  year={2015},
  url = {http://nationale-plattform-elektromobilitaet.de/fileadmin/user_upload/Redaktion/AG3_Statusbericht_LIS_2015_engl_klein_bf.pdf},
  urldate = {2020-10-10},

}
% A dynamic charging strategy with hybrid fast charging station for electric vehicles
@INPROCEEDINGS{5,
  title = {A dynamic charging strategy with hybrid fast charging station for electric vehicles},
  url = {https://www.x-mol.com/paper/1254455835037163520?recommendPaper=1281088749953531904},
  urldate = {2020-10-14},

}

模拟代码时我得到的结果是: 书目代码结果

答案1

请编译此代码。使用biblatexbiber。应该编译 4-5 次,直到 LaTeX 适合所有内容并且不再出现未定义引用的警告。

如果您的配置不能自动执行此操作,请手动执行。

参考文献看起来不错(biber正常结束,没有投诉)。您的文件中只有五个参考文献,而不是六个。

出去

% !TeX TS-program = pdflatex

\documentclass[12pt, a4paper]{report}   
\usepackage[english]{babel} 

\usepackage[%
backend=biber,
natbib=true,
style=ieee,
]{biblatex} 

\begin{filecontents*}[overwrite]{\jobname49.bib}        
@INPROCEEDINGS{Germanyenergiewende,
    title = {{Germany's Energiewende – The Easy Guide}},
    url = {https://www.cleanenergywire.org/easyguide#:~:text=Timeline-,What%20is%20the%20Energiewende%3F,energies%20in%20the%20power%20sector},
        urldate = {2020-10-13},         
    }
    
    @INPROCEEDINGS{Germanygreenhouse,
        title = {Germany’s greenhouse gas emissions and energy transition targets},
        url = {https://www.cleanenergywire.org/factsheets/germanys-greenhouse-gas-emissions-and-climate-targets},
        urldate = {2020-10-13},         
    }
    %ElectricVehicles
    @INPROCEEDINGS{3,   
        title = {Electric Vehicles Charging Infrastructure},
        url = {https://www.gtai.de/gtai-en/invest/industries/energy/electric-vehicles-charging-infrastructure-65212},
        urldate = {2020-10-13},         
    }
    %ChargingInfrastructure
    @BOOK{4,
        title = {Charging Infrastructure for Electric Vehicles in Germany},
        author ={German National Platform for Electric Mobility (NPE) Berlin},
        volume={33},
        year={2015},
        url = {http://nationale-plattform-elektromobilitaet.de/fileadmin/user_upload/Redaktion/AG3_Statusbericht_LIS_2015_engl_klein_bf.pdf},
        urldate = {2020-10-10},         
    }
    % A dynamic charging strategy with hybrid fast charging station for electric vehicles
    @INPROCEEDINGS{5,
        title = {A dynamic charging strategy with hybrid fast charging station for electric vehicles},
        url = {https://www.x-mol.com/paper/1254455835037163520?recommendPaper=1281088749953531904},
        urldate = {2020-10-14},         
    }

\end{filecontents*}

\addbibresource{\jobname49.bib}

\begin{document}
    
See \citep{Germanyenergiewende}  and \citep{Germanygreenhouse} and  \citep{3}  and \citep{4}    and     \citep{5} 
    
\printbibliography
\end{document}

相关内容