反向引用问题:3-8,而不是 3,4,5,6,7,8

反向引用问题:3-8,而不是 3,4,5,6,7,8

请考虑以下引用样式:

在此处输入图片描述

我希望将其显示为“1 和 3-8”,而不是上面的内容。有什么建议吗?我希望 3 和 8 分别链接到第 3 页和第 8 页。事实上,不再有指向第 4-7 页的直接链接。

添加:我正在使用以下内容:

\usepackage[backref=page]{hyperref}  
\usepackage[sort]{natbib}   
\hypersetup{   
    colorlinks=true,         
    allcolors=blue       
} 

\renewcommand*{\backref}[1]{}  
\renewcommand*{\backrefalt}[4]{\%  
\ifcase #1 (Not cited.)\%  
    \or        \footnotesize (Cited on page~#2.)\%  
    \else      \footnotesize (Cited on pages~#2.)\%  
    \fi  
}

加法(最小例子): https://www.dropbox.com/sh/nvg52ixdt0h7bkb/AACMv8tsM1C0xGdRspJ300zga?dl=0

答案1

由于您没有提供 LaTeX 示例,而我也不想准备这样的示例,因此我向您展示了如何在纯 TeX 级别上执行此操作。超链接是使用 OpTeX 实现的,\hyperlinks以表明这是可能的。您可以通过 处理此示例optex testfile。您可以重新定义宏\cpR以使用 LaTeX 方法创建超链接。

\hyperlinks\Blue\Blue
% destinations to previous 30 pages:
\fornum 1..30 \do{\null\label[cp-#1]\wlabel{}\vfil\break} 

% macro \citedpages:
\def\afterfi#1#2\fi{\fi#1}
\newcount\cpnum
\def\citedpages#1{\let\next=\cpA \def\cplist{}\cpnum=-1 \cpA#1,,\end}
\def\cpA#1,{\ifx,#1,\expandafter\cpB \else
   \ifnum#1=\cpnum % do nothing:  3,3 -> 3
   \else \ifnum#1=\numexpr\cpnum+1\relax % 3,4 -> 3-4
         \advance\cpnum by1
   \else \edef\cplist{\cplist -\the\cpnum, #1}% 3,5 -> 3, 5
         \cpnum=#1\relax
   \fi\fi \expandafter\cpA \fi
}
\def\cpB#1\end{\edef\cplist{\cplist-\the\cpnum}%
   \expandafter\cpC\cplist, 0-0,
}
\def\cpC#1-#2, #3-#4, {\ifnum#4=0 and \fi % end game
   \ifnum #2=-1 % starting node, ignored
   \else \ifnum #1=#2 \cpR{#1}\cpD{#4}
         \else \cpR{#1}--\cpR{#2}\cpD{#4}
   \fi\fi 
   \ifnum #4=0 \else \afterfi{\cpC #3-#4, }\fi
}
\def\cpD#1{\ifnum#1=0 \else,\fi}
\def\cpR#1{\pgref[cp-#1]}% OpTeX's hyperlink to the page.

% test:
Cited on pages \citedpages{1,3,4,5,6,7,8,20,21,22,25,27,30}.

\end

前三行是 OpTeX 特有的,接下来的几行是纯 Plain TeX,但宏除外\cpR,它可以定义为\def\cpR#1{#1}纯 Plain TeX(没有超链接)。

\citedpages分为两个步骤。第一步,它读取

{1,3,4,5,6,7,8,20,21,22,25,27,30}
 

(在我们的示例中)并创建\cplist包含以下内容的宏:

--1, 1-1, 3-8, 20-22, 25-25, 27-27, 30-30

第二步由 行完成\expandafter\cpC\cplist, 0-0,。它创建所需的结果:

\cpR{1}, \cpR{3}--\cpR{8}, \cpR{20}--\cpR{22}, \cpR{25}, \cpR{27}, and \cpr{30}

编辑:如果您想将此宏与 natbib 一起使用并重新定义,\backrefalt那么这个重新定义可能看起来像:

\renewcommand*{\backrefalt}[4]{%
        \ifcase #1 (Not cited.)%
        \or        \footnotesize (Cited   on   {{#2}}.)%
        \else   
               \def\cplist{}\cpnum=-1
               \expandafter\readcplist #2\backrefxxx{0}%
               \footnotesize (Cited on pages~{{\expandafter\cpA\cplist,,\end}}.)%
        \fi
}
\def\readcplist #1\backrefxxx#2{%
    \ifnum#2=0 \else \edef\cplist{\cplist #2,}\expandafter\readcplist\fi}

但此解决方案添加的页面列表没有超链接。 如果要添加超链接,则定义\cpR如下:

\def\cpR#1{\backrefxxx{#1}{}{}}% hyperref backref page links.

相关内容