我将其用于\autoref
我的所有图形、表格等,因为我喜欢输出的外观和感觉,以及易于定制(例如,如果我改变了对如何引用图形的想法)。
有没有办法将参考书目项目纳入\autoref
?例如,假设我想说这样的话:“可以在参考文献 [10] 中找到有关此主题的评论”,同时仍保持 的外观和感觉\autoref
。
答案1
尽管可能,但我不会这么做。
\documentclass{article}
\usepackage[style=numeric,backend=biber]{biblatex}
\addbibresource{biblatex-examples.bib}
\newcommand{\aautocite}[1]{reference~\autocite{#1}}
\newcommand{\aautocites}{references~\autocites}
\begin{document}
Have a look at \aautocite{kastenholz} as well as
\aautocites{ctan,companion}[8]{markey}[3]{aristotle:physics}.
\printbibliography
\end{document}
可能有直接的办法来实现biblatex
。