使用 natbib 删除参考文献中的文章标题

使用 natbib 删除参考文献中的文章标题

我正在使用 W7 上的 Miktex 2.9 通过 TEXstudio 撰写论文。我想删除参考书目输出中的标题,并将其从

Perez-Lombard, L., Ortiz, J., 和 Pout, C. (2008). 建筑能耗信息综述。能源与建筑,40(3):394-398。

Perez-Lombard, L., Ortiz, J., 和 Pout, C. (2008). 能源与建筑, 40(3):394-398。

我已经尝试了几种建议的方法,例如更改为科学书目样式、修改 apalike.bst 样式、使用 makebst 等等……但什么都没发生。我想我遵循了互联网上所有可用的链接,但什么也没发生……请帮帮我!!!

\documentclass[twoside]{ecsthesis}      % Use the Thesis Style
\graphicspath{{../Figures/}}   % Location of your graphics files

\usepackage[sort &compress]{natbib}  % Use Natbib style for the refs.\part{title}

\begin{document}


\chapter{Hello World}
Hello World
\cite{perez2008review}

%--------------------------------------------------------------------------------------
%Biblio
%--------------------------------------------------------------------------------------
\backmatter
\bibliographystyle{apalike}
\bibliography{ECS}
\end{document}

参考书目文件 ECS.bib 的位置

@article{perez2008review,
  title={A review on buildings energy consumption information},
  author={Perez-Lombard, Luis and Ortiz, Jose and Pout, Christine},
  journal={Energy and buildings},
  volume={40},
  number={3},
  pages={394--398},
  year={2008},
  publisher={Elsevier}
}

答案1

所以这对我有用:

1)使用 makebst 创建新样式

2)将其保存在适当的文件夹中(我使用了本地文件夹),该文件夹已包含在 miktex 根目录中

3)更新 miktex 中的 FNDB

4)在Texworks中打开我的.tex文件

5)pdflatex->bibtex->pdflatex->pdflatex

完成后,使用 texstudio 创建的新参考书目条目也会以新样式进行更新。

所以在结束这个问题之前有人能告诉我:这是 Texstudio 没有编译新样式或类似的问题吗?

相关内容