论文模板

论文模板

我目前正在尝试设置一个类似Siarhei Khirevich 的网站负责设置网站的人在如何设置模板方面提供了很好的建议,但基本上我对乳胶还很陌生。而且我对此很困惑。这里有人能建议我如何设置我的模板,使其类似于此照片

任何意见表示赞赏

MWE 来自评论:

{\textendash={400,400}, % en-dash, add more space around it
"28={ ,150}, % left bracket, add space from right
"29={150, }, % right bracket, add space from left
\textquotedblleft={ ,150}, % left quotation mark, space from right
\textquotedblright={150, }} % right quotation mark, space from left

\SetExtraKerning[unit=space]
{encoding={*}, family={qhv}, series={b}, size={large,Large}}
{1={-200,-200}, 
    \textendash={400,400}}

\usepackage[tracking=true]{microtype}
\SetTracking{encoding={*}, shape=sc}{40}

\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{caption}
\usepackage{subcaption}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyhead[RO,LE]{Thesis Title}
\fancyfoot{}
\fancyfoot[LE,RO]{\thepage}
\fancyfoot[LO,CE]{Chapter \thechapter}
\fancyfoot[CO,RE]{Author Name}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}

\usepackage[style=authoryear,sorting=none]{biblatex}
\addbibresource{references.bib}

\hbadness=10000
\hfuzz=50pt

\begin{document}

\include{titlepage}

\newpage
\begin{tabbing}
    1.  Supervisor: \= Dr. ......    \\
    \>  \= Mechanical, Aeronautical \& Biomedical Department\\
    \>  \= University \emph{of} ..... \\
    \>  \= ..... \\
\end{tabbing}

\vspace{10mm}
Supervisor's signature: \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_

\vspace{20mm}
\begin{tabbing}
    2. Second Reader: \= Dr. .....    \\
    \>  \= Mechanical, Aeronautical \& Biomedical Department\\
    \>  \= University \emph{of} ..... \\
    \>  \= .... \\
\end{tabbing}

\vspace{10mm}
Second Reader's signature: \_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_\_


\include{Abstract}

\include{Declaration}

\include{Acknowledgements}

\include{Dedication}

\microtypesetup{protrusion=false} % disables protrusion locally in the document
\tableofcontents
\microtypesetup{protrusion=true} % enables protrusion

\listoffigures

\listoftables

\chapter{Introduction}
\input{chapters/introduction}

\chapter{Literature Review}
\input{chapters/chapter02}

\chapter{Theory}
\input{chapters/chapter03}

\chapter{Computational Modelling}
\input{chapters/chapter04}

\chapter{Results and Discussion}
\input{chapters/chapter05}

\chapter{Conclusions and Future Works}
\input{chapters/chapter06}

\chapter*{References}


\appendix
\chapter{Turnitin Originality Report}

\chapter{Computational Modelling}

\chapter{Physics Setup}

\end{document}

答案1

经验法则是,根据需要加载尽可能多的包,但尽可能少地加载包。

以下使用标准 KOMA-book,包括用于另一种字体的字体包、mathtools一些amsmath修复和biblatex引用。这应该是您现在所需要的全部内容。

您还应该记住以下软件包:

  • chemformula对于化学
  • siunitx适用于排版单位
  • babel用于正确定位和连字
  • booktabs阅读文档后生成漂亮的表格......更多,取决于你想做什么

我们需要页面、章节和节标题以及页眉。一些数学知识和一些字体。所有这些都可以在任何 LaTeX 介绍。

\documentclass[fleqn,chapterprefix=true,headsepline]{scrbook}
\usepackage{scrlayer-scrpage}%header
\clearpairofpagestyles
\cehead{\leftmark}
\cohead{\rightmark}
\ohead*{\pagemark}
\addtokomafont{pagehead}{\upshape}
\usepackage{libertine}%text font
\usepackage[libertine]{newtxmath}%a bit matching math
\usepackage{mathtools}%nice math
\usepackage[style=authoryear]{biblatex}%citing 
\usepackage{blindtext}%dummy text
\addbibresource{biblatex-examples.bib}
\begin{document}
\chapter{Sarah is crazy}
\blindtext 
\begin{equation}
    \gamma = \frac{1}{\tau} = \frac{D_\text{eff}}{D_\text{m}}
\end{equation}
as defined by someone different than Frank\footfullcite{companion}

\blindtext[8]
\blinddocument
\end{document}

scrguien在基类和相应包的文档中可以找到更多信息。

相关内容