宏定义
宏定义中常见的错误是重新定义:\renewcommand{\c}{\bm{c}}。由于\c宏定义重复,一般我们采用以下形式:\renewcommand{\smallc}{\bm{c}}
例如在参考文献bibtex中引用Açikmeşe论文就会冲突:
@article{Danylo2023,
author = {Malyuta, Danylo and A{\c{c}}{.{\i}}kme{\c{s}}e, Beh{\c{c}}et},
title = {Fast Homotopy for Spacecraft Rendezvous Trajectory Optimization with Discrete Logic},
journal = {Journal of Guidance, Control, and Dynamics},
volume = {46},
number = {7},
pages = {1262-1279},
year = {2023},
doi = {10.2514/1.G006295}
}
表格
对于AIAA论文,表格要求头部和尾部为双横线,且没有竖线:
参考Latex代码
begin{table*}[htb!]
\caption{ Initial and terminal conditions in Example 2}
\centering
\newcommand{\tabincell}[2]{\begin{tabular}{@{}#1@{}}#2\end{tabular}}
\begin{tabular}{llll}
\hline
\hline
Initial state & Value & Terminal state & Value\\
\hline
P_0 (km) & 11623 & P_f (km) & 42165\\
e_{x_0} & 0.75 & e_{x_f} & 0.0 \\
e_{y_0} & 0.0 & e_{y_f} & 0.0\\
h_{x_0} & 0.0612 & ht_{x_f} & 0.0\\
h_{y_0} & 0.0 & h_{y_f} & 0.0\\
L_0 (rad) & \pi & L_f(rad) & free\\
m_0 (kg) & 1500 & m_f(kg) & free\\
\hline
\hline
\end{tabular}
\label{TAB:example1_orbit}
\end{table*}