
혹시 누군가 내가 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}
. \bibliography{wage}
또는 을 사용해야 합니다 \addbibresource{wage.bib}
. 사일이 apalike
비블라텍스와 잘 안어울리므로 실물인 아파 스타일을 비버와 함께 사용하는 것을 추천합니다. APA 6은 2열 문서로 만들려는 경우 \footcite
1열 문서 사용을 허용하지 않습니다 .\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 참고문헌 형식 요구사항 구현에 계속 어려움을 겪는 경우 패키지 로드 apacite
, 참고문헌 스타일 사용 apacite
및 BibTeX 사용으로 전환하는 것이 좋습니다.
당신은 정말로, 정말로 또한 그 결과를 얻기 위해 진지한 노력을 기울여야 합니다.내용물모든 참고문헌 항목이 정확합니다. 예를 들어, 저널 중 하나의 이름은 다음과 같습니다.~ 아니다"미국 경제 협회"; "아메리칸 이코노믹 리뷰(American Economic Review)"입니다. 작가 중 한 사람의 성은 다음과 같습니다.~ 아니다"부르켄하우저"; "부르크하우저" 입니다. 해당 항목의 title
필드에는 현재 두 개의 [2!] 추가 오류가 포함되어 있습니다. 즉, 기호 누락 $
과 "임금" 대신 "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}