在两栏纸上放置一个宽矩阵

在两栏纸上放置一个宽矩阵

下面矩阵中的术语实际上非常宽,应该以两列页面格式插入,所以我想将其放在页面末尾,与页面的整个宽度对齐。我想知道是否有办法让它包含在附图中。

\documentclass[conference,a4paper]{IEEEtran}
\begin{document}
\begin{align*}
\mathbf{D} & =\begin{pmatrix}
& a & b & \cdots & c\\
& a & b & \cdots & c\\
&\vdots & \vdots & \vdots & \vdots\\
& a & b & \cdots & c\\
\end{pmatrix}
\end{align*} 
\end{document}

在此处输入图片描述

答案1

这是可能的,但不能放在文章的第一页。将其像浮动一样插入,不带标题:

\documentclass[conference,a5paper,twocolumn]{IEEEtran}
\usepackage{amsmath}
\usepackage{stfloats}
\usepackage{blindtext}
\begin{document}
\blindtext2
\begin{figure*}[b]%% over both columns
\begin{align*}
\mathbf{D} & =\begin{pmatrix}
& a & b & \cdots & c\\
& a & b & \cdots & c\\
&\vdots & \vdots & \vdots & \vdots\\
& a & b & \cdots & c\\
\end{pmatrix}
\end{align*} 
\end{figure*}

\blinddocument\blinddocument
\end{document}

在此处输入图片描述

该图显示的是第二页的底部:

相关内容