如何删除文档类{article}在LaTeX中添加的默认日期? 感谢
答案 0 :(得分:79)
尝试使用\date{}
。
答案 1 :(得分:11)
在\date{}
"\begin{document}"
答案 2 :(得分:4)
同时确保您的代码中没有任何此类变体。
{\large \today}
答案 3 :(得分:2)
空白\date{}
仍会使用一些垂直间距。请查看this post on TeX Exchange以获取完整的备选列表,例如titling
包。
答案 4 :(得分:0)
命令
\documentclass{article}
\begin{document}
\title{text}
\author{names}
\maketitle
\date{}
\end{document}
但是代码:
\documentclass{article}
\begin{document}
\title{text}
\author{names}
\date{}
\maketitle
\end{document}
我相信
命令\date{}
应该放在\author{names}
之后和\maketitle
之前。
答案 5 :(得分:-1)
“复制并粘贴”的确切代码段如下:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
fragmentManager.beginTransaction().detach(this).commitNow();
fragmentManager.beginTransaction().attach(this).commitNow();
} else {
fragmentManager.beginTransaction().detach(this).attach(this).commit();
}