3열 각주 레이아웃이 가능합니까?

3열 각주 레이아웃이 가능합니까?

인용이 저자 연도 스타일이지만 각주로 제공되는 문서 레이아웃에 대한 아이디어를 고민 중입니다. 즉, 해당 메모는 (대부분의 경우) 매우 짧으며 이는 표준 클래스의 1열 각주 레이아웃과 일치하지 않습니다. 한 가지 가능한 해결 방법은 (예를 들어) para옵션에 따라 각주를 페이지당 단일 단락으로 통합하는 것입니다.footmisc패키지:

\documentclass{article}

\usepackage[para]{footmisc}

\begin{document}

\null\vfill% just for the example

Some text.\footnote{Author 2001} Some more text.\footnote{Buthor 2002}
    And some more.\footnote{Cuthor 2003} Does this text ever end?\footnote{Duthor 2004}
    Yes.\footnote{Euthor 2005}

\end{document}

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

또 다른 옵션은 두 개의 열에 각주를 조판하는 것입니다(실행 텍스트는 여전히 한 열임). 이는 다음을 통해 달성할 수 있습니다.dblfnote패키지:

\documentclass{article}

\usepackage{dblfnote}
\DFNalwaysdouble% no attempt to fit footnotes into a single column

\begin{document}

\null\vfill% just for the example

Some text.\footnote{Author 2001} Some more text.\footnote{Buthor 2002}
    And some more.\footnote{Cuthor 2003} Does this text ever end?\footnote{Duthor 2004}
    Yes.\footnote{Euthor 2005}

\end{document}

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

내가 찾고 있는 것은 의 레이아웃과 비슷 dblfnote하지만 각주가 다음으로 조판되어 있는 것 입니다.열. 합리적인 노력으로 이것이 가능합니까? (저는 dblfnote의 매크로나 조판 루틴을 영리하게 해킹하기를 바랍니다.multicol패키지.)

참고: multicol-like 열 균형 조정은 필요하지 않으며 각주 내 열 나누기가 허용되어야 하는지 여부에 대해 무관심합니다( dblfnote두 가지 옵션 모두 제공).

답변1

memoir클래스는 3단 각주를 제공합니다. 전체적으로 4가지 종류의 각주 레이아웃(일반, 2열, 3열, 단일 단락에서 함께 실행)을 제공합니다.

\documentclass{memoir}

\threecolumnfootnotes

\begin{document}

\null\vfill% just for the example

Some text.\footnote{Author 2001} Some more text.\footnote{Buthor 2002}
    And some more.\footnote{Cuthor 2003} Does this text ever end?\footnote{Duthor 2004}
    Yes.\footnote{Euthor 2005}

\end{document}

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

답변2

경고: ledmac패키지는 더 이상 사용되지 않습니다. 참조업데이트수정을 위해 아래 섹션을 참조하세요.

Peter Wilson이 지적했듯이 memoir3단 각주에 대한 의 코드는ledmac패키지. 즉, memoir다음 주의 사항 외에 다른 클래스에도 이러한 레이아웃을 활성화할 수 있습니다 .

  • 표준 클래스와는 달리 각주(여기서는 첫 번째 열의 각주)는 들여쓰기되지 않습니다.

  • 각주 ledmac에는 개별 메모의 수를 변경하는 선택적 인수가 없습니다.

또한 memoir클래스와 ledmac패키지 모두 개별 각주 내에서 열 나누기를 허용합니다.

\documentclass{article}

\usepackage{ledmac} % see Update section below
\footthreecolX{A}

\let\footnote\footnoteA

\begin{document}

\null\vfill% just for the example

Some text.\footnote{Author 2001} Some more text.\footnote{Buthor 2002}
    And some more.\footnote{Cuthor 2003} Does this text ever end?\footnote{Duthor 2004}
    Yes.\footnote{Euthor 2005}

\end{document}

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


업데이트

@LaRiFaRi가 언급했듯이 ledmac패키지는 더 이상 사용되지 않으며 사용할 수 있습니다.reledmac대신 패키지로 보내세요. 그렇게 하기 위해 다음 두 줄을 교환할 수 있습니다.

\usepackage{ledmac}
\footthreecolX{A}

이들에 의해

\usepackage{reledmac}
\arrangementX[A]{threecol}

답변3

패키지를 사용하면 bidi(양방향 조판이 필요하지 않지만 각주에 대한 광범위한 도구를 제공하는 경우 죄송합니다) 1~10열의 각주를 조판할 수 있습니다. 또한 단락 각주도 조판할 수 있습니다. 예는 다음과 같습니다.

\documentclass{article}

\usepackage[extrafootnotefeatures]{bidi}
\threecolumnfootnotes

\begin{document}

\null\vfill% just for the example

Some text.\footnote{Author 2001} Some more text.\footnote{Buthor 2002}
    And some more.\footnote{Cuthor 2003} Does this text ever end?\footnote{Duthor 2004}
    Yes.\footnote{Euthor 2005}

\end{document}

또한 각주 열의 방향을 제어할 수도 있습니다. 자세한 내용은 패키지 설명서를 참조하세요 bidi.

관련 정보