如何让投影仪演示文稿看起来像一本有线条的笔记本?

如何让投影仪演示文稿看起来像一本有线条的笔记本?

我正在改编如何使用 Latex 将文档打印成看起来像有线条的笔记本?

参加投影仪演示,但我无法做到。

有人能帮我吗?

答案1

用方格纸代替横线纸:

\documentclass{beamer}

\usepackage{lipsum}

\setbeamertemplate{background}[grid][step=13.6]

\begin{document}

\begin{frame}
    \vspace{-0.2cm}
    \lipsum[2]
\end{frame} 

\end{document}

在此处输入图片描述

答案2

根据 samcarters 的回答,我编写了一个新的背景模板lines。它具有与模板相同的选项grid

\documentclass{beamer}

\usepackage{lipsum}

\makeatletter
\usepackage{pgffor}
\newdimen\beamer@bglines@y
\defbeamertemplate{background}{lines}[1][]
{%
  \setkeys{beamer@backgroundgrid}{step=0.5cm,color=fg!10!bg}%
  \setkeys{beamer@backgroundgrid}{#1}%
  \begin{pgfpicture}{0cm}{0cm}{\the\paperwidth}{\the\paperheight}
    \beamer@bggc
    \pgfmathsetmacro{\beamer@bglines@num}{int(\the\paperheight/\beamer@bggw)}
    \foreach \y in {0,...,\beamer@bglines@num}{
        \pgfmathsetlength{\beamer@bglines@y}{\y*\beamer@bggw}
        \pgfpathmoveto{\pgfpoint{0pt}{\the\beamer@bglines@y}}
        \pgfpathlineto{\pgfpoint{\the\paperwidth}{\the\beamer@bglines@y}}
    }
    \pgfusepath{stroke}
  \end{pgfpicture}%
}
\makeatother

\setbeamertemplate{background}[lines][step=13.6]

\begin{document}

\begin{frame}
    \vspace{-0.2cm}
    \lipsum[2]
\end{frame} 

\end{document}

在此处输入图片描述

相关内容