How to set the page number in Chinese characters rather than Arabic numberals?
By the default setting, I get page numbers in Arabic numerals like 1,2,3,etc. How can I get a series of page numbers in Chinese characters like 一, 二, 三, (simplified Chinese) or 壹, 贰, 叁 (traditional Chinese)?
page-numbering chinese
add a comment |
By the default setting, I get page numbers in Arabic numerals like 1,2,3,etc. How can I get a series of page numbers in Chinese characters like 一, 二, 三, (simplified Chinese) or 壹, 贰, 叁 (traditional Chinese)?
page-numbering chinese
Please give a minimal working example!
– Kuttens
Mar 29 at 3:14
add a comment |
By the default setting, I get page numbers in Arabic numerals like 1,2,3,etc. How can I get a series of page numbers in Chinese characters like 一, 二, 三, (simplified Chinese) or 壹, 贰, 叁 (traditional Chinese)?
page-numbering chinese
By the default setting, I get page numbers in Arabic numerals like 1,2,3,etc. How can I get a series of page numbers in Chinese characters like 一, 二, 三, (simplified Chinese) or 壹, 贰, 叁 (traditional Chinese)?
page-numbering chinese
page-numbering chinese
asked Mar 29 at 2:22
HumbleroseHumblerose
83
83
Please give a minimal working example!
– Kuttens
Mar 29 at 3:14
add a comment |
Please give a minimal working example!
– Kuttens
Mar 29 at 3:14
Please give a minimal working example!
– Kuttens
Mar 29 at 3:14
Please give a minimal working example!
– Kuttens
Mar 29 at 3:14
add a comment |
1 Answer
1
active
oldest
votes
For the simplified case, you can try the following code in the preamble:
usepackage{ctex}
renewcommand{thepage}{chinese{page}}
It will produce page numbers such as 一、二、三、...
。By the way if you use ctexart
(ctexbook
) instead of article
(book
repsectively) for the documentclass, ctex
package will be not necessary.
For the traditional case, it's a little complicated that zhnumber
and fancyhdr
should be use at the same time.
usepackage{zhnumber,fancyhdr}
zhnumsetup{style={Traditional,Financial}}
pagestyle{fancy}
fancyhf{}
fancyhead[LE,RO]{你想要的页眉}
fancyhead[RE,LO]{页眉其它内容}
fancyfoot[CE,CO]{leftmark}
fancyfoot[LE,RO]{zhnumber{thepage}}
You can revised the codes above to get what you want.
1
You can also use thezhnumber
package for this if you do not wish to usectex
, for example, if mixing ideographic scripts withbabel
.
– Davislor
Mar 29 at 3:39
@Davislor For Chinese documents, nowctexart
,ctexbook
,ctexbeamer
and so on are better choices than others.
– Kuttens
Mar 29 at 3:47
Thank you very much @Kuttens
– Humblerose
Mar 29 at 12:13
1
@KuttensThe page numbers are 一、二、三… now. But how about the traditional Chinese characters like 壹、贰、叁.…? I know the users on stackexchange mostly write in English and they may not be familiar with the usage of Chinese character in Tex. Since the largest Chinese Tex forum has been shut down, I have to ask my questions here.
– Humblerose
Mar 29 at 12:23
@Humblerose You write the document in traditional Chinese or simplified Chinese?
– Kuttens
Mar 30 at 1:44
|
show 2 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f482028%2fhow-to-set-the-page-number-in-chinese-characters-rather-than-arabic-numberals%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
For the simplified case, you can try the following code in the preamble:
usepackage{ctex}
renewcommand{thepage}{chinese{page}}
It will produce page numbers such as 一、二、三、...
。By the way if you use ctexart
(ctexbook
) instead of article
(book
repsectively) for the documentclass, ctex
package will be not necessary.
For the traditional case, it's a little complicated that zhnumber
and fancyhdr
should be use at the same time.
usepackage{zhnumber,fancyhdr}
zhnumsetup{style={Traditional,Financial}}
pagestyle{fancy}
fancyhf{}
fancyhead[LE,RO]{你想要的页眉}
fancyhead[RE,LO]{页眉其它内容}
fancyfoot[CE,CO]{leftmark}
fancyfoot[LE,RO]{zhnumber{thepage}}
You can revised the codes above to get what you want.
1
You can also use thezhnumber
package for this if you do not wish to usectex
, for example, if mixing ideographic scripts withbabel
.
– Davislor
Mar 29 at 3:39
@Davislor For Chinese documents, nowctexart
,ctexbook
,ctexbeamer
and so on are better choices than others.
– Kuttens
Mar 29 at 3:47
Thank you very much @Kuttens
– Humblerose
Mar 29 at 12:13
1
@KuttensThe page numbers are 一、二、三… now. But how about the traditional Chinese characters like 壹、贰、叁.…? I know the users on stackexchange mostly write in English and they may not be familiar with the usage of Chinese character in Tex. Since the largest Chinese Tex forum has been shut down, I have to ask my questions here.
– Humblerose
Mar 29 at 12:23
@Humblerose You write the document in traditional Chinese or simplified Chinese?
– Kuttens
Mar 30 at 1:44
|
show 2 more comments
For the simplified case, you can try the following code in the preamble:
usepackage{ctex}
renewcommand{thepage}{chinese{page}}
It will produce page numbers such as 一、二、三、...
。By the way if you use ctexart
(ctexbook
) instead of article
(book
repsectively) for the documentclass, ctex
package will be not necessary.
For the traditional case, it's a little complicated that zhnumber
and fancyhdr
should be use at the same time.
usepackage{zhnumber,fancyhdr}
zhnumsetup{style={Traditional,Financial}}
pagestyle{fancy}
fancyhf{}
fancyhead[LE,RO]{你想要的页眉}
fancyhead[RE,LO]{页眉其它内容}
fancyfoot[CE,CO]{leftmark}
fancyfoot[LE,RO]{zhnumber{thepage}}
You can revised the codes above to get what you want.
1
You can also use thezhnumber
package for this if you do not wish to usectex
, for example, if mixing ideographic scripts withbabel
.
– Davislor
Mar 29 at 3:39
@Davislor For Chinese documents, nowctexart
,ctexbook
,ctexbeamer
and so on are better choices than others.
– Kuttens
Mar 29 at 3:47
Thank you very much @Kuttens
– Humblerose
Mar 29 at 12:13
1
@KuttensThe page numbers are 一、二、三… now. But how about the traditional Chinese characters like 壹、贰、叁.…? I know the users on stackexchange mostly write in English and they may not be familiar with the usage of Chinese character in Tex. Since the largest Chinese Tex forum has been shut down, I have to ask my questions here.
– Humblerose
Mar 29 at 12:23
@Humblerose You write the document in traditional Chinese or simplified Chinese?
– Kuttens
Mar 30 at 1:44
|
show 2 more comments
For the simplified case, you can try the following code in the preamble:
usepackage{ctex}
renewcommand{thepage}{chinese{page}}
It will produce page numbers such as 一、二、三、...
。By the way if you use ctexart
(ctexbook
) instead of article
(book
repsectively) for the documentclass, ctex
package will be not necessary.
For the traditional case, it's a little complicated that zhnumber
and fancyhdr
should be use at the same time.
usepackage{zhnumber,fancyhdr}
zhnumsetup{style={Traditional,Financial}}
pagestyle{fancy}
fancyhf{}
fancyhead[LE,RO]{你想要的页眉}
fancyhead[RE,LO]{页眉其它内容}
fancyfoot[CE,CO]{leftmark}
fancyfoot[LE,RO]{zhnumber{thepage}}
You can revised the codes above to get what you want.
For the simplified case, you can try the following code in the preamble:
usepackage{ctex}
renewcommand{thepage}{chinese{page}}
It will produce page numbers such as 一、二、三、...
。By the way if you use ctexart
(ctexbook
) instead of article
(book
repsectively) for the documentclass, ctex
package will be not necessary.
For the traditional case, it's a little complicated that zhnumber
and fancyhdr
should be use at the same time.
usepackage{zhnumber,fancyhdr}
zhnumsetup{style={Traditional,Financial}}
pagestyle{fancy}
fancyhf{}
fancyhead[LE,RO]{你想要的页眉}
fancyhead[RE,LO]{页眉其它内容}
fancyfoot[CE,CO]{leftmark}
fancyfoot[LE,RO]{zhnumber{thepage}}
You can revised the codes above to get what you want.
edited Mar 30 at 2:52
answered Mar 29 at 3:26
KuttensKuttens
974212
974212
1
You can also use thezhnumber
package for this if you do not wish to usectex
, for example, if mixing ideographic scripts withbabel
.
– Davislor
Mar 29 at 3:39
@Davislor For Chinese documents, nowctexart
,ctexbook
,ctexbeamer
and so on are better choices than others.
– Kuttens
Mar 29 at 3:47
Thank you very much @Kuttens
– Humblerose
Mar 29 at 12:13
1
@KuttensThe page numbers are 一、二、三… now. But how about the traditional Chinese characters like 壹、贰、叁.…? I know the users on stackexchange mostly write in English and they may not be familiar with the usage of Chinese character in Tex. Since the largest Chinese Tex forum has been shut down, I have to ask my questions here.
– Humblerose
Mar 29 at 12:23
@Humblerose You write the document in traditional Chinese or simplified Chinese?
– Kuttens
Mar 30 at 1:44
|
show 2 more comments
1
You can also use thezhnumber
package for this if you do not wish to usectex
, for example, if mixing ideographic scripts withbabel
.
– Davislor
Mar 29 at 3:39
@Davislor For Chinese documents, nowctexart
,ctexbook
,ctexbeamer
and so on are better choices than others.
– Kuttens
Mar 29 at 3:47
Thank you very much @Kuttens
– Humblerose
Mar 29 at 12:13
1
@KuttensThe page numbers are 一、二、三… now. But how about the traditional Chinese characters like 壹、贰、叁.…? I know the users on stackexchange mostly write in English and they may not be familiar with the usage of Chinese character in Tex. Since the largest Chinese Tex forum has been shut down, I have to ask my questions here.
– Humblerose
Mar 29 at 12:23
@Humblerose You write the document in traditional Chinese or simplified Chinese?
– Kuttens
Mar 30 at 1:44
1
1
You can also use the
zhnumber
package for this if you do not wish to use ctex
, for example, if mixing ideographic scripts with babel
.– Davislor
Mar 29 at 3:39
You can also use the
zhnumber
package for this if you do not wish to use ctex
, for example, if mixing ideographic scripts with babel
.– Davislor
Mar 29 at 3:39
@Davislor For Chinese documents, now
ctexart
, ctexbook
, ctexbeamer
and so on are better choices than others.– Kuttens
Mar 29 at 3:47
@Davislor For Chinese documents, now
ctexart
, ctexbook
, ctexbeamer
and so on are better choices than others.– Kuttens
Mar 29 at 3:47
Thank you very much @Kuttens
– Humblerose
Mar 29 at 12:13
Thank you very much @Kuttens
– Humblerose
Mar 29 at 12:13
1
1
@KuttensThe page numbers are 一、二、三… now. But how about the traditional Chinese characters like 壹、贰、叁.…? I know the users on stackexchange mostly write in English and they may not be familiar with the usage of Chinese character in Tex. Since the largest Chinese Tex forum has been shut down, I have to ask my questions here.
– Humblerose
Mar 29 at 12:23
@KuttensThe page numbers are 一、二、三… now. But how about the traditional Chinese characters like 壹、贰、叁.…? I know the users on stackexchange mostly write in English and they may not be familiar with the usage of Chinese character in Tex. Since the largest Chinese Tex forum has been shut down, I have to ask my questions here.
– Humblerose
Mar 29 at 12:23
@Humblerose You write the document in traditional Chinese or simplified Chinese?
– Kuttens
Mar 30 at 1:44
@Humblerose You write the document in traditional Chinese or simplified Chinese?
– Kuttens
Mar 30 at 1:44
|
show 2 more comments
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f482028%2fhow-to-set-the-page-number-in-chinese-characters-rather-than-arabic-numberals%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Please give a minimal working example!
– Kuttens
Mar 29 at 3:14