Colocar tablas grandes con ecuaciones en su interior.

Colocar tablas grandes con ecuaciones en su interior.

Estoy intentando insertar una tabla que contenga solo ecuaciones. Este es el resultado que obtuve hasta ahora: ingrese la descripción de la imagen aquí

Pude ajustar la mesa usando: \begin{adjustbox}{width=\textwidth}. Sin embargo, como puede ver, las ecuaciones no son claramente visibles. ¿Hay alguna manera de aumentar su tamaño? Intenté con algo como \Large{} pero no funciona en absoluto.

Gracias por tu ayuda. Se agradece cualquier solución alternativa.

Respuesta1

AFAICT, la única forma de componer esta tabla sin utilizar un tamaño de fuente pequeño e ilegible es hacerlo en modo horizontal.

ingrese la descripción de la imagen aquí

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

información relacionada