如何從第二頁刪除「(續)」?

如何從第二頁刪除「(續)」?

我正在寫履歷。寫完幾個標題和子標題後,它顯然會跳到下一頁。但第二頁的頂行中間有“(續)”,這很煩人。我該如何刪除這個?

在此輸入影像描述

我的程式碼:

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

由此產生的履歷

相關內容