简单的表格超出页面

简单的表格超出页面

我正在尝试使用表格来显示一些信息,但文本却超出了页面范围。请看:

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

在此处输入图片描述

相关内容