나는 LaTeX로 제작한 테이블이 수직으로 좀 더 늘어나서 수직으로 너무 콤팩트해 보이지 않기를 바랍니다. 나는 그것이 Google 문서와 동등한 것으로 보이길 원합니다(그림 참조). 이 일을 어떻게 해야 할까요?
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage{array
\begin{center}
\begin{tabularx}{\textwidth}{
>{\raggedright\arraybackslash\hsize=0.348\hsize}X
>{\centering\arraybackslash\hsize=0.1\hsize}X
>{\raggedleft\arraybackslash\hsize=0.138\hsize}X
>{\raggedleft\arraybackslash\hsize=0.138\hsize}X
>{\raggedleft\arraybackslash\hsize=0.138\hsize}X
>{\raggedleft\arraybackslash\hsize=0.138\hsize}X }
\setlength\cellspacetoplimit{6pt}
\setlength\cellspacebottomlimit{6pt}
& & Unrestricted Funds 2019 & Restricted Funds 2019 & Total Funds 2019 & Total Funds 2018\\
& \small{Note} & £ & £ & £ & £\\
\textsc{Income} &&&&&\\
\hspace{3mm} Voluntary Income & \footnotesize{2} & 43,933 & - & 43,933 & 36,196\\
\hspace{3mm} Investment Income & \footnotesize{2} & - & - & - & 31\\
\hspace{3mm} Charitable Activities & \footnotesize{2} & 597 & - & 597 & 530\\ \cmidrule{3-6}
\textsc{Total Income} && 44,530 & - & 44,530 & 36,757\\[10mm]
\textsc{Expenditure} &&&&&\\
\hspace{3mm} Charitable Activities & \footnotesize{3,4,5,6} & 39,359 & - & 39,359 & 28,343\\
\hspace{3mm} Governance Costs & \footnotesize{4} & 412 & - & 412 & 110\\ \cmidrule{3-6}
\textsc{Total Expenditure} && 39,771 & - & 39,771 & 28,453\\[10mm]
\textsc{Net Income (Expenditure)} && 4,759 & - &4,759 & 8,304\\
\textsc{Net Movement in Funds} && 4,759 & - &4,759 & 8,304\\[10mm]
\textsc{Reconciliation of Funds} &&&&&\\
Total Funds Brought Forward && 35,356 & - &35,356 & 27,052\\
Total Funds Carried Forward && 40,115 & - &40,115 & 35,356\\ \cmidrule{3-6}
\end{tabularx}
\end{center}
답변1
에 대한 값을 정의했는데 \cellspacetop/bottomlimits
, 셀 내용이 수직으로 중앙에 배치되므로 괜찮습니다. 그러나 cellspace
이러한 길이를 정의하는 패키지를 로드하지 않았습니다 . 또한 셀에 이 수직 패딩이 있는 열에는 문자 접두사가 붙은 지정자가 있어야 합니다 S
(또는 C
로드하는 경우 siunitx
). 이는 모든 표준 지정자와 함께 작동하지만 X
인식된 지정자 목록에 추가되어야 하는 열 유형에서는 작동하지 않습니다.
여기 작동하는 코드가 있습니다. 나는 당신의 코드를 단순화할 기회를 잡았습니다. array
로드할 때 로드할 필요는 없습니다 tabularx
. 후자가 대신 수행합니다. 또한 계수에 대한 계산이 \hsize=...
잘못되었습니다. 이는 총 열 수를 합산해야 하므로 정확히 비례 계수 X
가 아니라 무게 중심 좌표입니다.
\documentclass{article}
\usepackage{geometry}
\usepackage{tabularx,booktabs, cellspace}
\setlength\cellspacetoplimit{6pt}
\setlength\cellspacebottomlimit{6pt}
\addparagraphcolumntypes{X}
\begin{document}
\begin{center}%\footnotesize
\setlength{\tabcolsep}{4pt}\small
\begin{tabularx}{\textwidth}{
@{} S{>{\raggedright\arraybackslash\hsize=2\hsize}X}
>{\centering\arraybackslash\hsize=0.48\hsize}X
*{4}{>{\raggedleft\arraybackslash\hsize=0.88\hsize}X}}
& &\multicolumn{2}{c}{ Funds 2019 } & \multicolumn{2}{c}{Total} \\[-0.5ex]
\cmidrule(lr){3-4} \cmidrule(lr){5-6}
& & Unrestricted& Restricted & Funds 2019 & Funds 2018\\
& \small{Note} & £ & £ & £ & £\\
\textsc{Income} &&&&&\\
\hspace{3mm} Voluntary Income & \footnotesize{2} & 43,933 & - & 43,933 & 36,196\\
\hspace{3mm} Investment Income & \footnotesize{2} & - & - & - & 31\\
\hspace{3mm} Charitable Activities & \footnotesize{2} & 597 & - & 597 & 530\\ \cmidrule(l){3-6}
\textsc{Total Income} && 44,530 & - & 44,530 & 36,757\\[10mm]
\textsc{Expenditure} &&&&&\\
\hspace{3mm} Charitable Activities & \footnotesize{3,4,5,6} & 39,359 & - & 39,359 & 28,343\\
\hspace{3mm} Governance Costs & \footnotesize{4} & 412 & - & 412 & 110\\ \cmidrule(l){3-6}
\textsc{Total Expenditure} && 39,771 & - & 39,771 & 28,453\\[10mm]
\textsc{Net Income (Expenditure)} && 4,759 & - &4,759 & 8,304\\
\textsc{Net Movement in Funds} && 4,759 & - &4,759 & 8,304\\[10mm]
\textsc{Reconciliation of Funds} &&&&&\\
Total Funds Brought Forward && 35,356 & - &35,356 & 27,052\\
Total Funds Carried Forward && 40,115 & - &40,115 & 35,356\\ \cmidrule(l){3-6}
\end{tabularx}
\end{center}
\end{document}
답변2
다음으로 설정하세요\renewcommand{\arraystretch}{1.5}
\documentclass[a4paper]{article}
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage{array}
\begin{document}
\renewcommand{\arraystretch}{1.5}
\begin{center}
\begin{tabularx}{\textwidth}{
>{\raggedright\arraybackslash\hsize=0.348\hsize}X
>{\centering\arraybackslash\hsize=0.1\hsize}X
>{\raggedleft\arraybackslash\hsize=0.138\hsize}X
>{\raggedleft\arraybackslash\hsize=0.138\hsize}X
>{\raggedleft\arraybackslash\hsize=0.138\hsize}X
>{\raggedleft\arraybackslash\hsize=0.138\hsize}X }
& & Unrestricted Funds 2019 & Restricted Funds 2019 & Total Funds 2019 & Total Funds 2018\\
& \small{Note} & £ & £ & £ & £\\
\textsc{Income} &&&&&\\
\hspace{3mm} Voluntary Income & \footnotesize{2} & 43,933 & - & 43,933 & 36,196\\
\hspace{3mm} Investment Income & \footnotesize{2} & - & - & - & 31\\
\hspace{3mm} Charitable Activities & \footnotesize{2} & 597 & - & 597 & 530\\ \cmidrule{3-6}
\textsc{Total Income} && 44,530 & - & 44,530 & 36,757\\[10mm]
\textsc{Expenditure} &&&&&\\
\hspace{3mm} Charitable Activities & \footnotesize{3,4,5,6} & 39,359 & - & 39,359 & 28,343\\
\hspace{3mm} Governance Costs & \footnotesize{4} & 412 & - & 412 & 110\\ \cmidrule{3-6}
\textsc{Total Expenditure} && 39,771 & - & 39,771 & 28,453\\[10mm]
\textsc{Net Income (Expenditure)} && 4,759 & - &4,759 & 8,304\\
\textsc{Net Movement in Funds} && 4,759 & - &4,759 & 8,304\\[10mm]
\textsc{Reconciliation of Funds} &&&&&\\
Total Funds Brought Forward && 35,356 & - &35,356 & 27,052\\
Total Funds Carried Forward && 40,115 & - &40,115 & 35,356\\ \cmidrule{3-6}
\end{tabularx}
\end{center}
\end{document}