为什么无法将documentclass[article]转移到documentclass[letter]?

为什么无法将documentclass[article]转移到documentclass[letter]?

我是刚开始使用 latex,不知道为什么无法将 documentclass[article] 转换为 documentclass[letter]?

以下是错误信息:

LaTeX Warning: Unused global option(s):
    [10pt].

(./未命名-1.aux) (D:/Latex/tex/latex/base/ts1cmr.fd) [0{C:/Users/admin/AppDa
ta/Local/MiKTeX/pdftex/config/pdftex.map}]

! LaTeX Error: Environment abstract undefined.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.12 \begin{abstract}
                   
? 

代码如下:

\documentclass[twocolumn,10pt]{letter}
%\documentclass[twocolumn,10pt]{article}
%\documentclass[twocolumn,10pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{multicol}
\title{The Influence of Advanced Driver-assistance Systems
and the Future with Autonomous Vehicle}
\author{Minglang Tuo}
\date{Oct 2020}
\begin{document}

\maketitle
\begin{abstract}


There are two relative technology descibed in the essay. One has a profound effect on my life and another technology that I believe will be the next big thing in computer science. While driving system technology such as \emph{advanced driver-assistance systems} are essential now, in the future the system will generate automatic route and operate the automobiles to drive these paths. The technology of \emph{autonomous vehicle} will have significant infulence.  





\end{abstract}

\section{Advanced Driver-assistance Systems}



There are several top four computer realted technologies that infulenced in the social. I would probably choose the following.
\begin{enumerate}
 \item E-commerce

  \item Global Positioning(GPS)

  \item NLP

    \item Computer Vision
\end{enumerate}
Advanced driver-assistance systems is a technology that had a profound effect on my life, which assists drivers in driving and parking functions by electronic systems and software.ADAS increase car and road safety by the safe human-machine interface. Based on the sensors and cameras, the ADAS can detect nearby obstacles or driver errors. For example, antilock brake system are configured to most of vehicles. 

It's an early ADAS technology in the vehicle area. When the traffic accidents or other emergency situations happen, it helps car automatically control the power of brake to ensure the wheel not locked and guarantee the adhesion between wheels and surface in maximum value. I think ADAS can helps us drive cars more safely and easily.


\section{Autonomous Vehicle}




Autonomous vehicle technology \emph{(vechicle that is capable of sensing its environment and moving safely with little or no human input)} is a new technology that has likely to be very necessary in the future. Self-driving cars combine a variety of sensors to perceive their surroundings, such as radar, sonar, GPS and inertial measurement units. 

Also, it uses the knowledge of deep learing and computer vison to process lots of data. The appropriate navigation paths, obstacles and relevent signage will be identify by the algorithms.It's important for users because an unmanned vehicle fleet composed of multiple autonomous vehicles can effectively reduce traffic pressure and thus improve transportation efficiency of the transportation system. 
\begin{tabular}{|p{4cm}|p{4cm}|}
\hline
Application & Example(s) \\
\hline
Delivering food & Autonomous delivery vehicles deliver foods and drinks \\
\hline
Military & Deploy relevant military facilities \\
\hline
Space  & Deploy ships to search for living planets \\
\hline
\end{tabular}


\end{document}

但是我可以转到报告(\documentclass[twocolumn,10pt]{report}),并且没有错误。请帮帮我!谢谢

答案1

如果你想要你的论文是信纸大小,请\documentclass[twocolumns,10pt,letterpaper]{article}

如果您想写信,您应该避免abstract那些未定义为信件的环境。

相关内容