我如何在文件中为标题部分创建自定义块.tex
?我的意思是除了\author
\date
。例如,我需要在文章标题前面添加 UDC(通用十进制代码)数字。我该怎么做?(我知道我可以编写类,但我不能这样做吗?)
代码片段:
\documentclass[14pt,letterpaper]{article}
\usepackage[T2A]{fontenc}
\usepackage{mathptmx}
\usepackage[russian,english]{babel}
\usepackage{hyphenat}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
...
\title {\textbf{The article title}}
\author[]{Author 1.}
\author[]{name}
\affil[*]{company name}
\affil[2]{university}
\date{}
答案1
实际上我知道如何去做...我正在编写新的类并在其中添加 \newcommand,其中包含我需要的字段,如 UDC、DOI 等。我只是希望有人知道如何在一个 .tex 文件中制作带有附加块且不包含类的自定义标题...