我想知道如何调整lstlisting
到beamer
代码的帧大小。这是我的代码:
\lstset{
backgroundcolor=\color{white},
basicstyle=\scriptsize,
breakatwhitespace=false,
breaklines=true,
commentstyle = \textit,
deletekeywords={...},
escapeinside={\%*}{*)},
extendedchars=true,
frame=single,
keepspaces=true,
language=R,
otherkeywords={*,...},
numbers=left,
numbersep=5pt,
numberstyle=\tiny\color{mygray},
rulecolor=\color{black},
showspaces=false,
showstringspaces=false,
showtabs=false,
stepnumber=2,
tabsize=2,
}
\begin{lstlisting} [title = \lstname \scriptsize bla]
library(ggplot2)
qplot(x, y, data =, color =, shape =, fill=, alpha=, geom=, method=, formula=, facets=,
xlim=, ylim=, xlab=, ylab=, main=, sub=)
\end{lstlisting}
我得到的是:
但我真正想要的是:
我曾经获得过第二张照片的画面,但我在\lstset
中更改了设置,现在它不再起作用了,我找不到任何解释如何调整画面大小的来源。
如果有人知道答案,我会很高兴的!