
고려하다:
\documentclass[12pt]{book}
\usepackage{scalefnt,scalerel}
\begin{document}
\thispagestyle{empty}
{\begin{minipage}{5.0in}\leftskip\fill\rightskip-\leftskip\parfillskip\stretch{2}%
{\vstretch{1.05}{\huge{\scalefont{1.05}{\textbf{THE COMMONITORY}}}\footnote{{\scshape{Commonitory.}} I have retained the original title in its anglicised form, already familiar to English ears in connection with the name of Vincentius. Its meaning, as he uses it, is indicated sufficiently, in \S 3, ``An aid to memory.'' Technically, it meant a Paper of Instructions given to a person charged with a commission, to assist his memory as to its details.}}}
\end{minipage}
\end{document}
출력:
질문: 유일한 각주가 나열된 이유는 무엇입니까?삼타임스? 또한 페이지 하단(제목 바로 아래가 아닌)에 각주 하나를 한 번 나열하고 대신 각주 1을 표시하려면 어떻게 해야 합니까?ㅏ?
감사합니다.
답변1
우선, 귀하의 문제를 재현할 수 없습니다. 귀하의 코드를 사용하면 다음을 얻을 수 있습니다.
log
그리고 경고 에서 :
(\end occurred inside a group at level 1) ### simple group (level 1) entered at line 5 ({)
{
이는 5행의 시작 부분이 결코 닫히지 않기 때문입니다 .
그러나 코드에는 몇 가지 문제가 더 있습니다. \huge
인수와 함께 명령으로 사용하려는 것 같습니다 . 그러나 이것은 옳지 않습니다. \huge
글꼴 스위치입니다. 인수를 읽지 않지만 현재 그룹의 끝(귀하의 경우에는 에서 사용하는 상자의 끝 \vstretch
)에서 끝납니다.
\vstretch
또한 을 사용한 후 단락 끝이 누락되어 를 사용하고 있는 것으로 추측됩니다 \huge
. 그래서 IMHO \vstretch
도 제거될 수 있습니다. 이 경우 은 현재 이전 \huge
에 의해 시작된 그룹에서 종료됩니다 . 이 그룹도 필요하지 않지만 의 기준선 건너뛰기 설정이 종료됩니다 .{
\vstretch
\huge
이는 minipage
각주 출력 위치와도 관련이 있습니다. 내부의 각주는 항상 페이지 끝이 아닌 끝 부분 minipage
에 인쇄됩니다 . minipage
그리고 이를 더욱 명확하게 하기 위해 숫자 스타일이 변경되었습니다.
따라서 단순화된 코드로 원하는 것을 얻을 수 있습니다.
\documentclass[12pt]{book}
\begin{document}
\thispagestyle{empty}
{\centering\huge\textbf{THE COMMONITORY\footnote{{\scshape{Commonitory.}} I
have retained the original title in its anglicised form, already
familiar to English ears in connection with the name of Vincentius. Its
meaning, as he uses it, is indicated sufficiently, in \S 3, ``An aid to
memory.'' Technically, it meant a Paper of Instructions given to a
person charged with a commission, to assist his memory as to its
details.}}\par}
\end{document}
\par
그룹 끝에 있는 을 참고하세요 . \huge
큰 텍스트에는 의 모든 글꼴 설정(기준선 건너뛰기 포함) 을 사용해야 합니다 .
정말로 텍스트를 늘리려면 다음과 같이 사용하십시오.
\documentclass[12pt]{book}
\usepackage{scalerel,scalefnt}
\begin{document}
\thispagestyle{empty}
{\centering\huge\vstretch{1.05}{\textbf{\scalefont{1.05}{THE COMMONITORY\footnotemark}}}\footnotetext{\textsc{Commonitory.} I
have retained the original title in its anglicised form, already
familiar to English ears in connection with the name of Vincentius. Its
meaning, as he uses it, is indicated sufficiently, in \S 3, ``An aid to
memory.'' Technically, it meant a Paper of Instructions given to a
person charged with a commission, to assist his memory as to its
details.}\par}
\end{document}
참고: 이것이 일회성 형식이 아니라 일종의 섹션화여야 한다면 각 제목에 대해 수동으로 마크업을 수행하는 대신 titlesec
해당 섹션화 명령(예: )을 구성하는 것과 같은 패키지를 사용해야 합니다.\chapter