Bibtex citestyle 没有改变作者年份和大写字母?

Bibtex citestyle 没有改变作者年份和大写字母?

我正在尝试获取按作者年份标记的参考文献列表,如此处提供 alpha 样本

我真的不知道如何展示我的输出样本,而不只是放一张截图。但我在参考资料部分得到的是:

    References
Tsankov, T. The Minimal Flows of $S_\infty$. Logic, Dynamics, and Their Interactions, Denton. 2012.

我正在寻找

        References
[Tsa12] Tsankov, T. The Minimal Flows of $S_\infty$. Logic, Dynamics, and Their Interactions, Denton. 2012.

即,它只是参考文献列表中缺少的标签。要清楚的是,文内引用工作正常,如果我省略“style”或“bibstyle”规范 \usepackage[backend=biber, bibstyle=authoryear, citestyle=alphabetic]{biblatex} (参见下面的代码),我会得到预期的数字索引。如果我指定“bibstyle = numeric”,它也可以正常工作。

我用过

     \usepackage[backend=biber, bibstyle=authortitle, citestyle=alphabetic]{biblatex}

还尝试将上面的“bibstyle”替换为“style”,但没有成功。完整的控制代码在这里:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{subfiles}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{a4wide}
\usepackage[english]{babel}
\usepackage[backend=biber, bibstyle=authortitle, citestyle=alphabetic]{biblatex}


\addbibresource{ref.bib}

\title{\textbf{dighj}}
\author{\textbf{fkgk:} dshjf \\ \textbf{Supervisor:} drjfdmj}
\date{}


\begin{document}
\maketitle
Testing here a \cite{topdyn} to see what comes out
\subfile{introduction.tex}


\printbibliography

\subfile{AppendixA.tex}

\end{document}

ref.bib相关部分的参考资料如下

@misc{topdyn,
    author = {T. Tsankov},
    title = {The Minimal Flows of S_\infty},
    howpublished = {Logic, Dynamics, and Their Interactions, Denton},
    year={2012}
}

答案1

你显然想要

\usepackage[backend=biber, style=alphabetic]{biblatex}

citestyle控制引用样式,bibstyle控制参考书目样式。您可以同时style设置citestyle和。这就是人们通常想要的。这就是为什么我建议尽可能多地使用和,并且仅在绝对必要时才使用和。bibstylestylebibstylecitestyle

相关内容