如何更改页面的背景颜色?

如何更改页面的背景颜色?

我想要获得以下颜色例子,我正在尝试 tikz 和 tikzmark 包。非常感谢您的贡献

答案1

这里有一个使用背景包的选项,允许将文本、图形放在文档的某些或所有页面中,结合 graphicx 包,在配置上我们可以选择控制不透明度、位置、角度、移动等。

我在 MWE 中使用的背景是从您链接的文档中获得的,使用 Poppler/Cairo 选项在 Inkscape 中导入第 2 页,然后我使用取消组合来分离背景并擦除其他元素以将其保存为 PDF 格式,此处的文档存储在某个云文件夹中GOT-BG.pdf 908kb,为了获得“相同”的结果,请将 pdf 文档放在主 latex 文档的同一文件夹中,并使用 pdflatex 编译两次。

PSD:鸭子可能会有所不同

结果: 在此处输入图片描述

梅威瑟:

% arara: pdflatex: {synctex: yes, action: nonstopmode}
% arara: pdflatex: {synctex: yes, action: nonstopmode}

\documentclass[twocolumn]{article}
\usepackage[bottom=2cm,top=2cm]{geometry}
\usepackage{graphicx}
\usepackage[
pages=some,
firstpage=false,
opacity=0.8,
placement=center,
angle=0,
hshift=0,
vshift=0
]{background}
\usepackage{subfigure}
\usepackage{listings}
\usepackage{lipsum}
\usepackage{tikz}
\usetikzlibrary{ducks}
\title{Background package application}
\author{J. Leon V.}

\begin{document}
    \backgroundsetup{contents={\includegraphics[scale=.103]{GOT-BG.pdf}}}
    \maketitle  
    \part{Some text in a beautifull old page}
    \lipsum[1-3]
    \begin{figure}[h!]
        \centering
        \includegraphics[width=\columnwidth]{example-image-a}\\
        \caption{Example image}
    \end{figure}
    \lipsum[4-6]
    \begin{table}
        \centering
        \begin{tabular}{l*{6}{c}r}
            SCORE             & P & W & D & L & F  & A & Pts \\
            \hline
            Foo & 6 & 4 & 0 & 2 & 10 & 5 & 12  \\
            Bar            & 6 & 3 & 0 & 3 &  8 & 9 &  9  \\
            baz          & 6 & 2 & 1 & 3 &  7 & 8 &  7  \\
            Kstor   & 6 & 2 & 1 & 3 &  5 & 8 &  7  \\
        \end{tabular}
        \caption{Example table}
    \end{table}
    \part{trying with ducks}
    \lipsum[7-9]
    \begin{figure}[h!]
        \begin{tikzpicture}
            \draw(0,0) circle (1pt);% typo has been fixed!
            \begin{scope}[xshift=.7cm]
            \randuck;
            \end{scope}
            \begin{scope}[xshift=2.7cm]
            \randuck;
            \end{scope}
            \begin{scope}[xshift=4.7cm]
            \randuck;
            \end{scope}

        \end{tikzpicture}
        \caption{Testing Tikz + ducks}      
    \end{figure}
    \lipsum[10]    
\end{document}

相关内容