비머 슬라이드 시작 부분의 수직 오프셋 목록 나열

비머 슬라이드 시작 부분의 수직 오프셋 목록 나열

TeX Live 2018 배포판을 설치한 후 목록이 비머 슬라이드 내에서 첫 번째로 표시되는 개체인 경우 목록 시작 부분에서 이전에는 볼 수 없었던 수직 오프셋을 관찰했습니다.

목록이 슬라이드 시작 부분에 있지만 너무 평범해 보이는 경우 음수 수직 오프셋을 추가할 수 있습니다. 또한 우리는 모든 사람이 동일한 TeX 배포판을 갖고 있지 않고 차이점이 불편한 사람들 그룹에서 슬라이드 자료를 공유합니다.

이 문제를 피하거나 해결하는 방법을 아는 사람이 있습니까?

\documentclass[14pt,aspectratio=169]{beamer} % t: top

\usepackage{listings}

\begin{document}

\begin{frame}[fragile,t]{With Listings}
\begin{lstlisting}
first line (observe the offset to the top)
\end{lstlisting}

second line
\begin{lstlisting}
third line
\end{lstlisting}

\end{frame}

\end{document}

수직 오프셋 이미지

답변1

\noindent전에 사용하세요 \begin{lstlisting}.

\documentclass[14pt,aspectratio=169]{beamer} % t: top

\usepackage{listings}

\begin{document}

\begin{frame}[fragile,t]{With Listings}
\noindent % <--------------------
\begin{lstlisting}
first line (observe the offset to the top)
\end{lstlisting}

second line
\begin{lstlisting}
third line
\end{lstlisting}

\end{frame}

\end{document}

관련 정보