在标题页上,我有蓝色条纹,但无法在左上角放置徽标图像,也无法在右上角放置地址框。
我已经使用
\documentclass[PhD,synopsis]{iitmdiss}
\usepackage{times}
\usepackage{t1enc}
%\usepackage[dvips]{graphicx}
\usepackage[hypertex]{hyperref} % hyperlinks for references.
\usepackage{amsmath} % easier math formulae, align, subequations \ldots
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{eso-pic}
\AddToShipoutPictureBG*{\AtPageLowerLeft{%
\color{blue}\rule{.10\paperwidth}{\paperheight}}}
%
\title{Title of the thesis}
\author{}
\date{March 2021}
\department{}
\begin{document}
答案1
\PassOptionsToPackage{demo}{graphicx} % remove this line in your document
\documentclass[a4paper]{report}
\pagestyle{empty}
\usepackage{tikz}
\usetikzlibrary{positioning, calc}
\begin{document}
\begin{tikzpicture}[remember picture, overlay]
\node[shape=rectangle,fill=blue!70!black,minimum height=\paperheight,anchor=south west, minimum width=12em]at($(current page.south west)+(0cm,0cm)$) (redline) {};
\node at($(redline)+(6cm,9cm)$) (logo) {\includegraphics[scale=0.5]{example-image}};
\node[align=left] at($(logo)+(10cm,0cm)$) (adr) {address\\
line 1\\line 2};
\draw [line width=2pt]($(redline.east)+(0cm,7cm)$)-|($(current page.east)+(0cm,7cm)$);
\node [draw]at($(redline.east)!0.5!(current page.east)+(0cm,5cm)$) (logo){\Large \textbf{Some Title Text}};
\end{tikzpicture}
\end{document}