moorepants / dissertation

Source for my 2012 UCD dissertation "Human Control of a Bicycle"
http://moorepants.github.io/dissertation/
Other
19 stars 5 forks source link

PluginNotFound: plugin pybtex.style.formatting.alpha not found #1

Closed certik closed 12 years ago

certik commented 12 years ago

I am getting PluginNotFound: plugin pybtex.style.formatting.alpha not found, any ideas how to install it? I've installed sphinxcontrib-bibtex which installed pybtex.

Qsnake: ondrej@hawk:~/repos/dissertation(master)$ make html
sphinx-build -b html -d _build/doctrees   . _build/html
Running Sphinx v1.1
loading pickled environment... not yet created
building [html]: targets for 16 source files that are out of date
updating environment: 16 added, 0 changed, 0 removed
WARNING: could not open bibtex file /home/ondrej/repos/dissertation/data/bicycle.bib.

Exception occurred:
  File "build/bdist.linux-x86_64/egg/pybtex/plugin/__init__.py", line 161, in find_plugin
    raise PluginNotFound(plugin_group, name, filename)
PluginNotFound: plugin pybtex.style.formatting.alpha not found
The full traceback has been saved in /tmp/sphinx-err-P3XUTN.log, if you want to report the issue to the developers.
Please also report this if it was a user error, so that a better error message can be provided next time.
Either send bugs to the mailing list at <http://groups.google.com/group/sphinx-dev/>,
or report them in the tracker at <http://bitbucket.org/birkenfeld/sphinx/issues/>. Thanks!
make: *** [html] Error 1
moorepants commented 12 years ago

Yes, you will need to have these two branches from pybtex (https://code.launchpad.net/~ero-sennin/pybtex/trunk/+activereviews)

Download the latest pybtex source and then merge in these two branches:

lp:~matthias-troffaes/pybtex/label-alpha ⇒ lp:pybtex lp:~matthias-troffaes/pybtex/sorting-bugfix ⇒ lp:pybtex

moorepants commented 12 years ago

Another option is to change the :style: alpha directive option in the zreferences.rst file to :style: unsrt.

certik commented 12 years ago

I see. Since I don't use bzr, here is how to do it:

bzr branch lp:pybtex
cd pybtex
bzr merge lp:~matthias-troffaes/pybtex/label-alpha
bzr commit
bzr merge lp:~matthias-troffaes/pybtex/sorting-bugfix
bzr commit

I installed it. Now I am getting:

WARNING: could not open bibtex file /home/ondrej/repos/dissertation/data/bicycle.bib.

Exception occurred:
  File "build/bdist.linux-x86_64/egg/pybtex/style/labels/alpha.py", line 25, in <module>
ImportError: cannot import name Counter
certik commented 12 years ago

Applying the patch as you suggested:

diff --git a/zreferences.rst b/zreferences.rst
index 310c203..d6ff718 100644
--- a/zreferences.rst
+++ b/zreferences.rst
@@ -3,4 +3,4 @@ References

 .. bibliography:: data/bicycle.bib
    :encoding: latex+utf8
-   :style: alpha
+   :style: unsrt

Allows to build the html, but it is missing all references. Here is the full log: https://gist.github.com/3506923, maybe you recognize some problem there?

moorepants commented 12 years ago

I didn't include the bib file because I use a common bib file for all of my papers. I created a symlink to it in the data directory. For now the just place this bib file in the data directory (create it if it isn't there). Here it is:

https://gist.github.com/3506942

I'll think about the best way to include this. I guess I could include it as a static file in the repo.

moorepants commented 12 years ago

@certik I'm going to hit the hay (East coast time zone right now). I think the next problem you'll have is not having the figures. Check my suggestions in the README about simply downloading: http://mae.ucdavis.edu/~biosport/jkm/dissertation/dissertation-data.tar.bz2 with the pre-generated figures and such. That's the easy way to handle things right now as generating everything will take a long time.

Thanks for trying this out, I'm already realizing that I need much more work to make this build with no hiccups. I'll check back in the morning to see if you have other issues.

certik commented 12 years ago

I think you should simply commit everything needed to easily build it. It's ok that you can also generate it from sources (reproducibility).

Here is how to fix the bibtex and tables/figs issue:

wget http://mae.ucdavis.edu/~biosport/jkm/dissertation/dissertation-data.tar.bz2
tar xjf dissertation-data.tar.bz2
cd data
rm bicycle.bib
wget https://raw.github.com/gist/3506942/73904ec9abaf7f7d6b3cb40b0123bcdfe456f532/bicycle.bib

Alternatively, just post the exact instructions (copy mine above for example) into the Readme. That's enough too.

Here is my current log: https://gist.github.com/3507141, still a lot of errors. In particular, the figures are still missing. I don't know why...

moorepants commented 12 years ago

@certik I've updated the README with a build section and exact instructions. The separate download of the bicycle.bib file is not needed now and the figures and tables are now included in the dissertation-data download. I've tested the instructions in a clean virtualenv on my system and all seems to work out just fine. I think it should all work now. Thanks for your help, having someone else struggle through my mess of code is super helpful.

certik commented 12 years ago

As of 6d4425431edb1c0d2afb02c37e035eb471a0d237 and following the README I am still hitting the problem:

$ make html
[...]
Exception occurred:
  File "build/bdist.linux-x86_64/egg/pybtex/style/labels/alpha.py", line 25, in <module>
ImportError: cannot import name Counter
The full traceback has been saved in /tmp/sphinx-err-SRGTPO.log, if you want to report the issue to the developers.

Which gets resolved by the patch:

diff --git a/zreferences.rst b/zreferences.rst
index 310c203..d6ff718 100644
--- a/zreferences.rst
+++ b/zreferences.rst
@@ -3,4 +3,4 @@ References

 .. bibliography:: data/bicycle.bib
    :encoding: latex+utf8
-   :style: alpha
+   :style: unsrt

Now html builds with just the following warnings:

$ make html
sphinx-build -b html -d _build/doctrees   . _build/html
Making output directory...
Running Sphinx v1.1
loading pickled environment... not yet created
building [html]: targets for 16 source files that are out of date
updating environment: 16 added, 0 changed, 0 removed
checking for /home/ondrej/repos/dissertation/data/bicycle.bib in bibtex cache... not found
parsing bibtex file /home/ondrej/repos/dissertation/data/bicycle.bib... parsed 777 entries

/home/ondrej/repos/dissertation/README.rst:12: WARNING: Duplicate explicit target name: "web".
/home/ondrej/repos/dissertation/README.rst:12: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:12: WARNING: Duplicate explicit target name: "docs".
/home/ondrej/repos/dissertation/README.rst:12: WARNING: Duplicate explicit target name: "web".
/home/ondrej/repos/dissertation/README.rst:12: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:12: WARNING: Duplicate explicit target name: "docs".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "web".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "docs".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "web".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "docs".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "web".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "docs".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "web".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "docs".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "web".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "docs".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "web".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "docs".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "web".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "docs".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "web".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "docs".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "web".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "docs".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
/home/ondrej/repos/dissertation/README.rst:77: WARNING: Duplicate explicit target name: "src".
looking for now-outdated files... none found
pickling environment... done
checking consistency... /home/ondrej/repos/dissertation/README.rst:: WARNING: document isn't included in any toctree
done
preparing documents... done
writing output... [100%] zreferences                                            
writing additional files... genindex search
copying images... [ 10%] figures/physicalparameters/CrescendoForkTorsionalFirst2copying images... [ 13%] figures/physicalparameters/CrescendoFwheelTorsionalFirscopying images... [ 15%] figures/physicalparameters/BrowserInsForkCompoundFirst.copying images... [ 73%] figures/physicalparameters/BrowserFrameCompoundFirst2.pcopying images... [100%] figures/davisbicycle/beam.png                          
copying static files... done
dumping search index... done
dumping object inventory... done
build succeeded, 43 warnings.

Build finished. The HTML pages are in _build/html.

The latex version has about 200 warnings, here is the log:

$ make latex
sphinx-build -b latex -d _build/doctrees   . _build/latex
Making output directory...
Running Sphinx v1.1
loading pickled environment... done
building [latex]: all documents
updating environment: 0 added, 0 changed, 0 removed
looking for now-outdated files... none found
processing HumanControlofaBicycle.tex... index preface acknowledgements abstract introduction eom extensions physicalparameters parameterstudy delftbicycle motioncapture davisbicycle control systemidentification zreferences 
resolving references...
writing... /home/ondrej/repos/dissertation/eom.rst:: WARNING: unusable reference target found: _images/typical-bicycle-geometry.png
/home/ondrej/repos/dissertation/eom.rst:: WARNING: unusable reference target found: _images/bicycle-geometry.png
/home/ondrej/repos/dissertation/eom.rst:: WARNING: unusable reference target found: _images/bicycle-coordinates.png
/home/ondrej/repos/dissertation/eom.rst:: WARNING: unusable reference target found: _images/meijaard2007-figure-four.png
/home/ondrej/repos/dissertation/eom.rst:: WARNING: unusable reference target found: _images/meijaard2007-figure-four-linear.png
/home/ondrej/repos/dissertation/eom.rst:: WARNING: unusable reference target found: _images/root-locus-complex.png
/home/ondrej/repos/dissertation/eom.rst:: WARNING: unusable reference target found: _images/root-locus.png
/home/ondrej/repos/dissertation/eom.rst:: WARNING: unusable reference target found: _images/eVecHalf.png
/home/ondrej/repos/dissertation/eom.rst:: WARNING: unusable reference target found: _images/eVecThree.png
/home/ondrej/repos/dissertation/eom.rst:: WARNING: unusable reference target found: _images/eVecFive.png
/home/ondrej/repos/dissertation/eom.rst:: WARNING: unusable reference target found: _images/eVecSeven.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/lat-force-impulse.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/lat-force-bode.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/arm-model-diagram.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/arms-root-locus.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/arms-eig.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/arms-phasor-half.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/arms-phasor-three.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/arms-phasor-five.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/arms-phasor-eight.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/gyrobike-flywheel-off.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/gyrobike-vary-flywheel.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/gyrobike-flywheel-off-rider.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/gyrobike-vary-flywheel-rider.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/gyro-nonlin-sim.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/rider-lean.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/rider-lean-damp-stiff.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/lorenzo-configuration.*
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/lorenzo-eig.jpg
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/lorenzo-plane.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/hip-trace.png
/home/ondrej/repos/dissertation/extensions.rst:: WARNING: unusable reference target found: _images/test-rider-harness.png
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/bicycles.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/tire-chalk.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/headtube.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: fork-offset.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/alternative-geometry.png
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/mass-scale.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/angles.png
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/pendulum-angle.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/pendulum-distance.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/com-triangle.png
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/stratos-fork-pendulum.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/handlebar-geometry.png
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/BrowserFrameCompoundFirst2.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/CrescendoForkTorsionalFirst2.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/fixture.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/rod.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/wheelIyy.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/CrescendoFwheelTorsionalFirst.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/YellowFrameCompoundFirst.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/BrowserInsForkCompoundFirst.jpg
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/moore-model.png
/home/ondrej/repos/dissertation/physicalparameters.rst:: WARNING: unusable reference target found: _images/batavusBrowserDim.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/bicycle-geometry.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/head-tube-angle.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/trail.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/wheelbase.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/front-wheel-diameter.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/benchmark-real.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/silver-compare.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/cres-evec-1p5-1.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/cres-evec-1p5-2.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/compare-rider-eig.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/yellow-compare.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/browser-compare.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/browser-rider-compare.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/bode-speed.png
/home/ondrej/repos/dissertation/parameterstudy.rst:: WARNING: unusable reference target found: _images/bode-weight.png
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/instrumented-bicycle.png
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/town-data.png
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/treadmill.jpg
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/delft-bike-root-locus.png
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/knee.jpg
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/steer-normal-20.png
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/steer-normal-5.png
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/steer-sigma.png
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/normal-freq.png
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/max-amp.png
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/tow-freq.png
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/perturb.png
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/perturb-freq.png
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/steer-angle-sensor-annotated.png
/home/ondrej/repos/dissertation/delftbicycle.rst:: WARNING: unusable reference target found: _images/data-viewer-screenshot.jpg
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: treadmill.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/markers.jpg
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/marker-location.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/eig-plot.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/frames.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _imags/pca-gui.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/coef3062.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/fft3062.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/motions.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/pedaling4classes.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/steer-angle-pedal.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/towing3classes.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/steer-angle-towing.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/3017wheel.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/3017bAng.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/3017rLat.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/3017rAng.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/rider-lean.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/YawAngleNb.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/RollAngleNb.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/SteerAngleNb.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/RightKneeLateralDistanceNb.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/LeftKneeLateralDistanceNb.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/ButtLateralDistanceNb.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/LeanAngleNb.png
/home/ondrej/repos/dissertation/motioncapture.rst:: WARNING: unusable reference target found: _images/TwistAngleNb.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/surly.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/rigid-harness.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/knee-restraints.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/restricted-harness.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/roll-trailer-annotated.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/trailer-angle.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/steer-sensors.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/speedometer.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/lateral-force-stick.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/pertubation.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/foot-peg.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/cheng-steer-torque-design.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/eaton-steer-torque.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/weir-torque-load-cell.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/biral-steer-torque-design.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/torque-wrench-mount.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/torque-wrench-face.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/torque-wrench-camera.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/twrench-torque-histogram.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/twrench-torque-speed.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/bicycle-forces.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/beam.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: fork-load-diagram.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/steer-torque-design.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/handlebar-free-body.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/steer-experiment.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/steer-torque-components.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/steer-angle-calibration.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/roll-calibration.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/speed-calibration.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/load-cell-calibration.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/torque-calibration.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/laptop.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/bicycle-daq-gui.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/bump.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/bump-catcher.jpg
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/unsync.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/sync.png
/home/ondrej/repos/dissertation/davisbicycle.rst:: WARNING: unusable reference target found: _images/processed-data.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/pub-hist.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/stable-step-response.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/zeros-wrt-speed.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/commanded-steer-torque.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/commanded-roll-angle.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/inner-loops.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/outer-loops.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/delta-bode.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/delta-locus.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/delta-damp.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/phiDot-locus.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/phiDot-damp.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/phiDot-bode.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/phi-bode.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/commanded-roll-angle-human.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/psi-bode.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/yq-bode.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/commanded-lateral-human.png
/home/ondrej/repos/dissertation/control.rst:: WARNING: unusable reference target found: _images/gains.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/horse-treadmill.jpg
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/pavilion.jpg
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/pavilion-lane-change.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/raw-data-bar-plot.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/time-history-treadmill.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/time-history-pavilion.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/example-fit.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/a-matrix-box-plot.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/b-matrix-box-plot.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/state-space-bode.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/A-A-rlocus.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/A-A-eig.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/A-A-Tphi-Phi.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/A-A-Tphi-Del.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/A-A-Tdel-Phi.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/A-A-Tdel-Del.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/compare-id-bode-2p0.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/compare-id-bode-5p5.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/compare-id-bode-9p0.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/inner-loops.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/outer-loops.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/rider-id-treadmill-run.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/rider-id-pavilion-run.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/par-vs-speed-box-all.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/all-delta_deltac-4.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/all-phiDot_phiDotc-4.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/all-phi_ePhi-4.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/all-psi_ePsi-4.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/all-yQ_eyQ-4.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/crossover-all.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/all-yQ_yQc-4.png
/home/ondrej/repos/dissertation/systemidentification.rst:: WARNING: unusable reference target found: _images/all-yQ_fB-4.png
done
copying images... figures/extensions/gyrobike-flywheel-off-rider.png figures/parameterstudy/cres-evec-1p5-2.png figures/systemidentification/rider-id-treadmill-run.pdf figures/extensions/lat-force-bode.pdf figures/control/delta-locus.pdf figures/delftbicycle/perturb-freq.png figures/physicalparameters/wheelIyy.jpg figures/systemidentification/all-yQ_yQc-4.png figures/davisbicycle/laptop.jpg figures/systemidentification/compare-id-bode-2p0.png figures/systemidentification/all-yQ_fB-4.png figures/systemidentification/A-A-Tdel-Phi.pdf figures/systemidentification/horse-treadmill.jpg figures/systemidentification/pavilion.jpg figures/extensions/gyro-nonlin-sim.pdf figures/delftbicycle/tow-freq.png figures/davisbicycle/torque-calibration.pdf figures/extensions/arms-root-locus.pdf figures/davisbicycle/restricted-harness.jpg figures/physicalparameters/CrescendoFwheelTorsionalFirst.jpg figures/control/phi-bode.pdf figures/davisbicycle/speed-calibration.pdf figures/davisbicycle/roll-trailer-annotated.png figures/motioncapture/3017wheel.pdf figures/delftbicycle/instrumented-bicycle.jpg figures/davisbicycle/bump.jpg figures/eom/eVecFive.png figures/motioncapture/3017rAng.pdf figures/extensions/lorenzo-high.jpg figures/parameterstudy/head-tube-angle.png figures/motioncapture/RollAngleNb.png figures/extensions/arms-phasor-five.png figures/davisbicycle/speedometer.jpg figures/parameterstudy/bode-speeds.pdf figures/systemidentification/example-fit.pdf figures/davisbicycle/processed-data.pdf figures/motioncapture/marker-location.pdf figures/davisbicycle/knee-restraints.jpg figures/motioncapture/towing3classes.pdf figures/eom/eVecSeven.png figures/davisbicycle/steer-torque-design.png figures/physicalparameters/BrowserInsForkCompoundFirst.jpg figures/eom/root-locus.pdf figures/delftbicycle/normal-freq.png figures/davisbicycle/eaton-steer-torque.png figures/davisbicycle/roll-calibration.pdf figures/davisbicycle/beam.pdf figures/motioncapture/markers.jpg figures/eom/root-locus-complex.pdf figures/delftbicycle/treadmill.jpg figures/control/commanded-steer-torque.pdf figures/motioncapture/steer-angle-pedal.pdf figures/physicalparameters/com-triangle.pdf figures/motioncapture/YawAngleNb.png figures/extensions/rider-lean-damp-stiff.pdf figures/delftbicycle/steer-sigma.png figures/systemidentification/pavilion-lane-change.pdf figures/motioncapture/SteerAngleNb.png figures/delftbicycle/knee.jpg figures/control/inner-loops.pdf figures/davisbicycle/torque-wrench-mount.jpg figures/eom/bicycle-geometry.pdf figures/control/phiDot-locus.pdf figures/physicalparameters/batavusBrowserDim.pdf figures/davisbicycle/trailer-angle.pdf figures/systemidentification/compare-id-bode-9p0.png figures/davisbicycle/biral-steer-torque-design.png figures/parameterstudy/silver-compare.png figures/motioncapture/pedaling4classes.pdf figures/davisbicycle/bicycle-daq-gui.png figures/extensions/lat-force-impulse.pdf figures/systemidentification/a-matrix-box-plot.pdf figures/extensions/arms-phasor-three.png figures/parameterstudy/wheelbase.png figures/systemidentification/all-delta_deltac-4.png figures/motioncapture/3017bAng.pdf figures/davisbicycle/surly.jpg figures/systemidentification/A-A-Tdel-Del.pdf figures/control/commanded-lateral-human.pdf figures/davisbicycle/weir-torque-load-cell.png figures/control/phiDot-damp.pdf figures/eom/meijaard2007-figure-four-linear.pdf figures/physicalparameters/CrescendoForkTorsionalFirst2.pdf figures/delftbicycle/perturb.jpg figures/motioncapture/coef3062.pdf figures/physicalparameters/fork-offset.jpg figures/davisbicycle/bump-catcher.jpg figures/davisbicycle/steer-angle-calibration.jpg figures/physicalparameters/pendulum-angle.jpg figures/parameterstudy/cres-evec-1p5-1.png figures/physicalparameters/mass-scale.jpg figures/systemidentification/A-A-Tphi-Del.pdf figures/delftbicycle/max-amp.png figures/systemidentification/rider-id-pavilion-run.pdf figures/motioncapture/steer-angle-towing.pdf figures/physicalparameters/fixture.jpg figures/physicalparameters/headtube.jpg figures/extensions/lorenzo-plane.png figures/parameterstudy/bode-weight.pdf figures/physicalparameters/handlebar-geometry.pdf figures/delftbicycle/steer-normal-20.png figures/parameterstudy/browser-rider-compare.png figures/extensions/lorenzo-configuration.png figures/parameterstudy/yellow-compare.png figures/davisbicycle/foot-peg.jpg figures/physicalparameters/pendulum-distance.jpg figures/delftbicycle/steer-normal-5.png figures/delftbicycle/steer-angle-sensor-annotated.png figures/davisbicycle/twrench-torque-histogram.png figures/extensions/rider-lean.pdf figures/systemidentification/par-vs-speed-box-all.pdf figures/systemidentification/A-A-Tphi-Phi.pdf figures/systemidentification/all-yQ_eyQ-4.png figures/motioncapture/treadmill.pdf figures/motioncapture/ButtLateralDistanceNb.png figures/motioncapture/fft3062.pdf figures/extensions/gyrobike-vary-flywheel-rider.png figures/davisbicycle/steer-torque-components.pdf figures/physicalparameters/bicycles.jpg figures/davisbicycle/cheng-steer-torque-design.png figures/control/outer-loops.pdf figures/davisbicycle/perturbation.pdf figures/extensions/gyrobike-flywheel-off.png figures/physicalparameters/moore-model.pdf figures/extensions/arms-eig.pdf figures/parameterstudy/trail.png figures/physicalparameters/handlebar.jpg figures/motioncapture/pca-gui.pdf figures/extensions/gyrobike-vary-flywheel.png figures/motioncapture/rider-lean.png figures/motioncapture/RightKneeLateralDistanceNb.png figures/control/delta-bode.pdf figures/davisbicycle/steer-sensors.jpg figures/davisbicycle/torque-wrench-face.jpg figures/davisbicycle/steer-experiment.jpg figures/control/commanded-roll-angle-human.pdf figures/davisbicycle/rigid-harness.jpg figures/physicalparameters/alternative-geometry.pdf figures/control/delta-damp.pdf figures/control/commanded-roll-angle.pdf figures/parameterstudy/browser-compare.png figures/eom/typical-bicycle-geometry.pdf figures/control/yq-bode.pdf figures/delftbicycle/data-viewer-screenshot.jpg figures/motioncapture/LeanAngleNb.png figures/physicalparameters/rod.jpg figures/physicalparameters/stratos-fork-pendulum.jpg figures/physicalparameters/human.png figures/davisbicycle/unsync.pdf figures/extensions/hip-trace.pdf figures/delftbicycle/town-data.png figures/physicalparameters/angles.pdf figures/control/psi-bode.pdf figures/davisbicycle/handlebar-free-body.pdf figures/extensions/arm-model-diagram.pdf figures/motioncapture/motions.png figures/systemidentification/state-space-bode.pdf figures/extensions/arms-phasor-half.png figures/eom/eVecHalf.png figures/extensions/test-rider-harness.pdf figures/davisbicycle/torque-wrench-camera.jpg figures/eom/bicycle-coordinates.pdf figures/control/gains.pdf figures/extensions/lorenzo-eigvec.png figures/parameterstudy/bicycle-geometry.png figures/systemidentification/all-psi_ePsi-4.png figures/davisbicycle/twrench-torque-speed.png figures/davisbicycle/fork-load-diagram.pdf figures/control/pub-hist.pdf figures/eom/meijaard2007-figure-four.png figures/motioncapture/eig-plot.pdf figures/systemidentification/A-A-rlocus.pdf figures/systemidentification/all-phiDot_phiDotc-4.png figures/davisbicycle/lateral-force-stick.jpg figures/motioncapture/LeftKneeLateralDistanceNb.png figures/control/stable-step-response.pdf figures/control/phiDot-bode.pdf figures/eom/eVecThree.png figures/extensions/lorenzo-eig.jpg figures/physicalparameters/YellowFrameCompoundFirst.jpg figures/systemidentification/time-history-pavilion.pdf figures/parameterstudy/benchmark-real.png figures/parameterstudy/compare-rider-eig.png figures/systemidentification/raw-data-bar-plot.pdf figures/systemidentification/all-phi_ePhi-4.png figures/systemidentification/crossover-all.pdf figures/systemidentification/time-history-treadmill.pdf figures/systemidentification/compare-id-bode-5p5.png figures/control/zeros-wrt-speed.pdf figures/systemidentification/A-A-eig.pdf figures/physicalparameters/tire-chalk.jpg figures/motioncapture/frames.pdf figures/parameterstudy/front-wheel-diameter.png figures/extensions/arms-phasor-eight.png figures/systemidentification/b-matrix-box-plot.pdf figures/davisbicycle/load-cell-calibration.pdf figures/delftbicycle/delft-bike-root-locus.png figures/motioncapture/3017rLat.pdf figures/davisbicycle/sync.pdf figures/physicalparameters/BrowserFrameCompoundFirst2.pdf figures/motioncapture/TwistAngleNb.png figures/davisbicycle/bicycle-forces.pdf
copying TeX support files... done
build succeeded, 200 warnings.

Build finished; the LaTeX files are in _build/latex.
Run `make' in that directory to run these through (pdf)latex (use `make latexpdf' here to do that automatically).

And finally, compiling the pdf fails with:

$ cd _build/latex/
$ make
pdflatex  'HumanControlofaBicycle.tex'
This is pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian)
entering extended mode
(./HumanControlofaBicycle.tex
LaTeX2e <2009/09/24>
Babel <v3.8l> and hyphenation patterns for english, usenglishmax, dumylang, noh
yphenation, loaded.
(./sphinxmanual.cls
Document Class: sphinxmanual 2009/06/02 Document class (Sphinx manual)
(/usr/share/texmf-texlive/tex/latex/base/report.cls
Document Class: report 2007/10/19 v1.4h Standard LaTeX document class
(/usr/share/texmf-texlive/tex/latex/base/size10.clo)))
[...]
LaTeX Warning: Hyper reference `physicalparameters:tabbatavusbenchmark' on page
 87 undefined on input line 5339.

LaTeX Warning: Hyper reference `physicalparameters:tabdavisbenchmark' on page 8
7 undefined on input line 5340.

)
Runaway argument?
{\textbf { Browser } & \multicolumn {2}{l|}{\textbf { Browserins } & \ETC.
! File ended while scanning use of \multicolumn.
<inserted text> 
                \par 
<*> HumanControlofaBicycle.tex

? 

However, I think it's a big progress. Thanks for the help!

moorepants commented 12 years ago

I don't know why your version doesn't work with the :style: alpha option. Mine does. Are you sure you merged in both branches and have the latest development branch of sphinxcontrib.bibtex?

The latest commit fixes the html build warnings.

The warnings in the make latex command have to do with the :target: directive in the images. I set the target for images to link to the full size image so that the figures are clickable in the html output. This causes issues in the latex build though. I think they may need to be absolute urls instead of relative ones. These warnings don't really affect the latex output. I'll look into fixing them though.

I don't get the pdf build error you get. Maybe this has to do with the TeX/LaTeX version we are using. I'm using TeXLive version 2009-15.

There will be quite a few warnings in the pdf build too. I believe these are related to some upstream bugs. The hyperlinks in the pdf for the citations and footnotes do not resolve correctly. I've reported the citation issues to the sphinxcontrib.bibtex developer.