使用 LaTeX 撰写和管理论文

使用 LaTeX 撰写和管理论文

我正在写论文。我是 LaTeX 新手,知识和经验有限。我想用 LaTeX 还是 LyX 写论文。哪一个更适合写论文?如果我用 LaTeX,那么我该如何更有效地使用它。如果用 LaTeX,我希望.tex每个章节都有单独的文件,每个章节都有自己的参考书目。那么我该如何合并所有章节和其他问题的交叉引用。我必须使用我的 Univ. 模板来写论文。如果有人能为我提供一般指导,指导我如何用 LaTeX 管理和编写像论文这样的长文档,我将不胜感激。

答案1

以下代码源自我的模板代码(目前仅在SVN 版本)。我的旧模板可以在本网站

它展示了如何使用 include 和 includeonly 组织章节。此外,还设置了开头、主要部分和附录的页码。可以使用 biblatex 为每个章节设置一个目录,但我还没有尝试过。

...

\addbibresource{bib/BibtexDatabase}

\includeonly{
 content/Title,
 content/0-Abstract,
 content/0-Introduction,
 content/1-Theory,
 content/2-Experiments,
 content/3-Results,
 content/4-Discussion,
}

\listfiles

\begin{document}

% required for hyperref (not displayed)
\pagenumbering{alph}\setcounter{page}{1}%
\pagestyle{empty}

% -- title page --
\include{content/Title}
\cleardoublepage

% -- abstract --
\include{content/0-Abstract} 
\cleardoublepage

\frontmatter
\pagestyle{scrheadings}

% -- table of contents --
%
% add table of contents to pdf bookmarks
\pdfbookmark[1]{\contentsname}{toc}
\tableofcontents

% --- Main Document --- --- --- --- --- --- ---
\mainmatter
%
\include{content/0-Introduction}
\include{content/1-Theory}
\include{content/2-Experiments}
\include{content/3-Results}
\include{content/4-Discussion}

% -- bibliography --
% (must be placed _before_ appendix)
\printbibliography[%
  heading=bibintoc, % (bibintoc, bibnumbered)
]   

%% -- list of figures and tables --
\clearpage
\listoffigures
\listoftables

% --- Appendix --- --- --- --- --- --- ---
\appendix % switch to appendix mode
\include{content/Z-Appendix}

\end{document}

答案2

在“管理”方面,我真的推荐一个版本控制系统。git(和 github)对我来说非常好。

答案3

我开始喜欢包todonotes这有助于很多记住所有你仍需做的大事小事。精通 LaTeX 的审阅者也可以使用它。

答案4

我最近开始学习 latex 来写论文。我可以推荐两本很棒的书供参考。

1)Stefan Kottwitz 撰写的《Latex for Beginner's》(这本书很棒,其中有一节讲解了如何处理大型文档 - 将章节放在不同的文件中。)

http://www.amazon.co.uk/LaTeX-Beginner%2527s-Guide-Stefan-Kottwitz/dp/1847199860/ref=sr_1_1?ie=UTF8&qid=1317044296&sr=8-1

2)Latex 维基百科

http://en.wikibooks.org/wiki/LaTeX

刚开始时一位朋友告诉我:

a) 不要使用模板。它们很诱人,但你可以自己做所有事情,并在此过程中了解乳胶如何更好地工作。我尝试使用一些模板,但它们比从头开始学习书籍课程更令人困惑。

b) 使用 biblatex 和 biber。您希望在每个章节末尾都附上参考书目,biblatex 无需任何额外的软件包即可实现这一点,而且文档也很好。

c)运行“texdoc”是你的好朋友!(在 Windows 上获取软件包文档)

至于编辑器,我使用 texworks,因为它很简单,并且附带 TexLive 2011。同样,LyX 也很诱人。

祝你好运!

相关内容