
\parindent를 사용한 후에도 변경 사항이 없기 때문에 섹션 이름 아래의 모든 텍스트/단락에 1em 공백을 두고 싶습니다. 도움을 주시면 감사하겠습니다.
\documentclass{article}
%paragraph indentation
\setlength{\parindent}{1em}
%paragraph spacing
\setlength{\parskip}{1em}
\begin{document}
\section{Test}
This is another paragraph, contains some text to test the paragraph interlining, paragraph indentation and some other features. Also, is easy to see how new paragraphs are defined by simply entering a double blank space.
This is another paragraph, contains some text to test the paragraph interlining, paragraph indentation and some other features. Also, is easy to see how new paragraphs are defined by simply entering a double blank space.
\end{document}
출력:
답변1
귀하의 목표를 올바르게 이해했다면먼저 들여쓰기패키지.
\documentclass{article}
\usepackage{indentfirst} % <-- new
\setlength{\parindent}{1em}
\setlength{\parskip}{1em}
\begin{document}
\section{Test}
This is another paragraph, contains some text to test the paragraph interlining, paragraph indentation and some other features. Also, is easy to see how new paragraphs are defined by simply entering a double blank space.
This is another paragraph, contains some text to test the paragraph interlining, paragraph indentation and some other features. Also, is easy to see how new paragraphs are defined by simply entering a double blank space.
\end{document}