如何调整节宏中的字距

如何调整节宏中的字距

如何在我的部分宏中插入以应用我的命令\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以避免出现大量警告。

在此处输入图片描述

记住任何将字母空格小写的人都会偷羊

相关内容