我可以在引用中生成斜线,但不知道如何在参考标签中生成斜线。所需的参考样式如图所示。测试代码:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{myxyz.bib}
@article{xyz,
author = "Anne Author",
title = "Thoughts",
journal= "Circularity Today",
volume = 1,
number = 2,
pages = "3-4",
year = 5001,
}
\end{filecontents}
\bibliographystyle{ieee}
\makeatletter
\renewcommand{\@biblabel}[1]{#1.}
\makeatother
\usepackage{natbib}
\bibpunct{/}{/}{;}{n}{}{,}
\begin{document}
\noindent
\cite{xyz}
\bibliography{myxyz}
\end{document}
答案1
来自记录natbib
,
参考文献中的数字列表格式也可以通过重新定义从默认的 [32] 更改
\bibnumfmt
,例如
\renewcommand{\bibnumfmt}[1]{\textbf{#1}:}
实现三十二: 反而。
因此,正如问题评论所指出的那样,
\renewcommand{\bibnumfmt}[1]{/#1/}
满足您的要求。