We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It took me a long time to track down why a title gets cut off when specified.
Using mar = c(0,0,0,0) is OK when there is no title, but you could change that internally to mar = c(0,0,2,0) when title = is specified
mar = c(0,0,0,0)
mar = c(0,0,2,0)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It took me a long time to track down why a title gets cut off when specified.
Using
mar = c(0,0,0,0)
is OK when there is no title, but you could change that internally tomar = c(0,0,2,0)
when title = is specifiedThe text was updated successfully, but these errors were encountered: