Przerwa linii w wyrażeniu ()?

Mam następujący histogram w R:

hist(alpha,cex.main=2,cex.axis=1.2,cex.lab=1.2,
main=expression(paste("Histogram of ",hat(mu), ", Bootstrap samples, Allianz")))

Titlle jest za długa, więc chcę przerwać linię. Według tegowątek próbowałem

hist(alpha,cex.main=2,cex.axis=1.2,cex.lab=1.2,
main=expression(paste("Histogram of ",hat(mu), ",cat("\n") Bootstrap samples, Allianz")))

lub

hist(alpha,cex.main=2,cex.axis=1.2,cex.lab=1.2,
main=expression(paste("Histogram of ",hat(mu), cat("\n"),", Bootstrap samples, Allianz")))

Ale oba nie działają, jak mogę uzyskać przerwanie linii w wklejaniu ()?

questionAnswers(2)

yourAnswerToTheQuestion