口頭試問の準備書類

口頭試問の準備書類

博士論文のハウツー本 (Rugg と Petrie だったと思います) の 1 つに、論文の 1 ページを 1 行にまとめた文書を準備するようにというアドバイスがあります。私は LaTeX (人文科学の論文を作成するために XeLaTeX、memoir、BibLaTeX/Biber を使用しました) を使用して、そのような要約文書を作成することに興味があります。

私は、このような文書を試行錯誤しながら(テキストを 1 行書いて、コンパイルして、チェックして、レビューして、修正して)作成したくありません。私の質問は、私の目標を達成するために、どのようなパッケージとカスタマイズが役立つかということです。要約ページが論文ページを参照し、残りの行にページの概要を記入したいと考えています。

答え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.}

追伸: マリアン・ペトレが私の内部試験官で、私は合格しました :-)

答え2

あなたの質問を正しく理解していれば、この戦略はうまくいくかもしれません。

論文では、\precis要約文書にコメントを追加したい回数だけコマンドを発行します (以下の例を参照)。これは 1 ページにつき 1 回自動的に実行されるわけではありませんが、おそらくこれは本当に必要なことではないと思います。

次に、図に示すように、要約を使用してファイルをコンパイルします。

このアイデアを採用すれば、改善する方法がいくつかあります。たとえば、論文の各章ごとに、章名と章番号が付いた新しいセクションを要約文書に作成するとします。各章またはセクションの概要が自動的に生成されるように設定することもできます。

以下の 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}

プレシス.tex

\documentclass{article}

\begin{document}

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

\input{precistext}

\end{document}

次にprecis.texをコンパイルすると、

ここに画像の説明を入力してください

さて、恥知らずな宣伝です。私の妻ジョアン・ボルカーのベストセラー1日15分で論文を書く質問のフォーマットに時間をかけすぎて先延ばしにするのではなく、実際の作業を行うのに役立つ場合があります。

答え3

ちょっとだけ...

ドキュメント内でを使用する予定がない場合は、endnotes簡単なハックとして、この環境に 1 行の要約を挿入するだけです。

\endnote{This is about that}

エンドノートセクションには、目的の用途に十分な量のメモが集められます。文書が完成したら、次の項目を追加することでメモを印刷しないようにすることができます。

\renewcommand{\endnote}[1]{}

あなたの序文に。

関連情報