使 \cite 的行为类似于 biblatex 中的 \textcite
我使用 biblatex 并且基本上一直使用 \textcite
。如果我能让 \cite
像 \textcite
一样显示,那就会更快(并允许我使用一些 emacs reftex 宏)。我使用 style=apa
选项,所以这相当于我希望 \cite
执行此操作:“Author (1999)”,而当前执行此操作:“Author ,1999”。
如何重新调整 \cite
来做我想做的事?
I use biblatex and I basically use \textcite
all the time. It would be quicker (and allow me to use some emacs reftex macros) if I could make \cite
display like \textcite
does. I use the style=apa
option, so what this amounts to is I want \cite
to do this: "Author (1999)" whereas it currently does this: "Author, 1999".
How do I redfine \cite
to do what I want?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能就像
\let\cite\textcite
一样简单 - 将\cite
定义为与\textcite
具有相同的值定义点。This might be as simple as just
\let\cite\textcite
-- that defines\cite
to have the same value as\textcite
has at the point of definition.