
내 편집자는 Enter를 두 번 눌러 줄을 생략할 때마다 새 단락을 생성합니다. 이 기능을 끄고 명시적인 명령으로만 새 단락을 시작하고 싶습니다 \par
.
아무도 그렇게 하는 방법을 알고 있나요? 저는 TeXmaker(Ubuntu에서)를 사용하고 있습니다.
답변1
너~할 수 있었다해:
\documentclass{article}
\AtBeginDocument{\endlinechar=`\ }
\begin{document}
Something here. After a blank line will there be a new paragraph? Here is a real par\par
Something here. After a blank line will there be a new paragraph?
Here is a real par.\par
And text after it.
\end{document}
이제 가능하다는 것을 알았으니 그렇게 하지 마세요. 문장을 분리하고 싶다면 그냥 쓰세요
A sentence.
%
Another one
하지만 이 두 가지 접근 방식이 어떻게 타이프스크립트를 더 읽기 쉽게 만드는지 알 수 없습니다.