Estou escrevendo meu currículo em LaTeX e não sei por que, mas o código a seguir corta meu primeiro parágrafo no meio. Deveria ser simples saber o porquê, mas estou procurando nas últimas horas e não encontrei nada. Alguém pode me ajudar? desculpe antecipadamente se minha pergunta for muito óbvia :(
\documentclass[a4paper, 12pt, oneside, final]{scrartcl}
\usepackage[left=4.7cm, right=0.85cm, top=0.65cm, bottom=0.70cm]{geometry}
\usepackage{soul}
\usepackage{scrpage2}
\usepackage{titlesec}
\usepackage{marvosym}
\usepackage{tabularx}
\usepackage[francais]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\pagestyle{empty}
\usepackage{enumitem}
\usepackage{color}
\usepackage{wrapfig}
\usepackage{graphicx}
\usepackage{amsmath,amssymb,mathrsfs}
\usepackage{scrextend}
\usepackage{marvosym}
\usepackage{xcolor}
\definecolor{blue}{RGB}{0,25,80}
% Title format
\titleformat{\section}{\large\scshape\raggedright}{}{0em}{} [{\color{blue}\titlerule[0.8pt]}]
\titlespacing*{\section}
{0pt}{3.8ex plus 0ex minus 0ex}{2ex plus 0ex}
% Left margin
\reversemarginpar
\marginparwidth 96pt
% DOCUMENT
% ---------------------------------------------------------------------
\begin{document}
% Command label item
\renewcommand{\labelitemi}{\raise .5ex\hbox{\tiny$\bullet$}}
\newcommand{\mymarginnote}[1]{\leavevmode
\marginpar{\normalsize\textcolor{black}{#1}}%
\ignorespaces}
\setlength\parindent{0pt}
\setlength{\parskip}{0pt plus 0pt minus 0pt}
% Personal informations and picture
\setlength{\fboxsep}{0pt}%
\setlength{\fboxrule}{0.7pt}%
\begin{wrapfigure}{r}{00mm}
\hfill
\fbox{\includegraphics[scale=0.125]{cv_picture.jpg}}
\end{wrapfigure}
\mymarginnote{\smash{\fontsize{13.5}{30}\textbf{Branch Warren}}}
\mbox{}
\mymarginnote{alabama 17 \\ 1870 bessemer \\ usa \\ +4179 277320 \\ bbbranch}
Born on the 4th of March 1700
Single
US nationality
Military duties completed
[email protected]
% Objective
\section{Objective}
I am looking for a full-time position at stack overflow where my skills will add value to my employer's business.
\end{document}
Responder1
Com pequenas alterações no seu código (que não são essenciais):
\documentclass[a4paper, 12pt, oneside, final]{scrartcl}
\usepackage[left=4.7cm, right=0.85cm, top=0.65cm, bottom=0.70cm]{geometry}
\usepackage{soul}
\usepackage{scrpage2}
\usepackage{titlesec}
\usepackage{tabularx}
\usepackage{marvosym}
\usepackage[francais]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{enumitem}
\usepackage{wrapfig}
\usepackage{graphicx}
\usepackage{amsmath,amssymb,mathrsfs}
\usepackage{scrextend}
\usepackage{xcolor}
\definecolor{blue}{RGB}{0,25,80}
% Title format
\titleformat{\section}{\large\scshape\raggedright}{}{0em}{} [{\color{blue}\titlerule[0.8pt]}]
\titlespacing*{\section}
{0pt}{3.8ex plus 0ex minus 0ex}{2ex plus 0ex}
% Left margin
\reversemarginpar
\marginparwidth 96pt
% Command label item
\renewcommand{\labelitemi}{\raise .5ex\hbox{\tiny$\bullet$}}
\newcommand{\mymarginnote}[1]{\leavevmode
\marginpar{\normalsize\textcolor{black}{#1}}%
\ignorespaces}
\setlength\parindent{0pt}
\setlength{\parskip}{0pt plus 0pt minus 0pt}
% DOCUMENT
% ---------------------------------------------------------------------
\begin{document}
\pagestyle{empty}
% Personal informations and picture
\setlength{\fboxsep}{0pt}%
\setlength{\fboxrule}{0.7pt}%
\begin{wrapfigure}{r}{00mm}
\fbox{\includegraphics[width=33mm]{example-image}}
\end{wrapfigure}
\mymarginnote{\smash{\fontsize{13.5}{30}\textbf{Branch Warren}}}
\mymarginnote{alabama 17 \\ 1870 bessemer \\ usa \\
\, +4179 277320 \\
\, bbbranch}
Born on the 4th of March 1700
Single
US nationality
Military duties completed
\Letter \, [email protected]
% Objective
\section{Objective}
I am looking for a full-time position at stack overflow where my skills will add value to my employer's business.
\end{document}
Eu obtenho:
As alterações no código acima em comparação com o seu MWE são: (i) excluiu todos os pacotes carregados duas vezes (ii) todas \newcommand
as definições são movidas para o preâmbulo, (iii) pagestyle{...}
são movidas do preâmbulo para o conteúdo do documento, imediatamente após \begin{document
, (iv) o tamanho da imagem é determinado por width= 33mm
.
Eu suspeito que você provavelmente tenha problemas com o tamanho da imagem. Em vez disso, a escala determina sua largura ou, melhor ainda, sua altura.
Responder2
Você está usando as ferramentas erradas, na minha opinião.
O cabeçalho pode ser uma única caixa, na qual algumas outras caixas podem ser colocadas “manualmente”, por exemplo com tabular
.
O 3.7cm
comprimento deixará a parte esquerda a 1cm da margem do papel.
\documentclass[a4paper, 12pt, oneside, final]{scrartcl}
\usepackage[left=4.7cm, right=0.85cm, top=0.65cm, bottom=0.70cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[francais]{babel}
\usepackage{scrpage2}
\usepackage{scrextend}
\usepackage{titlesec} % not really compatible with scrartcl
\usepackage{graphicx}
\usepackage{xcolor}
\definecolor{blue}{RGB}{0,25,80}
% Title format
\titleformat{\section}{\large\scshape\raggedright}{}{0em}{} [{\color{blue}\titlerule[0.8pt]}]
\titlespacing*{\section}{0pt}{3.8ex plus 0ex minus 0ex}{2ex plus 0ex}
% Command label item
\renewcommand{\labelitemi}{\raise .5ex\hbox{\tiny$\bullet$}}
\setlength\parindent{0pt}
\setlength{\parskip}{0pt plus 0pt minus 0pt}
\pagestyle{empty}
\setlength{\fboxsep}{0pt}%
\setlength{\fboxrule}{0.7pt}%
% DOCUMENT
% ---------------------------------------------------------------------
\begin{document}
\noindent\makebox[\textwidth]{%
\hspace{-3.7cm}%
\begin{tabular}{@{}l@{}l@{}}
\multicolumn{2}{@{}l@{}}{\fontsize{13.5}{0}\textbf{Branch Warren}}\\[1ex]
\parbox[t]{3.7cm}{
alabama 17 \\
1870 bessemer \\
usa \\
+4179 277320 \\
bbbranch
} &
\begin{tabular}[t]{@{}l@{}}
Born on the 4th of March 1700 \\
Single \\
US nationality \\
Military duties completed \\
\texttt{[email protected]}
\end{tabular}
\end{tabular}%
\hfill
\begin{tabular}{@{}c@{}}
\fbox{\includegraphics[width=4cm,height=3cm]{example-image}}
\end{tabular}%
}
% Objective
\section{Objective}
I am looking for a full-time position at stack overflow where
my skills will add value to my employer's business.
\end{document}
Eu removi todo o pacote desnecessário. Saí babel
, embora pareça engraçado: acho que você escreverá o currículo em francês.