Parece que no puedo cambiar la fuente en LuaLaTeX usando chemnum como paquete. Me gustaría usar Calibri (no Times New Roman) como es el caso ahora. Aquí está mi código:
\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}
Respuesta1
Tienes que cargar el paquete fontspec
y definir la fuente principal:
\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}
Respuesta2
La respuesta de Herbet es correcta si desea cambiar la fuente predeterminada para todo el documento. Sin embargo, si solo chemnum
desea cambiar las etiquetas producidas por, cargue fontspec
y defina una fuente para usar y coloque su nombre en el formato de las etiquetas compuestas de la siguiente manera:
\usepackage{fontspec}
\newfontface\chemnumface[Scale=MatchUppercase]{Calibri}
\setchemnum{format=\chemnumface}
Sin embargo, también necesitas esto para trabajar con psfrag
y auto-pst-pdf
. Esto requiere cierto cuidado al entrar y salir de paquetes: el archivo principal se ejecuta con lualatex
el que es compatible fontspec
, pero el auto-pst-pdf
que se ejecuta solo con latex
el que no lo hace. Debes cargar en el siguiente orden las ifluatex
pruebas:
\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}
No tengo su benzene.eps
archivo, así que comenté esa línea.