Overleaf 上有哪些优秀的理科硕士论文提案模板?

Overleaf 上有哪些优秀的理科硕士论文提案模板?

我需要写一份硕士论文提案,但我似乎找不到任何好的模板。你们知道有什么好的模板吗?很紧急 :)

答案1

我成功地完成了我的硕士论文,论文题目是我想讨论的课题,我和我喜欢的教授一起,在一家我喜欢的公司的帮助下,通过提交一份使用tufte-latex班级。

然而,我猜想,不是文档类,而是你的提案的内容,能够帮助你解决这个问题!

无论如何,tufte-latex 类非常好(尽管它似乎没有得到积极开发 - 但对于您的需要它应该可以完成工作)。

这是一个帮助您入门的示例 ;)

\documentclass[english,a4paper,twoside,sfsidenotes,openany,final]{tufte-book}

\usepackage[demo]{graphicx}

\title[]{title of proposal}
\author[Your Name]{Your Name}
\publisher{thesis proposal}
\date{}

% --new title page--

\renewcommand{\maketitlepage}[0]{%
  \cleardoublepage%
  {%
  \sffamily%
  \begin{fullwidth}%
  \fontsize{18}{20}\selectfont\par\noindent\textcolor{darkgray}{\allcaps{\thanklessauthor}}%
  \vspace{11.5pc}%
  \fontsize{21}{27}\selectfont\par\noindent\textcolor{darkgray}{\allcaps{\thanklesstitle}}%
  \vfill%
  \fontsize{14}{16}\selectfont\par\noindent\textcolor{darkgray}{\allcaps{\thanklesspublisher}}%
  \end{fullwidth}%
  }
  \thispagestyle{empty}%
  \clearpage%
}


\usepackage{filecontents}

\begin{filecontents*}{\jobname.bib}
  @book{Knu86,
    author = {Knuth, Donald E.},
    year = {1986},
    title = {The \TeX book},
  }
\end{filecontents*}

\begin{document}

\maketitle

\section{Background}

\newthought{Here} you provide basic background about the subject of your thesis\sidenote{Interesting insight on the work you want to carry on.}, providing also some essential references\cite{Knu86}.

\section{Proposal}

\newthought{Here} you state your proposal, along with some essential references of the methods, techniques you want to use.
\begin{marginfigure}
    \centering
    \includegraphics[width=.8\textwidth]{}
    \caption{some interesting figure}
    \label{fig:Huang1995a}
\end{marginfigure}

State clearly the objectives you want to achieve.

\renewcommand{\bibname}{References}
\bibliography{\jobname} % if you’re using BibTeX
\bibliographystyle{plainnat}
\end{document}

相关内容