
박사 학위 논문 하우투 책(내 생각에 Rugg와 Petrie) 중 하나에서는 페이지 한 줄에 논문 한 페이지를 요약하는 문서를 준비하라는 조언이 나와 있습니다. 저는 LaTeX(인문학 논문을 작성하기 위해 XeLaTeX, 회고록, 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
.
mythesis.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를 컴파일하면 다음과 같은 결과가 나옵니다.
이제 뻔뻔한 프로모션이 있습니다. 내 아내 Joan Bolker의 베스트셀러하루 15분만에 논문 작성하기질문을 형식화하는 데 너무 많은 시간을 소비하여 미루는 대신 실제 작업을 수행하는 데 도움이 될 수 있습니다.
답변3
퀵키...
문서에서 사용할 계획이 없다면 endnotes
다음 환경에 한 줄 요약을 삽입하는 것이 쉬운 방법입니다.
\endnote{This is about that}
미주 섹션에서는 해당 정보를 수집하므로 의도한 용도에 충분합니다. 문서가 완료되면 다음을 추가하여 인쇄하지 않도록 할 수 있습니다.
\renewcommand{\endnote}[1]{}
당신의 서문에.