LaTeX が行を途中で切断します。なぜでしょうか?

LaTeX が行を途中で切断します。なぜでしょうか?

私は LaTeX で履歴書を書いていますが、なぜか次のコードで最初の段落が途中で切れてしまいます。理由は簡単にわかるはずですが、ここ何時間も探しても何も見つかりません。どなたか助けていただけませんか? 質問がわかりすぎている場合は、あらかじめお詫び申し上げます :(

ここに画像の説明を入力してください

\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}

答え1

コードに小さな変更を加えると(必須ではない):

\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}

以下を取得します:

ここに画像の説明を入力してください

上記のコードと MWE との比較における変更点は次のとおりです: (i) 2 回ロードされたすべてのパッケージが削除されました。 (ii) すべての\newcommand定義がプリアンブルに移動されました。 (iii)pagestyle{...}が の直後にプリアンブルからドキュメント コンテンツに移動されました\begin{document。 (iv) イメージ サイズは によって決定されますwidth= 33mm

おそらく、画像のサイズに問題があると思われます。画像の幅を決定するのではなく、スケールを設定するか、あるいは高さを決定するとさらに良いでしょう。

答え2

私の意見では、あなたは間違ったツールを使用しています。

tabularヘッダーは単一のボックスにすることができ、その中に他のボックスを「手動で」配置することができます。たとえば、 を使用します。

3.7cmさは紙の余白から1cmの左側を残します。

\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}

不要なパッケージはすべて削除しました。 は残しましたbabelが、おかしいですね。履歴書はフランス語で書くつもりだと思います。

ここに画像の説明を入力してください

関連情報