首页 > 解决方案 > 乳胶文档中的页码未正确显示

问题描述

我对用 Latex 制作文件非常陌生,我需要写一份报告。我制作了一个 main.tex,我在其中调用了每一章。我想 :

我浏览了以前的帖子并找到了一些代码,但不知何故我的页码没有显示。页码仅在标题页上可见,我不希望标题页有任何编号。这是我目前拥有的代码:

\documentclass{Thesis}
\input{import_packages.tex}
\pagestyle{plain}
\pagenumbering{roman}
\begin{document}
\input{titlepage.tex}

\frontmatter
\input{Declaration.tex}
\input{Acknowledgement.tex}


\input{TableOfContents.tex} 
\input{ListOfFigures.tex}   
\input{ListOfTables.tex}

\mainmatter
\input{Introduction.tex}    
\input{ProblemDescription.tex}
\input{BackgroundResearch.tex}
\input{DataPreprocessingAndPreparation.tex}
\input{AlgorithmAndApproach.tex}
\input{Implementation.tex}
\input{ExperimentalAndStatisticalResults.tex}
\input{Conclusion.tex}
\input{FutureScopeofWork.tex}   
\end{document}

如果有人可以帮助我,我将不胜感激。谢谢你。

标签: latex

解决方案


推荐阅读