将表格标题与文档左侧对齐

将表格标题与文档左侧对齐

我想将表格的标题与整个文档的左侧对齐。我查看了一些类似的问题,但这些问题都要求将标题与表格的左侧对齐。

这是 MWE。表格的代码是通过 R 包自动生成的。我是 Latex 的新手,只能怀疑表格的代码有问题。请看一下并帮助我!

谢谢。

\documentclass[aspaper,12pt,titlepage,oneside]{report}
\usepackage[a4paper,left=40mm,right=25mm,bottom=25mm,top=25mm]{geometry}
\usepackage{titlesec}

\begin{document}
\chapter{Chapter!}
\begin{table}[!htbp] \centering 
    \caption{Chi-Square Test on Demographics} 
    \label{} 
    \begin{tabular}{@{\extracolsep{5pt}} ccc} 
        \\[-1.8ex]\hline 
        \hline \\[-1.8ex] 
        variable & stat & pValue \\ 
        \hline \\[-1.8ex] 
        Gender & $0$ & $1$ \\ 
        Level of Education & $5.658$ & $0.129$ \\ 
        Forecast Expertise & $0$ & $1$ \\ 
        Forecast Education Type & $1.380$ & $0.710$ \\ 
        Use of Calculator & $0.573$ & $0.449$ \\ 
        \hline \\[-1.8ex] 
    \end{tabular} 
\end{table} 
\end{document}

答案1

加载caption包和以下\captionsetup代码

\usepackage{caption}
\captionsetup[table]{skip=0pt,singlelinecheck=off}

enter image description here

相关内容