한 줄에 여러 개의 짧은 각주를 설정하는 방법

한 줄에 여러 개의 짧은 각주를 설정하는 방법

이러한 자동화를 얻는 방법

"페이지의 짧은 단일 메모를 중앙에 배치해야 하는 경우 3개의 EM을 # 사이에 두고 동일한 줄에 여러 개의 매우 짧은 메모를 설정합니다."

아래 출력처럼

1. Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text

2. short footnote    3. short footnote 4.    shortfootnote

5. Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text Sample Footnote text

답변1

그만큼bigfoot패키지 기능(개선된 표준 매크로 외에 \footnote) 일반 각주를 강제하는 매크로 \footnote+(기본 스타일이 인 경우에도 para) 및 \footnote-단락 스타일 각주를 강제하는(기본값이 인 경우에도 plain) 매크로가 있습니다. 표시된 방정식, 인용문 또는 목록 환경을 포함하는 각주는 일반 스타일이어야 합니다. 따라서 기본 스타일이 이면 해당 메모에 를 para사용해야 합니다 .\footnote+

\documentclass{article}

\usepackage{bigfoot}
\DeclareNewFootnote[para]{default}

\newcommand*{\sometext}{Hello, here is some text without a meaning. This
    text should show, how a printed text will look like at this place.
    If you read this text, you will get no information.}

\begin{document}

\null\vfill% just for the example

First paragraph.\footnote+{%
\sometext

\begin{equation}
a^2 + b^2 = c^2
\end{equation}
}

Second paragraph.\footnote{A short footnote.}

Third paragraph.\footnote{Another short footnote.}

Fourth paragraph.\footnote+{%
\sometext

\begin{quote}
\sometext
\end{quote}
}

\end{document}

여기에 이미지 설명을 입력하세요

관련 정보