ローマ字小文字のページ番号の問題

ローマ字小文字のページ番号の問題

ページ番号付けに問題があります。ページ番号を小文字のローマ字で付けたいのですが、\pagenumbering{roman} を使用している時点では、コンパイル時に大文字のローマ字で番号付けが表示されたままになります。

LaTeX コードを添付しましたが、どの行が前述の問題を引き起こしているのかわかりません。

\documentclass[12pt, oneside,a4paper ]{book}
%\usepackage[Most]{romannum}
\usepackage[utf8]{inputenc}
\usepackage{amsthm}
\usepackage{amsmath}%centrar formulas
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}%Para poner fórmulas químicas
\usepackage{subfigure} % subfiguras
\usepackage[subfigure]{tocloft}
\usepackage[spanish]{babel}
\usepackage{emptypage}
\usepackage{fancyhdr}
\usepackage{booktabs} %Para tablas importadas de excel
\usepackage[table]{xcolor}
\usepackage{colortbl}%row color
\usepackage{multirow}
\usepackage{float} %Para dejar fija la tabla 
%\usepackage{longtable} %Tabla en dos páginas
\usepackage{stackrel}
%\usepackage{enumerate} 
\usepackage{upgreek}%Para poner letras griegas en negrita
\usepackage{mathrsfs}
\usepackage{comment}
\usepackage{verbatim}
\usepackage{subfigure} % subfiguras%Para imágenes seguidas
\usepackage{tabularx}
\usepackage{bigstrut}
\usepackage{caption}
\usepackage{cite}
\usepackage{geometry}
\usepackage[myheadings]{fullpage}
\usepackage{lastpage}
\usepackage{graphicx, wrapfig, setspace, booktabs}
\usepackage[T1]{fontenc}
\usepackage[font=small, labelfont=bf]{caption}
\usepackage{fourier}
%\usepackage[protrusion=true, expansion=true]{microtype}
\usepackage{setspace} %interlineados
\usepackage{titlesec}
\usepackage{titling}
\usepackage{mathrsfs}
\usepackage{enumerate} % enumerados
\usepackage{emptypage}
%\usepackage{fancyhdr}
\usepackage{fancybox}
\usepackage{scrextend}
\usepackage{algorithm}%Escribir algoritmos
\usepackage{algorithmic}%Escribir algoritmos
\usepackage{mathtools, nccmath}
\usepackage{pdfpages}
\usepackage[titletoc,toc,page]{appendix}
\usepackage{hyperref}
\fancyhf{} % <================ clears header and footer on all positions
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\fancypagestyle{plain}{%
  \fancyhf{} % clears header and footer on all positions
  \fancyfoot[C]{\bfseries \thepage} % <=================================
  \renewcommand{\headrulewidth}{0pt}
  \renewcommand{\footrulewidth}{0pt}
}
\pagestyle{fancy}
%\fancyhf{} % <==================================== allready done above!
\fancyfoot[C]{\bfseries \thepage}

\renewcommand{\thechapter}{\arabic{chapter}} 
\renewcommand{\thesection}{\arabic{chapter}.\arabic{section}}
\renewcommand{\theequation}{\arabic{chapter}.\arabic{equation}}
\renewcommand{\thefigure}{\arabic{figure}}
\renewcommand{\cftfigfont}{Figura }
\renewcommand{\cfttabfont}{Tabla }
\author{Alex Pozo}
\parindent= 0mm %Elimina la sangria
\renewcommand{\contentsname}{Contenido}
\renewcommand{\partname}{Parte}
\renewcommand{\appendixname}{Apéndice}
\renewcommand{\figurename}{Figura}
\renewcommand{\tablename}{Tabla}
\renewcommand*\contentsname{ÍNDICE GENERAL}
\renewcommand*\bibname{REFERENCIAS BIBLIOGRÁFICAS}
\renewcommand{\appendixname}{Anexos}
\renewcommand{\appendixtocname}{Anexos}
\renewcommand{\appendixpagename}{Anexos}
%\setcounter{tocdepth}{3} % para que ponga subsubsecciones en el indice
\providecommand{\abs}[1]{\lvert#1\rvert}
\providecommand{\norm}[1]{\lVert#1\rVert}
%------------------------------------------------

%----------------------------------------------------------------------
\newtheorem{defi}{Definición}[chapter]
\newtheorem{prop}{Proposición}[chapter]
\newtheorem{lem}{{ Lema }}[chapter]
\newtheorem{theorem}{{ Teorema }}[chapter]
\author{Alex Pozo}

\title{MODELIZACIÓN MATEMÁTICA DE TIEMPOS DE VIAJE DE LA TRONCAL CENTRAL TROLEBÚS.}
\setlength\parindent{2em }
\newcommand{\HRule}[1]{\rule{\linewidth}{#1}}
\onehalfspacing
%\setcounter{tocdepth}{5}
%\setcounter{secnumdepth}{5}

\numberwithin{figure}{chapter}

\begin{document}
\cleardoublepage

\pagenumbering{roman} %Here is my problem. Doesn't change the format
%CARÁTULA

%\pagestyle{empty}%Para eliminar encabezados y pies de pagina
\renewcommand{\thefootnote}{\arabic{footnote}}
\renewcommand{\contentsname}{Contenido}
\renewcommand{\bibname}{Referencias Bibliográficas}
\renewcommand{\contentsname}{Contenido}
%\newcommand{\defeq}{\mathrel{\mathop:}=}
%------------------------
\thispagestyle{empty}

編集の結果 ここに画像の説明を入力してください

答え1

MWE は少なくとも\end{document}が欠落しているため不完全です。ただし、これといくつかのテキストを追加した後、その問題を再現できました。

どうやら、本のドキュメントクラスは、大きいスペイン語のテキストにはローマ数字を使用する必要があります。デフォルトの言語を (たとえば) 英語に変更すると、代わりに小さなローマ数字が表示されます。解決策があります: load babel as \usepackage[spanish,es-lcroman]{babel} => source とします:ニコ・ボニからの回答

documentclass には、\pagenumbering{...}`bookの代わりに使用できる 2 つのコマンドが用意されていることに注意してください。\cleardoublepage

  • \frontmatter
  • \mainmatter

どちらもページ番号を切り替え、ページカウンタをリセットします。ドキュメントは以下を参照してください。CTAN

関連情報