deedy-resume の flushleft の色を変更する

deedy-resume の flushleft の色を変更する

ここに画像の説明を入力してください見出し行の色を変更しようとしています (たとえば、タイトルの名前と連絡先情報は、見出しの各行ごとに異なる色にする必要があります)。残念ながら、期待どおりには機能しません。

まず、次のテンプレートを使用します。 https://www.overleaf.com/articles/rishabh-cv-v3/chvmptzhvfnb

画像からわかるように、2 は \color を使用して別の色になっていますが、1 の色を変更することはできません。

次に、.cls ファイルには「namesection」を扱うセクションがありますが、これは変更されたテンプレートであるため、そのセクションは使用されません。

3番目に、私は次のことを試しました。

- \textcolor{blue}{\textbf{some bold and colored text}}、では機能しませんでしたflushleft。 -\color{blue}内側と外側も試しましたflushleft - 最後に試しました\leavevmode\color{red} text

関連するセクションは次のとおりだと思います。

\documentclass[letterpaper]{deedy-resume} 
\usepackage{fixltx2e}
\usepackage{hyperref}
\usepackage{color}
\usepackage[document]{ragged2e}

\begin{document}

%----------------------------------------------------------------------------------------
%   TITLE SECTION
%----------------------------------------------------------------------------------------

\begin{flushleft}
\Huge \textbf{RISHABH URVESH SHAH}\\*
\begin{small}

