乳胶中的 APS 引用样式

APS citation style in latex

如何在 Latex 中使用 APS 引用样式?我找不到任何模板,更不用说我需要使用任何特定包或参考书目样式的信息了。另外,我需要 bibtex 还是 biblatex?

这是一个使用 https://www.ctan.org/pkg/biblatex-phys

中的 phys 样式的简短示例
\documentclass{article}

\usepackage[%
    style=phys,%
    articletitle=false,biblabel=brackets,%
    chaptertitle=false,pageranges=false%
]{biblatex}

\addbibresource{biblatex-examples.bib}

\begin{document}

test \cite{knuth:ct}

\printbibliography

\end{document}