表格后的文本似乎不再对齐

表格后的文本似乎不再对齐

表格前后都有文本,但表格后的文本没有像以前那样左对齐。我该如何修复这个问题? 在此处输入图片描述

\documentclass[a4paper,10pt]{article}
\usepackage{geometry, mhchem, textgreek, tabularx, longtable}
\geometry{a4paper, left=2cm, right=2cm, top=1.5cm, bottom=3cm }
\title{Staining of differentiated macrophages\vspace*{-1.5cm}}
\date{}
\begin{document}
\maketitle
\setcounter{table}{0}
\section{Reagents} 
\section{Methods}
    test text
    \begin{table}[h]
        \centering
        \caption{Staining panel for Milteny MacsQuant 10 (8 colors)}
        \label{tab:stain_macs}
        \begin{tabularx}{\textwidth}{|X|X|X|X|X|X|X|X|}
            \hline
            &CD14&CD11b&CD206&CD86&CD80&CD163&L/D \\
            \hline
            Fluorophore&PacificBue&BV510&FITC&PE&PE/Cy7&AF647&NearIR \\
            \hline
            Laser&Violet&Violet&Blue&Blue&Blue&Red&Red \\
            \hline
            Filter&V1&V1&B1&B2&B4&R1&R2 \\
            \hline
            Highest in&Mono&Mono/M0&M2&M1&M1&M2&\\
            \hline
            Dilution&1:80&\textit{1:50}&1:50&\textit{1:50}&1:50&\textit{1:50}&\textit{1:50}\\
            \hline  
        \end{tabularx}
    \end{table}
    
    test text

如果我在表格后使用换行符,\\它可以纠正这个问题,但只有当表格前面有文本时,如果我删除第一个“测试文本”,我会收到错误“这里没有行可以结束。t”

相关内容