2ページ目から「(続き)」を削除するにはどうすればよいですか?

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。個人情報のないファイルも質問に追加していただければ幸いです。 だから私たちはあなたが何をしているのか推測しなければなりません!

そのクラスでは、curvectan にコマンド\@continuednameが定義されています。プリアンブルに次のコードを追加して、コマンドを空に変更できます。

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

それでも解決しない場合は、状況を反映して、指定されたコードを完全かつコンパイル可能なものにしてください。

私の完全なテスト コード (パッケージはfilecontents、両方の tex ファイルを 1 つの 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 は次のようになります。

結果の履歴書

関連情報