使“表格”出现在表格列表中 - 如何使表格和表格数量以相同的长度对齐

使“表格”出现在表格列表中 - 如何使表格和表格数量以相同的长度对齐

我想要单词“Table”出现在我的表格列表中,因此我在序言中使用“\renewcommand{\cfttabfont}{Table }”:

\documentclass[a4paper, 12pt]{extreport}
\usepackage{threeparttable} % to define source command

\usepackage{pdflscape} % for 'landscape' environment
\usepackage{rotating} % to use sidewayrotate
\usepackage{longtable} % needed for long tables over pages
\usepackage{diagbox} % to draw a diagonal in a cell in table \backslashbox
\usepackage{tocloft} % for list of table and list of figure
\usepackage[titletoc]{appendix}
\renewcommand{\cfttabfont}{Table } 
\usepackage{tabulary}
\begin{document}
\pagestyle{plain}
%\listoftodos
\listoftables
\cleardoublepage
\pagenumbering{arabic}
\chapter{XXXXX}
\begin{sidewaystable}[!h]
\caption{International Standard Classification of School Categories and Uni's Aggregate Categories}\centering\small\
\begin{tabulary}{\textwidth}{LLLLL }
\hline
    2017 & Aggregate Categories of School & 2008 & 1988 & 2010 \\ \hline
\end{tabulary}
\end{sidewaystable}
\begin{table}[!h]
\caption{Descriptive Statistics on ABC on XYXZ database}\centering\label{tab:bit}
\begin{tabulary}{1.2\textwidth}{LLR} 
\hline
    Time span &  & 1962-2017 \\ \hline  
\end{tabulary}
\end{table}
\chapter{YYY}
\begin{sidewaystable}[!h]
\caption{International Standardfgdfg Classification of School Categories and Uni's Aggregate Categories}\centering\small\
\begin{tabulary}{\textwidth}{LLLLL }
\hline
    2017 & Aggregate Categories of School & 2008 & 1988 & 2010 \\ \hline
\end{tabulary}
\end{sidewaystable}
\begin{table}[!h]
\caption{Descriptive jhfhg on ABC on XYXZ database}\centering\label{tab:bit}
\begin{tabulary}{1.2\textwidth}{LLR} 
\hline
    Time span &  & 1962-2017 \\ \hline  
\end{tabulary}
\end{table}
\end{document}
\begin{table}[!h]
\caption{Data Source fro X y Z and A B C D stuff combined here - just an example of long table name}
\begin{tabulary}{\textwidth}{LLLL}
\hline
    Variables & Proxies &           Unit &           Source \\ \hline
\end{tabulary}
\end{table}

但是,在表格列表中,“表格 + 表格编号”的长度已调整为对齐格式,并且它们在列表中看起来不是垂直对齐的。请看图片。你能帮我解决这个问题吗? - 垂直对齐“表格 + 表格编号”

在此处输入图片描述

相关内容