I'm pretty new in this game and have now come across a problem regarding a figure on my front page of a CV template with document class "\documentclass{scrartcl}".
The code is as following:
Code: Select all
\documentclass{scrartcl}
\reversemarginpar % Move the margin to the left of the page
\newcommand{\MarginText}[1]{\marginpar{\raggedleft\itshape\small#1}} % New command defining the margin text style
\usepackage[nochapters]{classicthesis} % Use the classicthesis style for the style of the document
\usepackage[LabelsAligned]{currvita} % Use the currvita style for the layout of the document
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{sidecap,caption}
%\usepackage{float}
\usepackage{sidecap}
\usepackage{floatrow}
\usepackage{titlepic}
\usepackage{pdfpages}
\usepackage[font={scriptsize,sc}]{caption}
\renewcommand{\cvheadingfont}{\LARGE\color{Maroon}} % Font color of your name at the top
\usepackage{hyperref} % Required for adding links and customizing them
\hypersetup{colorlinks, breaklinks, urlcolor=Maroon, linkcolor=Maroon} % Set link colors
\newlength{\datebox}\settowidth{\datebox}{Spring 2011} % Set the width of the date box in each block
\newcommand{\NewEntry}[3]{\noindent\hangindent=2em\hangafter=0 \parbox{\datebox}{\small \textit{#1}}\hspace{1.5em} #2 #3 % Define a command for each new block - change spacing and font sizes here: #1 is the left margin, #2 is the italic date field and #3 is the position/employer/location field
\vspace{0.5em}} % Add some white space after each new entry
\newcommand{\Description}[1]{\hangindent=2em\hangafter=0\noindent\raggedright\footnotesize{#1}\par\normalsize\vspace{1em}} % Define a command for descriptions of each entry - change spacing and font sizes here
\pagestyle{empty}
%----------------------------------------------------------------------------------------
\begin{document}
\thispagestyle{empty} % Stop the page count at the bottom of the first page
%----------------------------------------------------------------------------------------
% NAME AND CONTACT INFORMATION SECTION
%----------------------------------------------------------------------------------------
\begin{cv}{\spacedallcaps{Per J. Melin}}\vspace{1.5em} %
\noindent\spacedlowsmallcaps{Personal Information}\vspace{0.5em}
\NewEntry{Birth}{\textit{Born on Mars,}}{27 Mars 1952}
\NewEntry{Email}{\href{mailto:per.melin@yahoo.com}{per.melin@afconsult.com}}
\NewEntry{Phone}{(Mobile) +46 (070) 1337 1337} %\ \ $\cdotp$\ \ }
\vspace{1em} % Extra white space between the personal information section and goal
\noindent\spacedlowsmallcaps{Short Resume}\vspace{1em} % Goal heading, could be used for a quotation or short profile instead
\Description{M.Sc in Mechanical Engineering - Link\"opings Technical University, with focus on Solid and Fracture Mechanics. I am an open-minded analytical person who loves problem solving and possesses knowhow in several common FEM software. I bring a positive attitude into challenging projects where I can develop as an engineer and possibly more important, as a team player.\newline
\textsc{Interests:} CrossFit\ \ $\cdotp$\ \ Music\ \ $\cdotp$\ \ Movies \ \ $\cdotp$\ \ Skiing\ \ $\cdotp$\ \ After-skiing \ \ }
\vspace{1em}
%----------------------------------------------------------------------------------------
% EDUCATION
%----------------------------------------------------------------------------------------
\end{cv}
\end{document}
Thank you very much for your time!
best regards, Per