테이블의 열 너비 제한

테이블의 열 너비 제한

내 논문에서는 아래 표 형식을 사용하고 있습니다. 제가 사용하고 있는 템플릿은 Classicesis입니다.

그러나 아래에서는 두 번째 열의 긴 텍스트가 페이지를 벗어나게 됩니다. 무슨 문제가 있는 걸까요...?

고마워요, 앤더스

\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}

관련 정보