我正在尝试制作数学问题集,以便将其分发给学生。标题中有文档的 和 ,\title
但是\author
\date
- 我想再添加两个字段:机构我工作的公司名称为课程
- 作者的名字并不是那么重要,所以我希望它看起来更小一些。
下面我将留下我所拥有的 MWE,任何帮助都将非常感谢。
\documentclass[12pt]{article}
\newenvironment{problem}[2][Problem]{\begin{trivlist}
\item[\hskip \labelsep {\bfseries #1}\hskip \labelsep {\bfseries #2.}]}{\end{trivlist}}
\usepackage{amssymb,
amsmath,
lipsum}
\usepackage{multicol} % to insert columns
\setlength{\columnsep}{5pt}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=cyan,
filecolor=magenta,
urlcolor=blue,
}
\usepackage{parskip} % For no indentation and a bit of space in paragraphs
% to format enumerate to letters
\usepackage[inline]{enumitem} % <-- note the option 'inline'
\begin{document}
\title{Problem Set 2}
\author{Ruben Perez Sanz}
\date{7 September, 2020}
\maketitle
\lipsum
\end{document}
答案1
由于大学和课程没有安排实习,所以我使用了我自己的__https://tex.stackexchange.com/a/429148/197451
\documentclass[12pt]{article}
\newenvironment{problem}[2][Problem]{\begin{trivlist}
\item[\hskip \labelsep {\bfseries #1}\hskip \labelsep {\bfseries #2.}]}
{\end{trivlist}}
\usepackage{amssymb,
amsmath,
lipsum}
\usepackage{multicol} % to insert columns
\setlength{\columnsep}{5pt}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=cyan,
filecolor=magenta,
urlcolor=blue,
}
\usepackage{parskip} % For no indentation and a bit of space in paragraphs
% to format enumerate to letters
\usepackage[inline]{enumitem} % <-- note the option 'inline'
\begin{document}
\title{Problem Set 2}
\author{Ruben Perez Sanz}
\date{{\large University of \LaTeX} \\[2em]
\large Course on Fitment of Title\\[2em]
April 2018}
\maketitle
\lipsum
\end{document}