Latex: IEEEtrans模板下 擴大標題寬度

Wasdns發表於2018-05-01

參考:

Extending side margins for Title section in IEEEtrans document class

Latex: IEEEtrans模板下 擴大標題寬度

通過\parbox關鍵字可以實現擴大標題寬度的目的,例如:

\documentclass[conference]{IEEEtran}

\begin{document}

\author{The author}
\title{\makebox[\linewidth]{\parbox{\dimexpr\textwidth+2cm\relax}{\centering I want to make a title that its length is adjustable and that can span into maximum two lines instead of three now}}}

\maketitle

\end{document} 

呈現如下:

Latex: IEEEtrans模板下 擴大標題寬度

2018.5

相關文章