把图片缩小一半就行吧:
打开Word文档——按Alt+F11出现VBA窗口——点左上方的Porject项下的“ThisDocument”——右键——插入——模块:粘贴下面的代码:
Sub Macro()
For Each iShape In ActiveDocument.InlineShapes
iShape.Height = iShape.Height * 0.5
iShape.Width = iShape.Width * 0.5
Next iShape
End Sub
按F5运行一次就行。
你要先把图片缩小,在对齐就可以了。。。。
你是要打印吗,建议你用扫描仪软件,那上面有个自动排版的很好用,你可以试试!!!