如何获取两个“strip”环境之间缺失的段落

如何获取两个“strip”环境之间缺失的段落

我尝试了strip在两列文档中输入大型矩阵的环境。它有效,但我感觉有些困难。当我strip频繁使用多个环境时,我丢失了两个环境之间的段落strip。我没有得到给定的段落,而是得到了两个环境之间的字母 Bstrips作为输出。这里我附上了遇到的问题的图片。 在此处输入图片描述 你能帮我解决这个问题吗?这里我附上了我使用的代码

\documentclass[a4paper,fleqn]{cas-dc}
\usepackage{lipsum}
\usepackage[numbers,sort&compress]{natbib}
\usepackage{cuted}
\setlength\stripsep{3pt plus 1pt minus 1pt}
\begin{document}
    \maketitle
    \section{Introduction}
    \lipsum[1]
     \begin{strip}
                \[
        K=\left[\begin{matrix}
            1+x^4+x^6 & x+x^4+x^6+x^7 & 1+x^3+x^7 & 1+x+x^2+x^3+x^5  \\
            1+x^3+x^4+x^5+x^7 & x+x^2+x^4+x^5+x^6+x^7 & x^3+x^5+x^7 & x^3+x^6  \\
            x+x^2+x^4+x^5+x^6+x^7 & 1+x^4+x^6 & 1+x+x^2+x^4+x^5+x^6+x^7 & x^4+x^5+x^7  \\
            x^3+x^5+x^6 & 1+x+x^2+x^7 & x^2+x^3+x^4+x^5+x^7 & x+x^2+x^3+x^5+x^7\\
        \end{matrix} \right]
        \]
    \end{strip}
\lipsum[2]
% I lost the above \lipsum[2] while running the code
     \begin{strip}
        
        \[
        K=\left[\begin{matrix}
            1+x^4+x^6 & x+x^4+x^6+x^7 & 1+x^3+x^7 & 1+x+x^2+x^3+x^5  \\
            1+x^3+x^4+x^5+x^7 & x+x^2+x^4+x^5+x^6+x^7 & x^3+x^5+x^7 & x^3+x^6  \\
            x+x^2+x^4+x^5+x^6+x^7 & 1+x^4+x^6 & 1+x+x^2+x^4+x^5+x^6+x^7 & x^4+x^5+x^7  \\
            x^3+x^5+x^6 & 1+x+x^2+x^7 & x^2+x^3+x^4+x^5+x^7 & x+x^2+x^3+x^5+x^7\\
        \end{matrix} \right]
        \]
    \end{strip}

\end{document}

相关内容