需要帮助开始制作长而文本繁多的表格

需要帮助开始制作长而文本繁多的表格

文字较多的表格

我是 LaTex 新手,正在尝试自学。目前,我正在尝试为研究生院(数学教育硕士)编写一个单元计划,它看起来类似于提供的图像。

一个问题,一个请求:

对于这种包含大量文本的表格,我应该使用什么环境?长表?它将占据两到三页。横向。

有谁愿意分享如何编写该表的前几行来帮助我开始?

答案1

@ach 我想这可能会让你行动起来。

\documentclass[11pt,letterpaper]{article}
\usepackage{booktabs} %% IMPROVED TABULAR
\usepackage{multirow} %% VERY IMPORTANT
\usepackage{XCharter} %% YOU CAN CHANGE IT LATER
\usepackage[table]{xcolor} %% YOU NEED THIS TO ADD COLOR
\usepackage[letterpaper, bottom=25mm,top=25mm, left=20mm, right=25mm]{geometry} %% ADDED TO EXPAND THE WORKING AREA
\renewcommand{\arraystretch}{1.2} %% MORE SPACE BETWEEN TABLE LINES


\begin{document}
\thispagestyle{empty}
\small{
\begin{center}
\begin{tabular}{|c|c|c|}\hline
\multicolumn{3}{|c|}{\cellcolor{black} \textbf{\color{white} Stage 1 Desired Results}}\\ \hline
\multirow{3}{*}{
\begin{minipage}{0.35\textwidth}
\textsc{Established Goals} \hfill G\newline
Understand similarity in terms of ...
\end{minipage}} 
& \multicolumn{2}{|c|}{\cellcolor{gray!40}\textit{Transfer}} \\\cline{2-3}
                  & \multicolumn{2}{l|}{
                  \begin{minipage}{0.65\textwidth}
                  \vspace{0.1in}
                  Students will be able to independently use their learning to: \hfill T\newline
                  Express appropiate mathematical reasoning...
                  \vspace{0.1in}
                  \end{minipage}
                  }\\ \cline{2-3}

& \multicolumn{2}{c|}{\cellcolor{gray!40}\textit{Meaning}}\\ \cline{2-3}
                  & \begin{minipage}[t]{0.32\textwidth}
                     \vspace{0.1in}
                     \textsc{Understanding} \hfill U\newline
                      Students will understand that...
                      \vspace{0.1in}
                      \end{minipage} & \begin{minipage}[t]{0.32\textwidth}
                                        \vspace{0.1in}
                                        \textsc{Essential Questions} \hfill Q\newline
                                         Q1 How can similarity be modeled in real life situations?
                                        \vspace{0.1in}
                                         \end{minipage}\\ \cline{2-3}

& \multicolumn{2}{c|}{\cellcolor{gray!40}\textit{Acquisition}}\\ \cline{2-3}
                  & \begin{minipage}[t]{0.32\textwidth}
                    \vspace{0.1in}
                    \emph{Students will know} \hfill K\newline
                    K1 Targeted Academic Language
                    \vspace{0.1in}
                    \end{minipage} & \begin{minipage}[t]{0.32\textwidth}
                    \vspace{0.1in}
                    \emph{Students will be skilled at...} \hfill S\newline
                    S1 Using techonology to verify properties of similarity transformations
                    \vspace{0.1in}
                    \end{minipage}\\ \hline
 \end{tabular}
 \end{center}
}
\end{document}

接下来你可以看到结果

复杂表

当然,我没有输入整个表格信息。但是这个 MWE 可能会帮助您完成任务。

相关内容