Viva 准备文件

Viva 准备文件

在一本博士论文指南书中(我认为是 Rugg 和 Petrie 所著),建议准备一份文件,每行总结一页论文的内容。我对使用 LaTeX(我使用 XeLaTeX、memoir 和 BibLaTeX/Biber 来生成我的人文论文)创建这样的总结文档很感兴趣。

我不想在反复试验的基础上创建这样的文档 - 编写一行文本、编译、检查、审阅和修改。我的问题是哪些软件包和自定义可能有助于实现我的目标?我希望摘要页面引用论文页面,然后其余行填写我对页面的摘要。

答案1

与 Ethan Bolker 的方法略有不同:我在我的论文中做了类似的事情,包括文档本身内部的摘要,放在结尾处,作为(字面上的)重述。

% Maintain a nice little history block to add things into
\edef\recap{ }
\makeatletter
\newcommand{\recapAdd}[1]{\protected@edef\recap{\recap{}#1 }}
\makeatother
\newcommand{\recapAddEcho}[1]{{\textbf{#1}}\recapAdd{#1}}
\let\firstsentence\recapAddEcho

然后打印出来:

\section{Recapitulation and closing remarks} \label{recapitulation}
\recap
\bigskip

在此期间,用来\firstsentence将内容添加到“回顾”缓冲区中。

\firstsentence{The diffusion of digital technologies (bla bla bla).}

\recapAdd你可以在需要添加到回顾缓冲区的地方使用,但出于风格原因,你想要立即回显文本:

\recapAdd{Theories of pedagogy can help us ``\emph{get to the root of
conditioning through practising repetitions}'' -- but they fail to model
the productive, explicating, way in which learning unfolds in online peer
production communities.} \textbf{Theories of pedagogy can help us ``\emph{get to the root of
conditioning through practising repetitions}'' \cite[p. 199]{sloterdijk2013change}
-- but they fail to model the productive, explicating, way in which learning
unfolds in online peer production communities.}

附言:Marian Petre 是我的内部考官,我通过了 :-)

答案2

如果我正确理解了你的问题,这个策略可能会有效。

在您的论文中,\precis根据需要在摘要文档中发表评论,发出命令(如下例所示)。这不会每页自动发生一次,但我怀疑这不是您真正想要的。

然后根据您的摘要编译文件,如图所示。

如果您采纳这个想法,那么有办法改进它。例如,您可能希望在摘要文档中为论文的每一章添加一个新的部分,其中包含章节名称和章节编号。您可以安排自动为每个章节或部分生成摘要。

下面的 mythesis.tex 文件包含所有章节。对于您的真实论文,每个章节可能都应该\include从其自己的文件中下载。您还可以\include在论文本身的后面找到摘要\immediate\closeout\precistext

神话.tex:

\documentclass{book}

\newwrite\precistext
\immediate\openout\precistext=precistext.tex

\newcommand{\precis}[1]{%
\immediate\write\precistext{\arabic{page}: #1 \par}
}
\begin{document}

\chapter{Introduction}
\precis{Summary of introduction}
Here is the complete introduction.

\chapter{Literature Review}
\precis{First short summary of literature review}
\newpage
\precis{Second short summary of literature review}

\chapter{My Contribution}
\precis{Here's what I discovered that no one knew before.}
This chapter is empty because I haven't done the work yet.

\chapter{Summary}
\precis{It was a lot of work  but worth it.}

\immediate\closeout\precistext
\end{document}

概要

\documentclass{article}

\begin{document}

Here are the not quite page by page contents of my thesis:

\input{precistext}

\end{document}

然后编译 precis.tex 得到

在此处输入图片描述

现在来点无耻的宣传。我妻子琼·博尔克的畅销书每天花十五分钟写论文可以帮助您完成实际工作,而不是花太多时间在格式化问题上而拖延。

答案3

快餐……

如果您不打算endnotes在文档中使用,一个简单的方法就是在以下环境中插入单行摘要:

\endnote{This is about that}

尾注部分会收集这些内容,这些内容应该足以满足您的预期用途。文档完成后,您可以通过添加以下方式让它们不打印:

\renewcommand{\endnote}[1]{}

在你的序言中。

相关内容