可以从这个模板中删除日期吗?

可以从这个模板中删除日期吗?

可以从这个模板中删除日期吗?

文本代码:

\documentclass[paper=a4, fontsize=11pt]{scrartcl}   % 
\usepackage[T1]{fontenc}
\usepackage{fourier}
\usepackage[ngerman, english]{babel}
\usepackage{float}
\usepackage[protrusion=true,expansion=true]{microtype}  
\usepackage{amsmath,amsfonts,amsthm}                    
\usepackage[pdftex]{graphicx}                           
\usepackage{url}
\usepackage{sectsty}                                    
\allsectionsfont{\centering \normalfont\scshape}    
\usepackage{fancyhdr}
\pagestyle{fancyplain}
\fancyhead{}                                            
\fancyfoot[C]{}                                         
\fancyfoot[R]{\thepage}                                 
\renewcommand{\headrulewidth}{0pt}          
\renewcommand{\footrulewidth}{0pt}               
\setlength{\headheight}{13.6pt}

\numberwithin{equation}{section}        
\numberwithin{figure}{section}          
\numberwithin{table}{section}               

% Zeilenabstand
\renewcommand{\baselinestretch}{1.5}

\newcommand{\horrule}[1]{\rule{\linewidth}{#1}}     % 
\newcommand{\twoobjects}[2]{%
  \centering \leavevmode\vbox{\hbox{#1}\nointerlineskip\hbox{#2}} %
}
\usepackage{subcaption}

\usepackage[backend=bibtex]{biblatex}

\addbibresource{references.bib}



\title{
        %\vspace{-1in}  
        \usefont{OT1}{bch}{b}{n}
        \normalfont \normalsize \textsc{SmartBusTraffic: Estimation of Bus positions based on Crowd Sourcing Monitoring} \\ [25pt]
        \horrule{0.5pt} \\[0.4cm]
        \huge Handbook
        \horrule{2pt} \\[0.5cm]
}


\begin{document}

\maketitle


Public transit service plays an important ...

\printbibliography
\end{document}

在此处输入图片描述

在此处输入图片描述

答案1

我觉得\maketitle如果你对默认设置不满意的话,你根本不想使用它(默认设置假定每个文档都有作者和日期)。自己动手写标题吧。

书名

\documentclass[paper=a4,
fontsize=11pt,
headlines=1.8,footlines=1.8
]{scrartcl}   % 
\usepackage[T1]{fontenc}
\usepackage{fourier}
\usepackage[ngerman, english]{babel}
\usepackage{float}
\usepackage[protrusion=true,expansion=true]{microtype}  
\usepackage{amsmath,amsfonts,amsthm}                    
\usepackage[%pdftex% JB: No option pdftex
]{graphicx}                           
\usepackage{url}
%\usepackage{sectsty}                                    
%\allsectionsfont{\centering \normalfont\scshape}    
\renewcommand{\raggedsection}{\centering}
\setkomafont{disposition}{\normalfont\scshape}
\usepackage{blindtext}
\usepackage{scrlayer-scrpage}
\clearpairofpagestyles
\ofoot*{\pagemark}
%\usepackage{fancyhdr}
%\pagestyle{fancyplain}
%\fancyhead{}                                            
%\fancyfoot[C]{}                                         
%\fancyfoot[R]{\thepage}                                 
%\renewcommand{\headrulewidth}{0pt}          
%\renewcommand{\footrulewidth}{0pt}               
%\setlength{\headheight}{13.6pt}

\numberwithin{equation}{section}        
\numberwithin{figure}{section}          
\numberwithin{table}{section}               

% Zeilenabstand
%\renewcommand{\baselinestretch}{1.5}
\linespread{1.5}

\newcommand{\horrule}[1]{\rule{\linewidth}{#1}}%truly horrible
\newcommand{\twoobjects}[2]{%
    \centering \leavevmode\vbox{\hbox{#1}\nointerlineskip\hbox{#2}} %
}
\usepackage{subcaption}




\begin{document}

\begin{center}
%   \usefont{OT1}{bch}{b}{n}% JB: switching to another font
%   \normalfont% JB: switching back to the default right
%   after, do you want this?
%   \normalsize
    \textsc{SmartBusTraffic: Estimation of Bus positions based on Crowd Sourcing Monitoring} \\ [25pt]
    \horrule{0.5pt} \\[0.4cm]
    \huge Handbook
    \horrule{2pt} \\[0.5cm]
\end{center}


Public transit service plays an important \dots

\blinddocument
\end{document}

我对代码做了一些额外的更改。

相关内容