我正在尝试写一篇有 2 列的论文,我需要在其中插入表格和公式,但它们不太合适。有没有办法让它们缩小以适合页面大小?
梅威瑟:
WIC is defined as follows:
\begin{equation} WIC(d) = -2(Loglikelihood) + d + ( \frac{d(((log(N)-1)log(N))(N - (d+1))^{2}+ 2N (N + (d+1)))}{(2N+(log(N)(N-(d+1))))(N-(d+1))} )
\label{6} \end{equation}
答案1
environment and a
我会使用 \multline \splitfrac mathtools` 包来实现这一点(from the
。我擅自删除了一些导致公式难以阅读的括号,并调整了其他一些括号的大小。此外,Loglikelifood 是一个函数,如果您想要使用合适的字体和间距,可以将其声明为数学运算符。
\documentclass[twocolumn]{book}
\usepackage[utf8]{inputenc}
\usepackage{fourier, heuristica}
\usepackage{mathtools}
\DeclareMathOperator{\Loglikelihood}{Loglikekihood}
\DeclareMathOperator{\WIC}{WIC}
\usepackage{lipsum}
\begin{document}
\lipsum[2]
WIC is defined as follows:
\begin{multline}
\WIC(d)= -2\Loglikelihood{} + d g\\
+ \frac{\splitfrac{d\bigl(\log N(\log N -1)(N - (d+1))^{2}}{+ 2N (N + (d+1))\bigr)}}{\bigl(2N+\log N (N-(d+1))\bigr)\bigl(N-(d+1)\bigr)}
\label{6} \end{multline}
\lipsum[3-6]
\end{document}
答案2
使用 \resizebox{}{}{} 可能是一种选择。对于表格,我建议使用 table* 环境或其他包中的等效环境。此环境涵盖整个页面,而不仅仅是一列。对于公式,您可以使用数组或 amsmath 包中的 align 环境将它们写在多行上。