How to set the page number in Chinese characters rather than Arabic numberals?












1















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)?










share|improve this question







New contributor




Humblerose is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • 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


















1















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)?










share|improve this question







New contributor




Humblerose is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • 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
















1












1








1








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)?










share|improve this question







New contributor




Humblerose is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












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






share|improve this question







New contributor




Humblerose is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question







New contributor




Humblerose is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question






New contributor




Humblerose is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 2 hours ago









HumbleroseHumblerose

62




62




New contributor




Humblerose is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Humblerose is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Humblerose is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • 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











  • 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












1 Answer
1






active

oldest

votes


















0














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.






share|improve this answer





















  • 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











  • @Davislor For Chinese documents, now ctexart, ctexbook, ctexbeamer and so on are better choices than others.

    – Kuttens
    1 hour ago














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.










draft saved

draft discarded


















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









0














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.






share|improve this answer





















  • 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











  • @Davislor For Chinese documents, now ctexart, ctexbook, ctexbeamer and so on are better choices than others.

    – Kuttens
    1 hour ago


















0














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.






share|improve this answer





















  • 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











  • @Davislor For Chinese documents, now ctexart, ctexbook, ctexbeamer and so on are better choices than others.

    – Kuttens
    1 hour ago
















0












0








0







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.






share|improve this answer















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.







share|improve this answer














share|improve this answer



share|improve this answer








edited 1 hour ago

























answered 1 hour ago









KuttensKuttens

949212




949212








  • 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











  • @Davislor For Chinese documents, now ctexart, ctexbook, ctexbeamer and so on are better choices than others.

    – Kuttens
    1 hour ago
















  • 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











  • @Davislor For Chinese documents, now ctexart, 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












Humblerose is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks