如何枚举不同于文章页面的目录?

如何枚举不同于文章页面的目录?

我想在目录中放置一个独立于文章页面的页码计数器。我想使用罗马数字样式。

\documentclass[12pt,spanish]{article}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{graphicx}
\usepackage{lipsum} 
\usepackage{fancyhdr}
\usepackage{lastpage}
\usepackage{emptypage}
\usepackage[left=2cm, right=2cm, binding=1.5cm, top=2.5cm, bottom=3cm]{geometry}
\usepackage{lipsum}
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %

\begin{document}

% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %

\pagestyle{fancy}
\fancyhf{}% clear all header and footer fields
\lhead{\setlength{\unitlength}{1mm}
   \begin{picture}(0,0)
     \put(1,0){\includegraphics[scale=0.15]{example-image-a}}
   \end{picture}}
\rhead{\textsf{\textbf{Page: \thepage \hspace{1pt} of \pageref{LastPage} }}}
\chead{\large{\textsf{\textbf{INSTITUTO UNIVERSITARIO AERONÁUTICO\\Facultad de Ingeniería}}}}
\headsep=18mm 

\renewcommand{\headrulewidth}{0.1pt}%line

% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %

\begin{titlepage}

    \begin{center}
    \begin{figure}
        \centering
        \includegraphics[scale=1.1]{example-image-a}
        \vspace{15mm}
    \end{figure}
    
    {\Huge{Instituto Universitario Aeronáutico }}
\\
    \vspace{5mm}
    {\Large{Facultad de Ingeniería}}\\
    \vspace{10mm}
    {\large{\textbf{Resumen de Estructuras Aeronáuticas I}}}\\
    \vspace{15mm}
    {\Large{Franco, Caleb}}\\
    \end{center}

\end{titlepage}

\newpage


\tableofcontents

\newpage

\section{Introducc\'ion}
\lipsum

\end{document}

瞧,这是我的主意 在此处输入图片描述

答案1

您可以定义一种新样式(示例中名为“toc”)在之前使用(并且仅用于)\tableofcontents

“toc”样式只是简单地更改\thepage\Roman{page}以大写罗马字母显示页码。

\fancypagestyle{toc}{%  
    \fancyhf{}%
    \fancyhead[LO]{\includegraphics[scale=0.15]{example-image-a}}
    \fancyhead[CO]{\large{\textsf{\textbf{INSTITUTO UNIVERSITARIO AERONÁUTICO\\Facultad de Ingeniería}}}}
    \fancyhead[RO]{\textsf{\textbf{Page: \Roman{page} \hspace{1pt} of \pageref{LastPage} }}}%
}

\includegraphics[scale=0.15]{example-image-a}需要定义左标题。

A

\documentclass[12pt,spanish]{article}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{graphicx}
\usepackage{lipsum} 
\usepackage{fancyhdr}
\usepackage{lastpage}
\usepackage{emptypage}
\usepackage[left=2cm, right=2cm, 
%binding=1.5cm, 
top=2.5cm, bottom=3cm]{geometry}
\usepackage{lipsum}
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
\pagestyle{fancy}
\fancyhf{}% clear all header and footer fields
\lhead{\includegraphics[scale=0.15]{example-image-a}}
\rhead{\textsf{\textbf{Page: \thepage \hspace{1pt} of \pageref{LastPage} }}}
\chead{\large{\textsf{\textbf{INSTITUTO UNIVERSITARIO AERONÁUTICO\\Facultad de Ingeniería}}}}
\headsep=18mm 

\renewcommand{\headrulewidth}{0.1pt}%line   

\fancypagestyle{toc}{%  added <<<<<<<<<<<<
    \fancyhf{}%
    \fancyhead[LO]{\includegraphics[scale=0.15]{example-image-a}}
    \fancyhead[CO]{\large{\textsf{\textbf{INSTITUTO UNIVERSITARIO AERONÁUTICO\\Facultad de Ingeniería}}}}
    \fancyhead[RO]{\textsf{\textbf{Page: \Roman{page} \hspace{1pt} of \pageref{LastPage} }}}%
}

\begin{document}
            
    \begin{titlepage}
        
        \begin{center}
            \begin{figure}
                \centering
                \includegraphics[scale=1.1]{example-image-a}
                \vspace{15mm}
            \end{figure}
            
            {\Huge{Instituto Universitario Aeronáutico }}
            \\
            \vspace{5mm}
            {\Large{Facultad de Ingeniería}}\\
            \vspace{10mm}
            {\large{\textbf{Resumen de Estructuras Aeronáuticas I}}}\\
            \vspace{15mm}
            {\Large{Franco, Caleb}}\\
        \end{center}
        
    \end{titlepage}
    
    \thispagestyle{toc}% added <<<<<<<<<<   
    \tableofcontents        

    \newpage
    \section{Introducc\'ion}
    \lipsum
    
\end{document}

相关内容