I'm using miktex 2.8 on Windows. For some reason, the \marginpar command has stopped working. It used to work as expected, but not the lines will not wrap. I have set marginparwidth to 1in and still the lines will not wrap, they just go right off the page (or right into the text for margin pars on the odd pages). If I change marginparwidth to something smaller, I see the text move, so I think the value is being recognized, but I can't figure out what changed so that the text is not wrapping.
Why won't \marginpar wrap it's text?
1k views Asked by cheshirekow At
1
There are 1 answers
Related Questions in LATEX
- How to begin a new equation
- i need help coding a research paper in overleaf (LaTex)
- Using cjoint to produce tables in LaTeX
- Custom hover documentation for Latex command in VS code with Latex Workshop extension
- How to align two paragraph in LateX
- How to enter external pdf into quarto book while keeping page layout+numbering
- latex float caption first letter capital, rest lower case
- Latex overleaf error that I can't seem to solve
- I have a horizontal line drawn in the header of the last page of the list of tables in my document, how can I remove it?
- ParseError: KaTeX parse error: No such environment: tikzpicture
- R - pander not passing use.hyphening = TRUE parameter
- Interactive Checkbox in Latex with strike-through
- R Markdown and Latex preamble; how do I get non-evaluated code blocks and evaluated code blocks to look the same?
- Source code is not foldable in Rmd using a LaTeX "awesomeblock"?
- How to make pythontex see PYTHONPATH
Related Questions in WORD-WRAP
- How can I make text wrap around to the same line in a div?
- Setting wordwrap width in a Textbox VB Dot Net Visual Basic
- Nvim with prose: how to set up proper `autoformat` line-wrapping
- Automatic word spacing to fit line CSS
- General text wrap program in C
- How to wrap a tikzpicture?
- Break/wrap long text of column names in Pandas dataframe plain text to_string output?
- Configure HTML element to behave like text character
- Word-wrap issue
- the text value doesn't fit in the button
- Why is the wrap=hard attribute not functioning as expected in a textarea element?
- Format text that is splitted accross span that aren't on the same level
- css "word break" is not working when I use Korean
- Automatic and manual text wrapping in Java
- Wow slider thumbnails wrapping
Related Questions in MIKTEX
- LaTeX, MiKTeX, using variables
- Pyplot doesn't compile LaTeX code at all, although it knows a valid MikTeX installation
- Problem compiling .tex file with TextStudio in windows 10
- Latex in Matplotlib with Anaconda: RuntimeError: Failed to process string with tex because latex could not be found
- Proper Instructions to get Asymptote working in MikTeX LaTeX to create inline Graphs
- Issue with Asymptote Execution in LaTeX: "failed to create directory /.asy."
- Using Sympy and Miktex with Spyder?
- Getting error while knitting. output generated in log file but not able to convert into pdf
- Problems trying to compile
- How to hide the Miktex prompt when making a pdf from app?
- Sorry, but "MiKTeX Compiler Driver" did not succeed. FATAL texify.core - TeX engine failed for some reason (see log file)
- MiKteX not working when running from a compiled standalone(exe) app (INNOSETUP)
- How to tell Manim to write LaTeX using MikTeX instead TinyTeX?
- How to resolve RuntimeError: Failed to process string with tex because latex could not be found
- Latex not working after conversion using pandoc from .md to .tex
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
So the problem was \usepackage{pdfsync}. Evidently this is the old way to do PDF synchronization. The new way is to add "-synctex=-1" to the command for pdfTex. Using the synctex switch for pdflatex does not screw with the marginpar command, but using the pdfsync package does. Weird.