在LaTeX中,可以使用以下代码制作一个简短的标题(将出现在图表列表中):
\caption[Short caption.]{Long caption.}
在R中使用stargazer
我尝试了这个:
stargazer(mtcars, summary = FALSE, title="[Short caption]Long caption")
为字幕生成此输出:
\caption{[Short caption]Long caption}
如何使用stargazer
制作一个简短的标题?
答案 0 :(得分:0)
使用观星者可以禁用它的浮动选项。将观星块嵌套在手动提供的表格环境中,然后允许您手动自定义任何字幕或标签,即
\begin{table}
\caption[Short caption]{The main caption of the table.}
\label{tab:mtcars}
\centering
<<results="asis",echo=F>>=
stargazer(mtcars[1:5, 1:3], summary = FALSE,float=F)
@
\end{table}