标题显示错误

标题显示错误

我在可视化论文标题时遇到了问题。我目前使用的是 IEEEtran 的 bare_jrnl.tex 模板。发行版是带有 Texmaker 编辑器的 MiXTex。

这是论文初始部分的代码,其中指定了文档类别、包和标题。

\documentclass[journal]{IEEEtran}
%packages
\usepackage{cite}
\usepackage[pdftex]{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\ifCLASSOPTIONcompsoc
  \usepackage[caption=false,font=normalsize,labelfont=sf,textfont=sf]{subfig}
\else
  \usepackage[caption=false,font=footnotesize]{subfig}
\fi

\begin{document}

\title{Enabling visually impaired people to learn three-dimensional tactile graphics}

\author{Luca~Brayda,Mariacarla~Memeo,%
\thanks{Robotics, Brain and Cognitive Sciences department\\ Genoa, Italy}}%

\markboth{Enabling visually impaired people}%
{}

\meaning\maketitle

代码编译没有错误,但我在pdf中看到的是以下内容: 在选定的区域中应该显示标题。

您对此有什么建议吗?非常感谢。

玛丽亚卡拉

答案1

最初的问题是\meaning之前\maketitle没有执行而是仅仅\maketitle打印了它的宏定义。

 ! Use of \@topnewpage doesn't match its definition

\\可以通过在标题和致谢中不换行来避免错误,而改用\newline位。另请参阅http://www.jacow.org/Authors/UsingLaTeX

相关内容