latex写作各种小技巧

2019-10-10  本文已影响0人  zouxiaoyu

2019-12-10:

今天要将一个acm latex会议模板里的一些自带脚注和版权去掉,发现可以这样:

Add the following lines below the \documentclass line.

\settopmatter{printacmref=false} % Removes citation information below abstract\renewcommand\footnotetextcopyrightpermission[1]{} % removes footnote with conference information in first column\pagestyle{plain} % removes running headers

源自:https://tex.stackexchange.com/questions/346292/how-to-remove-conference-information-from-the-acm-2017-sigconf-template

2019-08-30:


今天碰到一个在BibTex引用作者列表的问题。即,我需要显示一个参考文献的全部author的full name,然后软件默认每次都是除了姓氏外剩余全是首字母简写。。今天在网上发现,只要对authorlist用双层{{}}就可以了。。

就这样:{{author name full list}}

之前只用了一个{}。用两个{{}}在自己mac tex测试好使,特记录一下。

具体好心回答见下文链接:

https://tex.stackexchange.com/questions/10808/using-a-corporate-author-in-the-author-field-of-a-bibliographic-entry-spell


用了{{}}能输出一般的full name后,假设full name里有特殊字符如"&",不特殊处理下,仍然输出不来&。一个解决方案是:在外面加" "同时使用转义,距离如下:-是之前版本,+是正确版本

- author={ISDA, King & Wood Mallesons},

+    author="{{ISDA and King \& Wood Mallesons}}",

上一篇 下一篇

猜你喜欢

热点阅读