表の列幅を制限する

表の列幅を制限する

私の論文では、以下の表形式を使用しています。使用しているテンプレートは Classicthesis です。

しかし、以下では、2 列目の長いテキストがページからはみ出てしまいます。何が問題なのでしょうか...?

ありがとう、アンダース

\begin{table}
  \myfloatalign
  \begin{tabularx}{\textwidth}{Xll} 
  \toprule
  \tableheadline{Author} & \tableheadline{Definition}
  \\
  \midrule
   Amit and Zott & “A business model depicts the design of transaction content, structure, and governance so as to create value through the exploitation of business opportunities.” \\
   Hamel & “The four boxes in the diagram represent the major components of a business model: customer interface, core strategy, strategic resources, and value network. These basic components are linked by three 'bridging' components: customer benefits, configuration of activities, and company boundaries." \\
   Hawkins & "In other words, a business model describes how an enterprise gears up its resources, planning capabilities and processes to the revenue producing potential of a specific product or service. By focussing in on this relationship to revenue producing potential, a new context is provided for assessing the planning and operational aspects of an enterprise, and for assessing the relationship between on-line and off-line trading environments." \\
    \bottomrule
  \end{tabularx}
  \caption[caption]
\end{table}

答え1

最初の列(1つか2つの単語のみ)はX改行可能で、次の2つの列はl1行であると指定しています。3番目の列にはまったくデータがないようですので、おそらく

{lX} 

の代わりに

{Xll}

関連情報