在 LaTeX 中重命名月份名称

发布于 2024-10-12 01:59:49 字数 238 浏览 0 评论 0原文

我在使用 LaTeX 时遇到了一个看似很小的问题,经过相当多的互联网搜索后我找不到答案......

我正在用法罗语写一份学校作业,并且想要更改 \date(\today)法罗语的名字。

我想我必须使用 \renewcommand,但我不知道应该在那里放什么。

基本上,我想更改名称如下:

一月 -->一月 二月-->二月 三月-->火星 等等。

任何帮助将不胜感激

I've got a seemingly small problem using LaTeX, which i can't find the answer for after quite a bit of internet searching...

I'm writing a schoolassignment in faroese, and want to change the \date(\today) names to faroese.

I guess i have to use the \renewcommand, but i don't know what i should put in there.

Basicly, i want to change the names as follow:

January --> Januar
February --> Februar
March --> Mars
etc.

Any help would be greatly appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜唯美灬不弃 2024-10-19 01:59:49

您最好不要手动执行此操作,而是让 babel 包来处理它。作为奖励,这还可以为您提供正确的连字符、标题名称等。来自这里:(

\usepackage[icelandic]{babel}
\usepackage[T1]{fontenc}

因为它写在那里,我假设冰岛语与法罗语非常接近,但直到五分钟前,我什至不知道这种语言的存在......)

You are better off not doing this by hand, but letting the babel package take care of it. As a bonus, that also gives you correct hyphenation, caption names, etcetera. From here:

\usepackage[icelandic]{babel}
\usepackage[T1]{fontenc}

(Since it's written there, I assume that icelandic is close enough to Faroese, but until five minutes ago, I didn't even know that the language existed...)

魄砕の薆 2024-10-19 01:59:49

您今天想定义您自己的\。要显示 2011 年 1 月 15 日,请将其放在 \begin{document} 上方

\def\today{ifcase\month\or Januar\or Februar\or Mars ...etc... December\fi \space\number\day, \number\year}

You want to define your own \today. To display Januar 15, 2011, put this above \begin{document}

\def\today{ifcase\month\or Januar\or Februar\or Mars ...etc... December\fi \space\number\day, \number\year}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文