\vspace{-7mm}
\textbf{\urlstyle{same}{\footnotesize \\ \url{http://aqes.cee.illinois.edu} | \url{hiwater.org}} | \href{mailto:[email protected]}{\underline} [email protected] | +1 (217)-819-6377 
}
\end{small}
\end{flushleft}

ご協力をよろしくお願いいたします。

答え1

まあ、あなたが望む結果を得るための最良の方法は、\namesection次のように command を再定義することです。

\renewcommand{\namesection}[7]{ % Defines the command for the main heading
\flushleft 
{
\fontsize{40pt}{60pt} % Font size
\fontspec[Path = fonts/lato/]{Lato-Lig}\selectfont #1 % First name font
\fontspec[Path = fonts/lato/]{Lato-Lig}\selectfont #2 % Last name font
\\[5pt] % Whitespace between the name and contact information
}
\flushleft 
{ % Center the contact information
\color{headings} % Use the headings color
\fontspec[Path = fonts/raleway/]{Raleway-Bold}\fontsize{11pt}{14pt}\selectfont \textcolor{red}{#3} 
\fontspec[Path = fonts/raleway/]{Raleway-Medium}\fontsize{11pt}{14pt}\selectfont \textcolor{blue}{#4} \\
\fontspec[Path = fonts/raleway/]{Raleway-Bold}\fontsize{11pt}{14pt}\selectfont #5
\fontspec[Path = fonts/raleway/]{Raleway-Medium}\fontsize{11pt}{14pt}\selectfont #6 \\
{\footnotesize #7} \\
} % Contact information font
%\noindent\makebox[\linewidth]{\color{headings}\rule{\paperwidth}{0.4pt}} % Horizontal rule
%\vspace{-5pt} % Reduce whitespace after the rule slightly
}

この再定義により、7つのパラメータを追加することができます\namesection

\namesection{RISHABH}{URVESH SHAH}%
{Work Address:}{4140 NCEL MC-250, 205 N Mathews Ave, Urbana IL 61801, USA}
{Home Address:}{107 E Springfield Ave, Apt. 217, Champaign IL 61820, USA}
{{\urlstyle{same}\url{http://aqes.cee.illinois.edu} | \url{hiwater.org}} | \href{mailto:[email protected]}{[email protected]} | +1 (217)-819-6377}

を追加し\flushleft、firstname のフォントとフォント サイズを変更し、印刷データの色を変更する方法を示す例を 1 つ追加したことを確認してください (フォント名に含まれている太字のフォントを確認してください)。

\textcolor{red}{#3} 

そして

\textcolor{blue}{#4}

タイトルの終了ルールも削除しました...

これで、それを使用して、必要なものに変更することができます...

以下のMWEをご覧ください

\documentclass[letterpaper]{deedy-resume} 
%\usepackage{fixltx2e}

\usepackage{xcolor}
\usepackage[document]{ragged2e}
\usepackage{hyperref}

\renewcommand{\namesection}[7]{ % Defines the command for the main heading
\flushleft 
{
\fontsize{40pt}{60pt} % Font size
\fontspec[Path = fonts/lato/]{Lato-Lig}\selectfont #1 % First name font
\fontspec[Path = fonts/lato/]{Lato-Lig}\selectfont #2 % Last name font
\\[5pt] % Whitespace between the name and contact information
}
\flushleft 
{ % Center the contact information
\color{headings} % Use the headings color
\fontspec[Path = fonts/raleway/]{Raleway-Bold}\fontsize{11pt}{14pt}\selectfont \textcolor{red}{#3} 
\fontspec[Path = fonts/raleway/]{Raleway-Medium}\fontsize{11pt}{14pt}\selectfont \textcolor{blue}{#4} \\
\fontspec[Path = fonts/raleway/]{Raleway-Bold}\fontsize{11pt}{14pt}\selectfont #5
\fontspec[Path = fonts/raleway/]{Raleway-Medium}\fontsize{11pt}{14pt}\selectfont #6 \\
{\footnotesize #7} \\
} % Contact information font
%\noindent\makebox[\linewidth]{\color{headings}\rule{\paperwidth}{0.4pt}} % Horizontal rule
\vspace{-5pt} % Reduce whitespace after the rule slightly
}


\begin{document}

%----------------------------------------------------------------------------------------
%   TITLE SECTION
%----------------------------------------------------------------------------------------

\namesection{RISHABH}{URVESH SHAH}%
{Work Address:}{4140 NCEL MC-250, 205 N Mathews Ave, Urbana IL 61801, USA}
{Home Address:}{107 E Springfield Ave, Apt. 217, Champaign IL 61820, USA}
{{\urlstyle{same}\url{http://aqes.cee.illinois.edu} | \url{hiwater.org}} | \href{mailto:[email protected]}{[email protected]} | +1 (217)-819-6377}

%----------------------------------------------------------------------------------------
%   LEFT COLUMN
%----------------------------------------------------------------------------------------

\begin{minipage}[t]{0.29\textwidth} 

\section{Education} 

\subsection{University of Illinois}
\subsection{at Urbana-Champaign}

\descript{M.S. Civil and Environmental Engineering}
\location{Expected Aug 2015 | GPA: 3.91}

\sectionspace 

\subsection{Gujarat Technological}
\subsection{University}

\descript{B.E. Environmental Engineering}
\location{June 2013 | GPA: 8.67/10.00}

\sectionspace 

\sectionspace 

\section{Coursework}

\subsection{Graduate}

Air Quality Engineering \\
Air Quality Modeling \\
Atmospheric Meteorology \\
Aerosol Sampling and Analysis \\
Environmental Transport Modeling \\
Water Chemistry


\sectionspace 

\subsection{Undergraduate}


Wastewater Treatment Process Design \\
Environmental Impact Assessment \\
Environmental Legislation and Audit \\
Occupational Health and Safety \\
Waste Management \\
Project Management \\
Fundaments of Automobile Engineering \\
Conventional Power Engineering \\

\sectionspace 

\section{Skills}

\subsection{Computer}
Aerosol Instrument Manager \textbullet{} LabVIEW \textbullet{} MATLAB \textbullet{} AERMOD \textbullet{} Engineering Equation Solver \textbullet{}
\\ WRPLOT View \textbullet{} MINEQL+ \textbullet{} ALOHA \textbullet{} MARPLOT

\sectionspace

\subsection{Certificates}
\textbullet{}Energy and Sustainability Engineering | Jan 2015| University of Illinois, Urbana-Champaign
\textbullet{}Certified LabVIEW Associate Developer (CLAD) | Jan 2015 | National Instruments
\sectionspace 

\end{minipage} 
\hfill
%
%----------------------------------------------------------------------------------------
%   RIGHT COLUMN
%----------------------------------------------------------------------------------------
%
\begin{minipage}[t]{0.66\textwidth} 

\section{Experience}

\runsubsection{Graduate Research Assistant} |\descript{\small Dept. of Civil and Environmental Engineering, University of Illinois at Urbana-Champaign}

\location{Expected May 2014 – Aug 2015 | Urbana, IL}
\vspace{\topsep} 
\begin{tightitemize}
\item Advised by Dr. Mark J. Rood and Dr. Tami C. Bond.\\
\item Conducting laboratory experiments to characterize the optical properties and cloud condensation nuclei (CCN) activity of biomass-burning aerosol in tandem with atmospherically relevant tracer gas, ozone. Extensive use of aerosol sampling and measurement equipment.\\
\item Research funded by the US Department of Energy. 
\end{tightitemize}

\sectionspace 

\runsubsection{Graduate Teaching Assistant} |\descript{\small Dept. of Natural Resources and Environmental Sciences, University of Illinois at Urbana-Champaign}

\location{Jan 2014 – May 2014 | Urbana, IL}
\begin{tightitemize}
\item Assistant to Dr. Bethany B. Cutts.\\
\item Tasks included leading weekly discussion sessions, weekly course planning, holding office hours and grading assignments. Worked under Dr. Bethany Cutts.
\end{tightitemize}

\sectionspace 

\runsubsection{Vocational Trainee} |\descript{\small Environmental Control Unit, Gujarat Narmada-Valley Fertilizers Pvt. Ltd. (GNFC)}

\location{June 2012 | Bharuch, Gujarat, India}
\begin{tightitemize}
\item Stationed at the Nitro-Effluent and Common Effluent Treatment Plant (NETP and CETP) for treating combined effluent streams from various chemical manufacturing units of GNFC.
\end{tightitemize}

\sectionspace 

\section{Project Experience}

\descript{Automotive air pollution and its control by catalytic converters}

\location{Fall 2013 | Independent Study | University of Illinois}
A study of the formation of air pollutants in an internal combustion engine, role and limitations of catalytic converters in controlling emissions
\sectionspace 

\descript{Modeling of increase in SO\textsubscript{2} concentrations due to proposed erection of stacks}

\location{Fall 2013 | Coursework Project | University of Illinois}
Modeling ambient SO\textsubscript{2} emissions around proposed site of stack erection using AERMOD, Breeze 3D Analyst and WRPLOT ViewTM software. 

\sectionspace 

\descript{Mitigation response following a cyclohexane spill}

\location{Fall 2013 | Coursework Project | University of Illinois}
Modeling the behaviour of a hypothetical cyclohexane spill using computer software, viz. ALOHA, MARPLOT and CAMEO Chemicals and to develop an emergency response plan to be followed in such scenario.

\sectionspace 

\section{Presentations} 

\textbullet{}\location{\color{darkgray} Poster: "Hygroscopicity and CCN Activity of Biomass-burning aerosol"}
{\footnotesize Mar 2015 | US Department of Energy: Atmospheric System Research Meeting | Vienna VA\\}
\textbullet{}\location{\color{darkgray} Poster: "Measuring CCN activity of Organic Carbon with Ammonia Aging"}
{\footnotesize Apr 2014 | Environmental Engineering and Science Symposium | Champaign IL}
\sectionspace 

\end{minipage}

\end{document}

そしてその結果:

結果のPDF

関連情報