APA スタイルの文書がコンパイルされない

APA スタイルの文書がコンパイルされない

どなたか、APA スタイルの使い方を教えていただけませんか? どうしてもうまくいきません。グーグルでいろいろ検索してみましたが、APA パッケージは無数にあるようです。本文中の引用が (著者、2007) で、参考文献がアルファベット順に並べられた、シンプルな APA 形式が欲しいだけです。

[ちなみに、私はLaTeX初心者なので、わかりにくかったり知識が不足していたり​​したらごめんなさい。]

これまでのところ、次のものがあります:

\documentclass{article}
\usepackage{apa6}
\usepackage[
    backend=bibtex,
    style=apalike,
    sorting=nyt,
]{biblatex}
\bibliography{wage.bib}
\title{Title}
\author{name}
\date{14 November 2016}



\begin{document}


\nocite{*}

 Hello,  testing testing\footcite{ninefity}. Let's do another     citation.\footcite{realwage}.

\printbibliography

\end{document}

同じ wage.bib ファイルを使用します:

\begin{filecontents}{wage.bib}


@article{realwage,
author =       "Orley Ashenfelter",
title =        "Comparing Real Wage Rates",
journal =      "American Economic Association",
volume =       "102",
number =       "2",
pages =        "891--921",
year =         "2012",
}



@article{ninefity,
author =       "Joseph Sabia and RIchard Burkenhauser",
title =        "Minimum Wages and Poverty: Will a 9.50 Federal     Minimum IWage Really Help the Working Poor?",
journal =      "Southern Economic Journal",
volume =       "76",
number =       "3",
pages =        "891--921",
year =         "2010",
}

@article{politics,
author =       "Russell Sobel",
title =        "Theory and Evidence on the Political Economy of the Minimum Wage",
journal =      "Journal of Political Economy",
volume =       "107",
number =       "4",
pages =        "891--921",
year =         "1999",
}

問題は \bibliographystyle{apalike} コマンドにあるようです。何をしても読み取れません。APA パッケージは biblatex バックエンドと互換性がないのでしょうか? 特定のパッケージをダウンロードする必要がありますか?

どのような助けでも大歓迎です。

答え1

apa6はクラスであり、パッケージではありません。 である必要があります\documentclass{apa6}。 または を使用する必要があります。 このスタイルはbiblatex には適していませ\bibliography{wage}ん 。本物の apa スタイルと biber を使用することをお勧めします。 APA 6 では、2 列のドキュメントにしたい場合、1 列のドキュメントは使用できません。\addbibresource{wage.bib}apalike\footcite\documentclass[twocolum]{apa6}

これが私の有効な修正方法です

\documentclass{apa6}
\usepackage[
backend=biber,
style=apa,
sorting=nyt,
]{biblatex}
\bibliography{wage}
\title{Title}
\author{name}
\date{14 November 2016}



\begin{document}


    \nocite{*}

    Hello,  testing testing \cite{ninefity}. Let's do another  citation. \cite{realwage}.

    \printbibliography

\end{document}

答え2

biblatex による APA 参考文献フォーマット要件の実装で引き続き問題が発生する場合は、パッケージをロードしapaciteapacite参考文献スタイルを使用して、BibTeX を使用するように切り替えることをお勧めします。

あなたは本当に、本当に真剣に努力して、コンテンツすべての書誌項目が正しいかどうか。たとえば、ある雑誌の名前はない「アメリカ経済学会」ではなく「アメリカ経済評論」です。著者の一人の姓はない「Burkenhauser」は「Burkhauser」です。このエントリのtitleフィールドには現在、2 つの [2!] 個の追加エラーがあります。$記号が抜けているのと、「wage」ではなく「iwage」です。また、著者のミドルネームのイニシャルをすべて省略するのはなぜですか。このようなずさんさから良いことは生まれません。

ここに画像の説明を入力してください

\RequirePackage{filecontents}
\begin{filecontents}{wage.bib}
@article{realwage,
author =       "Orley C. Ashenfelter",
title =        "Comparing Real Wage Rates",
journal =      "American Economic Review",
volume =       "102",
number =       "2",
pages =        "891--921",
year =         "2012",
}
@article{ninefity,
author =       "Joseph J. Sabia and Richard V. Burkhauser",
title =        "Minimum Wages and Poverty: Will a \$9.50 Federal Minimum Wage Really Help the Working Poor?",
journal =      "Southern Economic Journal",
volume =       "76",
number =       "3",
pages =        "891--921",
year =         "2010",
}
@article{politics,
author =       "Russell S. Sobel",
title =        "Theory and Evidence on the Political Economy of the Minimum Wage",
journal =      "Journal of Political Economy",
volume =       "107",
number =       "4",
pages =        "891--921",
year =         "1999",
}
\end{filecontents}

\documentclass{article}
\usepackage[english]{babel}
\usepackage[natbibapa]{apacite}
\bibliographystyle{apacite}
\frenchspacing

\begin{document}
\citep{ninefity}, \citep{realwage}, \citep{politics}
\bibliography{wage}
\end{document}

関連情報