我想在 chapterpages 背景中使用不同的 tikz 图片或 *.img 文件。Documentclass 是双面书。
到目前为止,我已使用新命令来获取不同的 \titleformats,例如:
\newcommand{\intro}{%
\titleformat{\chapter}[display]
{\Huge\bfseries}
{}
{0pt}
{\thechapter ##1}
}
\newcommand{\implementation}{%
\titleformat{\chapter}[display]
{\Huge\bfseries}
{}
{0pt}
{\thechapter ##1}
}
现在我想在背景,这不会影响页码和名称或以下文本的位置。但我找不到添加它的位置。尝试将其设置为不同的 titleformat 参数。但它们都会影响页码和名称的位置。
梅威瑟:
\documentclass[12pt,a4paper,twoside]{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage[explicit]{titlesec}
\usepackage{tikz}
\usepackage{blindtext}
\usepackage{xcolor}
\newcommand{\intro}{%
\titleformat{\chapter}[display]
{\Huge\bfseries\itshape }
{}
{0pt}
{\colorbox{gray!30}{\rlap{\raisebox{20pt}[0pt][0pt]{\textcolor{gray}{\thechapter}}}\parbox[c][40pt][c]{\linewidth}{\Large\scshape\centering##1}}}
%here an example tikz arrow that i want in the background
[{\begin{tikzpicture} \draw [->,ultra thick] (0,-5) -- (10,5); \end{tikzpicture}}]
}
\begin{document}
\intro
\chapter{Introduction}
\blindtext[8]
\end{document}