我正在对我的论文做最后的调整。我有一个以前学生提供的模板,我正在使用它来遵守大学的论文格式指南。我把附录放在参考文献之前,附录的样式与文档的其余部分相同(特别是字体大小和行距)。
但是,我必须将附录放在参考文献之后(大学要求)。这样做会改变附录的样式,使其与文档的其余部分不同。
我创建了一个最小的工作示例。
论文.tex:
\documentclass[12pt,thesis]{OUdissertation4} %Use 'thesis' for MS and
'dissertation' for Ph.D. dissertation style
\usepackage{enumitem} %for item lists
\usepackage[square,sort,comma,numbers]{natbib} %bibliography
\usepackage[titletoc,title]{appendix} %for appendix
\makeindex
\begin{document}
\title{thesis title}
\author{author}
\begin{preface}
\prefacesection{Acknowledgments}
\par
Here are the acknowledgements. blablabla blabla blablabla blablablablabla blablablablabla blablablablabla blabla
\tableofcontents
\listoftables
\listoffigures
\prefacesection{Abstract}
\par
Here is the abstract. blablabla blablablablabla blablablablabla blablablablabla blablablablabla blablablablabla blabla
\end{preface}
\chapter{Introduction}
Here is one chapter. I am citing \cite{ieee}. blablabla blablablablabla blablablablabla blablablablabla blablablablabla blablablablabla blablablablabla blabla
\newpage
\references{ieeetr}{references}
\begin{appendices}
\chapter{ATD}
\label{app_ATD}
Since the first measurement campaign focuses on the ATD antenna, the case studies for the WSR-88D, RaXPol, and the 5G base station antennas will be repeated for the ATD specifically. The ATD has the following characteristics:
\begin{itemize}[noitemsep]
\item It comprises 76 panels for a total of 4864 elements.
\item It has an area of 12.6 m\textsuperscript{2} and a maximum dimension of 4.06 m.
\item It has a gain of 42.3 dBi, beamwidths of 1.7$^\circ$ in azimuth and 1.6$^\circ$ in elevation, a peak power of 58.4 kW, and operates at 3.1 GHz.
\end{itemize}
\end{appendices}
\end{document}
参考文献.bib:
@ARTICLE{ieee,
author={},
journal={ANSI/IEEE Std 149-1979},
title="{IEEE Standard Test Procedures for Antennas}",
year={1979},
volume={},
number={},
pages={s},
doi={10.1109/IEEESTD.1979.120310},
ISSN={},
month={},
}
模板文件很长,我把它放在Drive上:模板文件
更新 Manuel Kuehner我把它放在了 pastebin 上:https://pastebin.com/TgL5guJB根据内容显示,该类文件最后修订日期为2004年3月3日。
知道如何让这些附录遵循模板的样式吗?这可能真的很容易,但我的乳胶技能有限。
谢谢!