我试图在两行之间添加一些垂直间距。在下面的例子中,问题 2 和问题 3 之间的间距应该与问题 1 和问题 2 之间的间距相同。但是,正如您在屏幕截图中看到的那样,结果并不是理想的结果。
生成该文档所用的代码如下。我非常欢迎任何关于改进此代码的补充意见,因为我对此还很陌生。
\documentclass[letterpaper,12pt]{article}
\usepackage[T1]{fontenc}
\usepackage{xcolor}
\usepackage{amstext}
\usepackage{fancyhdr}
\usepackage{graphicx}
\pagestyle{fancy}
\chead{}
\definecolor{cbseblue}{HTML}{7388c7}
\definecolor{cbsegreen}{HTML}{bcd490}
\renewcommand{\headrule}{{\color{cbseblue} \hrule width\headwidth height\headrulewidth \vskip-\headrulewidth}}
\renewcommand{\footrule}{{\color{cbseblue}\vskip-\footruleskip\vskip-\footrulewidth\hrule width\headwidth height\footrulewidth\vskip\footruleskip}}
\lfoot{\color{cbseblue}\textit{June 5, 2012 - 14:04:23}}
\cfoot{\color{cbseblue}\thepage}
\fancyhfoffset[R]{0in}
\renewcommand{\headrulewidth}{1.2pt}
\renewcommand{\footrulewidth}{1.2pt}
\renewcommand{\headsep}{26pt}
\renewcommand{\footruleskip}{0.1in}
\setlength{\parindent}{0pt}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\oddsidemargin -0.5in
\evensidemargin 0.0in
\textwidth 7.5in
\headheight 0.5in
\topmargin -0.7in
\textheight 8.9in
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\vspace*{-10pt}
\begin{center}
\Large { \bfseries Model Exam 3 }
\\[46pt]
\end{center}
\textbf{1.} Differentiate the function $\sin \left( {{x^2} + 5} \right)$ w.r.t. $x$ $\frac{{dy}}{{dx}} = 2x\cos \left( {{x^2} + 1} \right)$ {\color{cbseblue}\textit{[1 pts]}}
\\[440pt]
\textbf{2.} Differentiate $y = \sin \left( {{x^2} + 5} \right)$ w.r.t. $x y = \sin \left( {{x^2} + 5} \right) \frac{d}{{dx}}\left( y \right) = \frac{d}{{dx}}\sin \left( {{x^2} + 5} \right)$ {\color{cbseblue}\textit{[1 pts]}}
\\[440pt]
\textbf{3.} Find the values of $a,\;b,\;c$$\;$and$\;$$d$ from the equation: $\left[ {\begin{array}{*{20}{c}}
{\;\;\;\;a - b}&{2a + c} \\
{2a - b}&{3c + d}
\end{array}} \right] = \left[ {\begin{array}{*{20}{c}}
{ - 1}&5 \\
\;\;\;\;0&{13}
\end{array}} \right]$ {\color{cbseblue}\textit{[1 pts]}}
\\[220pt]
\end{document}
另一件需要考虑的事情是,这次考试的问题来自数据库,输入这些问题的用户还为解决方案保留的空间分配了一个系数(比如说 1、2、3、4 或 5)。因此,在构建 pdf 时,我首先通过以下循环以编程方式创建 tex 文件:
//php代码 foreach($questions 作为 $questions) { echo $question['content'].“\n”; $space = 110 * $question['系数']; 回显'\\\['.$space.'pt].“\n”; }
答案1
即使引入分页符,页面开头的垂直空间也会被占用。我会在各个问题之间手动插入垂直空间(与您所做的类似,只是不同),然后在分页符后重新插入。也许像这样
问题 1
页面上 2/3 垂直间隙
问题 2
页面上 1/3 垂直间隙
--- 分页符 ---
页面上 1/3 垂直间隙
问题 3
页面上 2/3 垂直间隙
下面是生成该代码的一些代码:
% ...document preamble
\begin{document}
\vspace*{-10pt}
\begin{center}
\Large\bfseries Model Exam 3
\end{center}
\bigskip\bigskip
\textbf{1.} Differentiate the function $\sin \left( x^2 + 5 \right)$ w.r.t.\
$x$ $\frac{\mathrm{d}y}{\mathrm{d}x} = 2x\cos \left( x^2 + 1 \right)$
{\color{cbseblue}\textit{[1 pts]}}
\vfill \vfill
\textbf{2.} Differentiate $y = \sin \left( x^2 + 5 \right)$ w.r.t.\
$x y = \sin \left( x^2 + 5 \right) \frac{\mathrm{d}}{\mathrm{d}x}\left( y \right) =
\frac{\mathrm{d}}{\mathrm{d}x}\sin \left( x^2 + 5 \right)$
{\color{cbseblue}\textit{[1 pts]}}
\vfill
\newpage
\null\vfill
\textbf{3.} Find the values of $a,\;b,\;c$ and~$d$ from the equation: $\left[ \begin{array}{rr}
a - b & 2a + c \\
2a - b & 3c + d
\end{array} \right] = \left[ \begin{array}{rr}
-1 & 5 \\
0 & 13
\end{array} \right]$
{\color{cbseblue}\textit{[1 pts]}}
\vfill \vfill
\end{document}