biblatex-chem 是否会自动将标题中的引用格式化为特定出版商的风格?

biblatex-chem 是否会自动将标题中的引用格式化为特定出版商的风格?

我希望使用biblatex和在标题中插入引文biblatex-chem。我试图遵循 RSC 的引文样式。在标题中引用 RSC 期刊时,我在期刊中看到的输出通常是(adapted from ref. 29.)。所以没有上标或括号。\autocite{}在引用时,我无法使用 或任何其他 biblatex 引文命令复制此\caption{}操作。下面的 MWE\autocite{}将导致使用普通文本中使用的一般引文样式。

\documentclass{article}
\usepackage[backend=biber, style=chem-rsc, articletitle, chaptertitle, language=auto, doi, isbn, defernumbers=false]{biblatex} 
\usepackage[autostyle=true]{csquotes}
\addbibresource{./References/Thesis.bib}    

\begin{document}

\begin{figure}
\includegraphics{Test.pdf}
\caption{Test test test test \autocite{Test2012}}
\end{figure}

\end{document}

答案1

简短的回答:不。

较长的回答:\autocite是为了处理上标/内联引用的问题,而不是基于上下文、出版商风格等不同类型的引用的复杂性,ETC。如果是的话,我会选择

\caption{Test test test test (adapted from \cite{Test2012}})}

(根据具体情况,‘改编自’或类似词语可能适用于或不适用于标题。)

相关内容