저는 이력서를 쓰고 있어요. 몇 개의 헤더와 하위 헤더를 작성한 후 분명히 다음 페이지로 이동합니다. 하지만 두 번째 페이지에는 중앙에 "(계속)" 맨 윗줄이 있어서 짜증스럽습니다. 이것을 어떻게 제거하나요?
내 코드:
\NeedsTeXFormat{LaTeX2e}
\documentclass{curve}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[swedish]{babel}
\usepackage[paperheight=29.7cm]{geometry}
\usepackage{fouriernc}
\leftheader{a\\ b\\ c\\ d\\ }
\rightheader{ }
\title{a}
\subtitle{b \\ \vspace{1mm}\Large c}
\begin{document}
\makeheaders[t]
\maketitle
\makerubric{rubric}
\end{document}
답변1
귀하가 사용한 파일이 없기 때문에 귀하의 질문이 명확하지 않습니다 rubric.tex
. 개인 정보 없이 해당 파일을 질문에 추가하는 것이 훨씬 더 좋을 것입니다. 그래서 우리는 당신이 무엇을 하고 있는지 추측해야 합니다!
ctan의 해당 클래스에는 curve
명령이 \@continuedname
정의되어 있습니다. 프리앰블에서 다음 코드를 사용하여 비어 있도록 변경할 수 있습니다.
\makeatletter % <=======================================================
\def\@continuedname{}
\makeatother % <========================================================
그래도 도움이 되지 않으면 주어진 코드를 완성하여 상황을 반영하여 완전하고 컴파일 가능하도록 하십시오!
내 전체 테스트 코드(패키지는 filecontents
여기서 두 tex 파일을 하나의 MWE로 연결하는 데에만 사용됩니다):
\begin{filecontents*}{myrubric.tex}
\begin{rubric}{Education}
%
\entry*[2009 -- 2013]%
\textbf{title, university, Germany} in computer science.
\par Thesis title: \emph{The Title of the Thesis.} More details at \url{https://tex.stackexchange.com/questions/479998/}
%
\entry*[2009 -- 2013]%
\textbf{title, university, Germany} in computer science.
\par Thesis title: \emph{The Title of the Thesis.} More details at \url{https://tex.stackexchange.com/questions/479998/}
%
\entry*[2009 -- 2013]%
\textbf{title, university, Germany} in computer science.
\par Thesis title: \emph{The Title of the Thesis.} More details at \url{https://tex.stackexchange.com/questions/479998/}
%
\entry*[2009 -- 2013]%
\textbf{title, university, Germany} in computer science.
\par Thesis title: \emph{The Title of the Thesis.} More details at \url{https://tex.stackexchange.com/questions/479998/}
%
\entry*[2009 -- 2013]%
\textbf{title, university, Germany} in computer science.
\par Thesis title: \emph{The Title of the Thesis.} More details at \url{https://tex.stackexchange.com/questions/479998/}
%
\entry*[2009 -- 2013]%
\textbf{title, university, Germany} in computer science.
\par Thesis title: \emph{The Title of the Thesis.} More details at \url{https://tex.stackexchange.com/questions/479998/}
%
\entry*[2009 -- 2013]%
\textbf{title, university, Germany} in computer science.
\par Thesis title: \emph{The Title of the Thesis.} More details at \url{https://tex.stackexchange.com/questions/479998/}
%
\entry*[2009 -- 2013]%
\textbf{title, university, Germany} in computer science.
\par Thesis title: \emph{The Title of the Thesis.} More details at \url{https://tex.stackexchange.com/questions/479998/}
%
\entry*[2009 -- 2013]%
\textbf{title, university, Germany} in computer science.
\par Thesis title: \emph{The Title of the Thesis.} More details at \url{https://tex.stackexchange.com/questions/479998/}
%
\entry*[2009 -- 2013]%
\textbf{title, university, Germany} in computer science.
\par Thesis title: \emph{The Title of the Thesis.} More details at \url{https://tex.stackexchange.com/questions/479998/}
%
\entry*[2009 -- 2013]%
\textbf{title, university, Germany} in computer science.
\par Thesis title: \emph{The Title of the Thesis.} More details at \url{https://tex.stackexchange.com/questions/479998/}
%
\entry*[2009 -- 2013]%
\textbf{title, university, Germany} in computer science.
\par Thesis title: \emph{The Title of the Thesis.} More details at \url{https://tex.stackexchange.com/questions/479998/}
%
\end{rubric}
\end{filecontents*}
\NeedsTeXFormat{LaTeX2e}
\documentclass{curve}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[swedish]{babel}
\usepackage[paperheight=29.7cm]{geometry}
\usepackage{url}
\usepackage{fouriernc}
\leftheader{a\\ b\\ c\\ d\\ }
\rightheader{ }
\title{a}
\subtitle{b \\ \vspace{1mm}\Large c}
\makeatletter % <=======================================================
\def\@continuedname{}
\makeatother % <========================================================
\begin{document}
\makeheaders[t]
\maketitle
\makerubric{myrubric}
\end{document}
결과 PDF는 다음과 같습니다.