按照 APA7 引用网络资源

按照 APA7 引用网络资源

一家科学杂志要求使用 APA7 来编写参考书目和参考文献。它没有提供任何有助于满足此要求的样式文件或示例。使用下面最小示例中的用户包,我设法满足了他们的要求(Web 引用除外)。当我使用下面最小工作示例中的用户包时,我得到了以下格式的 Web 引用:

CIESIN - 哥伦比亚大学国际地球科学信息网络中心。(2018 年)。世界网格人口,第 4 版(GPWv4):人口计数,修订版 11。[数据集]。2022 年 7 月 7 日检索自https://sedac.ciesin.columbia.edu/data/set/gpw-v4-population-count-rev11

NOAA - 美国国家海洋和大气管理局。(nd)。第 4 版 DMSP-OLS 夜间灯光时间序列,稳定灯光 [数据集]。检索日期:2020 年 7 月 18 日,来自 https://ngdc.noaa.gov/eog/dmsp/downloadV4composites.html

但是,期刊要求网络参考文献的表述略有不同。我提供了一个例子:

Powertech Systems。(2015 年)。锂离子与铅酸电池成本分析。摘自http://www.powertechsystems.eu/home/tech-corner/lithium-ion-vs-lead-acid-cost-analysis/. 2016 年 1 月 6 日访问。

我的问题:您知道应该做哪些更改才能满足期刊的 APA7 Web 资源要求吗?非常感谢。

最小工作示例:

\documentclass[12pt]{article}
\usepackage{amssymb,amsmath,amsfonts,eurosym,geometry,ulem,graphicx,caption,color,setspace,sectsty,comment,footmisc,caption,pdflscape,array, mathpazo, longtable,rotating, float, booktabs, lineno, subcaption, siunitx, caption, multirow, longtable,pdflscape,booktabs, csquotes}
\usepackage[style=apa,sortcites=true,sorting=nyt,backend=biber]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\addbibresource{test.bib}
\geometry{left=1.0in,right=1.0in,top=1.0in,bottom=1.0in}
\begin{document}

测试

{\nocite{*} \normalsize 
    \doublespacing
    \printbibliography }
\end{document}

参考书目条目示例:

@misc{sedac2018,
title     = {{Gridded population of the world, Version 4 (GPWv4): Population count, Revision 11. [Datasets]}},
author    = {{CIESIN - Center for International Earth Science Information
Network, Columbia University}},
publisher = {Palisades, New York: NASA Socioeconomic Data and Applications Center (SEDAC)},
year      =  2018,
url = {https://sedac.ciesin.columbia.edu/data/set/gpw-v4-population-count-rev11},
urldate  = {2022-07-07}
}

@misc{noaa,
title     = {{Version 4 DMSP-OLS nighttime lights time series, Stable Lights [Datasets]}},
author    = {{NOAA - National Oceanic and Atmospheric Administration}},
url = {https://ngdc.noaa.gov/eog/dmsp/downloadV4composites.html},
urldate  = {2020-07-18}
}

相关内容