write2latex
OpenOffice 애드온의 출력이 왜 이런 종류의 목록을 만드는지 이해할 수 없습니다 :
서문에는 다음과 같습니다.
\newcommand\liststyleLii{%
\renewcommand\theenumi{\Roman{enumi}}
\renewcommand\theenumii{\Roman{enumii}}
\renewcommand\theenumiii{\Roman{enumiii}}
\renewcommand\theenumiv{\Roman{enumiv}}
\renewcommand\labelenumi{\theenumi.}
\renewcommand\labelenumii{\theenumii.}
\renewcommand\labelenumiii{\theenumiii.}
\renewcommand\labelenumiv{\theenumiv.}
}
그리고 이것은 문서에 있습니다 :
\section{Binomische Formeln}
\liststyleLii
\begin{enumerate}
\item \begin{align*} (a+b)^2=a^2+2ab+b^2 \end{align*}
\item \begin{align*} (a-b)^2=a^2-2ab+b^2 \end{align*}
\item \begin{align*} (a+b)(a-b)=a^2-b^2 \end{align*}
\end{enumerate}
출력은 다음과 같습니다
그리고 "II"를 "(ab)..."와 함께 한 줄에 넣고 싶습니다.
실제로 방정식과 함께 한 줄에 모든 글 머리 기호가 있습니다. 어떤 패키지가 해당 목록 스타일을 활성화하는지 모르겠습니다
답변1
수학적 환경은 \begin{align*} ... \end{align*}
환경 위에 공백을 삽입합니다. 이로 인해 정렬이 중단됩니다. 예를 들어 일반적인 인라인 수학 환경을 살펴보겠습니다 $...$
.
이렇게 하면 트릭을 수행할 수 있습니다.
\documentclass[a4paper, 11pt]{article}
\usepackage[german]{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\newcommand\liststyleLii{%
\renewcommand\theenumi{\Roman{enumi}}
\renewcommand\theenumii{\Roman{enumii}}
\renewcommand\theenumiii{\Roman{enumiii}}
\renewcommand\theenumiv{\Roman{enumiv}}
\renewcommand\labelenumi{\theenumi.}
\renewcommand\labelenumii{\theenumii.}
\renewcommand\labelenumiii{\theenumiii.}
\renewcommand\labelenumiv{\theenumiv.}
}
\liststyleLii
\begin{document}
\section{Binomische Formeln}
\begin{enumerate}
\item $(a+b)^2=a^2+2ab+b^2 $
\item $(a-b)^2=a^2-2ab+b^2 $
\item $(a+b)(a-b)=a^2-b^2 $
\end{enumerate}
\end{document}
결과는 다음과 같습니다.