使用 LyX 调整 BibTeX 的边距

使用 LyX 调整 BibTeX 的边距

我正在写论文。大多数新章节等的第一页都以 2 英寸边距开始。但是,参考书目应该以 1 英寸边距开始。我将文档的默认边距保留为 1 英寸,因为每个新章节都会将第一页设置为 2 英寸,但 BibTeX 会忽略 1 英寸的默认值。我正在使用报告类。有什么想法可以调整它吗?

% Preview source code from paragraph 0 to 13

\begin{singlespace}

\chapter*{\textmd{\large Drudge: A High-Level to High-Level Translator for
the EasyC Platform}}
\end{singlespace}

\thispagestyle{empty}

\begin{center}
Brandon Paul Jones
\par\end{center}

\begin{center}
\vspace{4sp}

\par\end{center}

\begin{center}
A Thesis presented to the faculty of Arkansas State University in
partial fulfillment of the requirements for the Degree of
\par\end{center}

\begin{center}
\vspace{2sp}
MASTER OF SCIENCE IN COMPUTER SCIENCE\\
\vspace{0.25in}

\par\end{center}

\begin{center}
ARKANSAS STATE UNIVERSITY\\
December 2012
\par\end{center}

\begin{center}
\vspace{2in}

\par\end{center}

\begin{singlespace}
\begin{center}
Approved by\\
Dr. Jeff Jenness, Thesis Advisor\\
Dr. Hai Jiang, Committee Member\\
Dr. Hung-Chi Su, Committee Member\\
Mr. Jake Qualls, Committee Member\pagebreak{}
\par\end{center}
\end{singlespace}


\chapter*{\textmd{\large ABSTRACT}}

\begin{doublespace}
\begin{center}
{\large Brandon Paul Jones}\linebreak{}

\par\end{center}{\large \par}

\begin{center}
{\large Drudge: A High-Level to High-Level Translator for the EasyC
Platform}{\Large }\linebreak{}

\par\end{center}{\Large \par}
\end{doublespace}

The use of abstraction along with the use of critical thinking are
key concepts in computer science. The development of these skills
are crucial for survival and success in the field. I believe the key
to success is to allow students to experiment with computer science
concepts at an early age. The BEST robotics competition is a fertile
ground for potential future computer scientists and engineers, however
the current robotic programming platforms prove to be overly challenging
for the young audience. In this thesis, I propose both a new approach
to teaching younger individuals programming, as well as, a new platform
in which to do so.\pagebreak{}

\bibliographystyle{plain}
\bibliography{proposal}

答案1

不确定 LyX,但你可以使用geometry包然后使用

\newgeometry{left=1in,right=1in}

就在参考书目之前

相关内容