编译后仅能显示少数页面

编译后仅能显示少数页面

当我运行main.tex文件时,只有少数页面作为输出出现,其余页面则无法出现。

以下是main.tex文件:

\documentclass[12pt]{report}
\usepackage{hyperref}
\usepackage{natbib}
\usepackage{xpatch}
\usepackage{url}
\usepackage{enumitem}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage{graphicx}
\graphicspath{{images/}}
\usepackage{caption}
\usepackage{subcaption}
\usepackage[a4paper, width=150mm, top=25mm, bottom=25mm, bindingoffset=6mm]{geometry}
\usepackage{ragged2e}

\date{02 March 2020}

\begin{document}

\input{titlepage}

\pagenumbering{roman}

\chapter*{Dedication}

\addcontentsline{toc}{chapter}{Dedication}

\chapter*{Declaration}

\addcontentsline{toc}{chapter}{Declaration}

\chapter*{Abstract}
\input{chapters/abstract_v3}
\addcontentsline{toc}{chapter}{Abstract}

\chapter*{Foreword}
\input{chapters/foreword}
\addcontentsline{toc}{chapter}{Foreword}

\chapter*{Introduction}
\input{chapters/introduction_v2}
\addcontentsline{toc}{chapter}{Introduction}

\pagenumbering{arabic}

\chapter{Computers for Children}
\input{chapters/chapter1_v1}

\chapter{Methophobia}
\input{chapters/chapter2_v1}

\chapter{Languages for Computers and for People}
\input{chapters/chapter3_v1}

\chapter{Microworlds:Incubators for Knowledge}
\input{chapters/chapter4_v1}

\chapter{LOGO's Roots:Piaget and AI}
\input{chapters/chapter5_v1}

\chapter*{Acknowledgements}
\addcontentsline{toc}{chapter}{Acknowledgements}

In 1964 I moved from one world to another. For the previous five years I had lived in Alpine villages near Geneva, Switzerland, where I worked with Jean Piaget. The focus of my attention was on children, on the nature of thinking, and on how children become thinkers. I moved to MIT into an urban world of cybernetics and computers. My attention was still focused on the nature of thinking, but now my immediate concern were with the problem of Artificial Intelligence: How to make machines that think?

\chapter*{Appendix A: Interviews}
\addcontentsline{toc}{chapter}{Appendix A: Interviews}
\input{chapters/appendix}

\bibliographystyle{apa}
\bibliography{/Users/pythonbuddha/Documents/Thesis/References.bib}
\addcontentsline{toc}{chapter}{Bibliography}

\end{document}

相关内容