일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- GSL
- Matplotlib
- vim
- virtual
- MAC
- intel compiler
- HFS+
- gfortran
- arXiver
- c++
- mpi4py
- vi
- hyperref
- openmp
- HDF5
- h5py
- SSH
- Windows
- datascience
- jupyter
- Visual Studio
- cython
- python
- conda
- cygwin
- polyglot
- Anaconda
- portforwarding
- LaTeX
- tab space
- Today
- Total
Astro Coke
[Latex] pdflatex occasionally conflicts with hyperlink breaking 본문
[Latex] pdflatex occasionally conflicts with hyperlink breaking
astrodoo 2020. 8. 16. 06:13source: https://charly-lersteau.com/posts/2019-12-26-latex-hyperref-error-pdfendlink/
The following error message is due to a hyperlink breaking across two pages[1].
pdfTeX error (ext4): \pdfendlink ended up in different nesting level than \pdfstartlink.
\AtBegShi@Output ...ipout \box \AtBeginShipoutBox
Since pdflatex cannot deal with it, a suggested method is to identify the breaking hyperlink and edit the document to avoid it. In the meantime, to continue working on your document without error messages, you can configure hyperref in the preamble:
\hypersetup{draft}
However this will also disable hyperlinks. The best solution I found[2][3][4] is to add this code in your preamble:
\usepackage{etoolbox}
\makeatletter
\patchcmd\@combinedblfloats{\box\@outputbox}{\unvbox\@outputbox}{}{%
\errmessage{\noexpand\@combinedblfloats could not be patched}%
}%
\makeatother
If this still didn't solve the problem, you can have a look at the references at the bottom of this page.
-
Overleaf: What does "\pdfendlink ended up in different nesting level than \pdfstartlink" mean? ↩︎
-
Github: top float in two column mode leads to nesting error for links ↩︎
-
StackExchange: \pdfendlink ended up in different nesting level than \pdfstartlink ↩︎
-
StackExchange: ‘\pdfendlink ended up in different nesting level than \pdfstartlink’ error with current version of hyperref ↩︎
'Computer Setup' 카테고리의 다른 글
[Git] git merge between master and branches (0) | 2020.10.12 |
---|---|
[Jekyll] Dependency errors when gem bundles are updated (0) | 2020.08.21 |
[Windows] Python setup for Sub-Users (0) | 2020.07.29 |
[Conda] Add Virtual Environment to Jupyter Notebook (0) | 2020.06.12 |
[Conda] Create Virtual Environments for python with conda (0) | 2020.06.12 |