From 798244af55b2c0ff86e0213b98b0b3c55dfb3b70 Mon Sep 17 00:00:00 2001 From: chgwan Date: Fri, 27 Dec 2024 19:05:54 +0800 Subject: [PATCH] feat: add a md --- _posts/Notes/2024-12-27-LyX-submit-arXiv.md | 25 +++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 _posts/Notes/2024-12-27-LyX-submit-arXiv.md diff --git a/_posts/Notes/2024-12-27-LyX-submit-arXiv.md b/_posts/Notes/2024-12-27-LyX-submit-arXiv.md new file mode 100644 index 00000000000..acbddf1cd52 --- /dev/null +++ b/_posts/Notes/2024-12-27-LyX-submit-arXiv.md @@ -0,0 +1,25 @@ +--- +title: Submit LyX file to arXiv +author: cotes +date: 2019-08-08 14:10:00 +0800 +categories: [Notes, Tex] +tags: [tex] +render_with_liquid: false +--- +## Submit lyx file to arXiv +### Procedure +1. LyX --> File --> Export --> LaTex(pdflatex) +2. compile `.tex` file + ```bash + pdflatex .tex # generate .aux file + bibtex .aux # generate .bbl file + ``` +3. Upload `.aux` and `.bbl` file: + The multi-layer path needs to be modified into a single layer like below: + + `begin{figure}includegraphics[width=0.45\textwidth]{Images/77873}\includegraphics[width=0.45\textwidth]{Images/78461}` + to: + `begin{figure}includegraphics[width=0.45\textwidth]{Images/77873}\includegraphics[width=0.45\textwidth]{78461}` +### Notes +- For using non-standard templates such as IOP, nature templates, etc. you need to include the template file. +- If you modify the tex file, it is best to delete all auxiliary files and upload it again. \ No newline at end of file