-
Notifications
You must be signed in to change notification settings - Fork 0
/
prompt_update.txt
22 lines (19 loc) · 2.39 KB
/
prompt_update.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Based on the paper above, we have the slide version written in beamer. I want you to read the paper and beamer code, and provide a revised version of it. Pay attention to the following:
- If you find any bugs or errors, fix it. Pay attention to syntax issues.
- Does the paper include a figure that explains the main ideas of the proposed method? If the paper has one, it would be a good idea to also have it in the slides.
- If the beamer code uses any figures, is the path correct? Make sure the path, file name, and file extension are equivalent to the information in the paper. For example, if the paper is using `figures/image.png`, we should also use that in our beamer code rather than `image.png`. Similarly, if the paper is using `image.png`, we should also use `image.png` rather than `figures/image.png`. For your information, the original paper uses PLACEHOLDER_FOR_FIGURE_PATHS for figures. Be extra careful with the file names since you tend to make mistakes.
- The beamer slides are 16:9 aspect ratio. If you think an equation is too long, we can add new lines to the equation. If it is a very complicated equation, consider removing the equation and try to explain it with natural language. If you think the table might not fit, consider making the font size smaller for the table.
- Make sure escape characters are used with a backslash. For example, if you are using ampersand as a regular character, you need to escape it unless you are using it with a special meaning (e.g., using it in alignment in tables and arrays.)
- If commands such as `\cite` or `\bibliography` are used for citation, remove them. We do not have a bib file.
- If there is a figure in a frame, DON'T use any text other than the caption of the figure. So this means we shouldn't have `itemize` or even a title in a frame with a figure. Having a one-sentence caption is encouraged. Furthermore, use only up to one figure per a frame. An example of using a figure:
```latex
\begin{frame}{}
\begin{figure}
\centering
\includegraphics[width=0.75\textwidth,height=0.75\textheight,keepaspectratio]{FIGURE_PATH}
\caption{Performance trade-off vs. cost.}
\end{figure}
\end{frame}
```
Always use this specific setup: `[width=0.75\textwidth,height=0.75\textheight,keepaspectratio]` for `includegraphics`.
Now provide the latex source code: start with ```latex, provide latex code, and then end with ```. Provide the full latex source code at once.