-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreport.tex
47 lines (39 loc) · 1.16 KB
/
report.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
\documentclass[a4paper,12pt]{report}
\usepackage{setspace}
\onehalfspacing
\input{packages} % Подключаемые пакеты
\input{styles} % Пользовательские стили
\usepackage{eso-pic}
\newcommand\BackgroundPic{
\put(0,0){
\parbox[b][\paperheight]{\paperwidth}{%
\vfill
\centering
\includegraphics[width=\paperwidth,height=\paperheight]{./myimages/second.pdf}
\vfill
}}}
\newcommand\BackgroundPicxx{
\put(0,0){
\parbox[b][\paperheight]{\paperwidth}{%
\vfill
\centering
\includegraphics[width=\paperwidth,height=\paperheight]{./myimages/first.pdf}
\vfill
}}}
\newcommand\BackgroundPicx{
\put(0,0){
\parbox[b][\paperheight]{\paperwidth}{%
\vfill
\centering
\includegraphics[width=\paperwidth,height=\paperheight]{./myimages/third.pdf}
\vfill
}}}
\begin{document}
\AddToShipoutPicture*{\BackgroundPicxx}
\input{names} % Переопределение именований
\input{title} % Титульный лист
\AddToShipoutPicture*{\BackgroundPic}
\AddToShipoutPicture{\BackgroundPicx}
\input{maintext} % Введение
\input{conclusion} % Заключение
\end{document}