Skip to content

Commit

Permalink
Update README.md regarding issue #2
Browse files Browse the repository at this point in the history
  • Loading branch information
KuanYuChang authored Jul 17, 2023
1 parent 87ce5a2 commit 8c0f36b
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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)
- [國立清華大學-圖書館-博碩士論文下載區](https://www.lib.nthu.edu.tw/ETD/downloads/downloads.htm)

0 comments on commit 8c0f36b

Please sign in to comment.