I have made a titlepage with a wide (104pt) vertical line and i want to place a logo on top of that line. I tried to do it with icluding a picture with tikzpicture, but it places the image at the bottom of the page and I can't move it.
This is my code:
\newcommand*{\titleREP}{\begingroup{
\vspace{5cm}
\hspace{-2cm} % Whitespace to the left of the page
\color{darkgreen}\rule{104pt}{\textheight} % vertical line
\color{black}
\hspace*{0.1\textwidth}
\parbox[b]{0.9\textwidth{
{\noindent\Huge\bfseries MyTitleOfTheReport} \\[2\baselineskip]
{\Large \textit{The subtitle}} [4\baselineskip}
{\Large \textsc{The Author}}
\vspace{0.5\textheight}
{\noindent Organization}\\[\baselineskip]
}}
\endgroup
\begin{document}
\titleREP
\end{document}
The document is a memoir class document btw.
I tried inserting the picture everywhere with the following command:
\begin{tikzpicture}
\includegraphics[height = 2cm]{Logo}
\end{tikzpicture}
but I can't change the position where it is placed. How can i do that?
One approach (which uses
\newcommand, \bfserues instead of\bfseries). For guidance in creating your titlepage, you should look up: http://en.wikibooks.org/wiki/LaTeX/Title_Creation#A_practical_example. – jub0bs Mar 01 '13 at 13:30\includegraphicsin atikzpictureenvironment, here. – jub0bs Mar 01 '13 at 13:36\includegraphicswithout atikzpictureenvironment. The only reason to use tikz here is if you want to put the figure inside a tikz node and give the coordinates of this node for absolute positioning in the page (usingcurrent pageanchors). In this case you should use[remember picture, overlay]options for the tikz picture, and compile twice. – JLDiaz Mar 01 '13 at 16:52