此表格超出了页边距。我正在处理包含多个表格的文档,有时表格超出了页边距。我尝试过迷你页面,但收效甚微 - 有什么建议吗?
\begin{table}[ht]
\caption{Implied Cost of Funds}
\begin{center}
\begin{tabular}{lrrl}
\hline
\multicolumn{3}{l}{\textbf{Beginning Market Value}}\\
Principal Proceeds & \$ &1,028,437 & $\text{\$1,000,000} \times \text{\$102-27}$ \\
Accrued Interest & \$ &1,986 & 13 days accrued interest @ 5.50\%\\
\circled{1} \textbf{Market Value} &\$& 1,030,424 & Total proceeds on the "roll out" date \\
\hline
\multicolumn{3}{l}{\textbf{Future Value} - \textit{Pmts. Received}}\\
Coupon Income Received & \$& 4,583 & Interest earned @ 5.50\% based on 30/360\\
Scheduled Principal Received & \$ &1,070 & Scheduled principal paid\\
Prepaid Principal Received & \$ & 29,254 & Prepaid Principal Received @ 30 CPR\\
Total Payments Received & \$& 34,907 & Expected payments (remittance date)\\
\circled{2} \textbf{Disc. value of the carry} & \$ & 34,911 & Present value of the payments received\\
&&&assuming the alternate financing rate (0.31\%) \\
&&&and using actual day count (13 days) - act/360 - \\
&&& on the "roll in" date.\\
\hline
Remaining principal balance & \$ & 969,676 & Remaining current balance\\
Principal proceeds & \$ & 993,615 & Remaining balance $\times$ \$102-15\\
Accrued Interest & \$ & 1,807 & 12 days of accrued interest\\
Roll in proceeds & \$ & 995,422 & Roll in proceeds\\
\circled{3}Future Value of principal and carry & \$ & 1,030,333 & Total amount financed\\
\hline
Future value \circled{3} & \$ & \$1,030,333 &\\
Less Market Value \circled{1} & \$ & \$ 1,030,424 & \\
Implied cost of financing &\$ & -\$91 &\\
\circled{4} \textbf{Implied cost of funds} && -0.106\% & (-\$91 $\div$ \$ 969,676) $\times$ 100 \\
\end{tabular}
\end{center}
\end{table}
答案1
您可以使用tabularx
包并将表格宽度设置为linewidth
。这是一种做法。我还加载了cellspace
包,以便在行之间有更好的垂直空间,caption
改善标题和表格之间的间距,并booktabs
具有不同粗细的线条。我还隐藏了专用于 的列$
,用方便的列间替换它。如果这还不够,您可以要求较小的字体大小。顺便说一句,不要将环境center
用于表格(它会增加虚假的垂直空间)并将其替换为centering
。
\documentclass[10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
%\usepackage{unicode-math}
\newcommand\circled[1]{#1}
\usepackage[showframe, nomarginpar]{geometry}
\usepackage{caption}
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{cellspace}
\cellspacetoplimit = 4pt
\cellspacebottomlimit = 4pt
\addparagraphcolumntypes{X}
\begin{document}
\begin{table}[ht]
\centering
\caption{Implied Cost of Funds}
\begin{tabularx}{\linewidth}{@{}l @{\qquad\$\:}r @{\qquad}S{X}@{}}
\toprule
\textbf{Beginning Market Value}\\
Principal Proceeds &1,028,437 & $\text{\$1,000,000} × \text{\$102-27}$ \\
Accrued Interest &1,986 & 13 days accrued interest @ 5.50\%\\
\circled{1} \textbf{Market Value} & 1,030,424 & Total proceeds on the "roll out" date \\
\midrule
%
\textbf{Future Value} -- \textit{Pmts. Received}\\
Coupon Income Received & 4,583 & Interest earned @ 5.50\% based on 30/360\\
Scheduled Principal Received &1,070 & Scheduled principal paid\\
Prepaid Principal Received & 29,254 & Prepaid Principal Received @ 30 CPR\\
Total Payments Received & 34,907 & Expected payments (remittance date)\\
\circled{2} \textbf{Disc. value of the carry} & 34,911
& Present value of the payments received assuming the alternate financing rate (0.31\%)
and using actual day count (13 days) - act/360 - on the "roll in" date.\\
\midrule
%
Remaining principal balance & 969,676 & Remaining current balance\\
Principal proceeds & 993,615 & Remaining balance $ × $ \$102-15\\
Accrued Interest & 1,807 & 12 days of accrued interest\\
Roll in proceeds & 995,422 & Roll in proceeds\\
\circled{3} Future Value of principal and carry & 1,030,333 & Total amount financed\\
\midrule
%
Future value \circled{3} & 1,030,333 \\%
Less Market Value \circled{1} & 1,030,424 \\
Implied cost of financing & -91 \\%
\multicolumn{1}{@{}l@{}}{\circled{4} \textbf{Implied cost of funds}} &\multicolumn{1}{@{}c@{}}{ -0.106\%} & (-\$91 $\div$ \$ 969,676) $ × $ 100 \\
\bottomrule
\end{tabularx}
\end{table}
\end{document}