I am trying to set up different figure size in different chunks. I first define a global settings using:
opts_chunk$set(fig.width=7, fig.height=7)
Then, for the specific chunks, I use:
opts_current$set(fig.width=7, fig.height=14)
But the later is always neglected. So, how does opts_current really work?