我们如何才能将一些线间距设置为 2,而将其他线间距设置为 1.5

我们如何才能将一些线间距设置为 2,而将其他线间距设置为 1.5
\documentclass[a4paper,12pt]{article}
\usepackage[left=1.5 in,right=0.5 in,bottom=1 in,top=1 in]{geometry}
\usepackage{graphicx}
\linespread{1.5}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\setcounter{secnumdepth}{5}
\numberwithin{figure}{subsection}
\numberwithin{table}{subsection}
%\usepackage{caption}
%\captionsetup{justification =raggedright, singleline check= false}
\begin{document}
\pagestyle{empty}

\tableofcontents
\pagebreak
\pagenumbering{roman}
\addcontentsline{toc}{section}{List of Abbreviations}
\section*{List Of Abbreviations}
\begin{tabular}{l l}
\textbf{Abbreviation}&\textbf{Illustration}\\
LCD&Liquid Crystal Display\\
3D&Three Dimensional\\
VRD&Virtual Retinal Display \\
PDA&Personal Digital Assistant\\
RSD&Retinal Scan Display \\
LED&Light Emitting Diode\\
HD&High Defination\\
CRT&Cathode Ray Tube\\

\end{tabular} 
\pagestyle{plain}
\pagenumbering{roman}
\pagebreak


\addcontentsline{toc}{section}{List of Figures}
\listoffigures
\pagebreak


%\pagenumbering{roman}

\pagestyle{myheadings}
\renewcommand{\thesection}
{\arabic{section}.}
    \section{INTRODUCTION}
\pagenumbering{arabic}

\thispagestyle{empty}
\renewcommand{\thesection}
{\arabic{section}}

        \paragraph*{}
Nowadays, advanced technologies are growing faster wherein each technology is renewed with implementation of new one. The current trending display technology most commonly used in gadgets such as tablets, smart phones, etc., is the touch-screen display, which will become outdated in the near future. Screenless display is the advanced display technology, which replaces the touch screen technology to resolve the problems and to make lives more comfortable. Therefore, this article is intended to give an idea of the screenless display, which transmits or displays the information without using a projector or the screen. By using this screenless display technology, we can display the images directly on the open space, human retina and also to the human brain.

\paragraph*{}
           During the year 2014, this display came into progress by the implementation of products like virtual reality headsets, retinal displays and holographic videos. Lack of space is the major drawback for most of the screen displays. This problem can be overcome by the use of screenless displays.

\paragraph*{} 
What is Screenless Display?
Screenless display is an interactive projection technology developed to solve the problems related to the device miniaturization of the modern communication technologies. The lack of space on screen based displays provides an opportunity for the development of screenless displays. As the name indicates screenless display has no screen and it can be defined as a display used to transmit any data such as pictures or videos without the help of screens.

答案1

不要直接修改低级宏\linespread。相反,加载setspace包并发出诸如\setstretch{1.5}等指令

相关内容