Похоже, я не могу изменить шрифт в LuaLaTeX, используя chemnum как пакет. Я хотел бы использовать Calibri (не Times New Roman), как сейчас. Вот мой код:
\documentclass[12pt]{report}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
\usepackage{fancyhdr}
\usepackage{achemso}
\usepackage{chemnum}
\usepackage{psfrag}
\usepackage[crop=off]{auto-pst-pdf}
\usepackage{graphicx}
\usepackage{wrapfig}
\linespread{1.3}%1.5 line spacing
\begin{document}
\tableofcontents
\chapter{This is your chapter title}
\section{This is your section title}
\subsection{Here is an example}
\begin{wrapfigure}{l}{0.35\textwidth}
\vspace{-20pt} % removes 'white-space'
\begin{center}
\cmpdref{benzene} % replaces TMP1
\includegraphics{images/benzene.eps}
\end{center}
\vspace{-20pt}
\end{wrapfigure}
Add any text here and use \refcmpd{benzene} to refer to the compound. This way if you add a new figure in front of this one the numbering will automatically be changed. \\
Not totally sure if .eps is require or if only benzene would be sufficient.\\
Note: you need lualatex --shell-escape -synctex=1 -interaction=nonstopmode %.tex in the configure texmaker for the lualatex.
\end{document}
решение1
Вам необходимо загрузить пакет fontspec
и определить основной шрифт:
\documentclass[12pt]{report}
\usepackage{achemso}
\usepackage{chemnum}
\usepackage{fontspec}
\setmainfont{Calibri}
\begin{document}
Add any text here and use to refer to the compound. This way if you add a new figure
in front of this one the numbering will automatically be changed.
Not totally sure if .eps is require or if only benzene would be sufficient.
\end{document}
решение2
Ответ Herbet верен, если вы хотите изменить шрифт по умолчанию для всего документа. Однако, если вы хотите chemnum
изменить только метки, созданные этим, то загрузите fontspec
и определите шрифт для использования и поместите его имя в формат для составных меток следующим образом:
\usepackage{fontspec}
\newfontface\chemnumface[Scale=MatchUppercase]{Calibri}
\setchemnum{format=\chemnumface}
Однако вам также нужно это для работы с psfrag
и auto-pst-pdf
. Это требует некоторой осторожности при включении и выключении пакетов: основной файл запускается с lualatex
which поддерживает, fontspec
а auto-pst-pdf
запускается только с latex
which не поддерживает. Вам следует загружать в следующем порядке с ifluatex
тестами:
\usepackage{ifluatex}
\ifluatex
\usepackage{fontspec}
\newfontface\chemnumface[Scale=MatchUppercase]{Calibri}
\setchemnum{format=\chemnumface}
\else
\usepackage{psfrag}
\fi
\usepackage[crop=off]{auto-pst-pdf}
\documentclass[12pt]{report}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm]{geometry}
\usepackage{fancyhdr}
\usepackage{achemso}
\usepackage{chemnum}
\usepackage{ifluatex}
\ifluatex
\usepackage{fontspec}
\newfontface\chemnumface[Scale=MatchUppercase]{Calibri}
\setchemnum{format=\chemnumface}
\else
\usepackage{psfrag}
\fi
\usepackage[crop=off]{auto-pst-pdf}
\usepackage{graphicx}
\usepackage{wrapfig}
\linespread{1.3}%1.5 line spacing
\begin{document}
\begin{wrapfigure}{l}{0.35\textwidth}
\centering
\replacecmpd{benzene} % replaces TMP1
%\includegraphics{benzene.eps}
\end{wrapfigure}
Add any text here and use \refcmpd{benzene} to refer to the
compound. This way if you add a new figure in front of this one the
numbering will automatically be changed. Here is another compound
\cmpd{xx.one}
\end{document}
У меня нет вашего benzene.eps
файла, поэтому я закомментировал эту строку.