Search code examples
latexbibtexbibliographycitationsbiblatex

APS citation style in latex


How do I use the APS citation style in latex? I cannot find any templates, let alone information if I need to use any specific package or bibliographystyle. Also, do I need bibtex or biblatex?


Solution

  • Here a short example using the phys style from https://www.ctan.org/pkg/biblatex-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}
    

    enter image description here