저는 LaTex를 몇 번 사용해 봤기 때문에 몇 가지만 알고 있습니다. 나는 나만의 이력서를 작성해야 하는 과제를 가지고 있으며 이러한 이유로 나에게 도움이 될 수 있는 도구나 패키지를 찾기 위해 웹에서 검색하기로 결정했고 실제로 패키지를 찾았 europecv
지만 지금은 몇 가지 문제:
label
이 오류가 발생하지 않도록 패키지를 포함해야 하는 이유는 무엇입니까 (어떤 용도로 사용됩니까?):
측정 단위가 잘못되었습니다(pt 삽입). \begin{europecv} (뒤에: )
숫자가 누락되어 0으로 처리됩니다. \begin{europecv} (뒤에:)
ecvitems
2 사이 에 추가 공백을 삽입하는 방법은 무엇입니까ecvsection
? 으로 시도했지만\\
작동하지 않는 것 같습니다.이력서 제목을 바꾸고 싶습니다. 이것은 현재의 것입니다:
유럽패스
이력서
- 만약
usepackage{label}
컴파일할 때 이 오류가 발생합니다.label
MacTex에는 해당 패키지가 기본적으로 포함되어 있지 않기 때문인가요 ? 그렇다면 이 새 패키지를 어떻게 통합할 수 있습니까?
내 주요 문제는 요점 1이라는 것을 기억하십시오.
코드는 다음과 같습니다.
\documentclass[10pt]{europecv}
\usepackage{label} %
\ecvLogoWidth{12mm}
\ecvname{name}
\ecvaddress{address}
\ecvtelephone{0010101010}
\ecvemail{[email protected]}
\ecvnationality{human}
\ecvdateofbirth{stuff}
\ecvgender{male}
\begin{document}
\begin{europecv}
\ecvpersonalinfo[10pt]
\ecvsection{Education}
\ecvitem{School}{Bullshits’ School}
\ecvitem{Date}{1900-2900}
\ecvitem{Country}{earth}
\ecvitem{Qualification Awarded}{None} \\
\ecvsection{Skills and Competences}
\ecvitem{Languages spoken}{Chinese, Japanese, Korean, English, Finnish, German}
\end{europecv}
\end{document}
답변1
패키지를 추가해도 label
오류가 해결되지는 않으며 원래 오류가 발생하기 전에 다른 오류가 발생할 뿐입니다. 사실 label
패키지는존재하지 않는다글을 쓰는 시점에서 CTAN에 대해.
보고하신 오류는 실제로 LaTeX에서 보고한 두 번째 오류입니다. 첫 번째 오류(꼭 살펴봐야 할 오류)는 다음과 같습니다.
! Undefined control sequence. \draweuropasslogo ->\includegraphics [width=\ecv@logowidth ]{europasslogo} l.14 \begin{europecv} The control sequence at the end of the top line of your error message was never \def'ed. If you have misspelled it (e.g., `\hobx'), type `I' and the correct spelling (e.g., `I\hbox'). Otherwise just continue, and I'll forget about whatever was undefined.
이를 통해 다음을 결정할 수 있습니다.graphicx
로드되지는 않지만 europecv
클래스에서 내부적으로 사용됩니다. 따라서 추가하면 \usepackage{graphicx}
문제가 해결되고 MWE는 오류 없이 컴파일됩니다.
클래스 작성자는 실제로 \RequirePackage{graphicx}
클래스 내부에 넣어야 합니다. 이는 컴파일 타임에 모든 종속성이 충족되도록 보장하는 방법이기 때문입니다.