-
Notifications
You must be signed in to change notification settings - Fork 8
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
印刷で利用時にURL表記がページ幅におさまらない #12
Comments
すいません.前回はそのままでした. |
URLの自動折り返しは難しいので,手で改行を入れるのが一番ラクなのでは.
|
@Moirai 16.04でpdfをビルド出来てますか?私はそこからダメだー.とりあえず諦め. |
(基本、ドキュメントをubuntu上で見ないので、)昨日は落としてきた一式を見て手元でやるのは諦めました。 |
Python3ならそこは通るけど,今度は別の問題がある. 厳しいなこりゃ.もうちょっと難しくないやり方はないのか. |
いまやらなくていいとおもいますが,circleci.yamlが動いているので,動くはず,とおいう前提で試してみると
```
from ubuntu:16.04
ENV ROS_DISTRO kinetic
ENV ROS_REPOSITORY_PATH http://packages.ros.org/ros/ubuntu
RUN apt-get update
RUN apt-get install -y -q lsb-release wget sudo git cmake make python-pip
RUN gcc -v
RUN c++ -v
RUN sh -c "echo \"deb $ROS_REPOSITORY_PATH `lsb_release -cs` main\" >
/etc/apt/sources.list.d/ros-latest.list"
RUN wget http://packages.ros.org/ros.key -O - | sudo apt-key add -
RUN apt-get update
RUN apt-get install -y -q python-catkin-pkg python-rosdep
ros-$ROS_DISTRO-catkin
RUN apt-get install -y -q mongodb # to install ros-indigo-warehouse-ros
RUN rosdep init && rosdep update
RUN mkdir -p ~/catkin_ws/src && cd ~/catkin_ws/src && git clone
http://github.com/tork-a/tork_moveit_tutorial.git
RUN . /opt/ros/$ROS_DISTRO/setup.sh && cd ~/catkin_ws && rosdep install
--from-paths src/ --ignore-src -y
RUN . /opt/ros/$ROS_DISTRO/setup.sh && cd ~/catkin_ws && catkin_make
RUN . /opt/ros/$ROS_DISTRO/setup.sh && cd ~/catkin_ws && catkin_make
run_tests
RUN . /opt/ros/$ROS_DISTRO/setup.sh && cd ~/catkin_ws &&
catkin_test_results --verbose build
RUN pip install sphinx
RUN pip install recommonmark
RUN apt-get install -y -q doxygen pandoc python-catkin-sphinx
RUN sudo apt-get install -y -q texlive-latex-base texlive-latex-recommended
texlive-fonts-recommended texlive-latex-extra
RUN apt-get install -y -q texlive-lang-cjk
## not sure why but we need this hack only for 14.04 (+ 16.04)
RUN sed -i 's@role(name@role("download"@'
/usr/local/lib/python2.7/dist-packages/recommonmark/states.py
RUN sed -i 's@str(content)@content@'
/usr/local/lib/python2.7/dist-packages/recommonmark/states.py
RUN . /opt/ros/$ROS_DISTRO/setup.sh && cd ~/catkin_ws && catkin_make --pkg
tork_moveit_tutorial --make-args docbuild_tork_moveit_tutorial
RUN mkdir -p /tmp/pdf
RUN find -L ~/catkin_ws/ -iname '*.pdf' -exec cp {} /tmp/pdf \;
RUN ls /tmp/pdf/
```
で動いているとおもいます.
…On Wed, Oct 24, 2018 at 10:04 AM Ryosuke Tajima ***@***.***> wrote:
Python3ならそこは通るけど,今度は別の問題がある.
- readthedocs/recommonmark#93 <readthedocs/recommonmark#93>
厳しいなこりゃ.もうちょっと難しくないやり方はないのか.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#12 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AJ5qJ8QX6oZ2FhBZOgftXfeD084uIP-Pks5un7yVgaJpZM4X19_Z>
.
--
--
東京オープンソースロボティクス協会(TORK)
|
手元では二重にリンクを設定して表示文字を折り返したようにして作成して対処しました. section6のみが自動折返しができていないように見えますが,根本対応は今回はあきらめました. |
本文PDFのP20・59・72・82ページ目のURLリンクが
折返しになっていないため、印刷時は切れてしまう。
すぐにちょうどいい解消法が思いつかなかったので、そのままになりそうですが
どなたかベストな解決法が思いつきそうであればご教示いただけると助かります。
The text was updated successfully, but these errors were encountered: