如何在我的部分宏中插入以应用我的命令\textls
中定义的字距调整?\microtype
\documentclass[12pt]{article}
\usepackage{titlesec}
\usepackage[tracking = true, letterspace = 100]{microtype}
\titleformat{\section}{\fontsize{18pt}{23.4}\selectfont}{}{0em}{}
\begin{document}
\section{Sample Section}
words words words
\end{document}
答案1
的最后一个强制参数\titleformat
可以以单参数宏结束。
\RequirePackage{fix-cm}
\documentclass[12pt]{article}
\usepackage{titlesec}
\usepackage[tracking = true, letterspace = 100]{microtype}
\titleformat{\section}{\fontsize{18pt}{23.4}\selectfont}{}{0em}{\textls}
\begin{document}
\section{Sample Section}
words words words
\end{document}
我添加了fix-cm
以避免出现大量警告。
记住任何将字母空格小写的人都会偷羊。