将 europecv 文档类与 KOMA-script 字母 scrlttr2 结合起来

将 europecv 文档类与 KOMA-script 字母 scrlttr2 结合起来

我使用文档类europecv来编写简历。我想在实际简历前添加一封信,最好使用scrlttr2KOMA-script 文档类。

有没有办法将 KOMA-script 文档类scrlttr2作为包加载,或者有人可以推荐另一种方法将简历和信件放在同一个文档中?

答案1

我想到最简单的解决方案就是使用包将不同的 pdf 放在一起pdfpages

使用 KOMA-Script 3.15 版本,可在开发者主页上找到,可以将字母的特征包含到其他 KOMA 类别中。

我们过去曾看到,这europecv有一些局限性。另一种选择可能是。以下是使用字母特征的komacv示例(从文档中窃取的) (在 的后台运行)。如果有人想知道,是的,外观看起来类似于。komacvscrartclkomacvmoderncv

komaLetter0

以及以下页面的简历:

komaLetter1

%komacv still uses the obsolet scrpage2
\RequirePackage{scrlfile}
\ReplacePackage{scrpage2}{scrlayer-scrpage}
%We simply replaced it with its successor
\documentclass{komacv}
\renewcommand*{\title}{CV}
\renewcommand*{\firstname}{Jane}
\renewcommand*{\familyname}{Eyre}
\renewcommand*{\acadtitle}{B.\,Ed.}
\renewcommand*{\addressstreet}{Ferndean House}
\renewcommand*{\addresscity}{Ferndean Village}
\renewcommand*{\address}[2]{\addressstreet{#1}\addresscity{#2}}
\renewcommand*{\mobile}{009-87654321}
\renewcommand*{\phonenr}{001-23456789}
\renewcommand*{\faxnr}{001-23456788}
\renewcommand*{\email}{[email protected]}
\renewcommand*{\extrainfo}{Some extra info}
\usepackage{blindtext}
\usepackage{scrletter}
%\LoadLetterOption{DINmtext}
\begin{document}
\setkomavar{fromname}{\firstname~\familyname}
\setkomavar{fromaddress}{\addressstreet\\\addresscity}
\begin{letter}{hallo}
    \opening{Dear Sir,}
    \blindtext
    \closing{Farewell}
\end{letter}
\maketitle

\section{Personal Information}
\cvitem{Date of birth}{February 15, 1828}
\cvitem{Nationality}{British}
\cvitem{Civil Status}{Married, two children}

\section{Education}
\cventry{1835--1838}{Homeschooling}{}{Gateshead}{grades
1--3}{Teacher: Mr.~NN, under supervision of my aunt Ms. Reed.}
\cventry{1838--1844}{Lowood School}{}{Lowood}{grades 3--8}{A
    charitable institution under the guidance of
Mr.~Brocklehurst.}

\section{Work}

\subsection{Teaching}
\cventry{1844--1846}{Teacher}{Lowood School}{Lowood}{}{Teaching
all grades.}
\cventry{1846--1847}{Governess}{}{Thornfield Hall, Thornfield
near Millcote}{}{Governess of Mr.~Rochester's ward Adèle,
10~years old.}
\cventry{1847}{Village teacher}{girl's school}{Moore
village}{}{Teaching all village girls, mostly farmer's daughters,
all grades.}
\cventry{1849--1867}{Home schooling}{}{Ferndean}{}{Educating and
teaching my children, a son and a daughter.}

\subsection{Nursing}
\cventry{1847\,ff.}{Nursing my physically impaired
husband}{}{}{}{Very poor eyesight and one hand amputated due to a
fire.}

\subsection{Management}
\cventry{1847\,ff.}{Management of the family
estate}{}{}{}{Including the household at Ferndean and extensive
property in England and on the continent.}

\end{document}

相关内容