索引问题(see also 代替 see)

索引问题(see also 代替 see)

您好,我想在我的论文索引中添加一些含义相同的术语。例如“向量空间”和“线性空间”。我希望它们显示为“向量空间,参见线性空间”。我正在使用 amsbook,对于这样的例子,我正在编写\index{vector space|see{linear space}}。但是,它一直显示为“另见”而不是“参见”。我不知道这是否是一个常见问题,但我在网络上找不到解决方案。这是我使用的代码,没有任何章节文件 - 它仍然可以运行。

%-----------------------------------------------------------------------
% Beginning of amsbook.template
%-----------------------------------------------------------------------
%
%    AMS-LaTeX v.2 driver file template for use with amsbook
%
%    Remove any commented or uncommented macros you do not use.

\documentclass{amsbook}

%    For use when working on individual chapters
%\includeonly{}

%    Include referenced packages here.
\usepackage{amssymb,amscd,latexsym,amsxtra}
\usepackage[mathscr]{eucal}

\newtheorem{thm}{Theorem}[chapter]
\newtheorem{cor}[thm]{Corollary}
\newtheorem{lem}[thm]{Lemma}
\newtheorem{prop}[thm]{Proposition}
\newtheorem{ax}{Axiom}


\theoremstyle{definition}
\newtheorem{defn}[thm]{Definition}
\newtheorem{exmp}[thm]{Example}
\newtheorem{xca}[thm]{Exercise}
\newtheorem{prob}[thm]{Problem}

\theoremstyle{remark}
\newtheorem{rem}[thm]{Remark}
\newtheorem{claim}{Claim}
\newtheorem{case}{Case}
\newtheorem*{notation}{Notation}

\numberwithin{section}{chapter}
\numberwithin{equation}{chapter}
\numberwithin{figure}{chapter}
\numberwithin{table}{chapter}

%    For a single index; for multiple indexes, see the manual
%    "Instructions for preparation of papers and monographs:
%    AMS-LaTeX" (instr-l.pdf in the AMS-LaTeX distribution).
\makeindex

\begin{document}

\frontmatter

\title{}

%    Remove any unused author tags.

%    author one information
\author{}
\address{}
\curraddr{}
\email{}
\thanks{}

%    author two information
\author{}
\address{}
\curraddr{}
\email{}
\thanks{}

\subjclass[2000]{Primary }
%    For books to be published after 1 January 2010, you may use
%    the following version:
%\subjclass[2010]{Primary }

\keywords{}

\date{}

\begin{abstract}
\end{abstract}

\maketitle

%    Dedication.  If the dedication is longer than a line or two,
%    remove the centering instructions and the line break.
%\cleardoublepage
%\thispagestyle{empty}
%\vspace*{13.5pc}
%\begin{center}
%  Dedication text (use \\[2pt] for line break if necessary)
%\end{center}
%\cleardoublepage

%    Change page number to 6 if a dedication is present.
\setcounter{page}{4}

\tableofcontents

%    Include unnumbered chapters (preface, acknowledgments, etc.) here.
\include{}

\mainmatter

\index{Hello|see{Hi}}

%    Include main chapters here.
\include{}

\appendix
%    Include appendix "chapters" here.
\include{}

\backmatter
%    Bibliography styles amsplain or harvard are also acceptable.
\bibliographystyle{amsalpha}
\bibliography{}
%    See note above about multiple indexes.
\printindex

\end{document}

答案1

把这句话放入序言中。

\renewcommand*{\seename}{see}

答案2

该类amsbook在索引中指定“查看”条目的方式略有不同。以下是相关行

1314 \newcommand*\seeonlyname{see}
1315 \newcommand*\seename{see also}
1316 \newcommand*\alsoname{see also}
1317 \newcommand*\seeonly[2]{\emph{\seeonlyname} #1}
1318 \newcommand*\see[2]{\emph{\seename} #1}
1319 \newcommand*\seealso[2]{\emph{\alsoname} #1}

根据芭芭拉·比顿的定义\seename被认定为错误,但为时已晚。因此,AMS 课程增加了\seeonly

因此,如果您必须向 AMS 提交文件,最好使用

\index{Hello|seeonly{Hi}}

因为\renewcommand{\seename}{see}可能会被编辑拒绝。对于个人使用,

\renewcommand{\seename}{see}

非常好。

相关内容