Me gustaría que mi mesa producida en LaTeX pareciera más estirada verticalmente, para que no pareciera tan compacta verticalmente. Me gustaría que se pareciera más al equivalente de Google Docs (ver imagen). ¿Cómo haría para hacer esto?
\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}
Respuesta1
Definiste valores para \cellspacetop/bottomlimits
, lo cual está bien, ya que el contenido de las celdas estará centrado verticalmente. Sin embargo, no cargó el cellspace
paquete, que define estas longitudes. Además, las columnas para las cuales las celdas tendrán este relleno vertical deben tener su especificador precedido de la letra S
(o C
si carga siunitx
). Funciona con todos los especificadores estándar, pero no con el X
tipo de columna, que debe agregarse a la lista de especificadores reconocidos.
Así que aquí hay un código que funciona. Aproveché la oportunidad para simplificar tu código. Tenga en cuenta que no es necesario que cargue array
cuando carga tabularx
; este último lo hace por usted. Además, sus cálculos para los coeficientes \hsize=...
son incorrectos. No son exactamente coeficientes de proporcionalidad, ya que deben sumar el número total de X
columnas, sino coordenadas baricéntricas.
\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}
Respuesta2
Configúrelo con\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}