Biblatex、apa-style、polyglossia 和多语言书目

Biblatex、apa-style、polyglossia 和多语言书目

对于我的科学文章,我需要使用一些韩语资料,这就是我从使用pdflatex\bibtexxelatex和转为使用的原因biber

我已经设法让biblatex样式apa正常工作(通过本网站上的其他帖子)。但到目前为止,我遇到了几个问题,我不确定是什么原因造成的。我现在面临以下四个问题:

  1. 参考书目没有排序(尽管我使用了sorting=nyt)。
  2. 如果一年中有多个来源,biblatex 会自动添加一个排序系统(通过添加 a、b、c 等),我该如何禁用此功能?
  3. 期刊的期号未显示在参考书目中。
  4. 文本未正确调整,如在 pdf 中所见。

我的 MWE:

\documentclass[a4paper,12pt]{article}
\usepackage{polyglossia}
\usepackage{csquotes}
\usepackage[backend=biber,style=apa,sorting=nyt]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\DefineBibliographyExtras{english}{%
  \protected\def\mkbibdateapalong#1#2#3{%
    \iffieldundef{#1}%
      {}%
      {\thefield{#1}}%
    \iffieldundef{#2}%
      {}%
      {\iffieldundef{#1}%
        {}%
        {\addcomma\addspace}%
       \mkbibmonth{\thefield{#2}}}%
    \iffieldundef{#3}%
      {}%
      {\ifthenelse{\iffieldundef{#2}\OR\iffieldundef{#1}}%
        {}%
        {\addspace}%
       \stripzeros{\thefield{#3}}}}%
  \protected\def\mkbibdateapalongextra#1#2#3{%
    \iffieldundef{#1}%
      {}%
      {\thefield{#1}\printfield{extrayear}}%
    \iffieldundef{#2}%
      {}%
      {\iffieldundef{#1}%
        {}%
        {\addcomma\addspace}%
       \mkbibmonth{\thefield{#2}}}%
    \iffieldundef{#3}%
      {}%
      {\ifthenelse{\iffieldundef{#2}\OR\iffieldundef{#1}}%
        {}%
        {\addspace}%
       \stripzeros{\thefield{#3}}}}%
  \protected\def\mkbibdateapalongdmy#1#2#3{%
    \iffieldundef{#3}%
      {}%
      {\stripzeros{\thefield{#3}}}%
    \iffieldundef{#2}%
      {}%
      {\iffieldundef{#3}%
        {}%
        {\addspace}%
       \mkbibmonth{\thefield{#2}}}%
    \iffieldundef{#1}%
      {}%
      {\ifthenelse{\iffieldundef{#2}\OR\iffieldundef{#3}}%
        {}%
        {\addspace}%
       \thefield{#1}}}}
\addbibresource{BT.bib}
\usepackage{fontspec}
\usepackage{xeCJK}                      % package for Korean fonts
\setmainlanguage[variant=american]{english}
\setCJKmainfont{Dotum}              % For Korean font
\setmainfont{Times New Roman}           % Standard font
\begin{document}
\section{Introduction}
Three main things when talking about IPO research: underpricing, long-term overpricing and IPO waves \parencite{Ka91}.
This is a test \parencite{Ro86,TiTr86, Ch99, Ch11}.

\printbibliography[title=Bibliography]
\end{document}

这是我的.bib 文件:

@article{Ro86,
author = {K. Rock},
title = {Why new issues are underpriced},
journaltitle = {Journal of Financial Economics},
volume = {15},
year = {1986},
pages = {187-212}
}
@article{TiTr86,
author = {S. Titman and B. Trueman},
title = {Information Quality and the Valuation of New Issues},
journaltitle = {Journal of Accounting and Economics},
volume = {8},
year = {1986},
pages = {159-172}
}
@article{Ch99,
author = {M.-S. Choi},
title = {A Study on Initial Returns and Underpricing of {IPOs}},
journaltitle = {The Korean Journal of Finance},
volume = {12},
year = {1999},
pages = {197-226},
origlanguage = {Korean},
origtitle = {신규공모주의 공모가격 할인과 초기성과에 대한 연구},
origpublisher = {재무연구}
}
@article{Ch11,
author = {M.-S. Choi},
title = {Review of Empirical Studies on {IPO} Activity and Pricing Behavior in Korea},
journaltitle = {Asian Review of Financial Research},
volume = {24},
issue ={2},
year = {2011},
pages = {621-663},
}
@article{Ka91,
author = {H. S. Kang},
title = {An Empirical Study on the Effect of the Activities of Investment banks on IPO Pricing},
journaltitle = {The Korean Journal of Financial Management},
volume = {8},
issue = {2},
year = {1991},
pages = {31-45},
origlanguage = {Korean},
origtitle = {투자은행이 IPO의 가격형성에 미치는 영향에 관한 실증분석},
origpublisher = {재무관리연구}
}

答案1

关于问题 3(未显示期刊发行),我引用手册第 2.2.2 节(数据字段)biblatex

问题

字段(文字)

期刊的期号。此字段适用于个别期号以“春季”或“夏季”等名称而非月份或数字标识的期刊。由于期号的位置与月份和数字的位置类似,因此此字段也适用于双期和其他特殊情况。

[...]

数字

字段(文字)

期刊的编号或系列书籍的卷号/编号。

查看您的.bib文件,我强烈怀疑您应该用字段(由 正确显示)替换您的issue字段。numberbiblatex-apa

相关内容