我的标签如下:
\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[greek,american]{babel}%
\usepackage[T1]{fontenc}%
\usepackage[natbib,authordate,backend=biber]{biblatex-chicago}%
\usepackage[bookmarks=true,bookmarksnumbered=true,bookmarksopenlevel=1,colorlinks=false,breaklinks,linkcolor=black,citecolor=black,urlcolor=black,hidelinks]{hyperref}%
\addbibresource{test.bib}
\begin{document}
Francez~\citeyearpar{Francez2017-FRAOHA-2}
Crossley and Humberstone (\citeyear{cros:the-77})
Test \citep{balafoutas2014direct}
\printbibliography
\end{document}
Test.bib 文件
@article{Francez2017-FRAOHA-2,
author = {Nissim Francez},
date-added = {2021-10-23 17:14:08 +0800},
date-modified = {2021-10-23 17:14:08 +0800},
doi = {10.1016/j.jal.2016.12.004},
journal = {Journal of Applied Logic},
pages = {14--23},
publisher = {Elsevier Bv},
title = {On Harmony and Permuting Conversions},
volume = {21},
year = {2017},
Bdsk-Url-1 = {https://doi.org/10.1016/j.jal.2016.12.004}}
@article{cros:the-77,
author = {John N. Crossley and Lloyd Humberstone},
date-added = {2019-08-23 15:31:35 +1000},
date-modified = {2022-06-01 11:54:29 +0800},
journal = {Reports on Mathematical Logic},
pages = {11--29},
title = {The Logic of `Actually'},
volume = {8},
year = {1977}}
@article{balafoutas2014direct,
title={Book Title Field},
author={XXX, YYY and ZZZ, AAA and BBB, CCC},
journal={Proceedings of the XXX Academy of School},
volume={0},
number={1},
pages={10-12},
year={1978},
publisher={Own Institution},
}
它产生的输出如下:
请参考标记(红色圈出)的地方,目前的输出为,Actually'.''
但我需要为Actually.'''
答案1
用于文件\mkbibquote{...}
中的引号.bib
@article{cros:the-77,
author = {John N. Crossley and Lloyd Humberstone},
journal = {Reports on Mathematical Logic},
pages = {11--29},
title = {The Logic of \mkbibquote{Actually}},
volume = {8},
year = {1977},
}
正如评论中提到的那样,如果您加载或,建议使用csquotes
with (尽管这不是要求,即使没有它,引号仍会被移动)。biblatex
babel
polyglossia
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[greek,american]{babel}
\usepackage[T1]{fontenc}
\usepackage{csquotes}
\usepackage[natbib,authordate,backend=biber]{biblatex-chicago}
\usepackage{hyperref}
\begin{filecontents}{\jobname.bib}
@article{Francez2017-FRAOHA-2,
author = {Nissim Francez},
doi = {10.1016/j.jal.2016.12.004},
journal = {Journal of Applied Logic},
pages = {14--23},
publisher = {Elsevier Bv},
title = {On Harmony and Permuting Conversions},
volume = {21},
year = {2017},
}
@article{cros:the-77,
author = {John N. Crossley and Lloyd Humberstone},
journal = {Reports on Mathematical Logic},
pages = {11--29},
title = {The Logic of \mkbibquote{Actually}},
volume = {8},
year = {1977},
}
@article{balafoutas2014direct,
title = {Book Title Field},
author = {XXX, YYY and ZZZ, AAA and BBB, CCC},
journal = {Proceedings of the XXX Academy of School},
volume = {0},
number = {1},
pages = {10-12},
year = {1978},
publisher = {Own Institution},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\Textcite{Francez2017-FRAOHA-2}
\textcite{cros:the-77}
Test \citep{balafoutas2014direct}
\printbibliography
\end{document}