내부에 방정식이 포함된 큰 테이블 맞추기

내부에 방정식이 포함된 큰 테이블 맞추기

방정식만 포함된 표를 삽입하려고 합니다. 이것이 내가 지금까지 얻은 결과입니다: 여기에 이미지 설명을 입력하세요

\begin{adjustbox}{width=\textwidth}를 사용하여 테이블을 맞출 수 있었습니다. 그러나 보시다시피 방정식은 명확하게 표시되지 않습니다. 크기를 늘릴 수 있는 방법이 있나요? \Large{}와 같은 것을 시도했지만 전혀 작동하지 않습니다.

도와주셔서 감사합니다. 대체 솔루션을 높이 평가합니다.

답변1

AFAICT, 읽을 수 없는 작은 글꼴 크기를 사용하지 않고 이 표를 조판하는 유일한 방법은 가로 모드로 조판하는 것입니다.

여기에 이미지 설명을 입력하세요

\documentclass{article}
\usepackage{rotating,booktabs,array,amsmath,amssymb}
\newcolumntype{C}{>{$\displaystyle}c<{$}} % automatic display-style math mode

\begin{document}
\begin{sidewaystable}
\setlength\tabcolsep{0pt} % let LaTeX figure out the amount of intercolunn whitespace
\caption{The most important Archimedean copulas\strut}
\begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} l *{5}{C} }
\toprule
Copula 
& $Bivariate copula $ C_{\theta}(u,v) 
& $Parameter $ \theta
& $Kendall's $ \tau
& $Generator $ \psi^{}_{\theta}(t) 
& \begin{tabular}{c}Generator \\ inverse\end{tabular}\  \psi^{-1}_{\theta}(t)  \\
\midrule
Clayton 
& \max\Bigl[ \bigl(u^{-\theta}+v^{-\theta}-1\bigr)^{-1/\theta}, 0 \Bigr]
& \theta\in[-1,\infty)\setminus\{0\}
& \frac{\theta}{\theta+2}
& \frac{1}{\theta}(t^{-\theta}-1)
& (1+\theta t)^{1/\theta}\\ 
\addlinespace[5mm]
Frank  
& -\frac{1}{\theta}\ln\biggl[1+ 
\frac{(\exp(-\theta u)-1)(\exp(-\theta v)-1)}{\exp(-\theta)-1}\biggr]
& \theta\in\mathbb{R}\setminus \{0\} 
& \cdots & \cdots & \cdots  \\
\addlinespace[5mm]
Gumbel 
& \exp\biggl[-\bigl((-\log(u))^{\theta}+(-\log(v))^{\theta} 
             \bigr)^{1/\theta}\biggr]
& \theta \in [1,\infty) 
& \cdots & \cdots & \cdots  \\
\addlinespace
\bottomrule
\end{tabular*}
\end{sidewaystable}
\end{document}

관련 정보