Skip to content

Commit

Permalink
feat: add a md
Browse files Browse the repository at this point in the history
  • Loading branch information
chgwan committed Dec 27, 2024
1 parent 34582f5 commit 798244a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions _posts/Notes/2024-12-27-LyX-submit-arXiv.md
Original file line number Diff line number Diff line change
@@ -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 <filename>.tex # generate .aux file
bibtex <filename>.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.

0 comments on commit 798244a

Please sign in to comment.