我对 LaTeX 还不太熟悉,我想用参考书目中的数字来组织参考文献,同时尝试在文中获取作者-日期参考文献。有人会怎么做呢?
答案1
使用包\usepackage{biblatex}
(biblatex 手册)和biber
(biblatex 的后端书目处理器)用于编译。
我使用了示例 bib 条目。示例列表。所以每个人都可以测试一下。
编辑:
如果您想要使用圆形括号\citep
,则可以在添加选项时使用natbib=true
。
\usepackage[backend=biber,style=numeric,citestyle=authoryear,natbib=true]{biblatex}
。
结果:
梅威瑟:
\documentclass{article}
\usepackage[backend=biber,style=numeric,citestyle=authoryear,natbib=true]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
Here in-text \textbf{citestyle} \textit{authoryear} with cite \cite{bertram,matuz:doody,kastenholz} and with citep \citep{gillies}
And in the \textbf{bibstyle} is \textit{numeric}.
\printbibliography
\end{document}
...您还可以添加例如:maxcitenames=2,ibidtracker=false,isbn=false,dashed=false,maxbibnames=50,firstinits=true,uniquelist=false
,...以自定义围兜样式。请参阅:在此处输入链接描述。