同上。 在 LaTeX 引用中

发布于 2024-07-17 22:47:19 字数 457 浏览 7 评论 0原文

如何让 LaTeX 自动使用“同上”。 当两次引用同一来源时?

Here is a sentence with a citation.\footnote{\cite[p.~5]{Smith:1999}}
This sentence also has a citation.\footnote{\cite[p.~10]{Smith:1999}}

期望:
这是一个带有引文的句子。[1] 这句话还有一个引文。[2]
...
1. 史密斯 (1999),第 14 页。 5
2. 同上,第 14 页。 10

实际:
这是一个带有引文的句子。[1] 这句话还有一个引文。[2]
...
1. 史密斯 (1999),第 14 页。 5
2. 史密斯(1999),第 14 页。 10

How can I get LaTeX to automatically use "Ibid." when two citations to the same source are made?

Here is a sentence with a citation.\footnote{\cite[p.~5]{Smith:1999}}
This sentence also has a citation.\footnote{\cite[p.~10]{Smith:1999}}

Desired:
Here is a sentence with a citation.[1] This sentence also has a citation.[2]
...
1. Smith (1999), p. 5
2. Ibid., p. 10

Actual:
Here is a sentence with a citation.[1] This sentence also has a citation.[2]
...
1. Smith (1999), p. 5
2. Smith (1999), p. 10

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一袭白衣梦中忆 2024-07-24 22:47:19

你可以看看biblatex,它似乎比bibtex更注重人文风格的引文。 我很确定我可以毫无问题地“同上”工作。

http://www.ctan.org/pkg/biblatex

You could look at biblatex, it seems to be more oriented to Humanities-style citations than bibtex is. I'm pretty sure I got "ibid" working in it with no trouble.

http://www.ctan.org/pkg/biblatex

被翻牌 2024-07-24 22:47:19

对我有用的一个解决方案是使用以下内容:

\usepackage{csquotes}
\usepackage[backend=biber, style=verbose-ibid]{biblatex}

我的示例中的样式将使第一次引用非常冗长,然后仅引用作者、标题和页面。

同上还有更多样式,可以在此站点找到这些样式。

One solution that worked for me, was to use the following:

\usepackage{csquotes}
\usepackage[backend=biber, style=verbose-ibid]{biblatex}

The style in my example will let the first citation be very verbose, and then afterwards only cite the author, title, and pages.

There are more styles with ibid., and these can be found at this site.

拒绝两难 2024-07-24 22:47:19

另一种可能性是inlinebib

Another possibility is inlinebib.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文