---
title: LaTeX Writing Tips
date: 2025-07-17T03:45:56.000Z
updated: 2026-03-25T19:36:15.739Z
tags:
  - writing-style
url: https://baku89.com/LaTeX_Writing_Tips
---

# LaTeX Writing Tips

- [アカデミックヤクザにキレられないためのLaTeX論文執筆メソッド #LaTeX - Qiita](https://qiita.com/suigin/items/10960e516f2d44f6b6de)

* [LaTeX](/LaTeX)のメモ

- Split the files into abstract,body, and appendix, and import them by `\input{1_body}`

* For **the submission of highlited PDF**, you can use the snippets shown below:

```
% === Revision highlighting ===
\definecolor{highlightyellow}{RGB}{255,255,120}

\newif\ifrevision
\revisionfalse

\ifrevision
  \sethlcolor{highlightyellow}
  \newcommand{\revadd}[1]{\hl{#1}}
\else
  \newcommand{\revadd}[1]{#1}
\fi
```

- and you can switch highlighted and normal versions by toggling betwen `\revisiontrue` and `\revisionfalse`
