我在排版方面遇到了问题?

我在排版方面遇到了问题?

我的文档名为introduction.tex。我有以下代码:

\documentclass{article}
\begin{document}
\title{Identification of potential therapeutic targets in human breast cancer}
\author{myName}
\date{August 2015}
\end{document}

这是我在TexShop界面上“点击”排版按钮时得到的结果:

This is pdfTeX, Version 3.14159265-2.6-1.40.15 (TeX Live 2014) 
(preloaded format=pdflatex)
restricted \write18 enabled.
entering extended mode
(./introduction.tex
LaTeX2e <2014/05/01>
Babel <3.9k> and hyphenation patterns for 78 languages loaded.
(/usr/local/texlive/2014/texmf-dist/tex/latex/base/article.cls
Document Class: article 2007/10/19 v1.4h Standard LaTeX document
class
(/usr/local/texlive/2014/texmf-dist/tex/latex/base/size10.clo))
(./introduction.aux) (./introduction.aux) )
No pages of output.
Transcript written on introduction.log.

我将非常感谢社区的反馈。谢谢!:)

答案1

您尚未向编译器提供任何要发布的内容。只需在 \end 之前添加 Hi 即可验证这一点。您需要移动一些内容并添加标题页命令,如下所示

\documentclass{article}
\title{Identification of potential therapeutic targets in human breast cancer}
\author{myName}
\date{August 2015}
\begin{document}
\maketitle
hi

\end{document} 

相关内容