移动整个 psmatrix 环境

移动整个 psmatrix 环境

由于某种原因,我的 psmatrix 在页面上的位置太低了。我想将其提升到页面顶部。

我尝试使用“偏移”参数:

\begin{psmatrix}[colsep=0,rowsep=1.3,offset=5]

但这显然没有效果。

编辑:这是 MWE。请注意,我使用第一行和“makebox”命令来设置表格其余部分的列宽(此处未显示)。

\documentclass[english]{article}
\makeatletter
\usepackage[pdf]{pstricks}
\usepackage{pst-node} 
\makeatother
\begin{document}
\begin{psmatrix}[colsep=0,rowsep=1.3,offset=5]
  \makebox[0cm]{} & \makebox[7cm]{} & \makebox[7cm]{} & \makebox[7cm]{} \\
  a
 &
  b
 & 
  c
 &
  d
\end{psmatrix}
\end{document}

答案1

如果您添加\usepackage{showframe},您将看到它位于页面顶部。我认为您想调整边距:

在此处输入图片描述

如果你想减少顶部边距我建议使用包裹geometry来调整它。

参考:

代码:

\documentclass[english]{article}
\makeatletter
\usepackage[pdf]{pstricks}
\usepackage{pst-node} 
\usepackage{showframe} 
\makeatother
\begin{document}
\begin{psmatrix}[colsep=0,rowsep=1.3,offset=5]
  \makebox[0cm]{} & \makebox[7cm]{} & \makebox[7cm]{} & \makebox[7cm]{} \\
  a
 &
  b
 & 
  c
 &
  d
\end{psmatrix}
\end{document}

相关内容