我正在尝试制作一个乳胶模板,供我和实验室中的其他人重复使用。模板参考是一份 word 文档。我已经使用 asme2e 类完成了大部分工作,但在作者块方面遇到了麻烦。
这是目标:
我尝试使用 authblk 来执行此操作,但 authblk 无法加载。我收到一条错误:
authblk.sty:113: Undefined control sequence. [\xdef\AB@author{\noexpand\AB@blk@and\@author]
因此,我尝试不使用 authblk 来实现这一点,但解决方案尽可能简单,以便其他人(以及一年后的我自己)可以使用它。其他人可能有超过或少于 3 位作者。
例如,我不想滥用标题这里。
这是包含我的序言的一些代码。
\documentclass[twocolumn,10pt]{asme2e}
\bibliographystyle{asmems4}
\usepackage{epsfig,graphics,amssymb,amsmath,graphicx,indentfirst,subfig,float}
\usepackage{expl3}
\ExplSyntaxOn
\cs_new_eq:NN \Repeat \prg_replicate:nn
\ExplSyntaxOff
\usepackage{titlesec}
\titleformat{\section}
{\bfseries\MakeUppercase}{\thesection}{1em}{}
\papernum{XXXXX-XXXXX}
\title{Your Title Here}
\conffullname{Proceeding of the ASME Super Awesome Conference}
\confdate{xx-xx}
\confmonth{XXXX}
\confyear{XXX}
\confcity{city, state}
\confcountry{country}
%%%
%AUTHOR STUFF WOULD GO HERE....
%%%
\begin{document}
\maketitle
\section*{Introduction}
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
\end{document}
谢谢!