From 8c0f36bb964de9eb1370cd65e7b310a08c959c64 Mon Sep 17 00:00:00 2001 From: Kuan-Yu Date: Mon, 17 Jul 2023 20:04:01 +0800 Subject: [PATCH] Update README.md regarding issue #2 https://github.com/elsa-lab/NTHUthesis/issues/2 --- README.md | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 73162de..50e86e3 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,9 @@ This is a template for typesetting the cover without watermarking. One can acces This is a template for typesetting the abstract of the main manuscript. One can access the output of this template through `exmaples/thesis_abstracts.pdf`. -## Known Issue +## Known Issues + +### Compilation Failed with `microtype` The following two lines would cause compilation to fail when the package `microtype` is used. @@ -99,9 +101,34 @@ Please comment out them from `NTHUthesis.cls` and manually add them after `\begi \end{document} ``` +### Adjusting Watermark Opacity + +Please note that the watermark opacity is set to 100% in [博碩士論文上傳說明](https://www.lib.nthu.edu.tw/ETD/downloads/upload.pdf). However, without reducing its opacity, the watermark may be indistinguishable from the foreground text and thus impede reading. After the discussion in the closed issue https://github.com/elsa-lab/NTHUthesis/issues/2, we decided to leave the customization effort to the user who thinks reducing opacity is necessary. One possible modification can be done in `NTHUthesis.cls` as follows. + +*Origin*: +```latex +% Watermark of NTHU +\ifdefined \nowatermark \else + \RequirePackage{draftwatermark} + \SetWatermarkAngle{0} + \SetWatermarkText{\includegraphics[width=.5\paperwidth]{nthu-logo.pdf}} +\fi +``` + +*Modification*: +```latex +% Watermark of NTHU +\ifdefined \nowatermark \else + \RequirePackage{draftwatermark} + \RequirePackage{transparent} + \SetWatermarkAngle{0} + \SetWatermarkText{\transparent{0.5}\includegraphics[width=.5\paperwidth]{nthu-logo.pdf}} +\fi +``` + ## Reference - [View this project on Overleaf](https://www.overleaf.com/latex/templates/national-tsing-hua-university-nthu-thesis-template/yqdhswpwsqrd) - [View this project on ELSA LaTeX](https://elsa-latex.cs.nthu.edu.tw/read/zqsbsnzfrznr) - [國立清華大學-教務註冊組-碩博士畢業相關規定](http://registra.site.nthu.edu.tw/p/404-1211-5155.php?Lang=zh-tw) -- [國立清華大學-圖書館-博碩士論文下載區](https://www.lib.nthu.edu.tw/ETD/downloads/downloads.htm) \ No newline at end of file +- [國立清華大學-圖書館-博碩士論文下載區](https://www.lib.nthu.edu.tw/ETD/downloads/downloads.htm)