我正在使用\includefile{}
这个功能在论文提案中添加初步文献综述。规范要求在右上角打印“附录”。我尝试像这样结束我的提案主体:
\printbibliography
\rhead{Appendix}
\include{literatureReview}
\end{document}
但它不起作用。整个 literatureReview 文件的左上角都有标题“REFERENCES”。提案主页面使用普通页面样式,并且 literatureReview 目前没有任何部分。有人知道正确的做法吗?
编辑:这是一个最小的可编译版本:
\documentclass{测试}
\usepackage[american]{babel}
\usepackage[style=apa]{biblatex}
\usepackage{csquotes}
\usepackage{pdfpages}
\usepackage{fancyhdr}
\DeclareLanguageMapping{american}{american-apa}
\usepackage{hyperref}
\addbibresource{someBib}
%which contains:
%@Article{TakeuchiKoichi05,
% author={Takeuchi Koichi and Inui Kentaro and Fujita Atsushi and Takeuchi Nao and Abe Shuya},
% title={Construction of Compositional Lexical Database Based on {L}exical {C}onceptual {S}tructure},
% journal={IPSJ SIG Notes},
% publisher={Information Processing Society of {J}apan (IPSJ)},
% year={2005},
% month=sep,
% volume={2005},
% number={94},
% pages={123-130},
%}
\title{A Title}
\author{Nathan Glenn}
\begin{document}
\begin{refsection}
\maketitle
%\begin{refsection}
Random citation: \parencite{TakeuchiKoichi05}.
\printbibliography
\end{refsection}
\clearpage
\markboth{Appendix}{}
\begin{refsection}
\include{literatureReview}
\end{refsection}
\end{document}
下面是我使用的类文件:
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{test}[2011/5/20 BYU Honors Thesis proposal]
\LoadClass[12pt]{article}
\usepackage[margin=1in]{geometry}
\usepackage{setspace}
\doublespace
\pagestyle{myheadings}
\thispagestyle{plain}
\setlength{\parindent}{30pt}
\global\let\@course\@empty
\renewcommand{\maketitle}{
\begin{flushright}
\@author\\
\ifx\@date\@empty
\today
\else
\@date\\
\fi
\end{flushright}
\begin{center}
\Large{\@title}\\An Honors Thesis Proposal
\vspace{6 pc}
\end{center}
}
literatureReview.tex 没有序言,并且不会以任何方式改变页面样式。
答案1
您可以使用该\markboth
命令来获取所需的标记,因此您可以使用
\clearpage
\markboth{Appendix}{}
\include{literatureReview}
由于您已经加载了该fancyhdr
包,您可以将以下几行添加到该文件中literatureReview.tex
:
\pagestyle{fancy}
\fancyhead[L,C]{}
\fancyhead[R]{Appendix}