如何抑制 \thebibliography 中的数字

如何抑制 \thebibliography 中的数字

我想知道是否有人能帮助我?我对 \thebibliography 有疑问,我想隐藏数字,但不知道该怎么做。任何帮助都将不胜感激 :)

\documentclass{article}
\usepackage[utf8]{inputenc}

\begin{document}

xyz \cite{Ackerman}

\begin{thebibliography}{99}

\bibitem{Ackerman} Ackerman, E. (2017) Why the English Premier League Should Have Playoffs.  Balls.ie. Available at: https://www.balls.ie/football/premier-league-playoffs-364654 

\end{thebibliography}
\end{document}

答案1

如果我理解你的设置正确的话,你(a)将完全手动构建格式化的参考书目(b) 希望创建作者年份样式的引用标注而不是数字引用标注。

如果这种理解是正确的,我建议您 (a) 使用natbib选项加载引文管理包authoryear,以及 (b) 在可选参数中提供更多与引文相关的信息\bibitem。在可选参数中,列出作者和出版年份,将出版年份括在括号中,然后没有空间在作者姓名和 之间(year)

不过,理想情况下,您决定学习如何使用 BibTeX 并选择合适的参考书目样式,这样您就不必手动完成所有这些工作。

在此处输入图片描述

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[hyphens]{url}
\usepackage[authoryear,round]{natbib}

\begin{document}
textual citation: \citet{Ackerman}

parenthetic citation: \citep{Ackerman}

\begin{thebibliography}{9}

\bibitem[Ackerman(2017)]{Ackerman} Ackerman, E. (2017) Why the English Premier League Should Have Playoffs.  Balls.ie. Available at: \url{https://www.balls.ie/football/premier-league-playoffs-364654}

\end{thebibliography}
\end{document}

相关内容