在article中,怎么将作者之间的and删掉?
latex吧
全部回复
仅看楼主
level 1
℃iudad 楼主
如图代码。作者会显示abd,def,and ghi. 请问如何将and删掉?把已经引用的宏包也一并截图了。
2019年10月27日 19点10分 1
level 6
看了一下那个宏包的文档。在导言里加入以下语句:
\renewcommand{\Authand}{, }
2019年10月28日 22点10分 2
谢谢,搞定了!
2019年10月28日 23点10分
@℃iudad 您好,我添加了这句话还是没有效果
2020年10月13日 03点10分
@℃iudad 我的是\documentclass[conference]{IEEEtran}
2020年10月13日 03点10分
@℃iudad 请问您是怎么搞定的?
2021年04月14日 01点04分
level 1
\renewcommand\Authands{ , }
旧回答第二个单词少了个s
2022年10月12日 09点10分 3
没错!!!
2022年11月07日 01点11分
@smilexyy88 要在哪里导入啊?
2023年10月30日 07点10分
@BTHL丶 导言里,就是\begin{document}的前面,放在\usepackage{}那一堆里就行
2024年01月15日 07点01分
非常感谢! 完美解决!
2025年03月27日 03点03分
level 1
艾思唯尔的咋整?
2024年08月06日 03点08分 4
level 1
前面几楼的方法,我在ELSEVIER 的CAS-DC的模板中没效果。捣鼓了一个下午终于找到了一个方法:
1.找到模板中的cas-common.sty文件。
2.在文件中搜索如下\stmauthors { } 部分。
3.将改代码块的
\seq_use:cnnn { g_stm_au\int_use:N\g_stm_augr_int _seq }
{ ,~ } { ,~ } { ~and~ }
改为
\seq_use:cnnn { g_stm_au\int_use:N\g_stm_augr_int _seq }
{ ,~ } { ,~ } { ,~ }
最后修改完,改代码快如下[真棒]
\NewDocumentCommand \stmauthors { }
{
\group_begin:
\stmAuthorSetup { type = authors }
\l_stm_au_setup_tl
\par \vskip\l_stm_augroup_before_dim
\l_stm_augroup_align_tl
\l_stm_augroup_size_tl
\l_stm_augroup_shape_tl
\l_stm_augroup_weight_tl
\color{ \l_stm_augroup_color_tl }
\bool_if:NTF \g_stm_augr_bool
{ \seq_use:Nn \g_stm_augr_seq { \par } }
{
\seq_use:cnnn { g_stm_au\int_use:N\g_stm_augr_int _seq }
{ ,~ } { ,~ } { ,~ }
}
\par\vskip\l_stm_augroup_after_dim
\group_end:
}
2025年06月08日 12点06分 5
[真棒]
2025年09月04日 06点09分
[真棒]
2026年01月01日 03点01分
1