일부 정보를 표시하기 위해 표를 사용하려고 하는데 텍스트가 페이지에서 바로 실행됩니다. 구경하다:
\documentclass{article}
\begin{document}
\begin{flushleft}
\begin{enumerate}
\item Rationale/Theoretical Reasoning (Hoe does your lesson target specific features of one or more of the five reform appraoches?)
\vspace{1cm}
\item Materials, Resources, Safety
\begin{itemize}
\item Battery
\item Copper Wire
\item Screw/Bolt
\item Electrical Tape
\item Box Cutter
\item Wire Cutter
\end{itemize}
\vspace{1cm}
\item NYS Learning Standards
\begin{center}
\begin{tabular}{| c | c |}
\hline
Sequence & Performance Indicators\\
\hline
III.6 & A circuit is a closed path in which a current* can exist.\\
\hline
III.8 & Circuit components may be connected in series* or in parallel.* Schematic diagrams are used to represent circuits and circuit elements\\
\hline
III.9 & Moving electric charges produce magnetic fields. The relative motion between a conductor and a magnetic field may produce a potential difference in the conductor\\
\hline
\end{tabular}
\end{center}
\end{enumerate}
\end{flushleft}
\end{document}
도와주세요!
답변1
열 l,c,r
지정자는 단일 행 셀용입니다. 텍스트 줄 바꿈을 허용하는 단락 열 유형을 선택해야 합니다. tabularx
테이블 전체 너비를 설정할 수 있는 환경을 제안합니다 . 코드는 다음과 같습니다.
\documentclass{article}
\usepackage{tabularx}
\begin{document}
\begin{flushleft}
\begin{enumerate}
\item Rationale/Theoretical Reasoning (Hoe does your lesson target specific features of one or more of the five reform appraoches?)
\vspace{1cm}
\item Materials, Resources, Safety
\begin{itemize}
\item Battery
\item Copper Wire
\item Screw/Bolt
\item Electrical Tape
\item Box Cutter
\item Wire Cutter
\end{itemize}
\vspace{1cm}
\item NYS Learning Standards
\begin{center}
\setlength{\extrarowheight}{2pt}
\begin{tabularx}{\linewidth}{| c | X |}
\hline
Sequence & Performance Indicators\\
\hline
III.6 & A circuit is a closed path in which a current* can exist.\\
\hline
III.8 & Circuit components may be connected in series* or in parallel.* Schematic diagrams are used to represent circuits and circuit elements\\
\hline
III.9 & Moving electric charges produce magnetic fields. The relative motion between a conductor and a magnetic field may produce a potential difference in the conductor\\
\hline
\end{tabularx}
\end{center}
\end{enumerate}
\end{flushleft}
\end{document}