开发者

Remove default Date in LaTeX article

How do I r开发者_StackOverflow社区emove the default date that a documentclass{article} adds in LaTeX? Thanks


Try using \date{}.


use \date{} before "\begin{document}"


Also ensure that you dont have any variation of this in your code. {\large \today}


A blank \date{} will still use some vertical spacing. Check this post on TeX Exchange for a comprehensive list of alternatives, like the titling package.


The command

\documentclass{article}
\begin{document}
    \title{text}
    \author{names}
    \maketitle
    \date{}
\end{document}

will give the out put as shown here:

Remove default Date in LaTeX article

But the code:

\documentclass{article}
\begin{document}
    \title{text}
    \author{names}
    \date{}
    \maketitle
\end{document}

will give the desired output, I believe, you want:

Remove default Date in LaTeX article

The command \date{} should be put after \author{names} and before \maketitle.


The exact code snippet to "copy and paste" is as follows:

\date{}
\begin{document}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