拟合包含方程式的大型表格

拟合包含方程式的大型表格

我正在尝试插入一个仅包含方程式的表格。这是我目前得到的结果: 在此处输入图片描述

我能够使用 \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}

相关内容