参考书目 LaTeX 等

参考书目 LaTeX 等

请问,我将使用哪个乳胶书目来引用,例如 [mashroom et al. 2008],并且我希望 2008 年以蓝色“超链接”显示。谢谢

答案1

在此处输入图片描述

您的问题不清楚,因为您没有明确说明您想要哪种书目样式。假设您想使用natbibwith IEEEtranN,那么这是一个很好的起点,可以让您了解它的工作原理

\begin{filecontents*}{sample.bib}
@article{aldaoudeyeh2016,
    title={{Photovoltaic-battery scheme to enhance PV array characteristics in partial shading conditions}},
    author={Aldaoudeyeh, Al-Motasem I},
    journal={IET Renewable Power Generation},
    volume={10},
    number={1},
    pages={108--115},
    year={2016},
    publisher={IET}
}
@ARTICLE{wu2017,
    title={{Assessing Impact of Renewable Energy Integration on System Strength Using Site-Dependent Short Circuit Ratio}},
    author={Wu, Di and Li, Gangan and Javadi, Milad and Malyscheff, Alexander M and Hong, Mingguo and Jiang, John Ning},
    journal={IEEE Transactions on Sustainable Energy},
    year={2017},
    publisher={IEEE}
}
@article{wu2019,
    title={A method to identify weak points of interconnection of renewable energy resources},
    author={Wu, Di and Aldaoudeyeh, Al Motasem and Javadi, Milad and Ma, Feng and Tan, Jin and Jiang, John N and others},
    journal={International Journal of Electrical Power \& Energy Systems},
    volume={110},
    pages={72--82},
    year={2019},
    publisher={Elsevier}
}
\end{filecontents*}

\documentclass[]{book}

\usepackage[x11names]{xcolor}

\usepackage[square]{natbib} % natbib is very common and reliable bibliography management package

\usepackage{hyperref}
\hypersetup{citecolor=DodgerBlue3, citebordercolor=DodgerBlue3, colorlinks=true} % link color of citations goes here


\begin{document}

\citep{aldaoudeyeh2016} % \citep is used to meet the style you want [Author et al., year]

\citep{aldaoudeyeh2016,wu2017}

\citep{aldaoudeyeh2016,wu2019,wu2017}

\newpage
\bibliographystyle{IEEEtranN} % style of bibliography (here you specify that you want authoryear or numeric citation)
\bibliography{sample} % defines the file that contains information about the article you cite

\end{document}

笔记:您需要使用 .bib 文件。您可以使用filecontents环境创建它,也可以将该文件放在您使用的 .tex 文件的同一目录中。Google Scholar、期刊和会议为文章和会议记录提供 BibTeX 样式信息。

此外,您使用的 LaTeX 文件将生成一组文件,其名称与您使用的“.tex”文件非常相似,并且位于同一目录中。如果您想更改参考书目样式,除非您删除类型为“.bbl”且名称与您的“.tex”文件相同的文件,否则更改通常不会生效

相关内容