Hi Sang Chul,
you must use viewports with ggplot2 in order to obtain multiple graphics in a single figure. As far as I know par options doesn't affect graphics made with ggplot2.
Here is an example code to do what you want. I hope it helps.
Bye
p1 = ggplot(...)+...
p2 = ggplot(...)+...
p3 = ggplot(...)+...
p4 = ggplot(...)+...
vplayout <- function(x, y) viewport(layout.pos.row=x, layout.pos.col=y)
grid.newpage()
pushViewport(viewport(layout=grid.layout(2,2)))
print(p1, vp=vplayout(1,1))
print(p2, vp=vplayout(1,2))
print(p3, vp=vplayout(2,1))
print(p4, vp=vplayout(2,2))