如何使用枚举实现以下功能?
原文如下:
\documentclass[a4paper,11pt]{article}
\usepackage{enumitem, lipsum}
\oddsidemargin 0in \evensidemargin 0in \topmargin 0in \textheight 9.2in \textwidth 6.5in
\begin{document}
\hrule
\begin{enumerate}
\item[]
\begin{minipage}{.5\linewidth}
Date of Start of Project: XXXX XXXX
\end{minipage}
\begin{minipage}{.5\linewidth}
Total Cost of Project :
XXXXXXXXXX
\end{minipage}\\
\hrule
\item Methodology:
As in any area of research in Mathematics, the research is exploratory in nature. However, we shall evolve group interaction with many eminent professors nationally and internationally known.\\
\hrule
\item Salient Research Achievements: \label{salient}\\
\textbf{First Year: 2015-2016}\\
\lipsum[1]
\begin{enumerate}[label=\ref{salient}.\arabic*]
\item Summary of Achievements.\label{sum_acheive}
\begin{enumerate}[label=\ref{sum_acheive}.\arabic*]
\item \lipsum[1-2]
\item \lipsum[3-5]
\end{enumerate}
\end{enumerate}
\end{enumerate}
\hrule
\end{document}
所需物品:
- 像 Word 文档中的边框。
- 在每一页中,边框应该像在word文档中一样(我已经在上面添加了)。
- 因此,枚举应该充当
longtable
环境(请注意,我不想使用longtable
环境来实现这一点)。