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
New contributor
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
New contributor
Welcome to TeX.SE! Do you have a local TeX user group you can ask? I guess they know better problems with chinese characters. Here are only few people ...
– Kurt
1 hour ago
Please give a minimal working example!
– Kuttens
1 hour ago
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
New contributor
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
New contributor
New contributor
New contributor
asked 2 hours ago
HumbleroseHumblerose
62
62
New contributor
New contributor
Welcome to TeX.SE! Do you have a local TeX user group you can ask? I guess they know better problems with chinese characters. Here are only few people ...
– Kurt
1 hour ago
Please give a minimal working example!
– Kuttens
1 hour ago
add a comment |
Welcome to TeX.SE! Do you have a local TeX user group you can ask? I guess they know better problems with chinese characters. Here are only few people ...
– Kurt
1 hour ago
Please give a minimal working example!
– Kuttens
1 hour ago
Welcome to TeX.SE! Do you have a local TeX user group you can ask? I guess they know better problems with chinese characters. Here are only few people ...
– Kurt
1 hour ago
Welcome to TeX.SE! Do you have a local TeX user group you can ask? I guess they know better problems with chinese characters. Here are only few people ...
– Kurt
1 hour ago
Please give a minimal working example!
– Kuttens
1 hour ago
Please give a minimal working example!
– Kuttens
1 hour ago
add a comment |
1 Answer
1
active
oldest
votes
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
repectively) for the documentclass, ctex
package will be not necessary.
1
You can also use thezhnumber
package for this if you do not wish to usectex
, for example, if mixing ideographic scripts withbabel
.
– Davislor
1 hour ago
@Davislor For Chinese documents, nowctexart
,ctexbook
,ctexbeamer
and so on are better choices than others.
– Kuttens
1 hour ago
add a comment |
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
});
}
});
Humblerose is a new contributor. Be nice, and check out our Code of Conduct.
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
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
repectively) for the documentclass, ctex
package will be not necessary.
1
You can also use thezhnumber
package for this if you do not wish to usectex
, for example, if mixing ideographic scripts withbabel
.
– Davislor
1 hour ago
@Davislor For Chinese documents, nowctexart
,ctexbook
,ctexbeamer
and so on are better choices than others.
– Kuttens
1 hour ago
add a comment |
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
repectively) for the documentclass, ctex
package will be not necessary.
1
You can also use thezhnumber
package for this if you do not wish to usectex
, for example, if mixing ideographic scripts withbabel
.
– Davislor
1 hour ago
@Davislor For Chinese documents, nowctexart
,ctexbook
,ctexbeamer
and so on are better choices than others.
– Kuttens
1 hour ago
add a comment |
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
repectively) for the documentclass, ctex
package will be not necessary.
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
repectively) for the documentclass, ctex
package will be not necessary.
edited 1 hour ago
answered 1 hour ago
KuttensKuttens
949212
949212
1
You can also use thezhnumber
package for this if you do not wish to usectex
, for example, if mixing ideographic scripts withbabel
.
– Davislor
1 hour ago
@Davislor For Chinese documents, nowctexart
,ctexbook
,ctexbeamer
and so on are better choices than others.
– Kuttens
1 hour ago
add a comment |
1
You can also use thezhnumber
package for this if you do not wish to usectex
, for example, if mixing ideographic scripts withbabel
.
– Davislor
1 hour ago
@Davislor For Chinese documents, nowctexart
,ctexbook
,ctexbeamer
and so on are better choices than others.
– Kuttens
1 hour ago
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
1 hour ago
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
1 hour ago
@Davislor For Chinese documents, now
ctexart
, ctexbook
, ctexbeamer
and so on are better choices than others.– Kuttens
1 hour ago
@Davislor For Chinese documents, now
ctexart
, ctexbook
, ctexbeamer
and so on are better choices than others.– Kuttens
1 hour ago
add a comment |
Humblerose is a new contributor. Be nice, and check out our Code of Conduct.
Humblerose is a new contributor. Be nice, and check out our Code of Conduct.
Humblerose is a new contributor. Be nice, and check out our Code of Conduct.
Humblerose is a new contributor. Be nice, and check out our Code of Conduct.
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
Welcome to TeX.SE! Do you have a local TeX user group you can ask? I guess they know better problems with chinese characters. Here are only few people ...
– Kurt
1 hour ago
Please give a minimal working example!
– Kuttens
1 hour ago