논문 글꼴 변경 및 헤더 만들기

논문 글꼴 변경 및 헤더 만들기

석사논문의 글꼴을 14pt로 설정하고 헤더에 다음 내용을 포함시키고 싶습니다.

챕터# 챕터 이름

저는 스타일 파일과 aa .cls 파일을 사용합니다.

나는 다음에서 또 다른 질문을 했습니다. 챕터: 부록 앞의 목차에 있는 단어

거기에 대한 답변이 도움이 될 수 있습니다.

MWE는 다음과 같습니다

\documentclass[ms]{osudissert96}
\usepackage{amssymb,amsfonts,amsmath,amscd,mathrsfs}
\usepackage{url}
\usepackage[dvips]{color}%colortext
\usepackage{longtable}% Using longtable environment
\usepackage{ifthen}% Gives \ifthenelse
\usepackage{graphicx}
\usepackage[labelfont=bf]{caption}
\usepackage{algorithm}
\usepackage{algorithmicx}
\usepackage{multirow}
\usepackage{tablefootnote}
\graphicspath{{figures/}}% Define the path to the figures colorlinks,
\usepackage[]{mcode}
\usepackage{subcaption}
%\usepackage[toc,page]{appendix}
\usepackage[titletoc,toc,page]{appendix}
\newtheorem{mydef}{Definition}
\usepackage{acronym}
\usepackage{booktabs}


% Fix referencing of nested enumerations (put a dot between counters)
\makeatletter
\renewcommand{\theenumii}{\arabic{enumii}}
\renewcommand{\labelenumii}{\theenumi.\theenumii}
\renewcommand{\p@enumii}{\theenumi.}
\makeatother


\makeatletter \@addtoreset{footnote}{chapter} \makeatother % Clear the footnote counter at every new chapter

% The following adds the hyperlinks and makes the page navigator in the pdf viewer cool
\usepackage[breaklinks, hyperindex,pdfborder={0 0 0}]{hyperref}

% This will make chapter titles show up in uppercase (however, they will be normal case in the TOC)
\renewcommand\typesetChapterTitle[1]{\uppercase{#1}}

% Notation:
%\def\listofnotation{\input symbols.tex \clearpage}
%\def\addnotation #1 #2#3{#1\> \parbox{5in}{#2 \dotfill  \pageref{#3}}\\}
%\def\newnot#1{\label{#1}}





%% To speed up compilation, you can comment all commands that include chapters you're interested in till you finish each chapter separately, or use the includeonly command
%\includeonly{ch1-intro}

\include{commands}


\begin{document}

\setcounter{tocdepth}{3}

\tableofcontents
\listoffigures
\listoftables
\newpage


\chapter{CH1}

\renewcommand\pagenumbering[1]{}
\begin{appendices}

\chapter{MATLAB Code}\label{App:Matlab_Code}
\end{appendices}
\end{document}

관련 정보