有没有办法去除自动地如果段落紧跟在数字后面,该如何缩进?其他段落应正常缩进。
因为它是一个浮动环境,所以如果您不需要\noindent
在查看输出后手动添加或进行类似操作,那就更好了。
例子:
图像 A 和图像 C 之后不应有缩进。
代码:
\documentclass[a4paper,12pt]{article}
\usepackage{graphicx}
\usepackage{lipsum}
\begin{document}
\section{Paragraph}
\lipsum[2]
\begin{figure}[h]
\centering
\includegraphics[width=0.5\textwidth]{example-image-a}
\caption{image A}
\end{figure}
\lipsum[2]
\begin{figure}
\centering
\includegraphics[width=0.5\textwidth]{example-image-b}
\caption{image B}
\end{figure}
\lipsum[3]
\lipsum[2]
%abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
%abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst Uvwxyu.
Abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
\begin{figure}
\centering
\includegraphics[width=0.5\textwidth]{example-image-c}
\caption{image C}
\end{figure}
abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
abcdefghijklm nopqrstuvwxyz abcde fghijklmnopqr stuvwxyz abcdef ghijklmnopqrst uvwxyz
\end{document}
参考:
答案1
LaTeX 不会插入段落分隔符(甚至不会插入换行符),您可以将图形设置为
hello\begin{figure}...\end{figure} world
将“hello world”设置为没有段落分隔符的句子。
示例代码中的新段落不是由环境引起的figure
,而是由前面的\lipsum
宏引起的,该宏排版完整的段落,因此在图形之前结束段落,因此源中图形后的文本是新段落的开始。
请注意,重新插入图形后,其位置不会(也不应该)影响该位置段落的布局,它可以插入到段落中间或段落之间,但不会改变换行符。
因此,如果“A 之后的文本”不需要缩进,那么它就不应该是一个新段落。插入图片不会改变检测段落中断的机制。