第1章ではなく第1章を書く方法

第1章ではなく第1章を書く方法

第 1 章ではなく第 1 章を書きたいのですが、何か提案はありますか?

ありがとう

答え1

何か見落としがない限り、OP と OP の下のコメントに基づくと... この解決策で十分なはずです:

\documentclass[12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage[LGR,T1]{fontenc}
\usepackage[basque]{babel} % <- choice based on OP's comment
\usepackage{titlesec}

\renewcommand\chaptertitlename{kapitulua} % <- assuming that should be made lowercase when order changed
%\renewcommand\thechapter{\Roman{chapter}} % <- uncomment if you want Roman numerals instead
\titleformat{\chapter}[display]{\normalfont\huge\bfseries}{\thechapter\ \chaptertitlename}{20pt}{\Huge} % <- order changed (default is \chaptertitlename \ \thechapter)

\begin{document}

\chapter{Your title goes here}

\end{document}

コードからの出力

代わりに大文字のローマ数字を使用する場合は、行のコメントを解除します。\renewcommand\thechapter{\Roman{chapter}}つまり、アラビア数字の「1 章」、「2 章」の代わりに「I 章」、「II 章」を使用します。

答え2

@Bernardがコメントで述べたように、titlesec パッケージ対応する PDF ファイルの 23 ページと 24 ページのコードを使用できます。調整については、ページの説明をお読みください。

\documentclass[10pt,oneside]{book}
\usepackage[dvips]{color}
\usepackage{lipsum}
\usepackage[rigidchapters,explicit]{titlesec}
\DeclareFixedFont{\chapterfont}{T1}{phv}{bx}{n}{4cm}
\titlespacing{\chapter}{0pt}{100pt}{75pt}

\titleformat{\chapter}[block]
{\begin{picture}(0,230)}
{\put(450,80){%
\makebox(0,0)[rb]{%
{}}}
\put(0,270){%
\makebox(0,0)[lb]{%
\Huge\sffamily{\thechapter\ Chapter }}}}
{0pt}
{\put(0,200){\parbox[t]{300pt}{%
\Huge\sffamily\filright#1}}}
[\end{picture}]

\begin{document}
\chapter{First Chapter}
\lipsum[2]
\section{First Section}
\lipsum[1]
\end{document}

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

関連情報