我需要在 {tabular} 环境中使用 memoir 换行

我需要在 {tabular} 环境中使用 memoir 换行

我需要这个表格适合页面...打破线条...有办法吗?

在此处输入图片描述

梅威瑟:

\documentclass[14pt,twoside,a5paper,extrafontsizes]{memoir} %Classe estilo memoir
\usepackage[brazilian]{babel} %Traduz doc para português do Brasil
\usepackage[utf8]{inputenc} %Reconhece acentuação
\usepackage{indentfirst} %Define identação em todo primeiro parágrafo
\usepackage{garamondx} %Define a nova fonte garamond
\usepackage{lipsum}

\chapterstyle{thatcher}

\begin{document} %=========================================================================


\[ \textbf{ONDAS CEREBRAIS}\]

\begin{tabular}{l l l}
    ONDA   & FREQUÊNCIA    & EFEITO                                                   \\
    Gama   & 22 a 50 C/S   & Estado emocional                                         \\
    Betha  & 14 a 21 C/S   & Estado de vigília, comum à maioria das pessoas despertas \\
    Alfa   & 8 a 13 C/S    & Sonolência – relax                                       \\
    Tetha  & 4 a 7 C/S     & Sono relax profundo                                      \\
    Deltha & 0,5 a 3,5 C/S & Sono profundo  transe hipnótico
\end{tabular}


\end{document}

答案1

最后一行中的这段文字:

\begin{tabularx}{\textwidth}{l l >{\raggedright\arraybackslash}X}
    ONDA   & FREQUÊNCIA    & EFEITO                                                   \\
    Gama   & 22 a 50 C/S   & Estado emocional                                         \\
    Betha  & 14 a 21 C/S   & Estado de vigília, comum à maioria das pessoas despertas \\
    Alfa   & 8 a 13 C/S    & Sonolência – relax                                       \\
    Tetha  & 4 a 7 C/S     & Sono relax profundo                                      \\
    Deltha & 0,5 a 3,5 C/S & Sono profundo  transe hipnótico
\end{tabularx}

然而结果却很脆弱:你的纸张尺寸很小(a5),字体很大(14pt),所以表格几乎占据了整个页面:

在此处输入图片描述

要使用上述代码,您需要将其添加\usepackage{tabularx}到文档的序言中。为了测试结果,我还添加了\usepackage{showframe}在文档制作过程中必须删除的内容。

相关内容