如何將短作者/縮寫和 urldate 包含到作者年份參考書目樣式中?

如何將短作者/縮寫和 urldate 包含到作者年份參考書目樣式中?

我正在尋找一種看起來像“regstud”的參考書目風格(參見圖片,取自http://debibify.dorian-depriester.fr/ 這裡),但包括 url、urldate 和 Shortauthor/shorteditor 欄位(或新增組織縮寫的另一種可能性。

regstud 參考書目風格樣本 我嘗試製作自己的樣式,makebst但無法在工作流程中變更我想要的設定(您只能新增 URL,但無法新增 URL 日期,也無法新增縮寫)。

我在 TeXstudio 中使用 BibTeX 和 natbib。這是一個最小的工作範例:

\documentclass[a4paper, twoside, 12pt]{scrbook}
\usepackage{url} 
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{natbib}
\bibliographystyle{regstud}

\begin{filecontents}{literature.bib}
@misc{Esri.2017a,
abstract = {ArcGIS geoprocessing toolset containing tools for classifying 
    rasters via a feature-based approach.},
author = {{Environmental Systems Research Institute, Inc}},
year = {2017},
title = {{An overview of the Segmentation and Classification toolset---Help | ArcGIS for Desktop}},
url = {http://desktop.arcgis.com/en/arcmap/10.5/tools/spatial-analyst-toolbox/an-overview-of-the-segmentation-and-classification-tools.htm},
keywords = {ANALYSIS},
urldate = {2018-03-21},
shortauthor = {Esri}
}
\end{filecontents}

\begin{document}
Some random text before parenthesis cite \citep{Esri.2017a}. And before cite text \citet{Esri.2017a}.
\bibliography{literature.bib}
\end{document}

內聯,引文是全名而不是簡稱(環境系統研究所,2017)。 文中的引用 參考書目中的輸出(使用regstud)缺少 URL、URL 日期和縮寫的組織名稱: 參考書目中的引用

makebst有沒有辦法以我想要的結果編輯 .bst 或 .dbj 檔案(由 產生)?

相關內容