MacOSX10.8.1のRStudioで.Rnwファイルを織り込むためにknitrを使用しています。PDFをコンパイルすると(RStudioのボタンまたはCmd-Shift-iのいずれかを使用)、デフォルトのRStudio PDFビューアーが表示され、ビューが「自動」に設定されます。このビューを「ページフィット」に開くように設定する方法はありますか?以下は、動作する小さな.Rnwファイルの内容です。
ありがとう、RTM
\documentclass[12pt]{article}
\title{Sweave Min}
\author{RTM}
\begin{document}
<<setup, include=FALSE, cache=FALSE>>=
opts_chunk$set(fig.path='figs/', fig.align='center', fig.show='hold', echo=FALSE, include=FALSE)
options(replace.assign=TRUE, width=90)
@
\maketitle
<<min, include=TRUE>>=
x <- 1+1
print(x)
@
$x = \Sexpr{x}$
\end{document}