Как сделать так, чтобы в следующей таблице был перенос текста?

Как сделать так, чтобы в следующей таблице был перенос текста?

Редактирование, чтобы код был компилируемым - я перечисляю все пакеты, чтобы проверить на конфликты (но я не думаю, что они должны быть), и я также опускаю ссылки, чтобы вы могли скомпилировать без моего файла .bib, что не должно ни на что повлиять. Я закомментировал fontspec, потому что он там есть, но он выдал ошибку с указанными шрифтами, и у вас либо вряд ли есть мои, либо они могут быть сохранены как-то по-другому.

Я перепробовал несколько решений, но безуспешно. Это очень простая таблица (хотя у меня есть и более сложные в другом месте — раньше я заставлял все работать, но, похоже, я удалил документ для другой задачи).

%! TEX program = xelatex
\documentclass[a4paper, titlepage]{book}

\usepackage[utf8]{inputenc}
\usepackage[T1,LGR]{fontenc}
%\usepackage{fontspec}
\usepackage[overlap, CJK]{ruby}
\usepackage{listings}
\usepackage[style=british]{csquotes}
\usepackage{xpatch}
\usepackage{amsmath,amsfonts,amsthm}
\usepackage{ot-tableau}
\usepackage{polyglossia}
\setdefaultlanguage[variant=british]{english}
\usepackage[bibencoding=utf8, backend=biber, style=authoryear-icomp, language=british]{biblatex}
\usepackage{easylist}
\usepackage{hyperref}
\usepackage{memhfixc}
\usepackage[nameinlink,noabbrev,capitalize]{cleveref}
\usepackage[nonumberlist,style=tree,abbreviations,xindy,toc]{glossaries-extra}
\usepackage{blindtext}
\usepackage{cgloss4e}
\usepackage{enumerate}
\usepackage{longtable}
\usepackage{textgreek}
\usepackage{booktabs, siunitx}
\usepackage{tabulary}
\usepackage{multirow}
\usepackage{graphicx}
\graphicspath{ {./images/} }
\usepackage{wrapfig}
\usepackage{chngcntr}
\usepackage{tablefootnote}
\usepackage[tableposition=above]{caption}
\usepackage{imakeidx}
\usepackage{xltxtra}
\usepackage{gb4e} %Ensure this is the last \usepackage

\sloppy

\begin{document}

\begin{table*}
    \centering
    \caption{Some of the events reported during muscular paralysis caused by curare injection.}
    \begin{tabulary}{\textwidth}{ll}
        \toprule
        2:11 PM: & Curare injection administered over 15 minutes.\marginpar{All events are direct quotes or paraphrases of the original report.} \\
        2:20: & Speech no longer possible. Can hear distinctly. Still able to nod head and move hands. \\
        2:22: & Subject reports by movement of head that the experience is not unpleasant. \\
        2:26: & Ability to comprehend and answer questions accurately is indicated by correctness of replies when inquiries are restated in the negative or double negative. \\
        2:45: & Subject now unable to signal response to inquiries due to complete paralysis. \\
        2:48: & Eyelids manually opened. Subject stated upon recovery that he was `clear as a bell' all this period. \\
        4:50: & Subjects is able to sit up on edge of bed. Complete subjective report dictated. \\ \bottomrule
    \end{tabulary}
\end{table*}

\end{document}

Спасибо!

решение1

tabularyдля выполнения каких-либо полезных действий требуется столбец LC или R, lстолбцы всегда представляют собой одну строку, также вы не можете иметь \marginparвнутри таблицы.

\documentclass[a4paper, titlepage]{book}

\usepackage{tabulary,booktabs}
\sloppy

\begin{document}

\begin{table}
    \centering
    \caption{Some of the events reported during muscular paralysis caused by curare injection.}

    \begin{tabulary}{\textwidth}{lL}
        \toprule
        2:11 PM: & Curare injection administered over 15 minutes. \\
        2:20: & Speech no longer possible. Can hear distinctly. Still able to nod head and move hands. \\
        2:22: & Subject reports by movement of head that the experience is not unpleasant. \\
        2:26: & Ability to comprehend and answer questions accurately is indicated by correctness of replies when inquiries are restated in the negative or double negative. \\
        2:45: & Subject now unable to signal response to inquiries due to complete paralysis. \\
        2:48: & Eyelids manually opened. Subject stated upon recovery that he was `clear as a bell' all this period. \\
        4:50: & Subjects is able to sit up on edge of bed. Complete subjective report dictated. \\ \bottomrule
    \end{tabulary}

\end{table}

\end{document}

Связанный контент