我正在写简历。写完几个标题和副标题后,它显然会跳转到下一页。但第二页中间有“(继续)”顶行,这很烦人。我该如何删除它?
我的代码:
\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: