rmarkdown pdf 文件中的文本被剪切

rmarkdown pdf 文件中的文本被剪切

正如您在图片中看到的,文本在页面末尾被截断。如何才能防止这种情况发生?我执行了以下代码并附上了一张图片以便更好地解释。

我想知道要向 header.tex 添加什么内容以及按什么顺序添加。

---
title: "simulation"
output:
  pdf_document:
    includes:
      in_header: header.tex
    keep_tex: yes
---
knitr::opts_chunk$set(echo = TRUE)
library(knitr)
library(report)
model_1 <- glm(vs ~ mpg * drat, data = mtcars, family = "binomial")
report(model_1)

header.tex 中 Yaml 标头的代码

\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{eurosym} 
\usepackage{booktabs,xcolor}
\pagestyle{fancy}
\fancyhf{}
\fancyfoot[C]{Confidential - \url{www.Google.com}}
\fancyfoot[R]{\thepage}
\fancypagestyle{plain}{\pagestyle{fancy}}
\addtolength{
\headheight}{1.0cm}
\lhead{Google- Google - \today}
\rhead{\includegraphics[width=4cm]{logo.png}}

我最终收到了有关如何修复该问题的警告,但尚未能够解决它

Warning: (fancyhdr)                \setlength{\headheight}{46.08408pt}.
Warning: (fancyhdr)                You might also make \topmargin smaller to compensate:
Warning: (fancyhdr)                \addtolength{\topmargin}{-5.63133pt}.

图片

答案1

欢迎使用 TeX.SE。不过这不是一个LaTeX问题。这取决于您如何设置R。安装formatR,然后按照 Yuhai 的说明进行操作:自动格式化 R 代码为您的glm调用设置输出宽度。另请参阅此答案SO如何在 markdown (.Rmd) 中包装代码和输出。我投票关闭该问题。

相关内容