Không có cách nào để làm điều đó trong GUI, nhưng một chút PyQGIS sẽ đưa bạn đến đó:
from PyQt4.QtCore import QLineF
#get composition
c = iface.activeComposers()[0].composition()
margin = 10.0
#top guide
c.addSnapLine().setLine( QLineF( 0, margin, c.paperWidth(), margin))
#bottom guide
c.addSnapLine().setLine( QLineF( 0, c.paperHeight() - margin, c.paperWidth(), c.paperHeight() - margin))
#left guide
c.addSnapLine().setLine( QLineF( margin, 0, margin, c.paperHeight() ))
#right guide
c.addSnapLine().setLine( QLineF( c.paperWidth() - margin, 0, c.paperWidth() - margin, c.paperHeight()))
Lưu ý rằng nếu bạn có nhiều hơn một nhà soạn nhạc, bạn sẽ cần sửa đổi c = iface.activeComposers()[0].composition()
dòng để phản ánh đúng số nhà soạn nhạc (ví dụ: activeComposers()[1]
...)