附錄也是論文的一個組成部分,雖然不會放在正文中,但有時也是不可缺少的。通常是將有重要參考價值的內容,編入到論文附錄中,比如過長的公式推導、圖表及其說明等。因此對于論文附錄的正確格式,也是需要大家注意的,下面就這一問題介紹一下。

附錄一般是放在論文末尾處,在所要解釋說明的原文部分會標注“XXX詳見附錄1”的樣式。具體格式要求:“附錄”二字三號黑體居中,兩字中間空一格,下空一行是附錄題目(四號黑體居中),下空一行是附錄內容(小四號宋體)。若有多項附錄,可按順序附錄1、附錄2、附錄3……編號。
論文附錄參考范例:
附錄A:英文原文
英文出處:網址
Writing a Linux device driver can be a complex undertaking, the details of which cannot fully covered in a 45 minute presentation. However, I'm going to pass over some of the higher level details of writing device drivers and refer readers to the excellent reference materials already available.
Instead, this document will focus on aspects of writing device drivers for non-standard hardware, exploring the hardware APIs, with examples taken from the work done adding device driver support for the Cirrus Logic EP9312 System On Chip Embedded Platform.If some aspect of writing a device driver is not covered in this document, the next option is to review the code of similar device drivers to see how the issue is handled in that implementation. In most cases the issue at hand has been encountered previously.
Another option, and one used by most device driver developers, is to review the archives of,or post an inquiry to one of the linux-kernel mailing lists or a list specific to the type of device driver being developed.
……
附錄B:中文譯文
寫一本Linux設備驅動可以是一件復雜的事情,詳細的情況也不能在45分鐘的陳述中完全包括。然而,我要越過一些設備驅動程序的高層次的細節和讀者已有的很好可用的參考資料。
相反,這分文檔將集中描寫非標準硬件的設備驅動程序,研究了硬件的API,并采用基于 Cirrus Logic EP9312芯片的嵌入式平臺的已經添加完成的設備驅動程序舉例說明。
如果其中一個設備驅動程序的某些方面沒有包含在這個文檔中,可以在下一節查看類似的設備驅動程序是如何處理這種情況的。在大多數情況下,手頭的問題在之前已經遇到過,另一種被大多數設備驅動程序開發人員選擇的是查看相應文檔,通過郵件向linux內核開發人員或特定設備驅動程序的開發者詢問。
……
附錄C:××源代碼
××源程序:
main.cpp
#include
#include “myWidget.h”
#include “checkout.h”
#include “income.h”
bool createConnection()
{
QSqlDatabase db=QSqlDatabase::addDatabase(“QSQLITE”);
db.setDatabaseName(“house.db”);
if(!db.open()){
QMessageBox::warning(0,QObject::tr(“數據庫鏈接失敗”),db.lastError()。text());
……
return false;
}
return true;
}
……