
私は「regstud」のような参考文献スタイルを探しています(画像を参照、http://debibify.dorian-depriester.fr/ ここ) ですが、url、urldate、shortauthor/shorteditor フィールド (または組織の略語を追加する別の可能性) が含まれます。
自分なりのスタイルを作ってみました
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
) を編集して、希望どおりの結果を得る方法はありますか?