我在乳胶餐桌上遇到了一些问题。基本上标签“结论”甚至没有出现在表格中,其中的文字不是我想要的,并不是全部显示。有人知道为什么吗?
\begin{tabular}{rr}
\toprule
\multicolumn{1}{c}{\textbf{Literature}} & \multicolumn{1}{c}{\textbf{Conclusion}} \\
\midrule
Blume (1974: 638) & \multicolumn{1}{l}{"the weighted unbiased estimator is probably the safer to use" } \\
Fama (1996: 419) & \multicolumn{1}{l}{"The estimate of Et (R) that produces an unbiased Pt is a combination of the asset's past compound and average simple returns"} \\
Jacquier et al (2003: 52) & \multicolumn{1}{l}{"unbiased estimates of future portfolio value require that the current value be compounded forward at a weighted average of the arithmetic and geometric rates" } \\
Indro and Lee (1997: 89) & \multicolumn{1}{l}{"the horizon-weighted average [...] is also more efficient than other estimators in the presence of negative autocorrelation, time-varying, and stationary variances"} \\
Koller et al. (2005: 308) & " an [weighted] estimator proposed by Marshall Blume best adjusts for problems caused by estimation error and autocorrelation" \\
\bottomrule
\end{tabular}
这是我的代码。如果有人能看一眼并告诉我自己做错了什么,我会非常感谢你。
答案 0 :(得分:1)
在你的代码中,右对齐和左multicolumn
有点混淆。我建议你从左边切换到段落对齐,不要超过页面宽度。在这种情况下,你有类似的东西:
\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{tabular}{lp{70mm}}
\toprule
\multicolumn{1}{c}{\textbf{Literature}} & \multicolumn{1}{c}{\textbf{Conclusion}}\\
\midrule
Blume (1974: 638) & "the weighted unbiased estimator is probably the safer to use"\\
Fama (1996: 419) & "The estimate of Et (R) that produces an unbiased Pt is a combination of the asset's past compound and average simple returns"\\
Jacquier et al (2003: 52) & "unbiased estimates of future portfolio value require that the current value be compounded forward at a weighted average of the arithmetic and geometric rates"\\
Indro and Lee (1997: 89) & "the horizon-weighted average [...] is also more efficient than other estimators in the presence of negative autocorrelation, time-varying, and stationary variances"\\
Koller et al. (2005: 308) & "an [weighted] estimator proposed by Marshall Blume best adjusts for problems caused by estimation error and autocorrelation"\\
\bottomrule
\end{tabular}
\end{document}
此代码没有\centering
或table
环境,在默认A4纸张中的表格如下。
顺便说一句,这里我没有注意引号。