2
我正在嘗試使用\psframe
創建5 * 2矩陣。我想用循環和改變座標來重複下面的代碼。意味着只需添加到X和Y座標並獲得結果。在乳膠上使用循環
\documentclass[a4paper]{article}
\usepackage{pstricks}
\begin{document}
\psframe(-3,-1)(5.5,3) %frame1
\end{document}
我正在嘗試使用\psframe
創建5 * 2矩陣。我想用循環和改變座標來重複下面的代碼。意味着只需添加到X和Y座標並獲得結果。在乳膠上使用循環
\documentclass[a4paper]{article}
\usepackage{pstricks}
\begin{document}
\psframe(-3,-1)(5.5,3) %frame1
\end{document}
這不是在LaTeX的,但在PSTricks一個循環:
\documentclass[a4paper]{article}
\usepackage{pstricks}
\begin{document}
\psframe(-3,-1)(5.5,3) %frame1
\begin{pspicture}(4,4)
\multirput(0,0)(1,0){4}{
\multirput(0,0)(0,1){3}{
\psframe(0,-1)(1,1)}
}
\end{pspicture}
\end{document}
PGF具有pgffor
包。它可以獨立於PGF使用,因此原則上可以將它用於PSTricks。在未來,你可能會考慮使用PGF/TikZ,除非你被綁定到PSTricks,它正在被積極開發並且可以做一些非常了不起的事情。
非常感謝你的幫助。 – Bhavneet 2011-03-20 13:08:04