Ajustando tabelas grandes com equações dentro

Ajustando tabelas grandes com equações dentro

Estou tentando inserir uma tabela que contém apenas equações. Este é o resultado que obtive até agora: insira a descrição da imagem aqui

Consegui ajustar a tabela usando: \begin{adjustbox}{width=\textwidth}. No entanto, como você pode ver, as equações não são claramente visíveis. Existe uma maneira de aumentar seu tamanho? Tentei algo como \Large{} mas não funcionou.

Obrigado pela ajuda. Qualquer solução alternativa é apreciada.

Responder1

AFAICT, a única maneira de compor esta tabela sem usar um tamanho de fonte minúsculo e ilegível é compor no modo paisagem.

insira a descrição da imagem aqui

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

informação relacionada