我该如何去掉日期以及数字 1 和 2?我的 latex 代码如下。我无法发布图片,因为我是新用户,抱歉!
\documentclass[10pt]{article}
\begin{document}
\title{Banana Cake}
\maketitle
\section{Ingredients}
\begin{itemize}
\item The first item
\item The second item
\item The third etc
\end{itemize}
\section{Method}
\begin{enumerate}
\item The first item
\item The second item
\item The third etc
\end{enumerate}
\end{document}
答案1
使用\date{}
和加星标的版本section
\documentclass[10pt]{article}
\begin{document}
\title{Banana Cake}
\date{}
\maketitle
\section*{Ingredients}
\begin{itemize}
\item The first item
\item The second item
\item The third etc
\end{itemize}
\section*{Method}
\begin{enumerate}
\item The first item
\item The second item
\item The third etc
\end{enumerate}
\end{document}
根据评论恩里科(egreg),如果没有任何章节需要编号,则可以\setcounter{secnumdepth}{-2}
在序言中使用。这将允许使用常规section
(不带编号)。这还将允许使用章节标题作为标题。
答案2
您应该使用\section*{Ingedients}
(带星号),并且应该添加\date{}
到您的序言中,如下所示:
\documentclass[10pt]{article}
\date{}
\begin{document}
\title{Banana Cake}
\maketitle
\section*{Ingredients}
\begin{itemize}
\item The first item
\item The second item
\item The third etc
\end{itemize}
\section*{Method}
\begin{enumerate}
\item The first item
\item The second item
\item The third etc
\end{enumerate}
\end{document}
我建议你阅读一些好的 LaTeX 教程,因为这些都是很基础的东西,你可以在这里找到一些提示:对于 LaTeX 初学者来说有哪些好的学习资源?