如何从另一篇文章中引用小节编号?

如何从另一篇文章中引用小节编号?

我们有第 [2] 条第 9.5 款。

我们可以通过以下方式提及此小节:

Please see in \S9.5 of [2] 

或者

Please see in \S9.5 of aricle [2]

1)我们有没有一条捷径:

Please see in \S9.5[2] 

2)我们是否可以在括号内只写章节编号而不写文章编号:

Please see in article [2] (see \S9.5)

或者我们必须在括号中写上文章编号,例如:

 Please see in article [2] (see \S9.5 of article [2])

答案1

您的问题对我来说不是太清楚,但我会尽力帮助您:以下是我所知的在引文中提及该部分的“正常”方式。供将来参考,请查看这个帖子这个帖子这样你的问题的质量就会提高。

% https://tex.meta.stackexchange.com/questions/4407

\documentclass{article}

% https://ctan.org/pkg/biblatex
\usepackage[style=authoryear-comp]{biblatex}
% \usepackage[style=numeric]{biblatex}
\addbibresource{\jobname.bib}


\begin{filecontents}{\jobname.bib}
@book{key,
  author = {Author, A.},
  year = {2001},
  title = {Title},
  publisher = {Publisher},
}
\end{filecontents}

\begin{document}

\begin{itemize}
    \item \cite[][Section~9.1]{key}
    \item \parencite[][Section~9.1]{key}  % biblatex manuel, 3.9.1 Standard Commands
    \item \textcite[][Section~9.1]{key} % biblatex manuel, 3.9.2 Style-specific Commands
\end{itemize}


\printbibliography

\end{document}

在此处输入图片描述

在此处输入图片描述

(使用\usepackage[style=numeric]{biblatex}

相关内容