您好,感谢您的帮助!
我需要一个工具,可以在我的电脑中以各种可能的位置放置尽可能多的不同图像book
。以下是我需要的详细信息:
- 为了能够添加
DIFFERENT BACKGROUND IMAGES
到标题页之前的页面(因此未编号或以罗马/负片编号),see MWE
文本将覆盖它!这些图像必须相应地:
- 不顾边距,延伸至整个页面!(
on preTITLE1 page
) - 保持在边距内(
on preTITLE2 page
) - 设置在我选择的任何随机位置(
on preTITLE3 page
),换句话说,我无法提供顶部、底部等位置。之后是我的标题页。
- 为了能够将图像添加到
THE SAME PAGE
整个文档的不同部分和所有其他页面,但就目前而言,我认为大部分或仅在外边缘,可以:
- 完全不触及文本或
- 部分重叠(这里,如果工作量不是太大,请分享我如何使用
A BACKGROUND IMAGE
重叠文本或NOT A BACKGROUND IMAGE
以部分在文本中、部分在边缘的方式环绕文本。
我真的很想对这些图像进行一些控制(如果不是所有可能的控制),例如能够将它们移动到页面上、不透明度、旋转等。如果有命令列表,请分享。
下面我提供了images
我需要的内容以及您可以使用MWE
的结构。book
% !TEX TS-program = LuaLaTeX
\documentclass[10pt,twoside,openany]{book}
\pagestyle{plain}
%\usepackage[T1,T2A]{fontenc}
%\usepackage[utf8]{inputenc}
\usepackage[pagewise]{lineno}
\usepackage[english, russian]{babel}
\usepackage{fontspec}
\setmainfont{EB Garamond}
\setmainfont[Ligatures=TeX]{EB Garamond}
\usepackage{microtype}
\usepackage{lipsum}
\usepackage{hyphenat}
\usepackage[shortcuts]{extdash}
\usepackage[a5paper,inner=25mm,top=12.5mm,outer=15mm,bottom=20mm,showframe]{geometry}
\usepackage[all]{nowidow}
\setlength{\parskip}{0pt}
\usepackage{graphicx}
\usepackage[dvipsnames]{xcolor}
\let\cleardoublepage\clearpage
\begin{document}
\frontmatter
\vspace*{20mm}
\vspace{0mm}
\begin{center}
\vspace{10mm}
{\fontsize{24}{24} {preTITLE1}\par}
\vspace{15mm}
{\normalsize\textcolor{red}{On this page I need a background image on full page with NO margins, stretching outside the frame. Like this}\par}
\end{center}
\clearpage
\vspace*{20mm}
\vspace{0mm}
\begin{center}
\vspace{10mm}
{\fontsize{24}{24} {preTITLE2}\par}
\vspace{15mm}
{\normalsize\textcolor{red}{On this page I also need a background image on full page but WITHIN margins. Like this }\par}
\end{center}
\clearpage
\vspace*{20mm}
\vspace{0mm}
\begin{center}
\vspace{10mm}
{\fontsize{24}{24} {preTITLE3}\par}
\vspace{15mm}
{\normalsize\textcolor{red}{On this page I need a background image only at specific position. Ideally I would need to have an ability to position it myself. In other words I can't provide a position like top, bottom and etc. And I would really love to have some control, if not all possible, over it, like ability to move it over the page, opacity, rotation and etc. Like this}\par}
\end{center}
\clearpage
\begin{titlepage}
\centering
\vspace*{10mm}
{\scshape\huge{TITLE}\par}
\vspace{0mm}
\end{titlepage}
\clearpage
\mainmatter
\pagenumbering{arabic}
\obeylines
\vspace{10mm}
{\normalsize\textcolor{red}{On this page I'd have images in different parts of the page, though for now I believe, mostly or only on outer margin, either completely not touching the text OR overlapping it. And I would really love to have some control, if not all possible, over it, like ability to move it over the page, opacity, rotation and etc. Like this}\par}
\vspace{10mm}
\lipsum[1-4]
\vspace{0mm}
\end{document}
答案1
在这个网站上,你每次只能问一个问题。我觉得你问了 7 个问题。
作为一个非常部分的答案,您可以使用picture
环境在页面上定位图形。
% picposprob.tex SE 639125
\documentclass{article}
\usepackage{graphicx}
\usepackage{mwe}
\usepackage{lipsum}
\begin{document}
\begin{picture}(0,150)
\put(-40,0){\includegraphics{example-image-a}}
\end{picture}
\lipsum[2]
\begin{picture}(0,250)
\put(40,0){\includegraphics{example-image}}
\end{picture}
\lipsum[2]
\end{document}
我建议你多了解一下picture
环境。你可能需要做很多工作才能得到你想要的东西。