번호 매기기 연습, 오류: 번호 누락, 0으로 처리됨

번호 매기기 연습, 오류: 번호 누락, 0으로 처리됨

문제 세트에 대한 몇 가지 연습 문제를 가로 방향으로 번호를 매기려고 하는데 오류가 발생합니다.

"누락된 숫자, 0으로 처리됩니다."

여기에 표시된 "\multicolumn" 뒤의 두 줄:

\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}

여기에 이미지 설명을 입력하세요

관련 정보