限製表中的列寬

限製表中的列寬

我在論文中使用下面的表格格式。我使用的模板是Classicthesis。

然而,下面發生的情況是第二列中的長文本超出了頁面。有什麼問題嗎...?

謝謝,安德斯

\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

您已指定第一列(只有一個或兩個單字)X允許換行,後兩列是l單行。您似乎在第三列中根本沒有任何數據,所以也許

{lX} 

代替

{Xll}

相關內容