引用章节中某个节的标准方法是什么?

引用章节中某个节的标准方法是什么?

目前,我引用第 Y 章中的第 X 节,如下所示:

In Chapter Y, Section X we studied the problem of...

或者:

In Section Y.X we studied the problem of...

我想知道以上是否正确。如果不正确,交叉引用不同章节中的节的正确方法是什么?

答案1

只需使用

\chapter{Something}

\section{Something about something\label{sabouts}}

 ''''

\chapter{Different}

 see section \ref{sabouts}

通常这将产生一个由两部分组成的数字,例如5.2但它可以产生单一的数字,引用样式的选择不应该针对每个参考文献进行,而应该由文档类来设置,它可以决定章节编号是否从每章 1 开始或继续,并且可以决定 LaTeX 使用的每个计数器的引用形式。

答案2

或者您可以使用fancyref提供更多灵活性的...

\documentclass{book}
\usepackage{fancyref}
\begin{document}
  \chapter{A chapter}\label{chap:a}
  A regular \verb|\ref{sec:bb}| to section \ref{sec:bb}, which required me to type \verb|section|.

  A fancier \verb|\fref{sec:bb}| to \fref{sec:bb}.
  \Fref{sec:ba} needs to be capitalised, so use \verb|\Fref{sec:ba}|.

  \section{A section}\label{sec:aa}
  \chapter{Another chapter}\label{chap:b}
  This is a new chapter, different from \fref{chap:a}.
  It includes \fref{sec:ba} and \fref{sec:bb}, whereas \fref{chap:a} included only \fref{sec:aa}.
  \section{Another section}\label{sec:ba}
  This is a section in \fref{chap:b}.
  \section{Yet another section}\label{sec:bb}
  This refers to \fref{chap:a}.
\end{document}

第 1 章中的参考文献 第 2 章中的参考文献

请注意,当引用的是同一页时,将省略“在页面上...”。如果您喜欢不同的格式,您可以非常轻松地进行配置。(例如,我完全消除了“在页面上...”,因为我发现它是不必要的混乱。)

相关内容