Estou escrevendo um currículo. Depois de escrever alguns cabeçalhos e subcabeçalhos, ele salta para a próxima página, obviamente. Mas a segunda página vem com a linha superior "(continuação)" no centro e é irritante. Como faço para remover isso?
Meu 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}
Responder1
Sua dúvida não está muito clara, pois não temos seu arquivo usado rubric.tex
. Seria muito melhor você adicionar esse arquivo sem informações pessoais à sua pergunta também. Então temos que adivinhar o que você está fazendo!
Nessa classe curve
do ctan há um comando \@continuedname
definido. Você pode alterá-lo para vazio com o seguinte código em seu preâmbulo:
\makeatletter % <=======================================================
\def\@continuedname{}
\makeatother % <========================================================
Se isso não ajudar, preencha o código fornecido para que seja completo e compilável, refletindo sua situação!
Meu código de teste completo (o pacote filecontents
só é usado aqui para ter os dois arquivos tex concatenados em um 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}
e o pdf resultante: