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 best solutions below
Related Questions in LATEX
- Cannot get the table that I need in latex
- Mathematics not working when converting from LaTeX to docx (through markdown) using pandoc
- Why reflectbox doesn't work when pdflatex is called with the dvips option of graphicx package
- os.path.getsize Invalid syntax error
- How to put square brackets on elements in specific rows of a matrix in R
- How can I get all the `\begin{definition}...\end{definition}` blocks in a LaTeX file?
- Emacs and Skim not in Sync fails to open
- How to change arrow tip in tikz
- pyreport LaTeX formulae not working
- Latex \newcommand in kramdown
- How can I use values and charts in a knitr / LaTeX document before R has calculated them?
- convert string to latex table format in Python
- Unwanted R code echo when compiling PDF with knitr
- Python Regex to Simplify LaTex Fractions
- Python3 LaTex PDF generator using subprocess, Error: memoryview: str object does not have the buffer interface
Related Questions in WORD-WRAP
- How do I wrap text in a pre tag for Internet explorer?
- Word wrap not working on my UILabel
- Wrap text with indent in WPF textBlock
- DOMPDF word-wrap
- Sublime Text line wrap and commit messages
- When trying to get dynamically created UILabel to wrap, text disappears
- How can I wrap text in QGraphicsItem?
- Justify content with pre-wrap
- How can I make a Sharepoint textbox (input, type=text) dynamically Multiline?
- Cython equivalent of c define #define myfunc(node x,...) SetNode(x.getattributeNode(),__VA_ARGS__)
- Wrap text in stretchable tables
- How can I set word wrapping in QToolButton's text?
- span word-wrap in list elements
- WPF Toolbar line wrapping
- Control width of flex items arranged vertically in a flex container
Related Questions in MIKTEX
- object pdflatex not found on Windows 7
- How to configure vim-latex to use portable MiKTeX to compile
- Miktex: enable installing packages on the fly from command line
- Textext (Inkscape), GhostScript and MaTeX (mathematica) compatibility
- NullPointerException with Texlipse and Miktex 2.9
- How to get a list of all available (TTF-) Fonts with XeTeX?
- Trouble compliling miktex 2.8 on ubuntu 11.10
- Issue with Asymptote Execution in LaTeX: "failed to create directory /.asy."
- Proper Instructions to get Asymptote working in MikTeX LaTeX to create inline Graphs
- RuntimeError: latex program is not installed
- miktex (lualatex.exe) fails to run from flask subprocess
- How to solve Failed to run "xelatex .\notebook.tex -quiet" command: notebook.tex:373:?
- Doxygen latex to PDF error: TeX capacity exceeded, sorry [pool size=2851623]
- how to add sub figure on MNRAS LATEX paper?
- Quick Build impossible in TeXmaker : pdflatex -synctex=1 -interaction=nonstopmode %.tex
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)
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?
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.