'Figurescaption.sty'를 찾을 수 없습니다

'Figurescaption.sty'를 찾을 수 없습니다

나는 웹사이트의 패키지를 사용하고 있는데, 코드 목록의 일부는 다음과 같습니다.

\documentclass[twoside,twocolumn]{article}  
\usepackage[sc]{mathpazo}  
\usepackage[T1]{fontenc}  
\linespread{1.05}  
\usepackage{microtype}  
\usepackage[bahasa]{babel}  
\usepackage[left=3.00cm, right=2.00cm, top=2.50cm, bottom=2.50cm,columnsep=0.5cm]{geometry}  
\usepackage[hang, small,labelfont=bf,up,textfont=it,up]{figurescaption} %   
\usepackage{booktabs}  
\usepackage{enumitem}  
\usepackage{blindtext}  
\setlist[itemize]{noitemsep}  
\usepackage{abstract}  
\renewcommand{\abstractnamefont}{\normalfont\bfseries}  
\renewcommand{\abstracttextfont}{\normalfont\small\itshape}  
\usepackage{titlesec}  
\renewcommand\thesection{\Roman{section}}  
\renewcommand\thesubsection{\roman{subsection}}     
\titleformat{\section}[block]{\large\scshape\centering}{\thesection.}{1em}{}  
\titleformat{\subsection}[block]{\large}{\thesubsection.}{1em}{}   
\usepackage{fancyhdr}   
\pagestyle{fancy}  
\fancyhead{}  
\fancyfoot{} 
\fancyhead[C]{Jurnal KIP $\bullet$ May 2017 $\bullet$ Vol. IV, No. 3}  
\fancyfoot[RO,LE]{\thepage}  
\usepackage{titling}  
\usepackage{hyperref}  
\setlength{\droptitle}{-4\baselineskip}
\pretitle{\begin{center}\Large\bfseries} 
\posttitle{\end{center}} 
\title{Judul Artikel}    
\author{%
\textsc{The writer} \\[1ex]  
\normalsize My University \\  
\normalsize \href{mailto:[email protected]}{[email protected]}  
}
\date{} 
\renewcommand{\maketitlehookd}{
\begin{abstract}
\noindent \blindtext
\end{abstract}
}
\begin{document}
\maketitle
\section{Pendahuluan}
\blindtext

\end{document}

하지만 오류 메시지가 나타납니다.Figurecscaption.sty패키지에서 찾을 수 없습니다.
코드 수정 방법을 알려주세요.

답변1

존재하지 않는 패키지를 사용하면 안 됩니다. 귀하의 경우에는 figurescaption.styTeX 배포판에서 사용할 수 없기 때문에 찾을 수 없습니다. 대신에 이러한 유형의 인수를 사용하는 것을 사용해야 합니다 caption(여러 옵션을 중괄호로 묶어주세요).

\documentclass[twoside,twocolumn]{article}  
\usepackage[bahasa]{babel}  
\usepackage[T1]{fontenc}  
\usepackage[left=3cm, right=2cm, top=2.5cm, bottom=2.5cm,columnsep=0.5cm]{geometry}  
\usepackage[hang, small,labelfont={bf,up},textfont={it,up}]{caption} %   

\usepackage[sc]{mathpazo}
\usepackage{microtype}  

\usepackage{blindtext}  
\usepackage{booktabs}  
\usepackage{enumitem}  
\usepackage{abstract}  
\usepackage{titlesec}  
\usepackage{fancyhdr}   
\usepackage{titling}  
\usepackage{hyperref}  

\setlist[itemize]{noitemsep}  
\linespread{1.05}  

\renewcommand{\abstractnamefont}{\normalfont\bfseries}  
\renewcommand{\abstracttextfont}{\normalfont\small\itshape}  

\renewcommand\thesection{\Roman{section}}  
\renewcommand\thesubsection{\roman{subsection}}     
\titleformat{\section}[block]{\large\scshape\centering}{\thesection.}{1em}{}  
\titleformat{\subsection}[block]{\large}{\thesubsection.}{1em}{}   

\pagestyle{fancy}  
\fancyhead{}  
\fancyfoot{} 
\fancyhead[C]{Jurnal KIP $\bullet$ May 2017 $\bullet$ Vol. IV, No. 3}  
\fancyfoot[RO,LE]{\thepage}  

\setlength{\droptitle}{-4\baselineskip}
\pretitle{\begin{center}\Large\bfseries} 
\posttitle{\end{center}} 

\renewcommand{\maketitlehookd}{
\begin{abstract}
\noindent \blindtext
\end{abstract}
}

\title{Judul Artikel}    
\author{%
\textsc{The writer} \\[1ex]  
\normalsize My University \\  
\normalsize \href{mailto:[email protected]}{[email protected]}  
}
\date{} 
\begin{document}
\maketitle
\section{Pendahuluan}
\blindtext

\end{document}

관련 정보