垂直居中的单元格问题以及表格后空间的挤压

垂直居中的单元格问题以及表格后空间的挤压

包括图片:

在此处输入图片描述

说实话,我已经看到细胞胆碱磷酸酶1磷酸三钙等等,似乎都是垂直居中的。这样,这不再是一个问题。但是我找不到解决方案,为什么表格末尾和下面文本的第一行之间有这么大的距离。这是 MWE:

\documentclass[twoside,10pt,a4paper]{article}

\usepackage{tabularx}

\newcolumntype{C}{>{\centering\arraybackslash}X}
\renewcommand\tabularxcolumn[1]{m{#1}}

\captionsetup{font={small,stretch=1}}
\captionsetup[table]{skip=0pt}
\captionsetup[figure]{skip=6pt}
%\setlength{\belowcaptionskip}{0pt plus 0pt minus 0pt}

\titlespacing*\section{0pt}{0pt plus 2pt minus 2pt}{6pt plus 3pt minus 3pt}
\titlespacing*\subsection{0pt}{12pt plus 6pt minus 6pt}{6pt plus 3pt minus 3pt}
\titlespacing*\subsubsection{0pt}{12pt plus 6pt minus 6pt}{6pt plus 3pt minus 3pt}
\titlespacing*\paragraph{0pt}{12pt plus 6pt minus 6pt}{6pt plus 3pt minus 3pt}

\setlength{\intextsep}{12pt plus 3pt minus 3pt}

\begin{center}
 \begin{table}[ht]
  \small
  \captionsetup{justification=justified,singlelinecheck=false}
  \caption[Stopień spęcznienia]{Dane przedstawiające stopień spęcznienia każdego rodzaju membran. Stopień spęcznienia został obliczony na podstawie wzoru    (\ref{eqn:specznienie})}
 \begin{tabularx}{\textwidth}{|*{7}{C|}}
   \cline{2-7}
   \multicolumn{1}{c|}{}
& ChTPP1 & ChTPP2 & ChTPP3 & ChTPP1HA & ChTPP2HA & ChTPP3HA\\  
   \cline{1-7} 
Stopień spęcznienia (\%) & 1244.24 & 1132.06 & 787.62 & 2588.73 & 1650.25 & 1363.64\\
   \hline
 \end{tabularx}
\label{table:specznienie}
\end{table}
\end{center}

Some text Some text Some text Some text Some text Some text Some text Some text Some text Some text

\end document

答案1

您的问题是您的问题的后续问题左对齐标题和居中表格问题。并且接受的答案已经提供了您的问题的解决方案。为了强调这一点,我只在前后添加了虚拟文本

\documentclass{article}
\usepackage[showframe]{geometry}
    \usepackage[T1]{fontenc}
    \usepackage[utf8]{inputenc}
\usepackage{caption}
\usepackage{tabularx}
\newcolumntype{C}{>{\centering\arraybackslash}X}

\usepackage{blindtext}

\begin{document}
\blindtext
    \begin{table}[h]
    \small
\captionsetup{justification=justified}
    \caption[Stopień spęcznienia]{Dane przedstawiające stopień spęcznienia każdego rodzaju membran. Stopień spęcznienia został obliczony na podstawie wzoru (\ref{eqn:specznienie})}
\label{table:specznienie}
\begin{tabularx}{\textwidth}{|*{7}{C|}}
    \cline{2-7}
\multicolumn{1}{c|}{}
    & ChTPP1    & ChTPP2    & ChTPP3 & ChTPP1HA & ChTPP2HA  & ChTPP3HA\\
    \cline{1-7}
Stopień spęcznienia (\%)
    & 1244.24   & 1132.06   & 787.62 & 2588.73  & 1650.25   & 1363.64   \\
    \hline
\end{tabularx}
    \end{table}
\blindtext
\end{document}

这使:

在此处输入图片描述

笔记: 较新的将浮动元素包含在内\begin{center}\begin{figure}...\end{{figure}\end{center}!正确的方法是,正如您在上面的评论中已经告知的那样,仅使用\begin{figure}\centering ... \end{figure}

相关内容