部分不能分成列

部分不能分成列

我想将我的页面格式化为两列,除节标签后的第一个段落命令外,其他段落命令都可以正常工作。它仍为一列格式。我不知道为什么。 \paragraph{sources:https://wiki.archlinux.org/index.php/Wireless_network_configuration. } 是我有点麻烦的标签。如果可以的话,我需要一些有关我的乳胶结构的反馈。

下面的代码是我的 tex 文件。

\documentclass[14pt,twoside,a4papaer,twocolumn]{article}
\pagestyle{plain}
\author{An Pham}
\title{Wireless Configuration Setting }

\begin{document}
\maketitle

\section{Introduction}

\paragraph{sources: https://wiki.archlinux.org/index.php/Wireless\_network\_configuration. }

\paragraph{The following guide is meant to clarify to process to configure the wireless interfaces as well as activating it. This is also being part of GNU Free Documentation License.}

\paragraph{According to wiki.archlinux.ord, wirless netowrk configuration can be broken into 4 parts which are activating interfaces, discovering access points, connetcing with wireless interface, and ip configuration. The first three stages are mostly need the manual configuration, and the final stage can be executated automatically by the system.
}
\end{document}

答案1

这是扩展评论:

我能做的最好的事情和从你那里得到的姆韦是:

在此处输入图片描述

因为\url您需要在文档的序言中添加hyperref或打包:url

\documentclass[12pt,twoside,a4papaer,twocolumn]{article}% 14pt font size is not defined!
\usepackage{hyperref}
\usepackage{lipsum}

\author{An Pham}
\title{Wireless Configuration Setting }

\begin{document}
\maketitle
\pagestyle{plain}

\section{Introduction}
\lipsum[11]
\paragraph{sources: \url{https://wiki.archlinux.org/index.php/Wireless\_network\_configuration} }
\lipsum[11]

\paragraph{The following guide is meant to clarify to process to configure the wireless interfaces as well as activating it. This is also being part of GNU Free Documentation License.}
\lipsum[11]

\paragraph{According to wiki.archlinux.ord, wirless netowrk configuration can be broken into 4 parts which are activating interfaces, discovering access points, connetcing with wireless interface, and ip configuration. The first three stages are mostly need the manual configuration, and the final stage can be executated automatically by the system.
}
\lipsum[11]

\end{document}

注意:该包lipsum仅用于生成虚拟文本。我建议您重新考虑是否有这样的段落标题。这很奇怪......

相关内容