书目样式:对齐书目项目中的文本

书目样式:对齐书目项目中的文本

我正在撰写论文,但我遇到了参考书目项目中的行对齐问题,如下图所示:

在此处输入图片描述

我希望所有书目项目都与蓝线对齐。

我正在使用大学推荐的书目样式abntex2-num。我需要更改书目样式代码中的某些内容,但我不知道该怎么做。

该文件是:

\documentclass[a4paper,10pt,oneside]{scrbook}
\begin{document}

Citations \cite{lotfalian1985inertial}, \cite{liu2009application}, \cite{stott1974fast}  and \cite{tinney1967power}

\bibliographystyle{abntex2-num}
\bibliography{referencias}

\end{document}

书目样式为 abntex2-num.bst 的文件是这里

包含参考资料的文件referencias.bib是:

@article{lotfalian1985inertial,
    title={Inertial, governor, and AGC/economic dispatch load flow simulations of loss of generation contingencies},
    author={Lotfalian, M and Schlueter, R and Idizior, D and Rusche, P and Tedeschi, S and Shu, L and Yazdankhah, A},
    journal={IEEE Transactions on Power Apparatus and Systems},
    number={11},
    volume={PAS-104},
    pages={3020--3028},
    year={1985},
    publisher={IEEE}
}

@inproceedings{liu2009application,
    title={Application of the power flow calculation method to islanding micro grids},
    author={Liu, YH and Wu, ZQ and Lin, SJ and Brandon, NP},
    conference={{INTERNATIONAL CONFERENCE ON SUSTAINABLE POWER GENERATION AND SUPPLY}},
    pages={1--6},
    cyear={2009},
    ctitle={Proceedings [...]}, 
    caddress={Nanjing}
}

@article{stott1974fast,
    title={Fast decoupled load flow},
    author={Stott, Brian and Alsac, Of},
    journal={IEEE Transactions on Power Apparatus and Systems},
    volume={PAS-93},
    number={3},
    month=may,
    pages={859--869},
    year={1974}
} 

@article{tinney1967power,
    title={Power flow solution by Newton's method},
    author={Tinney, William F and Hart, Clifford E},
    journal={IEEE Transactions on Power Apparatus and Systems},
    volume={PAS-86},
    number={11},
    month=Nov,
    pages={1449--1460},
    year={1967},
    publisher={IEEE}
} 

我需要一个解决方案来改变书目样式文件中的几行代码。

我如何更改书目样式代码中的某些行以纠正格式?

相关内容