引文和 Bib 未显示在 PDF 中 - Texmaker/MikTex

引文和 Bib 未显示在 PDF 中 - Texmaker/MikTex

当我尝试编译 PDF 时,我的参考资料根本没有显示出来。我已经按照以下方式编译了

pdflatex file.tex && bibtex file.aux && pdflatex file.tex && pdflatex file.tex

文档代码如下:

\documentclass[12pt, english]{article}
\usepackage[margin=1in]{geometry}
\usepackage{geometry}
\usepackage{babel, soul}
\usepackage{bm}
\usepackage{wrapfig}
\usepackage{caption}
\usepackage[colon]{natbib}
\usepackage{tocvsec2}
%\usepackage{subfig}
\usepackage{graphicx}
\usepackage{multirow}
\usepackage{tabularx}
\usepackage{subfloat}
\usepackage{subcaption}
\usepackage{enumitem}
\usepackage[hyphens]{url}
\usepackage{tabularx}
\usepackage{tabulary}
\usepackage{tabu}
\usepackage{amsmath}
\usepackage[absolute,overlay]{textpos}
\usepackage{wasysym} %allows some extra symbols (e.g., male & female symbols)

\usepackage{caption} % for centering caption
\usepackage[justification=centering]{caption}

\usepackage[toc,page,header]{appendix}



\def \tabpath {../Tables/}
\def \figpath{../Figure/}

\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}} % define a column type that will be centered
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}} % define a column type that will be left-aligned (gets rid of awkwardly big spaces between words)
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash}p{#1}} % define a column type that will be right-aligned (gets rid of awkwardly big spaces between words)

\usepackage{pifont}

\usepackage[hang]{footmisc} %footnotes
\setlength{\footnotesep}{0.35cm}
\setlength{\footnotemargin}{3.5mm}
\setlength{\skip\footins}{1cm}

\usepackage{multicol}
\usepackage[normalem]{ulem}
\usepackage{comment}
\usepackage{array}
\usepackage{booktabs}
\usepackage[labelfont=bf]{caption}
\usepackage{pdflscape}
\usepackage{placeins}
\usepackage{setspace}
\usepackage{lipsum}
\usepackage{setspace}
\usepackage{csquotes}
\usepackage{bbm}
%\usepackage[backend=bibtex, style=alphabetic, citestyle=authoryear, style=authoryear ]{biblatex}
\usepackage{clipboard}

\usepackage{titlesec}

\titleformat*{\section}{\large\bfseries}
\titleformat*{\subsection}{\normalsize\bfseries}
\titleformat*{\subsubsection}{\normalsize\bfseries}


\usepackage{tocloft}
\setlength{\cftfignumwidth}{3.33em}
\setlength{\cfttabnumwidth}{3.33em}

\singlespacing
\begin{document}

some text
\newpage \clearpage

\singlespacing

\nocite{*}
\setlength{\bibsep}{8pt}
\bibliographystyle{aer}

\bibliography{migration_bibTEST}


\pagebreak
\clearpage

\end{document}

抱歉,前言太长了,我不确定你们是否有必要知道什么。下面是我的号码布:

@article{naidu_nyarko_wang_2016, title={Monopsony power in migrant labor markets: Evidence from the United Arab Emirates},
volume={124}, DOI={10.1086/688877}, number={6}, journal={Journal of Political Economy}, author={Naidu, Suresh and Nyarko, Yaw and Wang, Shing-Yi},
year={2016}, pages={1735–1792}}

有人知道问题可能出在哪里吗?我尝试过多次修复拼写错误并更改 bib 文件的格式。谢谢大家!

相关内容