Tex:wrapfig 包问题对齐文本

Tex: wrapfig package problem aligning text

在节内使用带有 table 的 wrapfig 包,table 的第一行未与环绕它的文本对齐。在部分之外工作时不存在此问题。

\documentclass{article}

\usepackage{wrapfig}
\usepackage{lipsum}

\begin{document}

    \section{Section}

    \begin{wraptable}{l}{0pt}
        \begin{tabular}{cccc}
        A & B & C & D \
        E & F & G &  H\        
        \end{tabular}
    \label{Mytable}\caption{This is my table.}
    \end{wraptable}

\textbf{This bit of text should be aligned with the table's top row.}
\lipsum[2]

\end{document}

给出的是:

而理想情况下,我想得到类似的东西:

您可以尝试调整 \intextsep:

\documentclass{article}

\usepackage{wrapfig}
\usepackage{lipsum}




\begin{document}

    \section{Section}

{
\setlength\intextsep{-0.4ex}
    \begin{wraptable}{l}{0pt}
        \begin{tabular}{cccc}
        A & B & C & D \
        E & F & G &  H\        
        \end{tabular}
    \label{Mytable}\caption{This is my table.}
    \end{wraptable}

\textbf{This bit of text should be aligned with the table's top row.}
\lipsum[2]

}

\end{document}