명령을 사용하여 부동 소수점을 참조할 때 \cref
때로는 잘못된 조판이 나올 수 있습니다. 하위 플로트가 포함된 경우 특히 그렇습니다.
두 개의 하위 부동 소수점을 포함하는 부동 소수점 1이 있는 경우를 예로 들 수 있습니다. 범위는 1a and 2 to 5
에서 온 것처럼 착각됩니다 1a to 5
. 또한 참조하는 소스 코드에 1a
와 가 모두 1b
포함된 경우 그 중 하나만이 아니라 소스 코드에 포함된 모든 하위 플로트를 언급해야 합니다(포인트 2 참조). Typeset 출력은 다음과 같습니다.
이 출력은 다음 소스 코드를 사용하여 생성됩니다.
\documentclass[twocolumn]{report}
\usepackage{float}
\usepackage{subfloat}
\usepackage{caption}
\usepackage{cleveref}
\usepackage{paralist}
\begin{document}
\begin{subfigures}
% Subfigure 1
\begin{figure}[H]
\centering
\fbox{\Huge Figure 1a}
\caption{Caption 1}
\label{fig1a}
\end{figure}
% Subfigure 2
\begin{figure}[H]
\centering
\fbox{\Huge Figure 1b}
\caption{Caption 1b}
\label{fig1b}
\end{figure}
\end{subfigures}
% Figure 2
\begin{figure}[H]
\centering
\fbox{\Huge Figure 2}
\caption{Caption 2}
\label{fig2}
\end{figure}
% Figure 3
\begin{figure}[H]
\centering
\fbox{\Huge Figure 3}
\caption{Caption 3}
\label{fig3}
\end{figure}
% Figure 4
\begin{figure}[H]
\centering
\fbox{\Huge Figure 4}
\caption{Caption 4}
\label{fig4}
\end{figure}
% Figure 5
\begin{figure}[H]
\centering
\fbox{\Huge Figure 5}
\caption{Caption 5}
\label{fig5}
\end{figure}
% Figure 6
\begin{figure}[H]
\centering
\fbox{\Huge Figure 6}
\caption{Caption 6}
\label{fig6}
\end{figure}
\newpage
Figures are correctly cited for different citation formats such as:
\begin{enumerate}
\item Multiple: \textbf{\cref{fig5,,fig3,,fig4,,fig2}}
\item Range: \textbf{\cref{fig5,fig3,fig4}}
\item Multiple and range: \textbf{\cref{fig2,fig4,fig3,fig6}}
\end{enumerate}
\vspace{5mm}
But once subfigures are included, some citations formats do not work:
\begin{enumerate}
\item Multiple (works): \textbf{\cref{fig3,,fig4,,fig2,,fig1a}}
\item Range: \textbf{\cref{fig1a,fig1b,fig5,fig3,fig4}} (the output should be \textbf{figs. 1a to 1b and 3 to 5})
\item Multiple and range: \textbf{\cref{fig1a,fig2,fig4,fig3,fig6}} (the output should be \textbf{figs. 1a, 2 to 4 and 6})
\end{enumerate}
\end{document}
문제를 완화하는 솔루션이 이미 있지만 위와 동일한 예상 결과가 나오지 않습니다.
답변1
다음에 대해 새로운 부동 소수점 유형( subfig
) 을 정의할 수 있습니다.cleveref
\crefformat{subfig}{fig. #1}
\crefrangeformat{subfig}{figs. #1 to #2}
\crefmultiformat{subfig}{figs. #1}{ and #1}{, #1}{ and #1}
\crefrangemultiformat{subfig}{figs. #1 to #2}{}{}{}
그런 다음 서문에서 새 명령을 정의합니다.
\newcommand{\labelsf}[1]{ \label[subfig]{#1} } % a new command for labeling subfigures
labelsf
이제 하위 그림에 레이블을 지정하는 데 사용할 수 있습니다.
전체 소스 코드는 다음과 같습니다.
\documentclass[twocolumn]{report}
\usepackage{float}
\usepackage{subfloat}
\usepackage{caption}
\usepackage{paralist}
\usepackage{cleveref}
\crefformat{subfig}{fig. #1}
\crefrangeformat{subfig}{figs. #1 to #2}
\crefmultiformat{subfig}{figs. #1}{ and #1}{, #1}{ and #1}
\crefrangemultiformat{subfig}{figs. #1 to #2}{}{}{}
\newcommand{\labelsf}[1]{ \label[subfig]{#1} } % a new command for labeling subfigures
\begin{document}
\begin{subfigures}
% Subfigure 1
\begin{figure}[H]
\centering
\fbox{\Huge Figure 1a}
\caption{Caption 1}
\labelsf{fig1a}
\end{figure}
% Subfigure 2
\begin{figure}[H]
\centering
\fbox{\Huge Figure 1b}
\caption{Caption 1b}
\labelsf{fig1b}
\end{figure}
\end{subfigures}
% Figure 2
\begin{figure}[H]
\centering
\fbox{\Huge Figure 2}
\caption{Caption 2}
\label{fig2}
\end{figure}
% Figure 3
\begin{figure}[H]
\centering
\fbox{\Huge Figure 3}
\caption{Caption 3}
\label{fig3}
\end{figure}
% Figure 4
\begin{figure}[H]
\centering
\fbox{\Huge Figure 4}
\caption{Caption 4}
\label{fig4}
\end{figure}
% Figure 5
\begin{figure}[H]
\centering
\fbox{\Huge Figure 5}
\caption{Caption 5}
\label{fig5}
\end{figure}
% Figure 6
\begin{figure}[H]
\centering
\fbox{\Huge Figure 6}
\caption{Caption 6}
\label{fig6}
\end{figure}
\newpage
Figures are correctly cited for different citation formats such as:
\begin{enumerate}
\item Multiple: \textbf{\cref{fig5,,fig3,,fig4,,fig2}}
\item Range: \textbf{\cref{fig5,fig3,fig4}}
\item Multiple and range: \textbf{\cref{fig2,fig4,fig3,fig6}}
\end{enumerate}
\vspace{5mm}
But once subfigures are included, some citations formats do not work:
\begin{enumerate}
\item Multiple (works): \textbf{\cref{fig3,,fig4,,fig2,,fig1a}}
\item Range: \textbf{\cref{fig1a,fig1b,fig5,fig3,fig4}} (the output should be \textbf{figs. 1a to 1b and 3 to 5})
\item Multiple and range: \textbf{\cref{fig1a,fig2,fig4,fig3,fig6}} (the output should be \textbf{figs. 1a, 2 to 4 and 6})
\end{enumerate}
\end{document}
cref
이제 하위 그림을 올바르게 참조하지만 이 솔루션의 단점은 다음과 같습니다.
- 레이블을 두 번 클릭해도 부동 소수점의 사용법을 찾을 수 없으며 해당 레이블을 클릭해도 부동 소수점 소스 코드를 찾을 수 없습니다.
- 플로트의 이름은 때때로 두 번 반복될 수 있으며 이는 중복됩니다.