.png)
私は使用しています
\usepackage[backend=biber,style=authoryear-ibid]{biblatex}
参考文献で使用されているダッシュを変更して、同じ著者を別の記号 (たとえば、はるかに長いダッシュ) で示すことは可能ですか? のようなものですか\renewcommand{\ibidendash}{\textemdash\textemdash}
? ドキュメントにはダッシュをオフにする方法は示されていますが、ダッシュを変更する方法は示されていません。
一例として、50-style-authoryear.tex
ファイルがあります。
答え1
これは、長さの一部に設定されたルールを使用するバージョンです。\bibhang
\documentclass{article}
\begin{filecontents}{\jobname.bib}
@book{Chomsky1986,
Address = {Cambridge Mass.},
Author = {Noam Chomsky},
Publisher = {{MIT} Press},
Title = {Barriers},
Year = {1986}}
@book{Chomsky1981,
Address = {Dordrecht},
Author = {Noam Chomsky},
Publisher = {Foris Publications},
Title = {Lectures on Government and Binding},
Year = {1981}}
\end{filecontents}
\usepackage[style=authoryear-ibid]{biblatex}
\addbibresource{\jobname.bib}
\setlength\bibhang{.5in}
\renewcommand*{\bibnamedash}{%
\ifdimless{\leftmargin}{0.75em}
{\mbox{\textemdash\space}}
{\makebox[\leftmargin][l]{%
\ifdimless{\leftmargin}{1.25em}
{\textendash}
{\rule{.8\bibhang}{.2pt}}}}}
\begin{document}
\autocite{Chomsky1981,Chomsky1986}
\printbibliography
\end{document}
答え2
\setlength\bibhang{2.4em}%% two dashes and space
\renewcommand*\bibnamedash{\textemdash\textemdash\space}