我已经生成了一个最小的可重现示例,但我无法让它按我想要的方式工作。
当我运行此示例时,它基本上会用直线替换参考列表中的作者姓名。这是设计使然吗?如果我在任何作者姓名中添加任何字母,它就会按照我想要的方式显示。第一个参考是通用书籍参考,而第二个是页面参考。
这是 tex 文件的内容
\documentclass[12pt]{article}
\usepackage{authblk}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage[swedish]{babel}
\usepackage[style=ieee]{biblatex}
\addbibresource{references.bib}
\begin{document}
\title{Projektrapport}
\author{
Name 1, Name 2, Name 3
}
\date{2020-XX-YY}
\maketitle
\section*{Introduktion}
Hello \cite{stokastik}
World \cite{stok1}
\printbibliography
\end{document}
这是 references.bib 文件的内容
@book{stokastik,
author = "Sven Erick Alm and Tom Britton",
maintitle = "Stokastik Sannolikhetsteori och statistikteori med tillämpningar",
volume = "1",
title = "Stokastik",
publisher = "Liber",
year = "2018",
ISBN = "978-91-47-05351-3",
}
@inbook{stok1,
author = "Sven Erick Alm and Tom Britton",
title = {Stokastik Sannolikhetsteori och statistikteori med tillämpningar},
volume = "1",
publisher = "Liber",
year = "2018",
pages = {72-89,69, 112,22},
edition = "second",
ISBN = "978-91-47-05351-3",
}