答案1
\titleformat{name=\section, numberless}[runin]{\sffamily\bfseries\Large}{}{0pt}{}
应该或多或少可以完成你想要的未编号部分。
编辑:完整的最小示例代码:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\titleformat{name=\section, numberless}[runin]
{\sffamily\Large\bfseries}{}{0pt}{}
\begin{document}
\section*{Fundings.}Israeli Centers for Research Excellence (I-CORE); Israeli Ministry of Science (712845); Crown Photonic Center.
\section*{Acknowledgements.}We thank Dekel Ra’anan and Ronen Chriki for their fruitful insights and Nitzan Artzi for his help with the learning algorithms.
\end{document}
[![在此处输入图片描述][1]][1]
更新:
查看了 中的代码后optica.cls
,发现它依赖于titlesec
带有选项的包[explicit]
。因此,您可以在序言中尝试此代码
\AtBeginDocument{%
\titleformat{name=\section,numberless}[runin]
{\Large\sffamily\bfseries}
{}
{0pt}
{#1} }%
答案2
谢谢大家的贡献。最后我放弃使用 \section 命令,而是使用以下代码来解决这个问题:
\vspace{\baselineskip}
\noindent\textbf{\LARGE{Fundings.}} test1
\vspace{\baselineskip}
\noindent\textbf{\LARGE{Acknowledgments.}} test2
\vspace{\baselineskip}
我认为对于那些想用 latex 写论文的人来说,实现我在问题中粘贴的样式就足够了,而且没有太多时间浪费在学习 titlesec 包的 24 页手册上。事实上,我花了很多时间阅读那本手册,但仍然没有找到方法。