鉴于我五天前才开始使用 LaTeX,因此出现了一个问题,我想请求社区的帮助,因为我无法找到我想要的布局。
我设法添加了一张图片来开始一个章节。但是想要添加一个半透明的白色圆边框和围绕章节标题的橙色边框。有没有不使用 Tikz 就可以做到这一点的方法?
或者如果使用 Tikz,是否有办法在同一个命令中添加图片和框。如果我尝试使用 Tikz,图片总是被推到一边,标题周围的框不知何故垂直翻转。
我用来获取屏幕宽度图片的代码如下。
\documentclass[12pt,a4paper]{report}
\usepackage{titlesec}
\usepackage[a4paper,left=3.5cm, right=2.5cm, top=3.5cm, bottom=3.5cm]{geometry}
\usepackage{graphicx}
\usepackage{setspace}
\usepackage{xcolor}
\usepackage{lipsum}
%format chapter to add picture
\titleformat{\chapter}
{\fontfamily{qag}\huge\bfseries\printcurrentpicture}
{}
{0pt}
{\makebox[0cm][r]{\thechapter.\hspace{15pt}}}
\titlespacing{\chapter}{50pt}{0pt}{50pt}
\newcommand{\printcurrentpicture}{%
\vspace*{-\dimexpr\topskip+1in+\topmargin+\headheight+\headsep+\lineskip}%
\moveleft\dimexpr\oddsidemargin+1in\vbox{%
\hbox{%
\includegraphics[width=\paperwidth]{\thechapterpicture}%
}
\vspace{-80pt}
}%
}
\newcommand{\chapterpicture}[1]{%
\def\thechapterpicture{#1}%
}
亲切的问候,新手 LaTeX 入门者。