如何用正确的符号引用一本书的子章节

如何用正确的符号引用一本书的子章节

我有一本书,我想在其中引用包含不同主题信息的几个不同页面,请参阅下面添加的当前书目部分。例如,我想在一个段落中引用第 1008-1014 页,在另一个段落中引用第 258 页。我见过一些人在引用这些内容时得到注释“70a”和“70c”,但我在这两个页面上只得到“70”,我不知道如何获得正确的引用。有人能帮忙吗?:)

假设这是参考文献 70:

@book{synteseenbok,
    author = {\text{Carey, F. A. and Sundberg, R. J.}},
    Edition = {5th},
    Publisher = {Springer: New York},
    Title = {Advanced organic synthesis. Part B: Reactions and Synthesis},
    Year = {2007},
    note = {a: 1008-1014, b: 1030-1032, c: 258}
}

答案1

引文实践因领域而异。在我熟悉的大多数领域中,您只需将书籍条目添加到参考书目一次,而无需任何页码引用。然后,您会在引文中直接给出页码引用(即当您引用书籍时)。

\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

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

\begin{filecontents}{\jobname.bib}
@book{synteseenbok,
  author    = {Carey, F. A. and Sundberg, R. J.},
  maintitle = {Advanced organic synthesis},
  title     = {Reactions and Synthesis},
  volume    = {B},
  year      = {2007},
  edition   = {5},
  publisher = {Springer},
  location  = {New York},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem \autocite[1008-1014]{synteseenbok}
ipsum \autocite[1030-1032]{synteseenbok}

\printbibliography
\end{document}

Lorem [1,第 1008-1014 页] ipsum [1,第 1030-1032 页]

相关内容