早上好,我不明白为什么,但如果我使用 \maketitle,我就看不到 PDF 中的标题和作者。有人能帮我吗?谢谢
\documentclass[conference,a4paper]{IEEEtran}
\IEEEoverridecommandlockouts
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\def\BibTeX{{\rm B\kern-.05em{\sc i\kern-.025em b}\kern-.08em
T\kern-.1667em\lower.7ex\hbox{E}\kern-.125emX}}
\begin{document}
\title{………..\\
{\footnotesize \textsuperscript}
\thanks{}
}
\author{\IEEEauthorblockN{1\textsuperscript{nd} ……………}
\IEEEauthorblockA{\textit{……………….} \\
\textit{………………}\\
…………….. \\
…………….}
\and
\IEEEauthorblockN{2\textsuperscript{nd} ………………}
\IEEEauthorblockA{\textit{…………………..} \\
\textit{……………………..}\\
…………………….. \\
…………………..}
\maketitle
}
\begin{abstract}
.....
答案1
在 LaTeX 中制作标题的标准方法是这样的:
\documentclass{...}
\title{Title goes here}
\author{Author name goes here}
...
\begin{document}
\maketitle
该\title
命令只是标识文档的标题,应该放在文档序言中。该\maketitle
命令负责排版标题,并放在后面\begin{document}
。
还要注意,格式化应该由文档类处理,而您实际上并不想在您的等文件中完成所有这些操作\textit
。\title
\author
答案2
你的\maketitle
命令放错了地方。
\documentclass[conference,a4paper]{IEEEtran}
\IEEEoverridecommandlockouts
\usepackage{cite}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{algorithmic}
\usepackage{graphicx}
\usepackage{textcomp}
\usepackage{xcolor}
\begin{document}
\title{Title\\{\footnotesize whatever\textsuperscript{x}\thanks{Thanks}}}
\author{%
\IEEEauthorblockN{1\textsuperscript{st} A. Uthor}
\IEEEauthorblockA{\textit{Something} \\
\textit{something else}\\
whatever\\
again}
\and
\IEEEauthorblockN{2\textsuperscript{nd} W. Riter}
\IEEEauthorblockA{\textit{Something} \\
\textit{something}\\
again \\
whatever}
}
\maketitle
\begin{abstract}
.....
\end{abstract}
\end{document}