番号付けの練習、エラー: 番号が欠落しているため、ゼロとして扱われます

番号付けの練習、エラー: 番号が欠落しているため、ゼロとして扱われます

問題集のいくつかの演習に横に番号を付けようとしたら、エラーが発生しています

「欠落した数字はゼロとして扱われます。」

ここに示す「\multicolumn」の後の 2 行:

\documentclass[11pt,epsfig]{article}

\oddsidemargin=0in
\evensidemargin=0in
\textwidth=6.3in
\topmargin=-0.5in
\textheight=9in

\parindent=0in
\pagestyle{empty}

\input{notestpoints}

\begin{document}

QUIZ 3.1-3.5 \hfill {Name:} {\underline {\hspace{2.5in}}}
\vspace{1pc}

Simplify each expression by clearing parentheses and combining like terms. 
\\
\begin{problem}{0}
$\displaystyle -2(4a+3)-14$
\end{problem} 
\vspace{.6 in}

\begin{problem}{0}
$\displaystyle -2(4a+3)-14$
\end{problem} 
\vspace{.6 in}

Solve the equation using the appropriate property of equality. %\textit{(2 points each)}
\vspace{1pc}

\begin{tabular}{ll}
\multicolumn{2}{c} 
\problem{} $\displaystyle -20t=36$ \hspace{1.5in} \problem{} \hspace{.15in} $\displaystyle 1.2+z=-3.7$ \\\\\\
\problem{} $\displaystyle \frac{2}{3}y=12$ \hspace{1.5in} \problem{} \hspace{.15in} $\displaystyle 7=\frac{x}{4}$
\end{tabular}

\end{document}

私は LaTeX についてはあまり経験がありません。

答え1

と組み合わせて@Mario SE による回答\problemカウンターを印刷するコマンドを作成しました。

しかし、ここでは表形式で列挙された問題のリストに関連するトピックがたくさんあると確信しています。

\documentclass[11pt,epsfig]{article}

\oddsidemargin=0in
\evensidemargin=0in
\textwidth=6.3in
\topmargin=-0.5in
\textheight=9in

\parindent=0in
\pagestyle{empty}

%\input{notestpoints}
\newcounter{problem}
\setcounter{problem}{0}
\newcommand{\problem}{\stepcounter{problem}\theproblem.\ }

\begin{document}

Solve the equation using the appropriate property of equality. %\textit{(2 points each)}
\begin{center}
\renewcommand*{\arraystretch}{1.5}
\begin{tabular}{|ll@{\hspace*{2in}}||ll@{\hspace*{2in}}|}
\problem $-20t=36$               &           & \problem $1.2+z=-3.7$       & \\
\problem $\frac{2y}{3}=12$       &           & \problem $7=\frac{x}{4}$    &
\end{tabular}
\end{center}

\end{document}

ここに画像の説明を入力してください

答え2

次のようなことをしようとしていますか?:

\documentclass{article}

\begin{document}

\begin{center}
\renewcommand*{\arraystretch}{1.5}
\begin{tabular}{|ll@{\hspace*{2in}}||ll@{\hspace*{2in}}|}
$-20t=36$               &           &$1.2+z=-3.7$       & \\
$\frac{2y}{3}=12$       &           &$7=\frac{x}{4}$    & \\
\end{tabular}
\end{center}

\end{document}

ここに画像の説明を入力してください

関連情報