Как удалить «(Продолжение)» со 2-й страницы?

Как удалить «(Продолжение)» со 2-й страницы?

Я пишу резюме. После написания пары заголовков и подзаголовков он, очевидно, переходит на следующую страницу. Но на второй странице есть верхняя строка "(продолжение)" в центре, и это раздражает. Как это убрать?

введите описание изображения здесь

Мой код:

\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 . Было бы гораздо лучше, если бы вы добавили этот файл без личной информации к вашему вопросу. Поэтому нам остается только догадываться, что вы делаете!

В этом классе curveиз ctan определена команда \@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-файл:

полученное резюме

Связанный контент