¿Cómo puedo eliminar "(Continuación)" de la segunda página?

¿Cómo puedo eliminar "(Continuación)" de la segunda página?

Estoy escribiendo un CV. Después de escribir un par de encabezados y subtítulos, obviamente salta a la página siguiente. Pero la segunda página viene con la fila superior "(continuación)" en el centro y es molesto. ¿Cómo elimino esto?

ingrese la descripción de la imagen aquí

Mi código:

\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}

Respuesta1

Tu pregunta no está muy clara, porque no tenemos tu archivo usado rubric.tex. Sería mucho mejor que también agregaras ese archivo sin información personal a tu pregunta. ¡Así que tenemos que adivinar qué estás haciendo!

En esa clase curvede ctan hay un comando \@continuednamedefinido. Puede cambiarlo para que esté vacío con el siguiente código en su preámbulo:

\makeatletter % <=======================================================
\def\@continuedname{}
\makeatother % <========================================================

Si eso no ayuda, complete el código proporcionado para que sea completo y compilable y refleje su situación.

Mi código de prueba completo (el paquete filecontentssolo se usa aquí para concatenar ambos archivos tex en un 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}

y el pdf resultante:

currículum resultante

información relacionada