
LaTeX では、引用スタイルを角括弧 (例: "As authors in [1] show ...") からスラッシュ ("As authors in /1/ show ...") に変更するにはどうすればよいですか?
編集以下のコメントにお答えします...引用スタイルの名前はわかりません。これは単に修士論文のフォーマットの要件です。
メイン文書(dissertation.tex)は次のようになります
\documentclass[a4paper,14pt]{extreport}
\input{packages}
\input{styles}
\input{data}
\begin{document}
\input{introduction}
\input{part1}
\input{references}
\end{document}
PDFを生成するために使用するコマンド
latexmk -pdf -pdflatex="xelatex %O %S" dissertation
編集2参考文献のスタイル、スタイルはここで定義されます(https://github.com/AndreyAkinshin/Russian-Phd-LaTeX-Dissertation-Template/blob/master/Synopsis/utf8gost71u.bst)
\bibliographystyle{utf8gost71u}
\makeatletter
\renewcommand{\@biblabel}[1]{#1.}
\makeatother
答え1
答え2
natbib
完全性を期すために、引用管理パッケージに基づいたソリューションを以下に示します。
\usepackage{natbib}
\bibpunct{/}{/}{;}{n}{}{,}
完全なムウェ:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{myxyz.bib}
@article{xyz,
author = "Anne Author",
title = "Thoughts",
journal= "Circularity Today",
volume = 1,
number = 2,
pages = "3-4",
year = 5001,
}
\end{filecontents}
\bibliographystyle{plainnat} % no access to "utf8gost71u.bst"
\makeatletter
\renewcommand{\@biblabel}[1]{#1.}
\makeatother
\usepackage{natbib}
\bibpunct{/}{/}{;}{n}{}{,}
\begin{document}
\noindent
\cite{xyz}
\bibliography{myxyz}
\end{document}