内部に数式を含む大きな表をフィットさせる

内部に数式を含む大きな表をフィットさせる

数式のみを含む表を挿入しようとしています。 これまでに得られた結果は次のとおりです。 ここに画像の説明を入力してください

\begin{adjustbox}{width=\textwidth} を使用することで、表を収めることができました。ただし、ご覧のとおり、方程式ははっきりと見えません。サイズを大きくする方法はありますか? \Large{} のようなものを試しましたが、まったく機能しません。

ご協力ありがとうございます。代替の解決策があれば、ぜひ教えてください。

答え1

私の知る限り、小さくて読みにくいフォント サイズを使用せずにこの表をタイプセットする唯一の方法は、横向きモードでタイプセットすることです。

ここに画像の説明を入力してください

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

関連情報