如何禁用乳胶中的自动缩进?

问题描述 投票:0回答:2

我想创建一个 pdf,其中有简短的文本和图像。

\documentclass{article}

\usepackage{graphicx}

\begin{document}
    \section*{some title}
    A text... \\
    More text... \\
    \includegraphics{example.png}
    \newpage
    A text... \\
    More text... \\
    \includegraphics{example.png}
    \newpage
    A text... \\
    More text... \\
    \includegraphics{example.png}
    \newpage
    \section*{some title}
    A text... \\
    More text... \\
    \includegraphics{example.png}
\end{document}

我的问题是 LaTex 会自动缩进“A 文本”。 “更多文本”没有缩进。如果 "A text" 出现在 \section*{} 之后,它也不会缩进。

latex
2个回答
7
投票

您可以通过更改

\parindent

来控制缩进的宽度
\documentclass{article}

\usepackage{graphicx}

\setlength{\parindent}{0pt}

\begin{document}
    \section*{some title}
    A text... 
    
    More text...
    
    \includegraphics{example-image-duck}
    \newpage
    A text... 
    
    More text... 
    
    \includegraphics{example-image-duck}
    \newpage
    A text... 
    
    More text... 
    
    \includegraphics{example-image-duck}
    \newpage
    \section*{some title}
    A text... 
    
    More text... 
    
    \includegraphics{example-image-duck}
\end{document}

(你不应该滥用

\\ 
换行,而是留下一个空行)


0
投票

一个很简单的方法是:

\usepackage{parskip}
© www.soinside.com 2019 - 2024. All rights reserved.