热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Doxygen-Latex错误:文件注释。特克斯的没有找到-Doxygen-Latexerror:File`annotated.tex'notfound

IhaveaCprojectIdocumentwithdoxygen.TheHTML-outputlooksok.WhenIgeneratelatexoutpute

I have a C project I document with doxygen. The HTML-output looks ok. When I generate latex output everything seems to work fine at first, too. When I run the "make.bat" generated by doxygen (for compiling the latex output to pdf) I get the error mentioned in the title.

我有一个C项目,我的文档是doxygen。html输出看起来好。当我生产乳胶的时候,一切看起来都很好。当我运行“make”时。由doxygen生成的bat(用于将乳胶输出编译成pdf),我得到了标题中提到的错误。

It always occurs when "Chapter 4" is being processed. Chapter 4 holds the data structure list. In the resulting pdf this chapter is empty. Obviously that's because this "annotated.tex" file is missing.

当“第4章”正在被处理时,它总是发生。第4章是数据结构列表。在结果的pdf中,这一章是空的。很明显,这是因为“注释”。特克斯文件丢失。

What went wrong here? Why is there no content being generated for this chapter? I don't even know where to start looking... Nothing in this regard struck my attention in the doxygen log.

这儿出了什么错呢?为什么这一章没有内容?我甚至不知道从哪里开始找…在这一点上,我没有注意到doxygen日志。

Is there a way to control which chapters with what content doxygen generates for latex at all? Is it somehow connected to the DoxygenLayout.xml file?

有没有一种方法可以控制哪些章节的内容是doxygen生成的乳胶?它是否与DoxygenLayout有关。xml文件吗?

Thanks in advance for any hints.

提前谢谢你的提示。

I use Doxygen version 1.8.9.1 for windows. I guess every C code that declares some sort of data structures can trigger this error. I used this for testing:

我使用Doxygen版本1.8.9.1进行windows操作。我想每一个声明某种数据结构的C代码都会触发这个错误。我用这个做测试:

common.c:

common.c:

/** @file
 * 
 *  Allgemeine Hilfsfunktionen, Implementierung.
 *  Siehe auch common.h
 *
 *  @date Erstellt 08.10.2014 11:24:23
 *  @author Hans Wurst
 */ 

#include "common.h"

/// Array mit den Ziffern 0..F einer Hexadezimalzahl (ASCII).
const char hex_digits[16] PROGMEM = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
/// Versionsstring des Betriebssystems im Flash-Speicher.
const char mcu_version_str[5] PROGMEM = MCU_VERSION_STR;

/** Konvertiere vorzeichenlose 8Bit-Ganzzahl in 2 Zeichen String.
 *
 *  String hat die Form "8F" (für n=8F). Kein abschließendes 0-Byte wird
 *  gesetzt.
 *
 *  @param[in]  n    Vorzeichenlose 8Bit-Ganzzahl
 *  @param[out] dest Zeiger auf String, wo 2 Zeichen Hex-Zahl platziert werden
 *                   soll.
 */
void to_hex_str(const uint8_t n, char *dest) {
// Code
}

common.h:

构成:

/** @file
 *  Allgemeine Hilfsfunktionen.
 *
 *  Siehe auch common.c
 *
 *  @date Erstellt 09.04.2014
 *  @author Hans Wurst
 */
/** @defgroup TEST_GRP
 *  Das ist einfach mal eine Testgruppe mit wenig Zeug...
 */
/// @{ 
#ifndef COMMON_H_
#define COMMON_H_

// **************** Definitionen ****************

/// Versionsstring des Betriebssystems
#define MCU_VERSION_STR "0.01"

/// 24Bit-Pointer-Typ
typedef uint8_t ptr24_t[3];

/// 32Bit dword-Typ mit verschiedenen Zugriffsmöglichkeiten.
union dword {
    uint8_t byte[4];
    uint16_t word[2];
    uint32_t dword;
};
// Ende Definitionen


// **************** Variablendeklarationen ****************
#ifndef __DOXYGEN__
extern const char mcu_version_str[5];
extern const char hex_digits[16];
extern void to_hex_str(const uint8_t n, char *dest);
#endif
/// @}

#endif /* COMMON_H_ */

My doxyfile: http://pastebin.com/ZPqhsYSy It's mostly default stuff...

我的doxyfile: http://pastebin.com/ZPqhsYSy,它主要是默认的东西……

1 个解决方案

#1


0  

I tried to reproduce alberts tests and: The problem indeed didn't show up. The obvious difference is my DoxygenLayout.xml file where I commented out some classes and namespace related stuff thinking "I use good old C, what do I need this for anyways?" The culprit seems to be the block below . When commented out, annotated.tex doesn't get generated, but is still included from some tex file... Certainly something that could be improved in doxygen.

我试图复制alberts测试,但问题确实没有出现。明显的区别是我的DoxygenLayout。在xml文件中,我注释掉了一些类和命名空间相关的东西,认为“我使用的是good old C,我需要它做什么?”罪魁祸首似乎是 <标签类型="类"…… >块下面。注释掉时,注释。tex没有生成,但仍然包含在一些tex文件中……当然可以在doxygen中得到改善。


推荐阅读
  • 第二十五天接口、多态
    1.java是面向对象的语言。设计模式:接口接口类是从java里衍生出来的,不是python原生支持的主要用于继承里多继承抽象类是python原生支持的主要用于继承里的单继承但是接 ... [详细]
  • 开机自启动的几种方式
    0x01快速自启动目录快速启动目录自启动方式源于Windows中的一个目录,这个目录一般叫启动或者Startup。位于该目录下的PE文件会在开机后进行自启动 ... [详细]
  • malloc 是 C 语言中的一个标准库函数,全称为 memory allocation,即动态内存分配。它用于在程序运行时申请一块指定大小的连续内存区域,并返回该区域的起始地址。当无法预先确定内存的具体位置时,可以通过 malloc 动态分配内存。 ... [详细]
  • 2020年9月15日,Oracle正式发布了最新的JDK 15版本。本次更新带来了许多新特性,包括隐藏类、EdDSA签名算法、模式匹配、记录类、封闭类和文本块等。 ... [详细]
  • Spring Data JdbcTemplate 入门指南
    本文将介绍如何使用 Spring JdbcTemplate 进行数据库操作,包括查询和插入数据。我们将通过一个学生表的示例来演示具体步骤。 ... [详细]
  • 我有一个从C项目编译的.o文件,该文件引用了名为init_static_pool ... [详细]
  • 本文介绍了如何在 ASP.NET 中设置 Excel 单元格格式为文本,获取多个单元格区域并作为表头,以及进行单元格合并、赋值、格式设置等操作。 ... [详细]
  • 如果应用程序经常播放密集、急促而又短暂的音效(如游戏音效)那么使用MediaPlayer显得有些不太适合了。因为MediaPlayer存在如下缺点:1)延时时间较长,且资源占用率高 ... [详细]
  • 网站访问全流程解析
    本文详细介绍了从用户在浏览器中输入一个域名(如www.yy.com)到页面完全展示的整个过程,包括DNS解析、TCP连接、请求响应等多个步骤。 ... [详细]
  • [转]doc,ppt,xls文件格式转PDF格式http:blog.csdn.netlee353086articledetails7920355确实好用。需要注意的是#import ... [详细]
  • javascript分页类支持页码格式
    前端时间因为项目需要,要对一个产品下所有的附属图片进行分页显示,没考虑ajax一张张请求,所以干脆一次性全部把图片out,然 ... [详细]
  • 原文网址:https:www.cnblogs.comysoceanp7476379.html目录1、AOP什么?2、需求3、解决办法1:使用静态代理4 ... [详细]
  • 解决Bootstrap DataTable Ajax请求重复问题
    在最近的一个项目中,我们使用了JQuery DataTable进行数据展示,虽然使用起来非常方便,但在测试过程中发现了一个问题:当查询条件改变时,有时查询结果的数据不正确。通过FireBug调试发现,点击搜索按钮时,会发送两次Ajax请求,一次是原条件的请求,一次是新条件的请求。 ... [详细]
  • 大类|电阻器_使用Requests、Etree、BeautifulSoup、Pandas和Path库进行数据抓取与处理 | 将指定区域内容保存为HTML和Excel格式
    大类|电阻器_使用Requests、Etree、BeautifulSoup、Pandas和Path库进行数据抓取与处理 | 将指定区域内容保存为HTML和Excel格式 ... [详细]
  • DVWA学习笔记系列:深入理解CSRF攻击机制
    DVWA学习笔记系列:深入理解CSRF攻击机制 ... [详细]
author-avatar
qqjayzhe
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有