awesome-cv 内の場所パラメータが短すぎます

awesome-cv 内の場所パラメータが短すぎます

私の大学の完全な住所は、デフォルトの書式設定では 1 行に収まらないほど長すぎます。現在の出力は次のとおりです。 ここに画像の説明を入力してください

ただし、書式設定がおかしくなるので、場所を 1 行に収める必要があります。コマンドをいじってみました\cventryが、何も見つかりません。コードは次のとおりです。

% Define an entry of cv information
% Usage: \cventry{<position>}{<title>}{<location>}{<date>}{<description>}
\newcommand*{\cventry}[5]{%
  \vspace{-2.0mm}
  \setlength\tabcolsep{0pt}
  \setlength{\extrarowheight}{0pt}
  \begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} L{\textwidth - 4.5cm} R{4.5cm}}
    \ifempty{#2#3}
      {\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
      {\entrytitlestyle{#2} & \entrylocationstyle{#3} \\
      \entrypositionstyle{#1} & \entrydatestyle{#4} \\}
    \multicolumn{2}{L{\textwidth}}{\descriptionstyle{#5}}
  \end{tabular*}%
}

場所に固有の書式は次のとおりです。

\newcommand*{\entrylocationstyle}[1]{{\fontsize{9pt}{1em}\bodyfontlight\slshape\color{awesome} #1}}

編集:私はこう呼んでいます。

  \cventry
    {Bachelor of Computer Science (BCS) Honours, Software Engineering Stream} % Degree
    {Carleton University} % Institution
    {1125 Colonel By Dr, Ottawa ON, Canada K1S 5B6} % Location
    {Sep. 2022 - Apr. 2026} % Date(s)
    {
    \textbf{Courses:} Accelerated Intro to Computer Science I and II, Intro to Systems Programming, Discrete Structures I, Calculus I, Linear Algebra I, \newline Critical Thinking, Intro to Cognitive Science, Intro to Film Studies.
    }
    % \vspace{-\baselineskip}

%---------------------------------------------------------
\end{cventries}

答え1

後に追加\documentclass[11pt, letterpaper]{awesome-cv}

左の列を拡張して、より長いアドレスを許可します。

\renewcommand*{\cventry}[5]{%
    \vspace{-2.0mm}
    \setlength\tabcolsep{0pt}
    \setlength{\extrarowheight}{0pt}
    \begin{tabular*}{\textwidth}{@{\extracolsep{\fill}} L{0.6\textwidth} R{0.4\textwidth}}
        \ifempty{#2#3}
        {\entrypositionstyle{#1} & \entrydatestyle{#4} \\}
        {\entrytitlestyle{#2} & \entrylocationstyle{#3} \\
            \entrypositionstyle{#1} & \entrydatestyle{#4} \\}
        \multicolumn{2}{L{\textwidth}}{\descriptionstyle{#5}}
    \end{tabular*}%
}

1つの

関連情報