因此,我真正的问题是 overleaf 没有生成词汇表。我怀疑问题出在我有子文件\input{}
。
因此我的问题是:有没有办法让 latex 创建一个.tex
包含所有执行命令的单个文件\input
。然后我可以将这个单个文件输入 overleaf 并进行编译。
好吧。我有一个 MVCE。Overleaf 项目在这里找到:[https://www.overleaf.com/9283383875ffmqsbpqjcnf][1]
您可以看到没有生成任何词汇表。不过一切都差不多正确。
这些文件是:
主文本
\documentclass[a4paper,10pt,titlepage]{report}
\usepackage[utf8]{inputenc}
\include{config}
\begin{document}
\tableofcontents
\input{chapters/0_abstract}
\printglossaries
\end{document}
配置.tex
\usepackage[acronym,toc]{glossaries}
\makeglossaries
\input{acronym}
首字母缩略词.tex
\newacronym{TVLA}{TVLA}{Test Vector Leakage Assessment}
\newacronym{CPA}{CPA}{Correlation Power Analysis}
\newacronym{DPA}{DPA}{Differential Power Analysis}
\newacronym{SCA}{SCA}{Side Channel Analysis}
章节/0_摘要.tex
\chapter{Abstract}
Here goes your abstract. Be concise, introduce context, problem, known approaches, your solution, your findings.
\acrshort{CPA}
\cite{2004_CPA_with_power_model}