Skip to content

Add a known parser issue to the documentation #3470

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions Writerside/topics/Troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,29 @@ But the only reason this is valid LaTeX at all is the `\if`, and whether we need

```

A similar example is using the `before` and `after` parameters of `setlist`,

<!-- ```latex -->
```
\newlist{myitemize}{itemize}{1}
\setlist[myitemize]{label=\textbullet, nosep, left=0pt,
before={\begin{minipage}[t]{\hsize}},
after ={\end{minipage}} }
```

In this case, it may be rewritten to something that can be parsed by TeXiFy, for example,

<!-- ```latex -->
```
\newlist{nosepitemize}{itemize}{1}
\setlist[nosepitemize]{label=\textbullet, nosep, left=0pt}
\newenvironment{myitemize}{
\begin{minipage}[t]{\hsize} \begin{nosepitemize}
}{
\end{nosepitemize} \end{minipage}
}
```

## Pasting images and tables into LaTeX

If you drag and drop an image file into a LaTeX file, or paste an image or table from your clipboard, TeXiFy will start a wizard to help you inserting the image or table into your document.
Expand Down