我正在尝试改进这一点,以便 A、B、C、D 在每一行上正确对齐。
我目前正在使用 \begin{tabular}{ p{0.5cm} | p{17cm} } 来创建垂直线,但如果有更好的方法,我愿意改变它。
PS:这是当前版本非常糟糕的写法:
\begin{tabular}{ p{0.5cm} | p{17cm} }
\textbf{5p} & \textbf{1.} Aria triunghiului care are varfurile $A(0,0)$, $B(2,3)$, $C(-4,2)$ este:
\newline A. $\displaystyle\frac{5}{9} $ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ B. 1 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ C. 8\ \ \ \ \ \ \ \ \ \ \ \ \ D. 2
\\
\textbf{5p} & \textbf{2.} Ecuatia tangentei la graficul functiei $f:\mathbb{R}\to \mathbb{R}$, $f(x)=(x+1)^2+2$ in $x_0=0$ este:
\newline A. 2x+3 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ B. $x^2+2x+3$ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ C. 3\ \ \ \ \ \ \ \ \ \ D. $2x^2+1$\\
\textbf{5p} & \textbf{3.} Daca $x_1, x_2$ sunt solutiile ecuatiei $x^2+3x+1=0$, atunci $x_1^2+x_2^2+x_1\cdot x_2$ este:
\newline A. 8 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ B. 7 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ C. 9 \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ D. 6 \\
\textbf{5p} & \textbf{4.} Multimea solutiilor reale ale inecuatiei $\displaystyle\frac{2x+3}{x^2+x+1}\geq 1$ este:
\newline A. $(-\infty, -1)$\ \ \ \ \ \ \ \ \ \ \ \ B. $[2, +\infty)$ \ \ \ \ \ \ \ \ \ \ \ \ \ C. $[-1,2]$\ \ \ \ \ \ \ \ \ \ \ \ \ D.$(-\infty, -1]\cup [2, +\infty)$ \\
\textbf{5p} & \textbf{5.}Se considera punctele $C(-3,2)$ si $D(1,4)$. Lungimea vectorului $\overrightarrow{\rm CD} $ este:
\newline A. $2\sqrt{2}$\ \ \ \ \ \ \ \ \ \ B. $2\sqrt{2}$ \ \ \ \ \ \ \ \ \ \ C. 8\ \ \ \ \ \ \ \ \ \ D. 20\\
\textbf{5p} & \textbf{6.} Valoarea expresiei $E=\sin^{2} 40^{\circ}+\sin^{2} 50^{\circ}$ este:
\newline A. -1 \ \ \ \ \ \ \ \ \ \ \ \ B. 2 \ \ \ \ \ \ \ \ \ \ \ \ \ C. 0\ \ \ \ \ \ \ \ \ \ \ \ \ D. 1
\end{tabular}
答案1
将每个答案放在其自己的单元格中,并将问题放在 内\multicolumn
。此外,您可能希望在问题之间添加一个空行,以更好地分隔项目。
\documentclass{article}
\usepackage{amssymb}
\begin{document}
\begin{tabular}{l|llll}
5p & \multicolumn{4}{p{17cm}}{1. Aria triunghiului care are varfurile $A(0,0)$, $B(2,3)$, $C(-4,2)$ este:} \\
& A. $\displaystyle\frac{5}{9}$ & B. 1 & C. 8 & D. 2 \\
& & & & \\
5p & \multicolumn{4}{p{17cm}}{2. Ecuatia tangentei la graficul functiei $f:\mathbb{R}\to \mathbb{R}$, $f(x)=(x+1)^2+2$ in $x_0=0$ este:} \\
& A. 2x+3 & B. $x^2+2x+3$ & C. 3 & D. $2x^2+1$ \\
\end{tabular}
\end{document}