如何减少 Latex 中 \cite{1} 标签生成的引文(如 [1])的大小
维基百科巧妙地用上标 n 减少了所有引用的大小。有没有办法把它变成乳胶。
Wikipedia neatly superscripts n reduces the size of all the citations. Is there a way to get it in latex.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议你研究 natbib 与普通 LaTeX 相比,它提高了引用的使用,并且更容易定制。要使引文出现在上标 [1] 中,您需要添加
super
选项;方括号中的数字分别由numbers
和square
激活,即添加到文档的序言中。我还喜欢使用逗号分隔条目 (
comma
) 并激活相邻引用的自动压缩[1-12,42] (sort&compress
)。I would suggest you to look into natbib which improves citation usage compared to vanilla LaTeX, and allows much easier customization. To make citations appear in superscript [1] you would add the
super
option; numbers in square brackets are activated bynumbers
andsquare
, respectively, i.e. addin the preamble of your document. I also like to use commas to separate entries (
comma
) and activate automatic compression of adjacent references[1-12,42] (sort&compress
).