저자 연도 참고 문헌 스타일에 짧은 저자/약어 및 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 날짜 및 약식 조직 이름이 없습니다. 참고문헌에서의 인용

.bst 또는 .dbj 파일(에서 생성됨 makebst)을 내가 원하는 대로 편집할 수 있는 방법이 있습니까?

관련 정보