如何设置主标题和副标题?

如何设置主标题和副标题?

最近在翻译一篇有主标题和副标题的外文论文。

我的试用:

\documentclass[UTF8]{ctexart}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{inputenc}
\usepackage{geometry} 
\geometry{left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm}
\begin{document}
\title{
 Simulatin Modelling Practice and Theoty \\ 
\begin{large} 
  Common Simulation of a SCARA robot with PD and learning controller
\end{large} }

\end{document}

然而,它并没有达到这样的效果。主标题是仿真建模实践与理论,副标题是“使用 PD 和学习控制器模拟 SCARA 机器人”。所以我的问题是如何改变它?

答案1

\large如果我使用它来代替不存在的环境,则没有问题large

\documentclass[UTF8]{ctexart}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{inputenc}
\usepackage{geometry}
\geometry{left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm}
\begin{document}

\title{%
  Simulating Modelling Practice and Theory \\
  \large Common Simulation of a SCARA robot \\
    with PD and learning controller}

\author{Shutao Tang}

\maketitle

\end{document}

在此处输入图片描述

答案2

我尝试了课堂文章,效果很好。

代码在这里..

\documentclass[UTF8]{article}
\begin{document}

\title{%
  Simulating Modelling Practice and Theory \\
  \large Common Simulation of a SCARA robot \\
    with PD and learning controller}

\author{Shutao Tang}

\maketitle

\end{document}

在此处输入图片描述

相关内容