我想创建一个 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}
Run Code Online (Sandbox Code Playgroud)
我的问题是 LaTex 自动缩进“A 文本”。“更多文本”没有缩进。如果“A text”出现在 \section*{} 之后,它也不会缩进。
latex ×1