LaTeX技巧211:latex如何打印出确切时间

http://blog.sina.com.cn/s/blog_5e16f1770100grtj.html

我们在输入一篇文章或者书的标题的时候,会自动加入当天的日期,但是我们如果想把计算机的时间加入文档,该如何实现呢?
解决方案:
有两个宏包提供了打印输出时间的功能,The datetime package and The scrtime package,他们提供了不同的输入方案,如24小时制,12小时制等等,读者可根据自己的要求来选择。

演示代码:
\documentclass{article}
\pagestyle{empty}
\setcounter{page}{6}
\setlength\textwidth{305.0pt}
\usepackage{CJK}
\usepackage{times}
\usepackage{datetime}
\usepackage{scrtime}
\begin{CJK}{GBK}{kai}
\begin{document}

Two packages are available, both providing ranges of ways of printing the date, as well as of the time: this question will concentrate on the time-printing capabilities, and interested users can investigate the documentation for details about dates.

The datetime package defines two time-printing functions: \xxivtime (for 24-hour time), \ampmtime (for 12-hour time) and \oclock (for time-as-words, albeit a slightly eccentric set of words).

The scrtime package (part of the compendious KOMA-Script bundle) takes a package option (12h or 24h) to specify how times are to be printed. The command \thistime then prints the time appropriately (though there’s no am or pm in 12h mode). The \thistime command also takes an optional argument, the character to separate the hours and minutes: the default is of course :.

\Large
当前计算机的时间和日期是:

\xxivtime \, \today

\ampmtime\, \today

\oclock\, \today

\thistime\, \today

\end{CJK}
\end{document}

摘自:http://www.tex.ac.uk/cgi-bin/texfaq2html?label=time

时间: 2024-11-03 20:49:57

LaTeX技巧211:latex如何打印出确切时间的相关文章

LaTeX技巧:LaTeX括号总结

功能 语法 显示 不好看     ( \frac{1}{2} ) 好一点 \left( \frac{1}{2} \right) 您可以使用\left和\right来显示不同的括号: 功能 语法 显示 圆括号,小括号 \left( \frac{a}{b} \right) 方括号,中括号 \left[ \frac{a}{b} \right] 花括号,大括号 \left\{ \frac{a}{b} \right\} 角括号 \left \langle \frac{a}{b} \right \rangl

LaTeX技巧002:\section{}章节命令添加中文编译不了问题

在宏包hyperref前面添加选项CJKbookmarks \usepackage[CJKbookmarks]{hyperref} 并且把这句话尽可能地加在导言区的最底部,即尽可能靠近 \begin{document} . LaTeX技巧002:\section{}章节命令添加中文编译不了问题

LaTeX技巧012:LaTeX 插图加载宏包

LaTeX 插图加载宏包.支持 LaTeX - DVIPDFMx; pdfLaTeX; XeLaTeX 三种编译方式,支持 eps/pdf/jpg/png 等图片格式. 1 % Put this snippet in your preamble. 2 \usepackage{ifpdf, ifxetex} 3 \ifxetex 4 \usepackage{graphicx} 5 \else 6 \ifpdf 7 \usepackage{graphicx} 8 \usepackage{epstop

LaTeX技巧010:LaTtex中如何给每个句子加序号?

效果图: 代码: \documentclass{article} \newcounter{sentence} \renewcommand\thesentence{\textsuperscript{\arabic{sentence}}} \catcode`\"=13 \newcommand"{\stepcounter{sentence}\thesentence} \begin{document} "hello."This is a test. \end{documen

【LaTeX排版】LaTeX论文排版<三>

A picture is worth a thousand words(一图胜千言).图在论文中的重要性不言而喻,本文主要讲解图的制作与插入. 1.图像的插入 图像可以分为两大类:位图和向量图. 位图:也就是点阵图,使用像素的小方块组成网格来表示图像.每个像素都有自己特定的位置和颜色值.一幅图像的像素数量的大小不变,当放大或缩小时,改变的只是像素尺寸的大小.因此放大或缩小时会出现锯齿现象,造成失真.位图还分为:无损压缩和有损压缩.其中,TIFF.PNG.GIF是无损压缩,JPG是有损压缩. 向量

漫谈程序员系列:3D打印能打印出程序猿吗

首先声明,本文是一本正经的胡扯,绝不是随随便便的胡扯,请您不要随便攻击我胡说八道,我要重复星爷在<喜剧之王>里的台词:其实,我是一本正经的喷子. 3D打印的定义 关于3D打印,下面是来自百度百科的解释: " 3D打印,即快速成型技术的一种,它是一种以数字模型文件为基础,运用粉末状金属或塑料等可粘合材料,通过逐层打印的方式来构造物体的技术.    3D打印通常是采用数字技术材料打印机来实现的.常在模具制造.工业设计等领域被用于制造模型,后逐渐用于一些产品的直接制造,已经有使用这种技术打

【LaTeX排版】LaTeX论文模版

本文是对前面LaTeX论文排版文章的总结.前面的几篇文章是分别从论文的几个方面来讲述LaTeX的排版问题,这里综合了前面的内容,给出了论文排版的模版. 模版的使用: 1.首先建立一个main.tex文件,该文件用于管理论文的整体构架,文件代码为: \documentclass[a4paper,12pt]{book} \usepackage{ctexcap} \usepackage{amsmath} \usepackage{graphicx} \usepackage{fancyhdr} \usep

输入6个人的成绩放入到一个一维数组中,然后打印出平均分,最后按成绩 从大到小打印。三个功能(输入是一个函数,求平均分是一个函数,排序是一个 函数)都用函数实现,最后在main方法中调用。

/*5.输入6个人的成绩放入到一个一维数组中,然后打印出平均分,最后按成绩从大到小打印.三个功能(输入是一个函数,求平均分是一个函数,排序是一个函数)都用函数实现,最后在main方法中调用.*/ #include <stdio.h> int inputScore(){ int score; scanf("%d",&score); return score;} double avg(int scores[],int length){ int i,score = 0;

输入一个维度,逆时针打印出一个指定的矩阵

题目:用户给定一个维度,打印出指定的一个矩阵,例如用户给定10,输出应该如下图所示: 程序如下: #include <stdio.h> #include <malloc.h> int main() { int dimension; int *p; int startx, starty, endx, endy; int i, j, value = 0; printf("Please input dimension:"); scanf("%d",