Q : LaTeX itemize
환경 의 "적절한"들여 쓰기를 어떻게 얻을 수 auctex
있습니까?
여기 환경 item
에서 함께하고 싶은 곳 이 itemize
있습니다.
\item
선은 환경의 시작과 관련하여 두 칸 들여 쓰기- 항목의 연속 줄은 줄에 대해 추가로 두 칸 들여 쓰기
\item
됩니다.
이것이 내가보고 / 기대하는 것입니다 :
\begin{itemize}
\item Here's a really long item in a LaTeX itemize environment;
note how the *initial* item line is indented two spaces, and the
continuation lines are indented another two spaces.
\end{itemize}
LaTeX-item-indent
변수 를 사용하여 항목의 초기 들여 쓰기를 조정할 수 있습니다 -2
. 기본값은 입니다. 이 기본으로, 나는의 바람직하지 않은 행동을 얻을 \item
들여 쓰기되지 않는,하지만 내가 할 추가로 두 개의 공백에 의해 상쇄되는 연속 라인의 원하는 동작을 얻을 :
\begin{itemize}
\item Here's a really long item in a LaTeX itemize environment;
note how the *initial* item line is *NOT* indented two spaces,
but the continuation lines are indented two spaces.
\end{itemize}
줄에 원하는 들여 쓰기 (두 공백) LaTeX-item-indent
를 0
얻 도록 설정 \item
했지만 연속 줄의 원하는 동작의 두 번째 절반이 추가 두 공백으로 오프셋 되지는 않습니다 .
\begin{itemize}
\item Here's a really long item in a LaTeX itemize environment;
note how the *initial* item line is indented two spaces, but the
continuation lines are *NOT* indented an additional two spaces.
\end{itemize}
그래서 하나 얻을 않는 방법을 모두 원하는 행동을 :
\item
두 줄 의 처음 들여 쓰기- 연속 선에 추가로 두 칸이 들여 쓰기 되었습니까?
(참고 관련 SO 스레드 .)
LaTeX-indent-environment-list
들여 쓰기를위한 사용자 정의 함수를 사용자 정의 하고 추가 하려고 했습니까 ? 이 기능 LaTeX-indent-tabular
은 합리적인 시작점을 제공 할 수 있습니다 (또는 환경 내에서 사용자 정의 들여 쓰기에 대한 합리적인 예). 방금이 변수 / 함수를 우연히 발견 했으므로 직접 살펴볼 기회가 없었습니다.
LaTeX-indent-level
4로 설정하면 첫 번째 방법이 작동합니다 . 항목은 4-2 = 2로 들여 쓰기되고 연속 줄은 4 = 2 + 2로 들여 쓰기됩니다. 그러나 이는 파일의 다른 모든 환경이 들여 쓰기됨을 의미합니다. 바람직하거나 바람직하지 않은 4 (2는 아님). 차라리 그들은 2에 들여 쓰기를 원합니다.