【问题标题】:How to stop knitr from adding tex packages based on documentClass?如何阻止knitr添加基于documentClass的tex包?
【发布时间】:2019-12-28 07:51:17
【问题描述】:

例如,我有一个简单的最小 .Rnw 文件,如下所示:

<<setup, include=FALSE>>=
test = "test"
@
\documentclass{article}
\begin{document}

Test value is \Sexpr{test}

\end{document}

我希望它编织来替换 Sexpr 变量,但它正在添加一大堆基于文档类的序言。

我在有限的 docker 环境中工作,所以我在 tex 中没有这些包。

如何让 knitr 不添加所有预代码?

这是knitr的输出:

\documentclass{article}\usepackage[]{graphicx}\usepackage[]{color}
% maxwidth is the original width if it is less than linewidth
% otherwise use linewidth (to make sure the graphics do not exceed the margin)
\makeatletter
\def\maxwidth{ %
  \ifdim\Gin@nat@width>\linewidth
    \linewidth
  \else
    \Gin@nat@width
  \fi
}
\makeatother

\definecolor{fgcolor}{rgb}{0.345, 0.345, 0.345}
\newcommand{\hlnum}[1]{\textcolor[rgb]{0.686,0.059,0.569}{#1}}%
\newcommand{\hlstr}[1]{\textcolor[rgb]{0.192,0.494,0.8}{#1}}%
\newcommand{\hlcom}[1]{\textcolor[rgb]{0.678,0.584,0.686}{\textit{#1}}}%
\newcommand{\hlopt}[1]{\textcolor[rgb]{0,0,0}{#1}}%
\newcommand{\hlstd}[1]{\textcolor[rgb]{0.345,0.345,0.345}{#1}}%
\newcommand{\hlkwa}[1]{\textcolor[rgb]{0.161,0.373,0.58}{\textbf{#1}}}%
\newcommand{\hlkwb}[1]{\textcolor[rgb]{0.69,0.353,0.396}{#1}}%
\newcommand{\hlkwc}[1]{\textcolor[rgb]{0.333,0.667,0.333}{#1}}%
\newcommand{\hlkwd}[1]{\textcolor[rgb]{0.737,0.353,0.396}{\textbf{#1}}}%
\let\hlipl\hlkwb

\usepackage{framed}
\makeatletter
\newenvironment{kframe}{%
 \def\at@end@of@kframe{}%
 \ifinner\ifhmode%
  \def\at@end@of@kframe{\end{minipage}}%
  \begin{minipage}{\columnwidth}%
 \fi\fi%
 \def\FrameCommand##1{\hskip\@totalleftmargin \hskip-\fboxsep
 \colorbox{shadecolor}{##1}\hskip-\fboxsep
     % There is no \\@totalrightmargin, so:
     \hskip-\linewidth \hskip-\@totalleftmargin \hskip\columnwidth}%
 \MakeFramed {\advance\hsize-\width
   \@totalleftmargin\z@ \linewidth\hsize
   \@setminipage}}%
 {\par\unskip\endMakeFramed%
 \at@end@of@kframe}
\makeatother

\definecolor{shadecolor}{rgb}{.97, .97, .97}
\definecolor{messagecolor}{rgb}{0, 0, 0}
\definecolor{warningcolor}{rgb}{1, 0, 1}
\definecolor{errorcolor}{rgb}{1, 0, 0}
\newenvironment{knitrout}{}{} % an empty environment to be redefined in TeX

\usepackage{alltt}
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
\documentclass{article}
\begin{document}

Test value is test

\end{document}

【问题讨论】:

  • 我正要回答 opts_knit$set(header = ""),但有趣的是,这并没有消除序言中的所有内容。顺便说一句,请考虑通过将 JSON 内容替换为常规变量来使您的代码最小化且可重现。
  • 感谢您的测试,我编辑了代码以提高重现性

标签: r latex knitr sweave


【解决方案1】:

如果不修改knitr 代码,您将无法真正阻止此操作。一些额外的包被硬编码到knitr:::make_header_latex 函数中,您可以在https://github.com/yihui/knitr/blob/dccdad769b67a23d9cf8b8414f844e2a6a74f21e/R/header.R#L16 中看到。

但是,有一些方法可以即时修改该函数,使用相当危险的 assignInNamespace 函数:

assignInNamespace("make_header_latex", function(...) "", "knitr")

之后,

knit("minimal.Rnw")

产生这个输出:

\documentclass{article}
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
\begin{document}

Test value is test

\end{document}

upquote 行来自不同的函数,但由于\IfFileExists,它应该是安全的。)

如果您这样做,请小心,因为我所做的更改将持续到您的 R 会话的其余部分。

编辑添加:如果需要,可以将 assignInNamespace 行放入 文档中的代码块。如果您使用 RStudio 并通过单击“编译 PDF”来编织文档,它将启动一个新的 R 会话,进行编织(这将替换该功能),然后运行修补功能:所以你得到在当前会话中不会弄乱knitr 的效果。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2017-09-30
    • 2020-03-15
    • 1970-01-01
    • 2012-09-30
    • 1970-01-01
    • 1970-01-01
    • 2012-08-30
    相关资源
    最近更新 更多